403Webshell
Server IP : 65.108.144.40  /  Your IP : 216.73.217.165
Web Server : Apache/2.4.52 (Ubuntu)
System : Linux ubuntu-8gb-hel1-1 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64
User : dev ( 1000)
PHP Version : 8.2.30
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/html/meadowcroftca/wp-content/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/meadowcroftca/wp-content/mysql.sql
-- MySQL dump 10.13  Distrib 5.7.44-48, for debian-linux-gnu (x86_64)
--
-- Host: pod-208346.pod-208346.svc.cluster.local    Database: wp_meadowcroftca
-- ------------------------------------------------------
-- Server version	8.0.37-29

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
/*!50717 SELECT COUNT(*) INTO @rocksdb_has_p_s_session_variables FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = 'performance_schema' AND TABLE_NAME = 'session_variables' */;
/*!50717 SET @rocksdb_get_is_supported = IF (@rocksdb_has_p_s_session_variables, 'SELECT COUNT(*) INTO @rocksdb_is_supported FROM performance_schema.session_variables WHERE VARIABLE_NAME=\'rocksdb_bulk_load\'', 'SELECT 0') */;
/*!50717 PREPARE s FROM @rocksdb_get_is_supported */;
/*!50717 EXECUTE s */;
/*!50717 DEALLOCATE PREPARE s */;
/*!50717 SET @rocksdb_enable_bulk_load = IF (@rocksdb_is_supported, 'SET SESSION rocksdb_bulk_load = 1', 'SET @rocksdb_dummy_bulk_load = 0') */;
/*!50717 PREPARE s FROM @rocksdb_enable_bulk_load */;
/*!50717 EXECUTE s */;
/*!50717 DEALLOCATE PREPARE s */;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint unsigned NOT NULL DEFAULT '0',
  `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_karma` int NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment',
  `comment_parent` bigint unsigned NOT NULL DEFAULT '0',
  `user_id` bigint unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

--
-- Table structure for table `wp_gf_draft_submissions`
--

DROP TABLE IF EXISTS `wp_gf_draft_submissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_draft_submissions` (
  `uuid` char(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `email` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `form_id` mediumint unsigned NOT NULL,
  `date_created` datetime NOT NULL,
  `ip` varchar(45) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `source_url` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `submission` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`uuid`),
  KEY `form_id` (`form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_draft_submissions`
--

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

--
-- Table structure for table `wp_gf_entry`
--

DROP TABLE IF EXISTS `wp_gf_entry`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_entry` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint unsigned NOT NULL,
  `post_id` bigint unsigned DEFAULT NULL,
  `date_created` datetime NOT NULL,
  `date_updated` datetime DEFAULT NULL,
  `is_starred` tinyint NOT NULL DEFAULT '0',
  `is_read` tinyint NOT NULL DEFAULT '0',
  `ip` varchar(45) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `source_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_agent` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `currency` varchar(5) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `payment_status` varchar(15) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `payment_date` datetime DEFAULT NULL,
  `payment_amount` decimal(19,2) DEFAULT NULL,
  `payment_method` varchar(30) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `transaction_id` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `is_fulfilled` tinyint DEFAULT NULL,
  `created_by` bigint unsigned DEFAULT NULL,
  `transaction_type` tinyint DEFAULT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'active',
  `source_id` bigint unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`),
  KEY `form_id_status` (`form_id`,`status`)
) ENGINE=InnoDB AUTO_INCREMENT=832 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_entry`
--

LOCK TABLES `wp_gf_entry` WRITE;
/*!40000 ALTER TABLE `wp_gf_entry` DISABLE KEYS */;
INSERT INTO `wp_gf_entry` VALUES (1,2,NULL,'2022-12-26 07:35:22','2022-12-26 07:35:22',0,1,'182.189.243.88','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(2,2,NULL,'2022-12-26 14:10:11','2022-12-26 14:10:11',0,1,'45.41.160.60','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(3,2,NULL,'2023-01-03 19:48:45','2023-01-03 19:48:45',0,0,'74.83.87.135','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(4,2,NULL,'2023-01-05 03:53:50','2023-01-05 03:53:50',0,0,'209.107.216.190','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(5,2,NULL,'2023-01-05 08:32:29','2023-01-05 08:32:29',0,0,'154.9.44.156','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(6,2,NULL,'2023-01-09 04:06:00','2023-01-09 04:06:00',0,0,'5.62.57.65','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(7,2,NULL,'2023-01-10 20:53:30','2023-01-10 20:53:30',0,0,'96.233.139.75','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(8,2,NULL,'2023-01-12 17:35:45','2023-01-12 17:35:45',0,0,'95.216.88.13','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(9,2,NULL,'2023-01-12 21:02:48','2023-01-12 21:02:48',0,0,'70.121.165.81','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(10,2,NULL,'2023-01-13 04:39:45','2023-01-13 04:39:45',0,0,'143.244.44.182','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(11,2,NULL,'2023-01-14 15:39:07','2023-01-14 15:39:07',0,0,'198.134.109.132','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(12,2,NULL,'2023-01-15 04:50:40','2023-01-15 04:50:40',0,0,'172.245.87.67','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(13,2,NULL,'2023-01-17 01:09:37','2023-01-17 01:09:37',0,0,'198.134.109.132','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(14,2,NULL,'2023-01-17 18:59:51','2023-01-17 18:59:51',0,0,'62.216.65.45','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(15,2,NULL,'2023-01-18 12:49:35','2023-01-18 12:49:35',0,0,'5.62.47.222','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(16,2,NULL,'2023-01-20 20:39:23','2023-01-20 20:39:23',0,0,'67.188.77.35','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(17,2,NULL,'2023-01-23 13:10:47','2023-01-23 13:10:47',0,0,'146.70.72.170','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.31 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(18,2,NULL,'2023-01-24 22:41:14','2023-01-24 22:41:14',0,0,'5.62.57.41','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(19,2,NULL,'2023-01-29 11:47:56','2023-01-29 11:47:56',0,0,'5.62.47.207','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(20,2,NULL,'2023-01-31 12:19:50','2023-01-31 12:19:50',0,0,'101.0.42.229','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(21,2,NULL,'2023-01-31 12:20:01','2023-01-31 12:20:01',0,0,'49.36.201.131','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(22,2,NULL,'2023-02-01 05:25:36','2023-02-01 05:25:36',0,0,'5.62.47.155','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(23,2,NULL,'2023-02-01 06:36:07','2023-02-01 06:36:07',0,0,'49.36.201.120','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(24,2,NULL,'2023-02-02 15:17:03','2023-02-02 15:17:03',0,0,'23.254.62.184','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(25,2,NULL,'2023-02-04 08:11:04','2023-02-04 08:11:04',0,0,'89.187.170.169','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.31 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(26,2,NULL,'2023-02-07 16:30:15','2023-02-07 16:30:15',0,0,'100.26.174.64','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(27,2,NULL,'2023-02-07 17:10:45','2023-02-07 17:10:45',0,0,'37.103.103.36','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(28,2,NULL,'2023-02-09 06:16:37','2023-02-09 06:16:37',0,0,'172.245.220.204','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(29,2,NULL,'2023-02-10 01:22:37','2023-02-10 01:22:37',0,0,'117.71.110.171','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(30,2,NULL,'2023-02-12 06:22:39','2023-02-12 06:22:39',0,0,'204.236.179.17','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edge/44.18363.8131','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(31,2,NULL,'2023-02-12 19:19:48','2023-02-12 19:19:48',0,0,'107.77.211.47','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/250.0.505561494 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(32,2,NULL,'2023-02-12 19:41:27','2023-02-12 19:41:27',0,0,'107.77.211.47','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/250.0.505561494 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(33,2,NULL,'2023-02-15 00:45:14','2023-02-15 00:45:14',0,0,'154.30.247.180','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(34,2,NULL,'2023-02-16 21:20:33','2023-02-16 21:20:33',0,0,'174.242.79.239','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_1_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(35,2,NULL,'2023-02-16 23:42:42','2023-02-16 23:42:42',0,0,'172.245.25.69','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(36,2,NULL,'2023-02-19 22:38:15','2023-02-19 22:38:15',0,0,'104.239.105.161','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(37,2,NULL,'2023-02-20 05:43:17','2023-02-20 05:43:17',0,0,'104.144.147.197','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(38,2,NULL,'2023-02-21 16:42:32','2023-02-21 16:42:32',0,0,'117.71.110.171','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(39,2,NULL,'2023-02-22 07:33:56','2023-02-22 07:33:56',0,0,'115.246.123.178','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(43,2,NULL,'2023-02-22 10:16:02','2023-02-22 10:16:02',0,0,'115.246.123.178','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(44,2,NULL,'2023-02-22 12:04:58','2023-02-22 12:04:58',0,0,'193.148.18.100','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.31 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(45,2,NULL,'2023-02-22 12:23:05','2023-02-22 12:23:05',0,0,'154.29.108.92','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(46,2,NULL,'2023-02-23 06:32:59','2023-02-23 06:32:59',0,0,'115.246.123.178','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(47,2,NULL,'2023-02-23 07:35:55','2023-02-23 07:35:55',0,0,'115.246.123.178','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(48,2,NULL,'2023-02-23 07:40:15','2023-02-23 07:40:15',0,0,'115.246.123.178','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(49,2,NULL,'2023-02-23 07:45:26','2023-02-23 07:45:26',0,0,'115.246.123.178','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(50,2,NULL,'2023-02-23 07:46:37','2023-02-23 07:46:37',0,0,'115.246.123.178','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(51,2,NULL,'2023-02-23 07:48:29','2023-02-23 07:48:29',0,0,'115.246.123.178','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(52,2,NULL,'2023-02-23 07:51:50','2023-02-23 07:51:50',0,0,'115.246.123.178','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(53,2,NULL,'2023-02-24 17:45:18','2023-02-24 17:45:18',0,0,'185.205.186.84','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(54,2,NULL,'2023-02-24 22:21:15','2023-02-24 22:21:15',0,0,'91.197.36.231','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(55,2,NULL,'2023-02-24 22:37:16','2023-02-24 22:37:16',0,0,'209.129.224.129','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(56,2,NULL,'2023-02-28 00:47:53','2023-02-28 00:47:53',0,0,'117.71.110.171','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(57,2,NULL,'2023-02-28 01:33:25','2023-02-28 01:33:25',0,0,'47.206.198.94','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36 Edg/110.0.1587.57','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(58,2,NULL,'2023-03-07 23:22:24','2023-03-07 23:22:24',0,0,'157.52.212.225','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(59,2,NULL,'2023-03-10 17:47:45','2023-03-10 17:47:45',0,0,'73.189.163.253','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(60,2,NULL,'2023-03-19 00:04:03','2023-03-19 00:04:03',0,0,'96.8.122.41','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(61,2,NULL,'2023-03-23 03:30:04','2023-03-23 03:30:04',0,0,'146.70.174.181','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.31 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(62,2,NULL,'2023-03-26 19:50:20','2023-03-26 19:50:20',0,0,'174.196.203.150','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_1_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(63,2,NULL,'2023-03-27 04:53:49','2023-03-27 04:53:49',0,0,'24.6.134.150','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(64,2,NULL,'2023-03-28 11:08:46','2023-03-28 11:08:46',0,0,'23.19.99.208','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(65,2,NULL,'2023-03-29 06:21:06','2023-03-29 06:21:06',0,0,'170.83.176.144','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(66,2,NULL,'2023-03-31 02:01:32','2023-03-31 02:01:32',0,0,'37.139.53.30','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(67,1,NULL,'2023-03-31 08:30:24','2023-03-31 08:30:24',0,0,'37.139.53.30','https://www.meadowcroftwines.com/virtual-experiences/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(68,2,NULL,'2023-04-01 03:07:51','2023-04-01 03:07:51',0,0,'139.144.231.209','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(69,2,NULL,'2023-04-05 22:48:29','2023-04-05 22:48:29',0,0,'199.249.230.22','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(70,2,NULL,'2023-04-08 16:11:20','2023-04-08 16:11:20',0,0,'182.187.54.25','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(71,2,NULL,'2023-04-08 16:11:29','2023-04-08 16:11:29',0,0,'182.187.54.25','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(72,2,NULL,'2023-04-10 16:42:09','2023-04-10 16:42:09',0,0,'173.245.217.246','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(73,2,NULL,'2023-04-11 09:42:50','2023-04-11 09:42:50',0,0,'138.199.18.75','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(74,2,NULL,'2023-04-11 14:02:42','2023-04-11 14:02:42',0,0,'5.62.57.109','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(75,2,NULL,'2023-04-13 01:10:01','2023-04-13 01:10:01',0,1,'45.152.182.151','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.31 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(76,2,NULL,'2023-04-17 19:30:11','2023-04-17 19:30:11',0,0,'68.98.104.212','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(77,2,NULL,'2023-04-21 00:55:52','2023-04-21 00:55:52',0,0,'5.62.58.253','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(78,2,NULL,'2023-04-24 00:23:27','2023-04-24 00:23:27',0,0,'146.70.115.219','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(79,2,NULL,'2023-04-24 23:14:49','2023-04-24 23:14:49',0,0,'192.210.188.134','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(80,2,NULL,'2023-04-27 17:51:25','2023-04-27 17:51:25',0,0,'49.83.22.76','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(81,2,NULL,'2023-04-27 20:24:41','2023-04-27 20:24:41',0,0,'74.62.226.210','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(82,2,NULL,'2023-04-28 06:41:29','2023-04-28 06:41:29',0,0,'182.187.66.58','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(83,2,NULL,'2023-05-10 03:55:40','2023-05-10 03:55:40',0,0,'209.218.130.75','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.4 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(84,2,NULL,'2023-05-11 15:28:28','2023-05-11 15:28:28',0,0,'98.217.163.94','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(85,2,NULL,'2023-05-11 22:55:55','2023-05-11 22:55:55',0,0,'146.70.174.93','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.31 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(86,2,NULL,'2023-05-14 05:37:56','2023-05-14 05:37:56',0,0,'188.65.17.32','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(87,2,NULL,'2023-05-15 21:10:24','2023-05-15 21:10:24',0,0,'66.75.55.24','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36 Edg/113.0.1774.42','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(88,2,NULL,'2023-05-16 02:33:23','2023-05-16 02:33:23',0,0,'135.180.200.72','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(89,2,NULL,'2023-05-16 21:39:09','2023-05-16 21:39:09',0,0,'99.116.22.206','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(90,2,NULL,'2023-05-19 22:37:33','2023-05-19 22:37:33',0,0,'63.161.76.23','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(91,2,NULL,'2023-05-20 22:41:47','2023-05-20 22:41:47',0,0,'199.249.230.42','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(92,2,NULL,'2023-05-22 17:01:19','2023-05-22 17:01:19',0,0,'23.93.180.96','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(93,2,NULL,'2023-05-23 18:27:32','2023-05-23 18:27:32',0,0,'38.76.88.114','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(94,2,NULL,'2023-05-26 00:15:44','2023-05-26 00:15:44',0,0,'181.177.111.63','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(95,2,NULL,'2023-05-29 11:38:51','2023-05-29 11:38:51',0,0,'38.152.48.97','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(96,2,NULL,'2023-05-29 17:24:22','2023-05-29 17:24:22',0,0,'38.154.67.216','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(97,2,NULL,'2023-05-30 03:27:21','2023-05-30 03:27:21',0,0,'199.249.230.42','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(98,2,NULL,'2023-06-03 18:24:45','2023-06-03 18:24:45',0,0,'199.249.230.42','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(99,2,NULL,'2023-06-04 17:06:52','2023-06-04 17:06:52',0,0,'173.73.209.33','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.5 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(100,2,NULL,'2023-06-05 09:52:56','2023-06-05 09:52:56',0,0,'182.187.91.180','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(101,2,NULL,'2023-06-05 17:47:26','2023-06-05 17:47:26',0,0,'38.76.91.128','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(102,2,NULL,'2023-06-06 10:13:09','2023-06-06 10:13:09',0,0,'23.229.90.92','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(103,2,NULL,'2023-06-07 02:55:38','2023-06-07 02:55:38',0,0,'38.154.133.241','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(104,2,NULL,'2023-06-07 20:24:32','2023-06-07 20:24:32',0,0,'165.225.242.246','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(105,2,NULL,'2023-06-07 20:39:40','2023-06-07 20:39:40',0,0,'24.193.124.95','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(106,2,NULL,'2023-06-08 08:09:47','2023-06-08 08:09:47',0,0,'107.158.116.89','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(107,2,NULL,'2023-06-11 17:45:14','2023-06-11 17:45:14',0,0,'107.77.213.22','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.5 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(108,2,NULL,'2023-06-13 13:51:32','2023-06-13 13:51:32',0,0,'174.192.131.211','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(109,2,NULL,'2023-06-14 03:48:00','2023-06-14 03:48:00',0,0,'98.252.120.25','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(110,2,NULL,'2023-06-14 11:56:35','2023-06-14 11:56:35',0,0,'50.5.60.129','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(111,2,NULL,'2023-06-16 05:13:35','2023-06-16 05:13:35',0,0,'191.102.143.23','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(112,2,NULL,'2023-06-19 19:51:08','2023-06-19 19:51:08',0,0,'37.120.132.83','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(113,2,NULL,'2023-06-19 20:57:16','2023-06-19 20:57:16',0,0,'23.108.233.55','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(114,2,NULL,'2023-06-20 03:03:52','2023-06-20 03:03:52',0,0,'165.140.84.84','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(115,2,NULL,'2023-06-20 10:49:14','2023-06-20 10:49:14',0,0,'37.120.132.83','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(116,2,NULL,'2023-06-20 17:15:02','2023-06-20 17:15:02',0,0,'91.196.220.67','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(117,2,NULL,'2023-06-22 01:19:49','2023-06-22 01:19:49',0,0,'37.120.132.83','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(118,2,NULL,'2023-06-23 17:39:27','2023-06-23 17:39:27',0,0,'104.239.81.124','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(119,2,NULL,'2023-06-26 11:17:10','2023-06-26 11:17:10',0,0,'37.120.132.83','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(120,2,NULL,'2023-06-29 18:25:07','2023-06-29 18:25:07',0,0,'37.120.132.83','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(121,2,NULL,'2023-06-30 02:49:10','2023-06-30 02:49:10',0,0,'198.12.112.123','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(122,2,NULL,'2023-06-30 13:40:09','2023-06-30 13:40:09',0,0,'37.120.132.83','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(123,2,NULL,'2023-07-01 02:01:34','2023-07-01 02:01:34',0,0,'192.3.48.19','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(124,2,NULL,'2023-07-04 18:09:34','2023-07-04 18:09:34',0,0,'193.37.254.19','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(125,2,NULL,'2023-07-06 05:10:11','2023-07-06 05:10:11',0,0,'83.77.68.3','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(126,2,NULL,'2023-07-06 10:35:04','2023-07-06 10:35:04',0,0,'45.120.49.24','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(127,2,NULL,'2023-07-06 16:23:53','2023-07-06 16:23:53',0,0,'73.73.67.245','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.67','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(128,2,NULL,'2023-07-08 12:23:35','2023-07-08 12:23:35',0,0,'5.62.59.5','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(129,2,NULL,'2023-07-08 21:51:01','2023-07-08 21:51:01',0,0,'96.47.236.131','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(130,2,NULL,'2023-07-10 11:36:54','2023-07-10 11:36:54',0,0,'96.47.236.131','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(131,2,NULL,'2023-07-10 22:11:15','2023-07-10 22:11:15',0,0,'69.58.0.169','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(132,2,NULL,'2023-07-12 18:52:07','2023-07-12 18:52:07',0,0,'96.47.236.131','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(133,2,NULL,'2023-07-13 04:17:02','2023-07-13 04:17:02',0,0,'198.44.128.12','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(134,2,NULL,'2023-07-14 05:45:41','2023-07-14 05:45:41',0,0,'212.102.57.99','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(135,2,NULL,'2023-07-14 12:54:53','2023-07-14 12:54:53',0,0,'172.59.225.48','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.5.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(136,2,NULL,'2023-07-17 04:44:19','2023-07-17 04:44:19',0,0,'73.70.80.46','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(137,2,NULL,'2023-07-18 17:22:49','2023-07-18 17:22:49',0,0,'154.6.85.39','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(138,2,NULL,'2023-07-19 01:49:50','2023-07-19 01:49:50',0,0,'107.167.244.83','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(139,2,NULL,'2023-07-20 21:33:06','2023-07-20 21:33:06',0,0,'173.44.164.185','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(140,2,NULL,'2023-07-21 21:16:08','2023-07-21 21:16:08',0,0,'96.76.214.233','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.86','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(141,2,NULL,'2023-07-25 18:51:05','2023-07-25 18:51:05',0,0,'184.53.16.17','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.4 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(142,2,NULL,'2023-07-26 22:36:18','2023-07-26 22:36:18',0,0,'107.174.248.116','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(143,2,NULL,'2023-07-27 14:03:55','2023-07-27 14:03:55',0,0,'199.249.230.27','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(144,2,NULL,'2023-07-28 18:24:24','2023-07-28 18:24:24',0,0,'142.93.68.63','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(145,2,NULL,'2023-07-28 18:53:22','2023-07-28 18:53:22',0,0,'45.35.194.137','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(146,2,NULL,'2023-07-29 13:41:57','2023-07-29 13:41:57',0,0,'146.70.115.167','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(147,2,NULL,'2023-07-31 14:11:28','2023-07-31 14:11:28',0,0,'196.242.4.130','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(148,2,NULL,'2023-07-31 14:42:01','2023-07-31 14:42:01',0,0,'196.244.48.39','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(149,2,NULL,'2023-08-01 03:44:26','2023-08-01 03:44:26',0,0,'47.6.107.123','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.5563.148 ADG/11.1.4351 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(150,2,NULL,'2023-08-01 19:11:20','2023-08-01 19:11:20',0,0,'146.201.81.39','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(151,2,NULL,'2023-08-04 01:04:56','2023-08-04 01:04:56',0,0,'39.42.170.82','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(152,2,NULL,'2023-08-04 22:11:02','2023-08-04 22:11:02',0,0,'67.86.69.176','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(153,2,NULL,'2023-08-06 16:29:35','2023-08-06 16:29:35',0,0,'199.249.230.17','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(154,2,NULL,'2023-08-08 20:00:09','2023-08-08 20:00:09',0,0,'149.34.245.98','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(155,2,NULL,'2023-08-09 02:40:47','2023-08-09 02:40:47',0,0,'49.83.21.76','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(156,2,NULL,'2023-08-09 21:59:06','2023-08-09 21:59:06',0,0,'162.251.240.153','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(157,2,NULL,'2023-08-09 23:18:10','2023-08-09 23:18:10',0,0,'191.102.151.156','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(158,2,NULL,'2023-08-11 06:01:34','2023-08-11 06:01:34',0,0,'199.249.230.17','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(159,2,NULL,'2023-08-12 03:36:18','2023-08-12 03:36:18',0,0,'199.249.230.17','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(160,2,NULL,'2023-08-13 00:22:58','2023-08-13 00:22:58',0,0,'107.1.214.218','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(161,2,NULL,'2023-08-13 04:06:02','2023-08-13 04:06:02',0,0,'38.170.80.158','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(162,2,NULL,'2023-08-17 04:31:18','2023-08-17 04:31:18',0,0,'199.249.230.47','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(163,2,NULL,'2023-08-17 23:52:17','2023-08-17 23:52:17',0,0,'211.29.222.45','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36 Edg/115.0.1901.203','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(164,2,NULL,'2023-08-18 12:49:20','2023-08-18 12:49:20',0,0,'196.51.203.245','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(165,2,NULL,'2023-08-18 18:15:52','2023-08-18 18:15:52',0,0,'5.62.49.92','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(166,2,NULL,'2023-08-19 03:21:26','2023-08-19 03:21:26',0,0,'199.249.230.47','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(167,2,NULL,'2023-08-19 09:13:40','2023-08-19 09:13:40',0,0,'174.89.116.103','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(168,2,NULL,'2023-08-21 02:57:46','2023-08-21 02:57:46',0,0,'108.181.171.234','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(169,2,NULL,'2023-08-21 19:34:38','2023-08-21 19:34:38',0,0,'199.249.230.47','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(170,2,NULL,'2023-08-21 19:42:23','2023-08-21 19:42:23',0,0,'187.189.168.223','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(171,2,NULL,'2023-08-23 00:45:25','2023-08-23 00:45:25',0,0,'23.105.157.131','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(172,2,NULL,'2023-08-23 02:53:29','2023-08-23 02:53:29',0,0,'199.249.230.17','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(173,2,NULL,'2023-08-23 11:10:24','2023-08-23 11:10:24',0,0,'199.249.230.17','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(174,2,NULL,'2023-08-24 21:05:45','2023-08-24 21:05:45',0,0,'71.36.99.154','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(175,2,NULL,'2023-08-31 00:35:53','2023-08-31 00:35:53',0,0,'199.249.230.17','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(176,2,NULL,'2023-08-31 05:04:04','2023-08-31 05:04:04',0,0,'64.42.179.43','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(177,2,NULL,'2023-09-01 18:09:23','2023-09-01 18:09:23',0,0,'99.75.88.65','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/117.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(178,2,NULL,'2023-09-02 23:24:29','2023-09-02 23:24:29',0,0,'173.44.55.179','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(179,2,NULL,'2023-09-03 02:40:20','2023-09-03 02:40:20',0,0,'173.44.55.179','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(180,2,NULL,'2023-09-03 08:41:55','2023-09-03 08:41:55',0,0,'173.44.55.179','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(181,2,NULL,'2023-09-04 01:10:20','2023-09-04 01:10:20',0,0,'173.44.55.179','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(182,2,NULL,'2023-09-04 02:03:53','2023-09-04 02:03:53',0,0,'173.44.55.179','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(183,2,NULL,'2023-09-06 15:52:58','2023-09-06 15:52:58',0,0,'173.44.55.179','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(184,2,NULL,'2023-09-07 01:15:54','2023-09-07 01:15:54',0,0,'173.44.55.179','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(185,2,NULL,'2023-09-07 10:48:40','2023-09-07 10:48:40',0,0,'104.223.57.214','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(186,2,NULL,'2023-09-10 21:47:24','2023-09-10 21:47:24',0,0,'108.18.215.160','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(187,2,NULL,'2023-09-10 23:48:51','2023-09-10 23:48:51',0,0,'146.70.121.173','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(188,2,NULL,'2023-09-12 02:01:13','2023-09-12 02:01:13',0,0,'208.77.22.212','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(189,2,NULL,'2023-09-12 07:24:57','2023-09-12 07:24:57',0,0,'208.77.22.212','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(190,2,NULL,'2023-09-12 10:24:40','2023-09-12 10:24:40',0,0,'208.77.22.212','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(191,2,NULL,'2023-09-12 20:41:05','2023-09-12 20:41:05',0,0,'138.199.31.201','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(192,2,NULL,'2023-09-13 22:34:47','2023-09-13 22:34:47',0,0,'208.77.22.212','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(193,2,NULL,'2023-09-14 16:42:53','2023-09-14 16:42:53',0,0,'198.46.150.55','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(194,2,NULL,'2023-09-14 20:31:08','2023-09-14 20:31:08',0,0,'208.77.22.212','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(195,2,NULL,'2023-09-14 23:19:56','2023-09-14 23:19:56',0,0,'208.77.22.212','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(196,2,NULL,'2023-09-16 07:03:05','2023-09-16 07:03:05',0,0,'84.54.147.59','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(197,2,NULL,'2023-09-16 19:40:04','2023-09-16 19:40:04',0,0,'186.233.186.103','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(198,2,NULL,'2023-09-17 13:46:06','2023-09-17 13:46:06',0,0,'84.54.188.21','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(199,2,NULL,'2023-09-17 15:07:17','2023-09-17 15:07:17',0,0,'199.249.230.17','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(200,2,NULL,'2023-09-17 17:12:49','2023-09-17 17:12:49',0,0,'212.102.44.167','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(201,2,NULL,'2023-09-18 17:14:16','2023-09-18 17:14:16',0,0,'199.249.230.17','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(202,2,NULL,'2023-09-20 09:34:51','2023-09-20 09:34:51',0,0,'199.249.230.17','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(203,2,NULL,'2023-09-20 15:15:37','2023-09-20 15:15:37',0,0,'117.6.59.113','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(204,2,NULL,'2023-09-21 08:24:00','2023-09-21 08:24:00',0,0,'199.249.230.17','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(205,2,NULL,'2023-09-25 15:08:40','2023-09-25 15:08:40',0,0,'198.203.28.43','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(206,2,NULL,'2023-09-25 21:13:54','2023-09-25 21:13:54',0,0,'198.203.28.43','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(207,2,NULL,'2023-09-26 17:15:43','2023-09-26 17:15:43',0,0,'198.203.28.43','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(208,2,NULL,'2023-09-26 22:37:18','2023-09-26 22:37:18',0,0,'24.151.62.52','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(209,2,NULL,'2023-09-27 00:27:43','2023-09-27 00:27:43',0,0,'172.58.208.123','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (iPhone; CPU iPhone OS 17_0_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.0 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(210,2,NULL,'2023-09-29 12:03:26','2023-09-29 12:03:26',0,0,'166.88.122.70','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(211,2,NULL,'2023-09-29 14:30:57','2023-09-29 14:30:57',0,0,'64.42.179.51','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(212,2,NULL,'2023-09-30 22:02:24','2023-09-30 22:02:24',0,0,'35.149.142.152','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(213,2,NULL,'2023-10-03 05:35:59','2023-10-03 05:35:59',0,0,'64.42.179.51','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(214,2,NULL,'2023-10-04 14:13:03','2023-10-04 14:13:03',0,0,'64.42.179.51','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(215,2,NULL,'2023-10-04 16:59:38','2023-10-04 16:59:38',0,0,'64.42.179.51','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(216,2,NULL,'2023-10-04 20:15:03','2023-10-04 20:15:03',0,0,'103.126.169.137','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(217,2,NULL,'2023-10-06 01:28:48','2023-10-06 01:28:48',0,0,'49.83.108.74','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(218,2,NULL,'2023-10-06 10:47:16','2023-10-06 10:47:16',0,0,'191.101.237.163','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(219,2,NULL,'2023-10-06 17:04:11','2023-10-06 17:04:11',0,0,'23.81.61.54','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(220,2,NULL,'2023-10-08 06:11:28','2023-10-08 06:11:28',0,0,'103.76.164.83','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(221,2,NULL,'2023-10-08 10:24:12','2023-10-08 10:24:12',0,0,'64.42.179.51','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(222,2,NULL,'2023-10-08 21:46:50','2023-10-08 21:46:50',0,0,'23.105.6.125','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(223,2,NULL,'2023-10-09 12:55:35','2023-10-09 12:55:35',0,0,'64.226.59.9','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(224,2,NULL,'2023-10-09 18:32:56','2023-10-09 18:32:56',0,0,'108.74.98.231','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(225,2,NULL,'2023-10-09 19:25:01','2023-10-09 19:25:01',0,0,'64.42.179.51','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(226,2,NULL,'2023-10-09 23:59:21','2023-10-09 23:59:21',0,0,'172.241.186.166','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(227,2,NULL,'2023-10-10 02:20:51','2023-10-10 02:20:51',0,0,'64.42.179.51','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(228,2,NULL,'2023-10-12 11:13:14','2023-10-12 11:13:14',0,0,'64.42.179.51','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(229,2,NULL,'2023-10-13 06:20:55','2023-10-13 06:20:55',0,0,'64.42.179.51','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(230,2,NULL,'2023-10-19 22:58:07','2023-10-19 22:58:07',0,0,'136.0.246.153','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(231,2,NULL,'2023-10-21 10:56:32','2023-10-21 10:56:32',0,0,'23.81.61.131','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(232,2,NULL,'2023-10-23 09:50:05','2023-10-23 09:50:05',0,0,'107.167.244.51','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(233,2,NULL,'2023-10-24 16:16:13','2023-10-24 16:16:13',0,0,'192.184.204.182','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(234,2,NULL,'2023-10-25 07:03:09','2023-10-25 07:03:09',0,0,'199.249.230.7','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(235,2,NULL,'2023-10-25 17:13:47','2023-10-25 17:13:47',0,0,'37.19.197.215','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(236,2,NULL,'2023-10-26 10:40:49','2023-10-26 10:40:49',0,0,'196.19.240.196','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(237,2,NULL,'2023-10-26 22:13:10','2023-10-26 22:13:10',0,0,'198.8.92.147','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(238,2,NULL,'2023-10-28 06:23:45','2023-10-28 06:23:45',0,0,'89.149.15.59','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(239,2,NULL,'2023-10-29 08:34:52','2023-10-29 08:34:52',0,0,'102.165.55.222','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(240,2,NULL,'2023-10-29 17:05:43','2023-10-29 17:05:43',0,0,'199.249.230.27','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(241,2,NULL,'2023-10-30 05:53:05','2023-10-30 05:53:05',0,0,'199.249.230.27','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(242,2,NULL,'2023-10-30 08:13:11','2023-10-30 08:13:11',0,0,'199.249.230.27','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(243,2,NULL,'2023-10-31 14:52:41','2023-10-31 14:52:41',0,0,'185.173.144.186','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(244,2,NULL,'2023-11-01 21:28:53','2023-11-01 21:28:53',0,0,'23.82.109.3','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(245,2,NULL,'2023-11-02 14:21:00','2023-11-02 14:21:00',0,0,'102.129.235.136','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(246,2,NULL,'2023-11-04 14:16:30','2023-11-04 14:16:30',0,0,'146.70.212.87','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(247,1,NULL,'2023-11-06 12:58:51','2023-11-06 12:58:51',0,0,'37.139.53.191','https://www.meadowcroftwines.com/virtual-experiences/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(248,2,NULL,'2023-11-06 17:15:14','2023-11-06 17:15:14',0,0,'154.202.116.30','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(249,2,NULL,'2023-11-07 08:14:33','2023-11-07 08:14:33',0,0,'154.202.115.145','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(250,2,NULL,'2023-11-07 20:20:48','2023-11-07 20:20:48',0,0,'23.80.166.244','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(251,2,NULL,'2023-11-07 22:46:24','2023-11-07 22:46:24',0,0,'76.174.5.28','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(252,2,NULL,'2023-11-08 15:36:03','2023-11-08 15:36:03',0,0,'64.42.179.43','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(253,2,NULL,'2023-11-12 14:20:18','2023-11-12 14:20:18',0,0,'64.42.179.43','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(254,2,NULL,'2023-11-13 22:16:43','2023-11-13 22:16:43',0,0,'69.130.11.132','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(255,2,NULL,'2023-11-16 13:29:13','2023-11-16 13:29:13',0,0,'154.202.117.252','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(256,2,NULL,'2023-11-20 15:11:22','2023-11-20 15:11:22',0,0,'23.81.61.54','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(257,2,NULL,'2023-11-20 17:00:32','2023-11-20 17:00:32',0,0,'23.106.193.28','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(258,2,NULL,'2023-11-21 11:12:06','2023-11-21 11:12:06',0,0,'146.70.181.246','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(259,2,NULL,'2023-11-21 14:02:16','2023-11-21 14:02:16',0,0,'198.96.95.166','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(260,2,NULL,'2023-11-21 23:32:48','2023-11-21 23:32:48',0,0,'69.250.204.57','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(261,2,NULL,'2023-11-22 20:05:52','2023-11-22 20:05:52',0,0,'172.111.185.8','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(262,2,NULL,'2023-11-23 07:03:31','2023-11-23 07:03:31',0,0,'172.245.166.9','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(263,2,NULL,'2023-11-24 06:10:08','2023-11-24 06:10:08',0,0,'173.234.227.205','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(264,2,NULL,'2023-11-24 20:06:46','2023-11-24 20:06:46',0,0,'166.216.158.76','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/119.0.6045.169 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(265,2,NULL,'2023-11-24 22:08:04','2023-11-24 22:08:04',0,0,'102.165.54.245','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(266,2,NULL,'2023-11-25 17:29:08','2023-11-25 17:29:08',0,0,'154.202.99.15','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(267,2,NULL,'2023-11-27 09:41:10','2023-11-27 09:41:10',0,0,'64.42.179.43','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(268,2,NULL,'2023-11-27 10:16:40','2023-11-27 10:16:40',0,0,'85.203.34.54','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(269,2,NULL,'2023-11-27 14:16:34','2023-11-27 14:16:34',0,0,'194.36.98.211','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(270,2,NULL,'2023-11-29 19:34:34','2023-11-29 19:34:34',0,0,'138.199.43.35','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(271,2,NULL,'2023-12-01 09:13:32','2023-12-01 09:13:32',0,0,'5.182.110.250','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(272,2,NULL,'2023-12-02 11:10:37','2023-12-02 11:10:37',0,0,'155.138.211.200','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(273,2,NULL,'2023-12-02 17:06:36','2023-12-02 17:06:36',0,0,'156.227.14.222','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(274,2,NULL,'2023-12-03 08:34:04','2023-12-03 08:34:04',0,0,'64.42.179.43','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(275,2,NULL,'2023-12-04 05:50:46','2023-12-04 05:50:46',0,0,'104.143.245.182','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(276,2,NULL,'2023-12-04 20:02:14','2023-12-04 20:02:14',0,0,'154.202.98.122','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(277,2,NULL,'2023-12-04 20:10:39','2023-12-04 20:10:39',0,0,'23.81.49.161','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(278,2,NULL,'2023-12-07 02:15:09','2023-12-07 02:15:09',0,0,'5.254.43.249','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(279,2,NULL,'2023-12-08 21:06:09','2023-12-08 21:06:09',0,0,'194.36.99.215','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(280,2,NULL,'2023-12-09 01:47:13','2023-12-09 01:47:13',0,0,'154.202.96.196','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(281,2,NULL,'2023-12-13 23:49:19','2023-12-13 23:49:19',0,0,'193.37.33.225','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(282,2,NULL,'2023-12-14 00:34:33','2023-12-14 00:34:33',0,0,'138.199.43.16','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(283,2,NULL,'2023-12-14 19:22:37','2023-12-14 19:22:37',0,0,'172.245.166.148','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(284,2,NULL,'2023-12-16 17:45:09','2023-12-16 17:45:09',0,0,'107.10.227.186','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(285,2,NULL,'2023-12-18 18:35:01','2023-12-18 18:35:01',0,0,'108.245.44.161','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(286,2,NULL,'2023-12-21 13:35:32','2023-12-21 13:35:32',0,0,'5.254.108.217','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(287,2,NULL,'2023-12-21 14:43:15','2023-12-21 14:43:15',0,0,'178.159.37.28','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(288,2,NULL,'2023-12-21 17:30:34','2023-12-21 17:30:34',0,0,'106.193.204.228','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(289,2,NULL,'2023-12-21 18:29:10','2023-12-21 18:29:10',0,0,'198.46.150.55','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(290,2,NULL,'2023-12-22 10:21:21','2023-12-22 10:21:21',0,0,'104.168.132.32','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(291,2,NULL,'2023-12-27 08:24:49','2023-12-27 08:24:49',0,0,'192.177.188.145','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(292,2,NULL,'2023-12-28 07:12:26','2023-12-28 07:12:26',0,0,'39.44.26.164','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(293,2,NULL,'2023-12-29 12:08:16','2023-12-29 12:08:16',0,0,'45.146.54.4','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(294,2,NULL,'2023-12-31 15:53:37','2023-12-31 15:53:37',0,0,'196.18.229.228','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(295,2,NULL,'2024-01-04 09:01:14','2024-01-04 09:01:14',0,0,'104.168.133.185','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(296,2,NULL,'2024-01-04 13:41:54','2024-01-04 13:41:54',0,0,'103.176.135.236','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(297,2,NULL,'2024-01-04 15:22:44','2024-01-04 15:22:44',0,0,'172.94.48.11','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(298,2,NULL,'2024-01-04 20:28:23','2024-01-04 20:28:23',0,0,'104.223.157.73','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(299,2,NULL,'2024-01-11 07:24:33','2024-01-11 07:24:33',0,0,'119.56.111.223','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(300,2,NULL,'2024-01-11 16:48:21','2024-01-11 16:48:21',0,0,'87.249.134.176','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(301,2,NULL,'2024-01-11 21:37:06','2024-01-11 21:37:06',0,0,'198.217.64.105','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(302,2,NULL,'2024-01-11 22:04:27','2024-01-11 22:04:27',0,0,'23.117.150.231','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(303,2,NULL,'2024-01-12 04:13:38','2024-01-12 04:13:38',0,0,'104.168.144.126','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(304,2,NULL,'2024-01-14 07:45:04','2024-01-14 07:45:04',0,0,'154.202.106.223','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(305,2,NULL,'2024-01-14 19:12:47','2024-01-14 19:12:47',0,0,'185.104.216.209','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(306,2,NULL,'2024-01-16 06:57:20','2024-01-16 06:57:20',0,0,'104.129.36.83','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(307,2,NULL,'2024-01-16 09:43:40','2024-01-16 09:43:40',0,0,'212.30.37.66','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(308,2,NULL,'2024-01-16 23:22:07','2024-01-16 23:22:07',0,0,'166.107.98.51','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(309,2,NULL,'2024-01-17 23:23:39','2024-01-17 23:23:39',0,0,'67.207.118.12','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(310,2,NULL,'2024-01-18 01:28:47','2024-01-18 01:28:47',0,0,'45.134.142.77','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(311,2,NULL,'2024-01-19 09:50:08','2024-01-19 09:50:08',0,0,'23.83.81.211','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(312,2,NULL,'2024-01-20 05:40:28','2024-01-20 05:40:28',0,0,'104.168.133.163','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(313,2,NULL,'2024-01-21 20:06:49','2024-01-21 20:06:49',0,0,'23.81.59.23','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(314,2,NULL,'2024-01-22 13:11:27','2024-01-22 13:11:27',0,0,'104.168.141.135','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(315,2,NULL,'2024-01-23 21:08:39','2024-01-23 21:08:39',0,0,'107.175.26.145','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(316,2,NULL,'2024-01-25 06:10:53','2024-01-25 06:10:53',0,0,'154.202.98.127','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(317,2,NULL,'2024-01-26 13:22:56','2024-01-26 13:22:56',0,0,'23.27.3.197','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(318,2,NULL,'2024-01-27 18:33:55','2024-01-27 18:33:55',0,0,'104.247.208.135','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(319,2,NULL,'2024-01-27 20:10:51','2024-01-27 20:10:51',0,0,'23.27.3.197','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(320,2,NULL,'2024-01-29 02:50:09','2024-01-29 02:50:09',0,0,'192.241.118.20','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(321,2,NULL,'2024-01-29 22:39:59','2024-01-29 22:39:59',0,0,'223.178.210.81','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(322,2,NULL,'2024-01-30 17:08:48','2024-01-30 17:08:48',0,0,'24.70.208.60','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(323,2,NULL,'2024-02-04 01:13:55','2024-02-04 01:13:55',0,0,'50.114.85.63','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(324,2,NULL,'2024-02-04 05:59:13','2024-02-04 05:59:13',0,0,'104.168.163.10','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(325,2,NULL,'2024-02-05 19:42:34','2024-02-05 19:42:34',0,0,'162.211.34.182','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (iPhone; CPU iPhone OS 17_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(326,2,NULL,'2024-02-06 02:43:52','2024-02-06 02:43:52',0,0,'196.19.240.7','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(327,2,NULL,'2024-02-08 19:16:27','2024-02-08 19:16:27',0,0,'172.15.14.27','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (iPhone; CPU iPhone OS 17_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(328,2,NULL,'2024-02-09 21:37:25','2024-02-09 21:37:25',0,0,'37.112.86.95','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(329,2,NULL,'2024-02-10 17:38:58','2024-02-10 17:38:58',0,0,'84.54.147.59','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(330,2,NULL,'2024-02-11 01:05:22','2024-02-11 01:05:22',0,0,'23.106.16.235','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(331,2,NULL,'2024-02-14 10:05:23','2024-02-14 10:05:23',0,0,'104.168.163.85','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(332,2,NULL,'2024-02-15 20:14:22','2024-02-15 20:14:22',0,0,'3.16.28.56','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(333,2,NULL,'2024-02-15 23:02:47','2024-02-15 23:02:47',0,0,'24.180.12.1','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(334,2,NULL,'2024-02-16 11:26:49','2024-02-16 11:26:49',0,0,'122.162.151.141','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(335,2,NULL,'2024-02-17 15:14:21','2024-02-17 15:14:21',0,0,'5.167.111.147','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(336,2,NULL,'2024-02-20 00:34:37','2024-02-20 00:34:37',0,0,'172.255.93.254','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(337,2,NULL,'2024-02-20 01:10:23','2024-02-20 01:10:23',0,0,'104.247.208.135','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(338,2,NULL,'2024-02-22 18:59:00','2024-02-22 18:59:00',0,0,'74.115.0.228','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(339,2,NULL,'2024-02-23 00:41:51','2024-02-23 00:41:51',0,0,'24.117.36.101','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(340,2,NULL,'2024-02-23 14:46:34','2024-02-23 14:46:34',0,0,'162.0.207.157','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 Edg/121.0.0.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(341,2,NULL,'2024-02-26 09:43:29','2024-02-26 09:43:29',0,0,'5.165.129.37','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(342,2,NULL,'2024-02-27 12:30:44','2024-02-27 12:30:44',0,0,'82.16.45.40','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(343,2,NULL,'2024-02-28 04:53:33','2024-02-28 04:53:33',0,0,'23.108.24.13','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(344,2,NULL,'2024-02-29 17:47:25','2024-02-29 17:47:25',0,0,'108.165.218.94','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(345,2,NULL,'2024-03-01 01:06:51','2024-03-01 01:06:51',0,0,'46.173.62.18','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(346,2,NULL,'2024-03-01 16:47:07','2024-03-01 16:47:07',0,0,'69.181.178.129','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(347,2,NULL,'2024-03-03 21:56:40','2024-03-03 21:56:40',0,0,'166.1.13.230','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(348,2,NULL,'2024-03-04 20:26:20','2024-03-04 20:26:20',0,0,'82.16.45.40','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(349,2,NULL,'2024-03-05 00:05:15','2024-03-05 00:05:15',0,0,'23.26.229.184','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(350,2,NULL,'2024-03-05 09:05:05','2024-03-05 09:05:05',0,0,'82.16.45.40','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(351,2,NULL,'2024-03-06 02:38:50','2024-03-06 02:38:50',0,0,'73.74.148.49','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(352,2,NULL,'2024-03-06 04:54:36','2024-03-06 04:54:36',0,0,'82.16.45.40','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(353,2,NULL,'2024-03-06 19:02:41','2024-03-06 19:02:41',0,0,'138.59.206.157','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(354,2,NULL,'2024-03-06 22:15:14','2024-03-06 22:15:14',0,0,'82.16.45.40','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(355,2,NULL,'2024-03-07 07:40:12','2024-03-07 07:40:12',0,0,'82.16.45.40','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(356,2,NULL,'2024-03-08 01:03:21','2024-03-08 01:03:21',0,0,'82.16.45.40','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(357,2,NULL,'2024-03-08 06:02:32','2024-03-08 06:02:32',0,0,'122.162.151.231','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(358,2,NULL,'2024-03-08 11:07:22','2024-03-08 11:07:22',0,0,'146.70.121.178','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(359,2,NULL,'2024-03-08 14:30:58','2024-03-08 14:30:58',0,0,'82.16.45.40','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(360,2,NULL,'2024-03-08 19:01:18','2024-03-08 19:01:18',0,0,'82.16.45.40','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(361,2,NULL,'2024-03-09 14:30:56','2024-03-09 14:30:56',0,0,'173.237.197.142','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(362,2,NULL,'2024-03-09 21:52:38','2024-03-09 21:52:38',0,0,'173.237.197.142','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(363,2,NULL,'2024-03-10 07:36:48','2024-03-10 07:36:48',0,0,'173.237.197.142','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(364,2,NULL,'2024-03-10 16:39:31','2024-03-10 16:39:31',0,0,'173.237.197.142','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(365,2,NULL,'2024-03-11 23:19:15','2024-03-11 23:19:15',0,0,'70.32.3.35','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(366,2,NULL,'2024-03-12 00:52:31','2024-03-12 00:52:31',0,0,'70.32.3.35','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(367,2,NULL,'2024-03-12 19:08:57','2024-03-12 19:08:57',0,0,'136.0.119.19','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(368,2,NULL,'2024-03-12 19:44:33','2024-03-12 19:44:33',0,0,'70.32.3.35','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(369,2,NULL,'2024-03-13 21:38:45','2024-03-13 21:38:45',0,0,'154.202.98.132','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(370,2,NULL,'2024-03-15 02:48:32','2024-03-15 02:48:32',0,0,'191.96.106.156','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(371,2,NULL,'2024-03-15 16:45:15','2024-03-15 16:45:15',0,0,'45.86.200.151','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(372,2,NULL,'2024-03-15 22:09:15','2024-03-15 22:09:15',0,0,'85.186.138.170','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(373,2,NULL,'2024-03-16 01:24:43','2024-03-16 01:24:43',0,0,'23.26.229.184','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(374,2,NULL,'2024-03-16 10:48:25','2024-03-16 10:48:25',0,0,'154.202.110.224','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(375,2,NULL,'2024-03-16 20:06:48','2024-03-16 20:06:48',0,0,'23.108.50.224','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(376,2,NULL,'2024-03-17 14:40:10','2024-03-17 14:40:10',0,0,'104.247.208.77','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(377,2,NULL,'2024-03-20 05:00:54','2024-03-20 05:00:54',0,0,'154.202.101.56','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(378,2,NULL,'2024-03-20 06:10:03','2024-03-20 06:10:03',0,0,'38.170.252.135','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(379,2,NULL,'2024-03-20 07:08:46','2024-03-20 07:08:46',0,0,'122.162.149.251','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(380,2,NULL,'2024-03-20 09:18:32','2024-03-20 09:18:32',0,0,'216.250.255.209','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(381,2,NULL,'2024-03-20 11:26:54','2024-03-20 11:26:54',0,0,'27.107.131.83','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(382,2,NULL,'2024-03-20 14:34:37','2024-03-20 14:34:37',0,0,'45.132.224.136','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(383,2,NULL,'2024-03-20 19:07:58','2024-03-20 19:07:58',0,0,'196.196.254.19','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(384,2,NULL,'2024-03-20 23:39:41','2024-03-20 23:39:41',0,0,'71.166.60.99','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (iPhone; CPU iPhone OS 17_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(385,2,NULL,'2024-03-21 11:36:27','2024-03-21 11:36:27',0,0,'45.134.20.80','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(386,2,NULL,'2024-03-21 11:59:40','2024-03-21 11:59:40',0,0,'200.71.126.55','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(387,2,NULL,'2024-03-21 18:53:13','2024-03-21 18:53:13',0,0,'98.37.120.247','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2.1 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(388,2,NULL,'2024-03-23 15:10:54','2024-03-23 15:10:54',0,0,'23.81.205.137','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(389,2,NULL,'2024-03-24 05:53:58','2024-03-24 05:53:58',0,0,'45.8.17.103','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(390,2,NULL,'2024-03-24 09:42:44','2024-03-24 09:42:44',0,0,'191.101.174.38','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(391,2,NULL,'2024-03-26 14:49:05','2024-03-26 14:49:05',0,0,'104.28.124.182','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (iPhone; CPU iPhone OS 17_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(392,2,NULL,'2024-03-26 14:51:16','2024-03-26 14:51:16',0,0,'104.28.124.182','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (iPhone; CPU iPhone OS 17_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(393,2,NULL,'2024-03-27 04:17:58','2024-03-27 04:17:58',0,0,'191.96.67.246','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(394,2,NULL,'2024-03-28 02:46:50','2024-03-28 02:46:50',0,0,'177.234.143.91','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(395,2,NULL,'2024-03-28 16:54:35','2024-03-28 16:54:35',0,0,'76.71.129.226','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(396,2,NULL,'2024-03-28 21:14:28','2024-03-28 21:14:28',0,0,'204.93.149.118','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(397,2,NULL,'2024-03-29 21:50:12','2024-03-29 21:50:12',0,0,'163.5.241.100','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(398,2,NULL,'2024-03-30 04:38:25','2024-03-30 04:38:25',0,0,'146.70.189.241','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(399,2,NULL,'2024-03-31 03:46:44','2024-03-31 03:46:44',0,0,'104.206.81.109','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(400,2,NULL,'2024-03-31 05:35:15','2024-03-31 05:35:15',0,0,'102.129.235.65','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(401,2,NULL,'2024-03-31 06:37:15','2024-03-31 06:37:15',0,0,'173.239.218.238','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(402,2,NULL,'2024-04-01 12:21:12','2024-04-01 12:21:12',0,0,'104.168.140.130','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(403,2,NULL,'2024-04-02 13:11:01','2024-04-02 13:11:01',0,0,'223.233.76.181','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(404,2,NULL,'2024-04-03 03:40:50','2024-04-03 03:40:50',0,0,'154.202.112.20','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(405,2,NULL,'2024-04-03 09:59:48','2024-04-03 09:59:48',0,0,'154.202.108.51','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(406,2,NULL,'2024-04-03 11:50:12','2024-04-03 11:50:12',0,0,'165.140.199.219','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(407,2,NULL,'2024-04-05 03:28:04','2024-04-05 03:28:04',0,0,'23.105.147.179','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(408,2,NULL,'2024-04-05 05:05:59','2024-04-05 05:05:59',0,0,'84.247.59.190','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(409,2,NULL,'2024-04-06 00:25:34','2024-04-06 00:25:34',0,0,'193.37.33.134','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(410,2,NULL,'2024-04-06 23:38:53','2024-04-06 23:38:53',0,0,'95.164.111.196','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(411,2,NULL,'2024-04-07 03:19:20','2024-04-07 03:19:20',0,0,'163.5.241.78','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(412,2,NULL,'2024-04-09 16:42:26','2024-04-09 16:42:26',0,0,'191.102.181.83','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(413,2,NULL,'2024-04-09 17:36:12','2024-04-09 17:36:12',0,0,'124.253.183.159','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(414,2,NULL,'2024-04-09 18:42:52','2024-04-09 18:42:52',0,0,'223.233.72.219','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(415,2,NULL,'2024-04-11 02:58:17','2024-04-11 02:58:17',0,0,'71.202.244.105','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_7_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(416,2,NULL,'2024-04-12 07:43:28','2024-04-12 07:43:28',0,0,'149.71.182.175','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(417,2,NULL,'2024-04-12 16:11:16','2024-04-12 16:11:16',0,0,'141.193.96.123','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(418,2,NULL,'2024-04-12 18:14:21','2024-04-12 18:14:21',0,0,'223.233.79.217','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(419,2,NULL,'2024-04-13 08:22:14','2024-04-13 08:22:14',0,0,'193.36.225.62','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(420,2,NULL,'2024-04-13 14:50:37','2024-04-13 14:50:37',0,0,'104.168.142.19','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(421,2,NULL,'2024-04-15 08:09:23','2024-04-15 08:09:23',0,0,'104.168.142.181','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(422,2,NULL,'2024-04-15 16:52:37','2024-04-15 16:52:37',0,0,'104.168.135.243','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(423,2,NULL,'2024-04-15 18:35:13','2024-04-15 18:35:13',0,0,'223.233.64.141','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(424,2,NULL,'2024-04-15 20:17:08','2024-04-15 20:17:08',0,0,'23.106.27.224','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(425,2,NULL,'2024-04-16 07:52:11','2024-04-16 07:52:11',0,0,'147.45.50.18','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(426,2,NULL,'2024-04-17 22:13:51','2024-04-17 22:13:51',0,0,'146.70.174.132','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(427,2,NULL,'2024-04-18 21:29:13','2024-04-18 21:29:13',0,0,'147.45.50.18','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(428,2,NULL,'2024-04-19 04:37:49','2024-04-19 04:37:49',0,0,'154.201.61.84','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(429,2,NULL,'2024-04-19 12:28:51','2024-04-19 12:28:51',0,0,'154.84.142.146','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(430,2,NULL,'2024-04-20 00:53:14','2024-04-20 00:53:14',0,0,'146.70.189.143','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(431,2,NULL,'2024-04-20 06:27:25','2024-04-20 06:27:25',0,0,'104.168.148.84','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(432,2,NULL,'2024-04-20 17:49:53','2024-04-20 17:49:53',0,0,'23.110.169.25','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(433,2,NULL,'2024-04-21 00:47:12','2024-04-21 00:47:12',0,0,'73.170.25.245','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.1.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(434,2,NULL,'2024-04-21 09:45:15','2024-04-21 09:45:15',0,0,'156.239.50.246','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(435,2,NULL,'2024-04-21 18:32:50','2024-04-21 18:32:50',0,0,'93.127.170.19','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(436,2,NULL,'2024-04-21 21:01:41','2024-04-21 21:01:41',0,0,'94.131.50.63','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(437,2,NULL,'2024-04-21 22:11:03','2024-04-21 22:11:03',0,0,'82.118.30.3','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(438,2,NULL,'2024-04-22 02:45:11','2024-04-22 02:45:11',0,0,'134.195.153.73','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(439,2,NULL,'2024-04-24 03:40:13','2024-04-24 03:40:13',0,0,'185.137.164.18','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(440,2,NULL,'2024-04-25 14:17:36','2024-04-25 14:17:36',0,0,'62.12.114.42','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(441,2,NULL,'2024-04-26 01:22:22','2024-04-26 01:22:22',0,0,'154.202.124.196','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(442,2,NULL,'2024-04-26 08:52:52','2024-04-26 08:52:52',0,0,'154.201.47.148','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(443,2,NULL,'2024-04-27 18:43:23','2024-04-27 18:43:23',0,0,'95.164.108.222','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(444,2,NULL,'2024-04-28 23:01:37','2024-04-28 23:01:37',0,0,'156.239.38.189','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(445,2,NULL,'2024-04-29 07:11:12','2024-04-29 07:11:12',0,0,'95.164.110.82','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(446,2,NULL,'2024-04-29 07:26:55','2024-04-29 07:26:55',0,0,'200.71.126.89','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(447,2,NULL,'2024-04-29 13:39:16','2024-04-29 13:39:16',0,0,'76.71.129.226','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(448,2,NULL,'2024-04-29 23:03:29','2024-04-29 23:03:29',0,0,'45.151.197.151','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(449,2,NULL,'2024-04-30 10:46:38','2024-04-30 10:46:38',0,0,'46.29.251.180','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(450,2,NULL,'2024-05-02 17:39:15','2024-05-02 17:39:15',0,0,'108.24.147.86','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 Edg/124.0.0.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(451,2,NULL,'2024-05-03 16:56:46','2024-05-03 16:56:46',0,0,'156.239.49.205','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(452,2,NULL,'2024-05-04 01:01:20','2024-05-04 01:01:20',0,0,'181.41.206.168','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(453,2,NULL,'2024-05-04 03:44:34','2024-05-04 03:44:34',0,0,'205.141.234.14','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36 Edg/123.0.0.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(454,2,NULL,'2024-05-04 07:44:16','2024-05-04 07:44:16',0,0,'149.88.19.15','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(455,2,NULL,'2024-05-05 03:45:33','2024-05-05 03:45:33',0,0,'179.48.251.105','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(456,2,NULL,'2024-05-05 10:12:49','2024-05-05 10:12:49',0,0,'23.81.59.116','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(457,2,NULL,'2024-05-06 10:52:20','2024-05-06 10:52:20',0,0,'104.168.132.201','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(458,2,NULL,'2024-05-07 00:13:42','2024-05-07 00:13:42',0,0,'23.83.131.52','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(459,2,NULL,'2024-05-07 11:23:23','2024-05-07 11:23:23',0,0,'161.0.12.47','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(460,2,NULL,'2024-05-08 06:10:15','2024-05-08 06:10:15',0,0,'45.11.172.35','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(461,2,NULL,'2024-05-08 08:21:44','2024-05-08 08:21:44',0,0,'104.168.149.129','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(462,2,NULL,'2024-05-09 04:56:49','2024-05-09 04:56:49',0,0,'154.201.37.50','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(463,2,NULL,'2024-05-10 01:28:49','2024-05-10 01:28:49',0,0,'45.130.202.180','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(464,2,NULL,'2024-05-10 05:27:51','2024-05-10 05:27:51',0,0,'156.239.52.69','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(465,2,NULL,'2024-05-11 00:18:39','2024-05-11 00:18:39',0,0,'156.239.49.71','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(466,2,NULL,'2024-05-13 05:21:42','2024-05-13 05:21:42',0,0,'45.130.202.120','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(467,2,NULL,'2024-05-13 14:51:51','2024-05-13 14:51:51',0,0,'23.82.111.30','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(468,2,NULL,'2024-05-13 16:04:31','2024-05-13 16:04:31',0,0,'209.239.115.169','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(469,2,NULL,'2024-05-13 20:04:43','2024-05-13 20:04:43',0,0,'76.202.64.42','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:125.0) Gecko/20100101 Firefox/125.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(470,2,NULL,'2024-05-14 02:07:55','2024-05-14 02:07:55',0,0,'181.41.206.48','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(471,2,NULL,'2024-05-14 15:55:44','2024-05-14 15:55:44',0,0,'172.241.244.81','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(472,2,NULL,'2024-05-15 08:15:48','2024-05-15 08:15:48',0,0,'191.96.106.227','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(473,2,NULL,'2024-05-16 03:05:02','2024-05-16 03:05:02',0,0,'156.239.62.126','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(474,2,NULL,'2024-05-16 05:41:34','2024-05-16 05:41:34',0,0,'23.95.97.94','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(475,2,NULL,'2024-05-16 08:12:41','2024-05-16 08:12:41',0,0,'178.239.175.167','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(476,2,NULL,'2024-05-16 18:43:42','2024-05-16 18:43:42',0,0,'156.239.55.39','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(477,2,NULL,'2024-05-17 05:27:23','2024-05-17 05:27:23',0,0,'165.231.164.153','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(478,2,NULL,'2024-05-17 20:51:27','2024-05-17 20:51:27',0,0,'23.106.27.253','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(479,2,NULL,'2024-05-17 22:19:48','2024-05-17 22:19:48',0,0,'151.237.177.157','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(480,2,NULL,'2024-05-18 01:11:33','2024-05-18 01:11:33',0,0,'175.136.175.104','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(481,2,NULL,'2024-05-19 03:43:24','2024-05-19 03:43:24',0,0,'156.239.55.49','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(482,2,NULL,'2024-05-19 08:17:54','2024-05-19 08:17:54',0,0,'82.135.211.130','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(483,2,NULL,'2024-05-20 07:04:04','2024-05-20 07:04:04',0,0,'204.8.98.95','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(484,2,NULL,'2024-05-20 17:40:19','2024-05-20 17:40:19',0,0,'198.203.28.226','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(485,2,NULL,'2024-05-21 13:41:28','2024-05-21 13:41:28',0,0,'156.239.55.60','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(486,2,NULL,'2024-05-22 23:32:02','2024-05-22 23:32:02',0,0,'37.140.254.222','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(487,2,NULL,'2024-05-24 10:54:17','2024-05-24 10:54:17',0,0,'104.168.149.176','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(488,2,NULL,'2024-05-25 07:46:51','2024-05-25 07:46:51',0,0,'181.214.218.143','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(489,2,NULL,'2024-05-25 08:49:38','2024-05-25 08:49:38',0,0,'104.168.204.105','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(490,2,NULL,'2024-05-25 20:37:01','2024-05-25 20:37:01',0,0,'154.201.38.39','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(491,2,NULL,'2024-05-26 04:34:58','2024-05-26 04:34:58',0,0,'5.254.18.152','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(492,2,NULL,'2024-05-26 09:55:52','2024-05-26 09:55:52',0,0,'104.168.133.110','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(493,2,NULL,'2024-05-26 17:42:57','2024-05-26 17:42:57',0,0,'64.42.179.35','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(494,2,NULL,'2024-05-27 10:28:05','2024-05-27 10:28:05',0,0,'104.168.136.66','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(495,2,NULL,'2024-05-29 04:02:15','2024-05-29 04:02:15',0,0,'138.199.59.58','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(496,2,NULL,'2024-05-29 14:10:49','2024-05-29 14:10:49',0,0,'12.156.12.236','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(497,2,NULL,'2024-05-29 15:30:56','2024-05-29 15:30:56',0,0,'50.116.29.136','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5042.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(498,2,NULL,'2024-05-29 16:05:16','2024-05-29 16:05:16',0,0,'156.239.53.192','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(499,2,NULL,'2024-05-30 09:56:10','2024-05-30 09:56:10',0,0,'98.159.226.157','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(500,2,NULL,'2024-05-30 10:49:37','2024-05-30 10:49:37',0,0,'104.168.141.99','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(501,2,NULL,'2024-05-30 13:41:37','2024-05-30 13:41:37',0,0,'38.153.14.190','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(502,2,NULL,'2024-05-31 01:22:08','2024-05-31 01:22:08',0,0,'156.239.50.4','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(503,2,NULL,'2024-05-31 01:47:46','2024-05-31 01:47:46',0,0,'179.61.245.13','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(504,2,NULL,'2024-05-31 11:10:41','2024-05-31 11:10:41',0,0,'156.239.55.9','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(505,2,NULL,'2024-05-31 11:11:03','2024-05-31 11:11:03',0,0,'113.199.228.183','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(506,2,NULL,'2024-06-01 00:00:07','2024-06-01 00:00:07',0,0,'38.153.15.29','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(507,2,NULL,'2024-06-02 08:07:24','2024-06-02 08:07:24',0,0,'198.240.90.197','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(508,2,NULL,'2024-06-04 04:07:16','2024-06-04 04:07:16',0,0,'104.168.147.72','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(509,2,NULL,'2024-06-04 10:49:53','2024-06-04 10:49:53',0,0,'104.168.146.231','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(510,2,NULL,'2024-06-04 20:12:14','2024-06-04 20:12:14',0,0,'37.1.211.74','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(511,2,NULL,'2024-06-05 01:32:45','2024-06-05 01:32:45',0,0,'46.37.120.111','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(512,2,NULL,'2024-06-05 14:32:05','2024-06-05 14:32:05',0,0,'34.151.223.208','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(513,2,NULL,'2024-06-05 15:57:08','2024-06-05 15:57:08',0,0,'91.217.249.53','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(514,2,NULL,'2024-06-05 16:00:32','2024-06-05 16:00:32',0,0,'37.1.211.74','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(515,2,NULL,'2024-06-05 19:09:22','2024-06-05 19:09:22',0,0,'23.106.27.66','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(516,2,NULL,'2024-06-05 23:28:10','2024-06-05 23:28:10',0,0,'174.227.167.127','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(517,2,NULL,'2024-06-07 15:09:58','2024-06-07 15:09:58',0,0,'165.231.165.77','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(518,2,NULL,'2024-06-08 04:15:43','2024-06-08 04:15:43',0,0,'93.115.7.123','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(519,2,NULL,'2024-06-08 05:21:50','2024-06-08 05:21:50',0,0,'185.240.33.198','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(520,2,NULL,'2024-06-09 11:26:37','2024-06-09 11:26:37',0,0,'37.1.211.74','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(521,2,NULL,'2024-06-11 07:22:57','2024-06-11 07:22:57',0,0,'223.233.69.70','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(522,2,NULL,'2024-06-11 23:15:40','2024-06-11 23:15:40',0,0,'172.98.71.106','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(523,2,NULL,'2024-06-11 23:25:22','2024-06-11 23:25:22',0,0,'173.244.55.48','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(524,2,NULL,'2024-06-12 10:21:52','2024-06-12 10:21:52',0,0,'148.72.214.53','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.117 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(525,2,NULL,'2024-06-12 21:44:31','2024-06-12 21:44:31',0,0,'37.1.211.74','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(526,2,NULL,'2024-06-13 04:16:18','2024-06-13 04:16:18',0,0,'186.65.112.225','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(527,2,NULL,'2024-06-13 06:29:34','2024-06-13 06:29:34',0,0,'141.11.36.51','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(528,2,NULL,'2024-06-15 11:33:15','2024-06-15 11:33:15',0,0,'38.152.230.63','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(529,2,NULL,'2024-06-15 12:25:33','2024-06-15 12:25:33',0,0,'46.37.121.67','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(530,2,NULL,'2024-06-15 19:51:05','2024-06-15 19:51:05',0,0,'194.32.120.16','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(531,2,NULL,'2024-06-17 15:59:22','2024-06-17 15:59:22',0,0,'75.55.136.221','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:127.0) Gecko/20100101 Firefox/127.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(532,2,NULL,'2024-06-17 16:39:53','2024-06-17 16:39:53',0,0,'156.239.51.23','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(533,2,NULL,'2024-06-17 17:55:33','2024-06-17 17:55:33',0,0,'104.28.85.64','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(534,2,NULL,'2024-06-17 22:01:20','2024-06-17 22:01:20',0,0,'172.94.95.22','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(535,2,NULL,'2024-06-18 05:03:33','2024-06-18 05:03:33',0,0,'23.230.167.103','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(536,2,NULL,'2024-06-18 10:07:06','2024-06-18 10:07:06',0,0,'104.168.134.182','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(537,2,NULL,'2024-06-19 01:05:56','2024-06-19 01:05:56',0,0,'146.70.15.44','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(538,2,NULL,'2024-06-19 03:26:55','2024-06-19 03:26:55',0,0,'23.230.167.216','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(539,2,NULL,'2024-06-19 06:01:36','2024-06-19 06:01:36',0,0,'172.94.95.22','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(540,2,NULL,'2024-06-19 08:56:59','2024-06-19 08:56:59',0,0,'46.37.123.58','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(541,2,NULL,'2024-06-19 14:55:16','2024-06-19 14:55:16',0,0,'194.5.53.45','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(542,2,NULL,'2024-06-20 06:27:18','2024-06-20 06:27:18',0,0,'85.203.45.158','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(543,2,NULL,'2024-06-20 12:33:13','2024-06-20 12:33:13',0,0,'104.168.173.97','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(544,2,NULL,'2024-06-20 17:33:29','2024-06-20 17:33:29',0,0,'223.233.74.9','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(545,2,NULL,'2024-06-21 01:44:35','2024-06-21 01:44:35',0,0,'98.249.216.127','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(546,2,NULL,'2024-06-21 22:52:05','2024-06-21 22:52:05',0,0,'156.239.50.139','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(547,2,NULL,'2024-06-22 00:14:33','2024-06-22 00:14:33',0,0,'23.230.167.135','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(548,2,NULL,'2024-06-22 00:15:06','2024-06-22 00:15:06',0,0,'23.230.167.135','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(549,2,NULL,'2024-06-22 04:49:41','2024-06-22 04:49:41',0,0,'156.239.62.168','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(550,2,NULL,'2024-06-22 07:35:10','2024-06-22 07:35:10',0,0,'5.62.49.135','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(551,2,NULL,'2024-06-23 00:44:45','2024-06-23 00:44:45',0,0,'156.239.55.110','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(552,2,NULL,'2024-06-23 08:06:01','2024-06-23 08:06:01',0,0,'104.168.141.156','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(553,2,NULL,'2024-06-23 10:05:01','2024-06-23 10:05:01',0,0,'116.88.144.230','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(554,2,NULL,'2024-06-24 16:16:43','2024-06-24 16:16:43',0,0,'104.168.146.241','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(555,2,NULL,'2024-06-24 17:33:25','2024-06-24 17:33:25',0,0,'184.185.2.12','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.12785 YaBrowser/13.12.1599.12785 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(556,2,NULL,'2024-06-25 01:06:24','2024-06-25 01:06:24',0,0,'104.168.142.121','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(557,2,NULL,'2024-06-25 02:37:51','2024-06-25 02:37:51',0,0,'156.239.51.36','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(558,2,NULL,'2024-06-25 14:42:53','2024-06-25 14:42:53',0,0,'196.199.10.93','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(559,2,NULL,'2024-06-26 09:54:15','2024-06-26 09:54:15',0,0,'156.239.51.12','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(560,2,NULL,'2024-06-26 16:57:31','2024-06-26 16:57:31',0,0,'45.130.81.16','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(561,2,NULL,'2024-06-26 23:26:51','2024-06-26 23:26:51',0,0,'146.70.15.32','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(562,2,NULL,'2024-06-27 17:22:55','2024-06-27 17:22:55',0,0,'223.233.71.59','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(563,2,NULL,'2024-06-28 06:27:51','2024-06-28 06:27:51',0,0,'216.73.163.237','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(564,2,NULL,'2024-06-28 07:32:35','2024-06-28 07:32:35',0,0,'38.152.137.25','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(565,2,NULL,'2024-06-28 15:57:34','2024-06-28 15:57:34',0,0,'23.230.167.95','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(566,2,NULL,'2024-06-29 11:11:11','2024-06-29 11:11:11',0,0,'154.21.221.198','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(567,2,NULL,'2024-06-30 23:41:27','2024-06-30 23:41:27',0,0,'45.150.170.221','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(568,2,NULL,'2024-07-01 07:58:44','2024-07-01 07:58:44',0,0,'185.132.186.87','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(569,2,NULL,'2024-07-01 12:24:36','2024-07-01 12:24:36',0,0,'156.239.52.194','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(570,2,NULL,'2024-07-03 01:52:02','2024-07-03 01:52:02',0,0,'212.30.33.82','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(571,2,NULL,'2024-07-04 04:52:26','2024-07-04 04:52:26',0,0,'38.152.230.180','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(572,2,NULL,'2024-07-04 10:18:41','2024-07-04 10:18:41',0,0,'104.168.164.158','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(573,2,NULL,'2024-07-04 18:00:24','2024-07-04 18:00:24',0,0,'223.233.74.182','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(574,2,NULL,'2024-07-05 05:01:57','2024-07-05 05:01:57',0,0,'38.152.237.168','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(575,2,NULL,'2024-07-05 17:21:40','2024-07-05 17:21:40',0,0,'156.239.36.7','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(576,2,NULL,'2024-07-05 18:04:34','2024-07-05 18:04:34',0,0,'223.233.66.221','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(577,2,NULL,'2024-07-05 19:11:13','2024-07-05 19:11:13',0,0,'47.25.114.113','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(578,2,NULL,'2024-07-06 03:49:38','2024-07-06 03:49:38',0,0,'193.34.73.20','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(579,2,NULL,'2024-07-06 07:03:08','2024-07-06 07:03:08',0,0,'45.67.99.33','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(580,2,NULL,'2024-07-07 11:31:44','2024-07-07 11:31:44',0,0,'154.202.126.208','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(581,2,NULL,'2024-07-08 20:38:43','2024-07-08 20:38:43',0,0,'185.137.164.10','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(582,2,NULL,'2024-07-09 04:47:24','2024-07-09 04:47:24',0,0,'70.113.40.230','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(583,2,NULL,'2024-07-09 18:48:39','2024-07-09 18:48:39',0,0,'203.23.179.39','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(584,2,NULL,'2024-07-10 20:37:25','2024-07-10 20:37:25',0,0,'156.239.48.66','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(585,2,NULL,'2024-07-12 06:11:38','2024-07-12 06:11:38',0,0,'104.168.165.88','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(586,2,NULL,'2024-07-12 21:43:01','2024-07-12 21:43:01',0,0,'223.179.130.92','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(587,2,NULL,'2024-07-13 00:27:16','2024-07-13 00:27:16',0,0,'165.231.159.72','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(588,2,NULL,'2024-07-13 15:27:46','2024-07-13 15:27:46',0,0,'156.239.50.157','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(589,2,NULL,'2024-07-13 19:13:40','2024-07-13 19:13:40',0,0,'67.168.133.212','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2.1 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(590,2,NULL,'2024-07-13 19:54:01','2024-07-13 19:54:01',0,0,'223.179.137.220','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(591,2,NULL,'2024-07-14 13:44:07','2024-07-14 13:44:07',0,0,'156.239.55.138','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(592,2,NULL,'2024-07-14 20:37:26','2024-07-14 20:37:26',0,0,'46.37.123.104','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(593,2,NULL,'2024-07-16 23:26:44','2024-07-16 23:26:44',0,0,'45.27.24.36','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(594,2,NULL,'2024-07-20 00:13:29','2024-07-20 00:13:29',0,0,'185.192.16.206','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(595,2,NULL,'2024-07-20 05:37:04','2024-07-20 05:37:04',0,0,'38.152.206.112','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(596,2,NULL,'2024-07-21 05:33:21','2024-07-21 05:33:21',0,0,'185.132.187.72','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(597,2,NULL,'2024-07-21 07:04:19','2024-07-21 07:04:19',0,0,'216.73.160.197','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(598,2,NULL,'2024-07-21 16:10:13','2024-07-21 16:10:13',0,0,'196.247.213.63','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(599,2,NULL,'2024-07-22 12:59:20','2024-07-22 12:59:20',0,0,'96.255.205.112','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(600,2,NULL,'2024-07-22 23:36:17','2024-07-22 23:36:17',0,0,'69.181.129.221','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(601,2,NULL,'2024-07-23 13:32:16','2024-07-23 13:32:16',0,0,'46.37.120.128','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(602,2,NULL,'2024-07-23 17:46:41','2024-07-23 17:46:41',0,0,'23.27.240.214','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(603,2,NULL,'2024-07-24 00:36:02','2024-07-24 00:36:02',0,0,'173.239.216.36','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(604,2,NULL,'2024-07-24 02:14:39','2024-07-24 02:14:39',0,0,'47.153.114.123','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(605,2,NULL,'2024-07-24 21:15:22','2024-07-24 21:15:22',0,0,'156.239.50.214','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(606,2,NULL,'2024-07-25 03:14:20','2024-07-25 03:14:20',0,0,'98.159.226.16','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(607,2,NULL,'2024-07-26 00:34:53','2024-07-26 00:34:53',0,0,'75.216.230.116','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(608,2,NULL,'2024-07-26 07:48:02','2024-07-26 07:48:02',0,0,'98.159.226.4','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(609,2,NULL,'2024-07-26 12:02:40','2024-07-26 12:02:40',0,0,'23.230.167.143','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(610,2,NULL,'2024-07-26 19:45:10','2024-07-26 19:45:10',0,0,'46.37.121.7','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(611,2,NULL,'2024-07-27 00:01:27','2024-07-27 00:01:27',0,0,'169.150.208.143','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(612,2,NULL,'2024-07-27 02:17:44','2024-07-27 02:17:44',0,0,'62.146.181.41','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(613,2,NULL,'2024-07-27 02:38:47','2024-07-27 02:38:47',0,0,'223.233.79.172','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(614,2,NULL,'2024-07-27 15:57:18','2024-07-27 15:57:18',0,0,'168.151.213.151','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(615,2,NULL,'2024-07-30 16:32:47','2024-07-30 16:32:47',0,0,'185.217.119.3','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(616,2,NULL,'2024-07-30 17:00:32','2024-07-30 17:00:32',0,0,'23.27.240.238','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(617,2,NULL,'2024-07-31 01:58:19','2024-07-31 01:58:19',0,0,'203.159.81.41','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(618,2,NULL,'2024-07-31 04:56:02','2024-07-31 04:56:02',0,0,'38.153.1.178','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(619,2,NULL,'2024-07-31 08:18:57','2024-07-31 08:18:57',0,0,'179.61.228.11','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(620,2,NULL,'2024-08-01 01:44:04','2024-08-01 01:44:04',0,0,'37.120.138.17','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(621,2,NULL,'2024-08-01 04:25:09','2024-08-01 04:25:09',0,0,'37.1.211.74','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(622,2,NULL,'2024-08-02 18:11:56','2024-08-02 18:11:56',0,0,'223.233.65.212','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(623,2,NULL,'2024-08-02 21:40:13','2024-08-02 21:40:13',0,0,'156.239.62.66','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(624,2,NULL,'2024-08-03 15:10:07','2024-08-03 15:10:07',0,0,'46.37.120.67','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(625,2,NULL,'2024-08-03 15:45:26','2024-08-03 15:45:26',0,0,'46.37.120.31','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(626,2,NULL,'2024-08-03 21:32:41','2024-08-03 21:32:41',0,0,'38.153.251.174','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(627,2,NULL,'2024-08-04 20:11:31','2024-08-04 20:11:31',0,0,'185.92.26.70','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(628,2,NULL,'2024-08-05 09:48:17','2024-08-05 09:48:17',0,0,'138.199.59.238','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(629,2,NULL,'2024-08-05 14:27:07','2024-08-05 14:27:07',0,0,'169.150.205.144','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(630,2,NULL,'2024-08-06 12:04:54','2024-08-06 12:04:54',0,0,'163.5.241.27','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(631,2,NULL,'2024-08-07 10:17:28','2024-08-07 10:17:28',0,0,'91.90.120.140','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(632,2,NULL,'2024-08-09 08:52:49','2024-08-09 08:52:49',0,0,'37.1.211.74','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(633,2,NULL,'2024-08-10 00:06:40','2024-08-10 00:06:40',0,0,'104.168.174.175','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(634,2,NULL,'2024-08-12 11:50:13','2024-08-12 11:50:13',0,0,'5.157.29.140','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(635,2,NULL,'2024-08-12 14:07:53','2024-08-12 14:07:53',0,0,'38.153.15.236','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(636,2,NULL,'2024-08-13 03:22:57','2024-08-13 03:22:57',0,0,'45.86.203.183','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(637,2,NULL,'2024-08-14 08:53:59','2024-08-14 08:53:59',0,0,'156.239.50.84','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(638,2,NULL,'2024-08-15 06:33:27','2024-08-15 06:33:27',0,0,'216.24.212.241','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(639,2,NULL,'2024-08-15 10:34:17','2024-08-15 10:34:17',0,0,'165.231.35.189','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(640,2,NULL,'2024-08-15 17:04:15','2024-08-15 17:04:15',0,0,'84.239.27.163','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(641,2,NULL,'2024-08-15 20:14:37','2024-08-15 20:14:37',0,0,'196.57.225.94','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(642,2,NULL,'2024-08-17 03:41:07','2024-08-17 03:41:07',0,0,'5.157.14.41','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(643,2,NULL,'2024-08-19 05:58:42','2024-08-19 05:58:42',0,0,'46.37.120.210','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(644,2,NULL,'2024-08-19 14:02:53','2024-08-19 14:02:53',0,0,'156.239.50.113','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(645,2,NULL,'2024-08-19 16:45:04','2024-08-19 16:45:04',0,0,'38.152.206.86','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(646,2,NULL,'2024-08-20 01:59:18','2024-08-20 01:59:18',0,0,'5.254.18.145','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(647,2,NULL,'2024-08-20 03:50:22','2024-08-20 03:50:22',0,0,'38.152.237.117','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(648,2,NULL,'2024-08-20 21:04:20','2024-08-20 21:04:20',0,0,'156.239.62.243','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(649,2,NULL,'2024-08-21 19:53:31','2024-08-21 19:53:31',0,0,'109.110.169.17','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(650,2,NULL,'2024-08-22 19:48:18','2024-08-22 19:48:18',0,0,'104.168.152.96','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(651,2,NULL,'2024-08-22 23:09:44','2024-08-22 23:09:44',0,0,'38.152.206.141','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(652,2,NULL,'2024-08-23 04:49:24','2024-08-23 04:49:24',0,0,'162.224.82.35','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:129.0) Gecko/20100101 Firefox/129.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(653,2,NULL,'2024-08-23 11:09:02','2024-08-23 11:09:02',0,0,'23.230.167.159','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(654,2,NULL,'2024-08-24 05:36:31','2024-08-24 05:36:31',0,0,'46.37.120.171','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(655,2,NULL,'2024-08-26 19:06:58','2024-08-26 19:06:58',0,0,'45.134.142.75','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(656,2,NULL,'2024-08-27 04:05:48','2024-08-27 04:05:48',0,0,'108.165.232.35','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(657,2,NULL,'2024-08-27 23:11:59','2024-08-27 23:11:59',0,0,'100.10.71.212','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36 Edg/127.0.0.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(658,2,NULL,'2024-08-30 03:23:50','2024-08-30 03:23:50',0,0,'198.203.28.193','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(659,2,NULL,'2024-09-01 16:49:02','2024-09-01 16:49:02',0,0,'104.168.146.219','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(660,2,NULL,'2024-09-02 16:03:15','2024-09-02 16:03:15',0,0,'98.159.226.157','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(661,2,NULL,'2024-09-07 10:39:24','2024-09-07 10:39:24',0,0,'31.217.248.5','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(662,2,NULL,'2024-09-09 09:38:26','2024-09-09 09:38:26',0,0,'193.42.60.32','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(663,2,NULL,'2024-09-09 21:06:21','2024-09-09 21:06:21',0,0,'212.102.33.36','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(664,2,NULL,'2024-09-10 05:24:52','2024-09-10 05:24:52',0,0,'5.254.18.152','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(665,2,NULL,'2024-09-10 11:16:15','2024-09-10 11:16:15',0,0,'85.203.45.168','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(666,2,NULL,'2024-09-10 15:40:28','2024-09-10 15:40:28',0,0,'198.203.28.218','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(667,2,NULL,'2024-09-11 17:25:12','2024-09-11 17:25:12',0,0,'45.74.58.6','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(668,2,NULL,'2024-09-12 00:27:11','2024-09-12 00:27:11',0,0,'85.203.45.14','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(669,2,NULL,'2024-09-12 14:15:53','2024-09-12 14:15:53',0,0,'93.177.109.110','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(670,2,NULL,'2024-09-12 20:59:54','2024-09-12 20:59:54',0,0,'104.168.152.96','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(671,2,NULL,'2024-09-17 00:11:45','2024-09-17 00:11:45',0,0,'138.199.59.202','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(672,2,NULL,'2024-09-17 10:34:51','2024-09-17 10:34:51',0,0,'156.239.52.26','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(673,2,NULL,'2024-09-18 00:19:14','2024-09-18 00:19:14',0,0,'38.153.1.141','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(674,2,NULL,'2024-09-18 08:39:19','2024-09-18 08:39:19',0,0,'38.153.15.50','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(675,2,NULL,'2024-09-18 10:36:48','2024-09-18 10:36:48',0,0,'46.37.121.117','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(676,2,NULL,'2024-09-18 11:32:22','2024-09-18 11:32:22',0,0,'38.152.206.2','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(677,2,NULL,'2024-09-18 20:04:36','2024-09-18 20:04:36',0,0,'104.168.169.113','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(678,2,NULL,'2024-09-18 22:38:30','2024-09-18 22:38:30',0,0,'2.57.169.234','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(679,2,NULL,'2024-09-19 06:48:34','2024-09-19 06:48:34',0,0,'156.239.55.184','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(680,2,NULL,'2024-09-19 07:21:41','2024-09-19 07:21:41',0,0,'23.27.240.70','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(681,2,NULL,'2024-09-19 23:32:43','2024-09-19 23:32:43',0,0,'38.85.149.24','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (iPhone; CPU iPhone OS 18_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.0 Mobile/15E148 Safari/604.1 Ddg/18.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(682,2,NULL,'2024-09-20 04:49:19','2024-09-20 04:49:19',0,0,'156.239.36.194','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(683,2,NULL,'2024-09-20 08:14:46','2024-09-20 08:14:46',0,0,'173.237.197.21','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(684,2,NULL,'2024-09-20 18:52:57','2024-09-20 18:52:57',0,0,'104.168.135.226','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(685,2,NULL,'2024-09-20 20:15:11','2024-09-20 20:15:11',0,0,'156.239.53.192','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(686,2,NULL,'2024-09-20 20:15:12','2024-09-20 20:15:12',0,0,'156.239.53.192','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(687,2,NULL,'2024-09-22 01:46:18','2024-09-22 01:46:18',0,0,'85.203.47.11','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(688,2,NULL,'2024-09-22 03:19:55','2024-09-22 03:19:55',0,0,'45.91.23.58','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(689,2,NULL,'2024-09-22 08:27:48','2024-09-22 08:27:48',0,0,'165.231.168.187','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(690,2,NULL,'2024-09-22 21:42:39','2024-09-22 21:42:39',0,0,'122.162.107.91','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(691,2,NULL,'2024-09-24 11:17:03','2024-09-24 11:17:03',0,0,'185.238.231.35','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(692,2,NULL,'2024-09-24 14:24:03','2024-09-24 14:24:03',0,0,'74.115.7.57','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(693,2,NULL,'2024-09-24 19:58:14','2024-09-24 19:58:14',0,0,'156.38.134.102','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(694,2,NULL,'2024-09-25 11:33:07','2024-09-25 11:33:07',0,0,'46.37.123.70','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(695,2,NULL,'2024-09-25 14:30:54','2024-09-25 14:30:54',0,0,'68.21.169.222','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (iPhone; CPU iPhone OS 17_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.6 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(696,2,NULL,'2024-09-26 00:30:26','2024-09-26 00:30:26',0,0,'45.137.126.4','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(697,2,NULL,'2024-09-26 13:28:15','2024-09-26 13:28:15',0,0,'46.37.123.250','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(698,2,NULL,'2024-09-26 23:13:21','2024-09-26 23:13:21',0,0,'156.239.52.104','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(699,2,NULL,'2024-09-27 01:34:25','2024-09-27 01:34:25',0,0,'38.153.251.109','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(700,2,NULL,'2024-09-27 19:15:01','2024-09-27 19:15:01',0,0,'122.177.176.65','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(701,2,NULL,'2024-09-28 02:05:33','2024-09-28 02:05:33',0,0,'156.239.49.48','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(702,2,NULL,'2024-09-28 12:42:29','2024-09-28 12:42:29',0,0,'46.37.121.140','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(703,2,NULL,'2024-09-30 02:19:41','2024-09-30 02:19:41',0,0,'92.119.36.48','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(704,2,NULL,'2024-09-30 21:27:56','2024-09-30 21:27:56',0,0,'50.114.94.164','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(705,2,NULL,'2024-09-30 23:48:44','2024-09-30 23:48:44',0,0,'156.239.55.210','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(706,2,NULL,'2024-10-01 00:30:26','2024-10-01 00:30:26',0,0,'50.114.94.200','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(707,2,NULL,'2024-10-01 19:31:48','2024-10-01 19:31:48',0,0,'46.37.123.201','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(708,2,NULL,'2024-10-02 20:29:10','2024-10-02 20:29:10',0,0,'38.153.251.16','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(709,2,NULL,'2024-10-02 20:33:50','2024-10-02 20:33:50',0,0,'216.24.219.41','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(710,2,NULL,'2024-10-03 23:54:28','2024-10-03 23:54:28',0,0,'156.239.53.221','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(711,2,NULL,'2024-10-05 04:52:28','2024-10-05 04:52:28',0,0,'107.175.37.118','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(712,2,NULL,'2024-10-05 15:34:30','2024-10-05 15:34:30',0,0,'45.202.77.186','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(713,2,NULL,'2024-10-07 16:08:35','2024-10-07 16:08:35',0,0,'73.73.67.245','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(714,2,NULL,'2024-10-08 01:23:18','2024-10-08 01:23:18',0,0,'108.165.243.119','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(715,2,NULL,'2024-10-08 02:36:10','2024-10-08 02:36:10',0,0,'185.104.219.38','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(716,2,NULL,'2024-10-08 10:45:01','2024-10-08 10:45:01',0,0,'54.36.209.253','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(717,2,NULL,'2024-10-08 13:54:10','2024-10-08 13:54:10',0,0,'217.148.140.142','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(718,2,NULL,'2024-10-08 16:08:46','2024-10-08 16:08:46',0,0,'156.228.98.121','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(719,3,NULL,'2024-10-08 21:32:45','2024-10-08 21:32:45',0,0,'80.67.167.81','https://www.meadowcroftwines.com/private-label-wines','Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0; Touch; MASMJS)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(720,2,NULL,'2024-10-10 12:18:30','2024-10-10 12:18:30',0,0,'156.233.73.15','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(721,2,NULL,'2024-10-10 20:26:11','2024-10-10 20:26:11',0,0,'156.228.78.212','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(722,2,NULL,'2024-10-10 21:54:53','2024-10-10 21:54:53',0,0,'103.114.217.230','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(723,2,NULL,'2024-10-11 06:45:53','2024-10-11 06:45:53',0,0,'45.202.76.148','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(724,2,NULL,'2024-10-11 13:51:26','2024-10-11 13:51:26',0,0,'156.253.176.24','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(725,2,NULL,'2024-10-12 23:05:07','2024-10-12 23:05:07',0,0,'172.111.204.98','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(726,2,NULL,'2024-10-14 05:31:55','2024-10-14 05:31:55',0,0,'149.50.215.82','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(727,3,NULL,'2024-10-14 23:29:12','2024-10-14 23:29:12',0,0,'109.70.100.3','https://www.meadowcroftwines.com/private-label-wines','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; NP06; rv:11.0) like Gecko','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(728,3,NULL,'2024-10-15 17:06:50','2024-10-15 17:06:50',0,0,'23.154.177.11','https://www.meadowcroftwines.com/private-label-wines','Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.2) Gecko/20100115 Firefox/3.6','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(729,2,NULL,'2024-10-16 18:25:35','2024-10-16 18:25:35',0,0,'156.233.74.128','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(730,3,NULL,'2024-10-17 03:22:36','2024-10-17 03:22:36',0,0,'185.220.101.11','https://www.meadowcroftwines.com/private-label-wines','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2645.4 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(731,2,NULL,'2024-10-18 09:12:18','2024-10-18 09:12:18',0,0,'193.56.116.41','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(732,2,NULL,'2024-10-19 07:51:11','2024-10-19 07:51:11',0,0,'156.228.176.72','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(733,3,NULL,'2024-10-19 10:43:34','2024-10-19 10:43:34',0,0,'185.233.100.23','https://www.meadowcroftwines.com/private-label-wines','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2) Gecko/20100115 Firefox/3.6','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(734,2,NULL,'2024-10-19 20:51:48','2024-10-19 20:51:48',0,0,'156.253.175.196','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(735,3,NULL,'2024-10-22 09:11:37','2024-10-22 09:11:37',0,0,'185.220.101.19','https://www.meadowcroftwines.com/private-label-wines','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(736,2,NULL,'2024-10-22 21:34:02','2024-10-22 21:34:02',0,0,'174.94.14.40','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(737,2,NULL,'2024-10-23 17:49:10','2024-10-23 17:49:10',0,0,'170.254.3.49','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(738,2,NULL,'2024-10-24 21:57:52','2024-10-24 21:57:52',0,0,'104.193.194.176','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(739,2,NULL,'2024-10-24 23:06:35','2024-10-24 23:06:35',0,0,'91.90.120.139','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(740,3,NULL,'2024-10-26 19:48:07','2024-10-26 19:48:07',0,0,'185.220.101.50','https://www.meadowcroftwines.com/private-label-wines','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36 OPR/52.0.2871.99','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(741,3,NULL,'2024-10-27 13:01:58','2024-10-27 13:01:58',0,0,'193.70.80.213','https://www.meadowcroftwines.com/private-label-wines','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:13.0) Gecko/20100101 Firefox/13.0.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(742,2,NULL,'2024-10-28 15:07:34','2024-10-28 15:07:34',0,0,'136.0.120.90','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(743,2,NULL,'2024-10-28 21:15:07','2024-10-28 21:15:07',0,0,'165.231.227.216','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(744,2,NULL,'2024-10-28 23:33:12','2024-10-28 23:33:12',0,0,'138.199.59.241','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(745,2,NULL,'2024-10-29 17:08:32','2024-10-29 17:08:32',0,0,'23.110.166.240','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(746,2,NULL,'2024-10-30 19:43:40','2024-10-30 19:43:40',0,0,'156.228.110.35','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(747,2,NULL,'2024-10-31 16:57:35','2024-10-31 16:57:35',0,0,'76.69.14.74','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(748,2,NULL,'2024-11-01 14:12:47','2024-11-01 14:12:47',0,0,'146.70.212.80','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(749,2,NULL,'2024-11-01 20:59:30','2024-11-01 20:59:30',0,0,'91.90.120.149','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(750,3,NULL,'2024-11-01 21:32:44','2024-11-01 21:32:44',0,0,'157.131.105.10','https://www.meadowcroftwines.com/private-label-wines/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(751,2,NULL,'2024-11-02 22:14:51','2024-11-02 22:14:51',0,0,'185.228.3.35','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(752,2,NULL,'2024-11-04 08:01:29','2024-11-04 08:01:29',0,0,'104.168.143.160','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(753,2,NULL,'2024-11-05 11:16:04','2024-11-05 11:16:04',0,0,'174.95.105.102','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(754,2,NULL,'2024-11-06 06:01:04','2024-11-06 06:01:04',0,0,'194.5.53.22','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(755,2,NULL,'2024-11-06 09:46:08','2024-11-06 09:46:08',0,0,'104.168.143.39','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(756,2,NULL,'2024-11-07 00:14:03','2024-11-07 00:14:03',0,0,'156.253.165.20','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(757,3,NULL,'2024-11-07 15:17:04','2024-11-07 15:17:04',0,0,'192.42.116.175','https://www.meadowcroftwines.com/private-label-wines','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(758,2,NULL,'2024-11-08 09:32:25','2024-11-08 09:32:25',0,0,'45.134.140.239','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(759,2,NULL,'2024-11-08 15:59:37','2024-11-08 15:59:37',0,0,'139.180.224.127','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(760,2,NULL,'2024-11-10 04:55:14','2024-11-10 04:55:14',0,0,'50.7.112.66','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(761,2,NULL,'2024-11-11 07:10:03','2024-11-11 07:10:03',0,0,'108.147.93.130','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (iPhone; CPU iPhone OS 18_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(762,2,NULL,'2024-11-11 21:33:27','2024-11-11 21:33:27',0,0,'140.228.24.88','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(763,2,NULL,'2024-11-11 22:22:27','2024-11-11 22:22:27',0,0,'169.150.205.139','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(764,2,NULL,'2024-11-12 02:46:20','2024-11-12 02:46:20',0,0,'194.5.48.154','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(765,2,NULL,'2024-11-12 20:03:01','2024-11-12 20:03:01',0,0,'73.72.225.40','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 Edg/130.0.0.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(766,2,NULL,'2024-11-13 06:01:42','2024-11-13 06:01:42',0,0,'156.233.74.87','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(767,2,NULL,'2024-11-13 10:44:00','2024-11-13 10:44:00',0,0,'194.102.38.235','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(768,2,NULL,'2024-11-14 05:54:06','2024-11-14 05:54:06',0,0,'69.130.11.132','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(769,2,NULL,'2024-11-14 15:41:30','2024-11-14 15:41:30',0,0,'104.207.33.223','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(770,2,NULL,'2024-11-15 11:55:09','2024-11-15 11:55:09',0,0,'91.193.6.151','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(771,2,NULL,'2024-11-15 19:16:30','2024-11-15 19:16:30',0,0,'192.119.117.159','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(772,2,NULL,'2024-11-16 09:25:28','2024-11-16 09:25:28',0,0,'104.207.37.211','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(773,2,NULL,'2024-11-17 04:07:40','2024-11-17 04:07:40',0,0,'104.28.48.166','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (iPhone; CPU iPhone OS 18_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(774,2,NULL,'2024-11-17 20:43:10','2024-11-17 20:43:10',0,0,'149.34.252.9','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(775,2,NULL,'2024-11-23 02:51:57','2024-11-23 02:51:57',0,0,'23.83.132.145','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(776,2,NULL,'2024-11-24 15:49:13','2024-11-24 15:49:13',0,0,'104.168.151.122','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(777,2,NULL,'2024-11-25 06:50:47','2024-11-25 06:50:47',0,0,'104.168.133.154','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(778,2,NULL,'2024-11-25 10:46:53','2024-11-25 10:46:53',0,0,'209.163.117.7','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(779,2,NULL,'2024-11-26 23:26:31','2024-11-26 23:26:31',0,0,'23.94.52.252','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(780,2,NULL,'2024-11-27 02:05:52','2024-11-27 02:05:52',0,0,'93.127.170.4','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(781,2,NULL,'2024-11-27 16:06:20','2024-11-27 16:06:20',0,0,'156.253.164.125','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(782,2,NULL,'2024-11-27 16:45:44','2024-11-27 16:45:44',0,0,'104.168.142.107','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(783,3,NULL,'2024-11-28 04:16:35','2024-11-28 04:16:35',0,0,'45.95.169.229','https://www.meadowcroftwines.com/private-label-wines','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.114 YaBrowser/20.11.1.86 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(784,3,NULL,'2024-11-28 22:57:22','2024-11-28 22:57:22',0,0,'45.84.107.182','https://www.meadowcroftwines.com/private-label-wines','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3427.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(785,2,NULL,'2024-11-29 02:25:32','2024-11-29 02:25:32',0,0,'173.239.196.94','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(786,2,NULL,'2024-11-30 07:24:14','2024-11-30 07:24:14',0,0,'23.129.64.171','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(787,2,NULL,'2024-12-01 18:33:37','2024-12-01 18:33:37',0,0,'104.207.36.220','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(788,2,NULL,'2024-12-02 07:23:50','2024-12-02 07:23:50',0,0,'193.93.195.83','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL),(789,2,NULL,'2024-12-02 19:18:24','2024-12-02 19:18:24',0,0,'46.246.122.77','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(790,2,NULL,'2024-12-02 20:52:19','2024-12-02 20:52:19',0,0,'162.253.131.125','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(791,2,NULL,'2024-12-02 23:35:29','2024-12-02 23:35:29',0,0,'98.159.226.105','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(792,3,NULL,'2024-12-03 02:52:08','2024-12-03 02:52:08',0,0,'185.220.101.22','https://www.meadowcroftwines.com/private-label-wines','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',3252),(793,2,NULL,'2024-12-03 16:24:28','2024-12-03 16:24:28',0,0,'216.201.223.226','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(794,2,NULL,'2024-12-05 16:25:54','2024-12-05 16:25:54',0,0,'23.81.204.24','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(795,2,NULL,'2024-12-08 13:11:49','2024-12-08 13:11:49',0,0,'149.102.254.34','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(796,2,NULL,'2024-12-09 15:52:17','2024-12-09 15:52:17',0,0,'212.102.33.85','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(797,3,NULL,'2024-12-10 21:04:15','2024-12-10 21:04:15',0,0,'185.220.101.55','https://www.meadowcroftwines.com/private-label-wines','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',3252),(798,2,NULL,'2024-12-11 20:46:47','2024-12-11 20:46:47',0,0,'208.157.188.232','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 Edg/131.0.0.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(799,2,NULL,'2024-12-11 22:59:02','2024-12-11 22:59:02',0,0,'185.88.101.94','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(800,2,NULL,'2024-12-12 03:08:36','2024-12-12 03:08:36',0,0,'85.208.139.55','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(801,2,NULL,'2024-12-12 23:26:56','2024-12-12 23:26:56',0,0,'85.208.139.55','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(802,2,NULL,'2024-12-13 05:52:23','2024-12-13 05:52:23',0,0,'156.228.86.42','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(803,2,NULL,'2024-12-13 15:18:14','2024-12-13 15:18:14',0,0,'104.168.156.184','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(804,2,NULL,'2024-12-14 15:14:21','2024-12-14 15:14:21',0,0,'104.168.132.87','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(805,2,NULL,'2024-12-15 09:31:51','2024-12-15 09:31:51',0,0,'5.252.179.160','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(806,2,NULL,'2024-12-15 22:05:09','2024-12-15 22:05:09',0,0,'98.37.133.170','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(807,2,NULL,'2024-12-16 10:44:14','2024-12-16 10:44:14',0,0,'212.102.46.52','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(808,2,NULL,'2024-12-16 11:34:09','2024-12-16 11:34:09',0,0,'5.157.32.164','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(809,2,NULL,'2024-12-16 18:50:24','2024-12-16 18:50:24',0,0,'64.31.3.110','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(810,2,NULL,'2024-12-17 05:46:08','2024-12-17 05:46:08',0,0,'185.94.34.159','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(811,3,NULL,'2024-12-17 13:48:00','2024-12-17 13:48:00',0,0,'45.138.16.222','https://www.meadowcroftwines.com/private-label-wines','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',3252),(812,2,NULL,'2024-12-17 15:28:40','2024-12-17 15:28:40',0,0,'75.58.56.189','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(813,2,NULL,'2024-12-18 09:40:49','2024-12-18 09:40:49',0,0,'85.203.21.123','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(814,2,NULL,'2024-12-19 19:01:24','2024-12-19 19:01:24',0,0,'185.88.101.152','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(815,3,NULL,'2024-12-19 21:22:25','2024-12-19 21:22:25',0,0,'185.220.101.26','https://www.meadowcroftwines.com/private-label-wines','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36 Edg/86.0.622.69','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',3252),(816,2,NULL,'2024-12-19 21:49:39','2024-12-19 21:49:39',0,0,'108.204.91.47','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 Edg/131.0.0.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(817,2,NULL,'2024-12-20 03:44:46','2024-12-20 03:44:46',0,0,'107.175.196.112','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(818,2,NULL,'2024-12-20 12:59:09','2024-12-20 12:59:09',0,0,'104.168.138.86','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(819,3,NULL,'2024-12-20 14:14:16','2024-12-20 14:14:16',0,0,'185.220.101.4','https://www.meadowcroftwines.com/private-label-wines','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36 OPR/77.0.4054.172','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',3252),(820,2,NULL,'2024-12-20 22:04:09','2024-12-20 22:04:09',0,0,'185.88.101.152','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(821,2,NULL,'2024-12-21 00:04:02','2024-12-21 00:04:02',0,0,'104.28.123.101','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (iPhone; CPU iPhone OS 18_1_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.1.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(822,2,NULL,'2024-12-21 16:42:30','2024-12-21 16:42:30',0,0,'104.168.137.23','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(823,2,NULL,'2024-12-21 20:21:17','2024-12-21 20:21:17',0,0,'104.28.111.135','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (iPhone; CPU iPhone OS 18_1_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.1.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(824,2,NULL,'2024-12-23 05:24:28','2024-12-23 05:24:28',0,0,'172.98.32.46','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(825,2,NULL,'2024-12-23 13:51:47','2024-12-23 13:51:47',0,0,'85.208.139.55','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(826,2,NULL,'2024-12-24 05:50:17','2024-12-24 05:50:17',0,0,'193.36.225.75','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(827,2,NULL,'2024-12-25 20:16:22','2024-12-25 20:16:22',0,0,'104.167.26.252','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(828,2,NULL,'2024-12-27 07:05:11','2024-12-27 07:05:11',0,0,'195.47.238.93','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(829,2,NULL,'2024-12-27 22:04:29','2024-12-27 22:04:29',0,0,'174.95.105.102','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(830,2,NULL,'2024-12-28 22:30:24','2024-12-28 22:30:24',0,0,'193.233.140.109','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461),(831,2,NULL,'2024-12-30 09:08:22','2024-12-30 09:08:22',0,0,'98.159.36.149','https://www.meadowcroftwines.com/inquiry/','Mozilla/5.0 (iPhone; CPU iPhone OS 18_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.0 YaBrowser/24.7.0.2235.10 SA/3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',461);
/*!40000 ALTER TABLE `wp_gf_entry` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gf_entry_meta`
--

DROP TABLE IF EXISTS `wp_gf_entry_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_entry_meta` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint unsigned NOT NULL DEFAULT '0',
  `entry_id` bigint unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  `item_index` varchar(60) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `meta_key` (`meta_key`(191)),
  KEY `entry_id` (`entry_id`),
  KEY `meta_value` (`meta_value`(191))
) ENGINE=InnoDB AUTO_INCREMENT=3862 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_entry_meta`
--

LOCK TABLES `wp_gf_entry_meta` WRITE;
/*!40000 ALTER TABLE `wp_gf_entry_meta` DISABLE KEYS */;
INSERT INTO `wp_gf_entry_meta` VALUES (1,2,1,'7','Ian Luca',''),(2,2,1,'2','ian@wiki-adroit.com',''),(3,2,1,'3','(855) 244-2051',''),(4,2,1,'4','-',''),(5,2,1,'5','Customer Service',''),(6,2,1,'6','Wikipedia is considered to be the World’s most significant tool for reference material. The Wiki links show up on the 1st page of Google 97% of the time. With a Page on one of the most revered reference tools, you are sure to get yourself or your business noticed. So if you\'re thinking of getting a Wikipedia Page created, it\'s the best time of the year.\r\n\r\nIf you are interested in getting more information just respond back to this email.\r\n\r\nWishing you Happy Holidays and a blessed New Year!\r\n\r\nThanks,\r\n\r\nIan Luca\r\n(855) 244-2051\r\nWiki Adroit\r\nian@wiki-adroit.com\r\n\r\nRespond with stop to optout.',''),(7,2,2,'7','Angelo Baker',''),(8,2,2,'2','angelo.b@aitechltd.com',''),(9,2,2,'3','(714) 833-5802',''),(10,2,2,'5','Customer Service',''),(11,2,2,'6','Hi there,\r\n\r\nAre you tired of spending hours writing content for your business? Introducing the next generation AI content creation writer that can handle it all. From writing about any industry to crafting professional sales emails and blog posts, our AI can even generate optimized video ideas that are sure to trend.\r\nTry it out for yourself now with our free trial: https://bit.ly/AI-Tech-Writer\r\n\r\nBest regards,\r\nAngelo Baker\r\nVP @ AI Technologies Limited',''),(12,2,3,'7','Justine Waterman',''),(13,2,3,'2','jwaterman521@hotlmail.com',''),(14,2,3,'5','Customer Service',''),(15,2,3,'6','\"Hello,\r\nI am interested hosting my wedding at Meadowcroft in the first half of 2024. We would likely have around 60-75 people and would prefer to have beer and/or spirits as well as wine. Could you please provide estimated pricing and anything else that would be additional? Photos of the ceremony location and reception location would be helpful as we currently live in Ohio so would like to get an idea of what the area looks like before booking a trip out to tour. Getting married on the vines or near the vines is very important to us. I worked in the industry and used to live in SF so I love Sonoma/Napa!\r\n\r\nThank you,\"',''),(16,2,4,'7','Edward Lindberg',''),(17,2,4,'2','heatraffic@gmail.com',''),(18,2,4,'3','(770) 605-2048',''),(19,2,4,'5','Influencer Inquiry',''),(20,2,4,'6','Hello,\r\n\r\nWe offer high quality website traffic guaranteed. \r\n\r\nWe guarantee results| Receive millions of visitors everyday.\r\n\r\nChoose from over 213 countries including your Country for Geo-Targeting. Better yet, choose from hundreds of cities across the world, for City-Targeting. We guarantee that it will be demonstrated in your Google Analytics.\r\n\r\nFor Demo, we can give you 2000 Page Views in 1 day FREE.\r\n\r\nJust reply with your website and I will give you 2000 Page Views which will show in your Google Analytics.\r\n\r\nOr visit website: https://heatraffic.online for more information.\r\n\r\nThanks\r\n\r\n\r\n\r\n\r\n\r\nNote: - If you are not interested then you can reply with a simple \\\"NO\\\".',''),(21,2,5,'7','Katrina Doolette',''),(22,2,5,'2','katrina.doolette@outlook.com',''),(23,2,5,'3','(415) 723-1326',''),(24,2,5,'5','Customer Service',''),(25,2,5,'6','Hello, meadowcroftwines.com Did you know that people do 8.5 billion searches on\r\nGoogle every day? That’s why it’s important to rank your website on the\r\nFirst Page of Google?\r\nSo to rank your website #1 on google you need to take care of:\r\n\r\n1-Technical S E O Audit\r\n2-Keyword Research\r\n3-Competitor Research\r\n4-Finding backlinks opportunities\r\n5-Local Optimization of the site (On-Page S E O)\r\n6-Build Backlinks (Off-Page S E O)\r\n7-Build Local S E O Citations\r\n\r\nDon’t worry you don’t have to do anything you can hire someone to do it for you\r\nYou can get +1,000 visitors to your website every day\r\n\r\nyou can try it from here: http://fiverrseoer.com/\r\nI hope you will enjoy it.',''),(26,2,6,'7','Bernice Constant',''),(27,2,6,'2','constant.bernice@gmail.com',''),(28,2,6,'3','(540) 538-7881',''),(29,2,6,'5','Influencer Inquiry',''),(30,2,6,'6','Hi\r\n\r\nI am a volunteer in Kherson region in Ukraine and I must admit that the situation has become extremely dire. The Russian forces are intensifying their attacks almost on an hourly basis, which has resulted in a cut off of all essential supplies and clothing. With extreme cold and lack of food supplies, it has become extremely difficult for innocent Ukrainian civilians to survive, most of whom are homeless. Internet and all communications are heavily censored and down most of the time.\r\n\r\nWe have been promised foreign aid by countless charities and organisations but in reality, hardly anything arrives. I suspect that all deliveries are being intercepted by Russian troops.\r\n\r\nAs a last resort, I am appealing to meadowcroftwines.com to help Ukrainian civilians in the region with all essential supplies.\r\n\r\nWe would ideally need medical supplies, food (non-perishable or longer lasting), warm clothing and anything else you may be able to provide.\r\n\r\nIf you are able to deliver help, please could you send it to the below address which we are using as shelter for the time being.\r\n\r\nKherson State Agrarian University\r\nStritenska St, 23\r\nKherson, Kherson Oblast \r\nUkraine, 73006\r\n\r\nAlternatively, we are also accepting cryptocurrency donations as conventional banking instruments are simply not available to us. If you do not have cryptocurrency, you can easily purchase and send it from Coinbase, Coinpayments, Coin Mama or alternative providers.\r\n\r\nBelow are the wallet addresses of our local humanitarian volunteer group:\r\n\r\nBitcoin: bc1q9uun7eny4t8pvlq7lmz39z9rr7rm3vw849hqwv\r\n\r\nEthereum: 0xa74cce7805342F10df39B698342380f58bB709b5\r\n\r\nNo donation is too small and will be most appreciated.\r\n\r\nI would like to send you some pictures and video footage of the atrocities in the region but unfortunately, the internet is too slow and very intermittent.\r\n\r\nI would be most appreciative if you could share this message on social media and your friends to raise awareness about the situation and lobby your local government to provide more support to Ukrainian army.\r\n\r\nThank you for you help.\r\n\r\nBest wishes\r\n\r\nBernice Constant',''),(31,2,7,'7','Bethany Srokosz',''),(32,2,7,'2','Sayling007@yahoo.com',''),(33,2,7,'3','(401) 282-9734',''),(34,2,7,'4','#720978',''),(35,2,7,'5','Wines',''),(36,2,7,'6','Hello!  Hope this message finds you well!  We have been longtime club members and unfortunately one of the wines from our last club shipment was off.  The wine had a moldy flavor and smell to it.  The cork did not appear to be compromised but everyone agreed that the wine tasted off.  We were super bummed as we had saved this special bottle for New Years Eve to share with our friends!  I just wanted to make you guys aware.  We love being a part of your club and have enjoyed all of the wonderful variables you share with us. as well as having visited your winery twice now!\r\n\r\nThanks so much for everything, hope we continue to enjoy your wines for years to come!',''),(37,2,8,'7','Natalie',''),(38,2,8,'2','natalie@socialgrowthengine.com',''),(39,2,8,'3','(805) 308-6538',''),(40,2,8,'5','Customer Service',''),(41,2,8,'6','At Social Growth Engine, we understand the importance of having an engaging social media presence for your business and it\'s customers.\r\n\r\nWe use cutting-edge technology and experienced staff to ensure that you get maximum return on your investment with us. Whether it is growing an Instagram audience or getting more views on TikTok, our team of experts will help take your digital presence to the next level. Don\'t miss out !! \r\n\r\nAs a marketing agency you can immediately take 40% off all our services, just use the code “natalieturner23” - www.socialgrowthengine.com\r\n\r\nNatalie Turner\r\nNatalie@socialgrowthengine.com',''),(42,2,9,'7','David Schipper (CEO, Technician)',''),(43,2,9,'2','david@dig1.com',''),(44,2,9,'3','(210) 493-6193',''),(45,2,9,'5','Customer Service',''),(46,2,9,'6','Why spend $500 annually on local listing building?\r\n   20+Yrs Experience in Internet Marketing\r\n      ( No Outsourcing )\r\n      $180 One-Time\r\n\r\n-> BBB A+\r\n-> Google 5-stars\r\n-> Brand-New Site in 2-5 hrs\r\n-> Complete Website Security Setup\r\n\r\nCall or Text David @ 210-493-6193\r\n(Ask for a Portfolio)\r\n\r\nDavid Schipper, CEO\r\nhttps://adventdigital.net\r\nhttps://www.bbb.org/us/tx/san-antonio/profile/information-technology-services/advent-digital-0825-90076613\r\nhttps://www.linkedin.com/in/david-schipper-39a05416b/\r\n210-493-6193 (call or text)\r\ndavid@dig1.com\r\nsubmit0@gmail.com',''),(47,2,10,'7','Dirk',''),(48,2,10,'2','dirk@meadowcroftwines.com',''),(49,2,10,'3','(315) 835-2853',''),(50,2,10,'4','315-835-2853',''),(51,2,10,'5','Media Inquiry',''),(52,2,10,'6','Hi,\r\n\r\nIf you are one of the sufferers of the common problems nails have, then you are in luck! Our Toenail Clippers is here to help. It has a specially designed clip that can help those with troubles with winding nails, hard nails, two nails, nail cracks, deep nails, and thickened nails.\r\n\r\nWe are confident that our Toenail Clippers will provide you with the results you are looking for.\r\n\r\nGet yours today with 60% OFF: https://thepodiatrist.shop\r\n\r\nAll the best,\r\n\r\nDirk',''),(53,2,11,'7','Floyd Sample',''),(54,2,11,'2','floyd.sample@hotmail.com',''),(55,2,11,'5','Influencer Inquiry',''),(56,2,11,'6','Hi\r\n\r\nI am the business development manager at Creative Bear Tech Software and I am writing to introduce you to the CBT Email Extractor.\r\n\r\nCBT Email Extractor is a desktop software that is capable of scraping the search engines, business directories, social media sites, and own website lists for business contact details. The search engine scraper will scrape all business contact details using your keywords and then merge them into one excel file. The email spider will scrape the business name, website, emails, address, social media links, country, and geo-location into a single Excel file.\r\n\r\nCore Features\r\n\r\nOptions to scrape Google, Bing, Yandex, DuckDuckGo!, AOL, Facebook, Twitter, Instagram, Yellow Pages, Yelp, Google Places/Maps.\r\nKeyword Magic Tool for generating keywords for scraping.\r\nContent and Domain name filters to skip websites not containing your keywords in the meta titles/descriptions/HTML text\r\nMulti-Threading for faster scraping\r\nProxy and captcha solving integrations\r\nEmail List cleaner to clean the scraped database on the basis of your criteria\r\nSuppression tool to remove records on the basis of your black list (email/website) or add a custom note to each record\r\nMerging tool to merge multiple databases together\r\nSplitting tool to split databases on the basis of records and countries\r\nOption to update all existing records within an existing database\r\nOption to update a database by scraping more leads on top\r\nAbility to automatically resume the software in case of a crash\r\nAll results are automatically saved to a custom folder\r\nRuns only on Windows operating system\r\nVPS friendly\r\nWorks with VPNs\r\nWe offer No hidden fees, Free lifetime updates and great support.\r\n\r\nProduct: https://creativebeartech.co.uk/product/cbt-web-scraper-and-email-extractor-software/\r\n\r\nHow it works: https://creativebeartech.co.uk/email-extractor-tutorial/\r\n\r\nKind regards\r\n\r\nFloyd Sample',''),(57,2,12,'7','Jacob Lewis',''),(58,2,12,'2','jacoblewis@seolabpros.com',''),(59,2,12,'3','(714) 500-7363',''),(60,2,12,'5','Media Inquiry',''),(61,2,12,'6','Hi, \r\nAre you still in business? \r\nI found a few errors on your site.\r\nWould you like me to send over a screenshot of those errors?\r\n\r\nRegards\r\nJacob\r\n(714) 500-7363',''),(62,2,13,'7','Margart Nugan',''),(63,2,13,'2','nugan.margart@gmail.com',''),(64,2,13,'3','(336) 951-9242',''),(65,2,13,'5','Influencer Inquiry',''),(66,2,13,'6','Have you tried CBD Pills 25mg from JUSTCBD?',''),(67,2,14,'7','Nick James',''),(68,2,14,'2','info@bottomlinesavingstax.com',''),(69,2,14,'3','(305) 419-1382',''),(70,2,14,'5','Careers',''),(71,2,14,'6','Hello,\r\n\r\nMy name is Nick James and I help organizations like yours take advantage of the Employee Retention Credit (ERC) program, a federal grant from the IRS that allows businesses to recover taxes and wages.\r\n\r\nI know that many companies are unaware of this program or assume they do not qualify. However, recent changes in the eligibility requirements mean that your organization may now be eligible to claim up to $26,000 per employee. Since the start of the ERC program, our company has filed over 19,000 claims for organizations just like yours, totaling over $3.2 billion in grants.\r\n\r\nIf you would allow me 10 minutes for a quick call, I can let you know if this program would be a fit for your business. There is no up-front cost and we only get paid for our services if we secure a grant for you. \r\n\r\nPlease book a call on my calendar at the bottom of my website https://bottomlinesavingstax.com or send me a text at 305-419-1382.\r\n\r\nIf you are not the appropriate person to speak with, I would be grateful if you could point me in the right direction or forward my information to the appropriate person.\r\n\r\nThank you for your time.\r\n\r\nBest regards,\r\n\r\nNick James\r\n305-419-1382\r\nhttps://bottomlinesavingstax.com',''),(72,2,15,'7','Tatyana Dyachenko',''),(73,2,15,'2','tatyana.dyachenko90@aol.com',''),(74,2,15,'3','(931) 224-0859',''),(75,2,15,'5','Customer Service',''),(76,2,15,'6','Hey\r\n\r\nI trust this email finds you well.\r\n\r\nI am writing to express my interest in contributing to your blog as a guest writer (free of charge). By profession, I am a freelance writer and I regularly contribute to blogs and established media outlets, both as an expert and as a guest writer.\r\n\r\nI would just need a couple of article titles from you that you would like me to write on. My expertise is in writing informational articles in the form of advice. So it would be fab if your titles fit that criteria.\r\n\r\nIf this collaboration sounds of interest, please send me the titles and I will aim to have them with you in about a week\'s time.\r\n\r\nPlease also copy in my gmail in your reply tatyanadyachenkoxox@gmail.com\r\n\r\nLooking forward to your reply.\r\n\r\nBest wishes\r\n\r\n\r\nTatyana Dyachenko',''),(77,2,16,'7','Jessica E Clifton',''),(78,2,16,'2','jessicaeclifton@gmail.com',''),(79,2,16,'3','(805) 453-7838',''),(80,2,16,'5','Wines',''),(81,2,17,'7','Gaurav',''),(82,2,17,'2','ggwebtalk@gmail.com',''),(83,2,17,'5','Media Inquiry',''),(84,2,17,'6','Hi, We are a team of full-stack web developers with over 10 years of experience and can help you with website and mobile application design and development, server management, website maintenance, SEO, SMO, and data entry. If you have any requirements, let’s set up a time to chat this week or next!\r\nBest,\r\nGK\r\nggwebtalk@gmail.com',''),(85,2,18,'7','Ilse Espinosa',''),(86,2,18,'2','ilse.espinosa@gmail.com',''),(87,2,18,'3','(613) 362-5783',''),(88,2,18,'5','Media Inquiry',''),(89,2,18,'6','Have you tried CBD Vape Pen by JUSTCBD?',''),(90,2,19,'7','Kevin Ogg',''),(91,2,19,'2','cvcoa@cvcoa.org',''),(92,2,19,'5','Media Inquiry',''),(93,2,19,'6','Hi\r\n\r\nI am the legal representative of https://www.diamondcbd.com. I have tried to contact you via your official company email, but have not had a reply thus far.\r\n\r\nI am contacting you because it has come to our attention that you are misusing our trademark on your website (meadowcroftwines.com) for commercial benefit.\r\n\r\nI request that you immediately remove all our images, name and any content that belongs to us from meadowcroftwines.com.\r\n\r\nFailure to comply with this request within 7 days will result in us bringing a legal matter against your company for damages.\r\n\r\nPlease could you advise us of your registered company address to which we should serve our claim form.\r\n\r\nI look forward to your response and timely compliance.\r\n\r\nYours faithfully\r\n\r\nKevin Ogg',''),(94,2,20,'7','Test',''),(95,2,20,'2','test@google.com',''),(96,2,20,'3','(987) 654-3210',''),(97,2,20,'4','NA',''),(98,2,20,'5','Customer Service',''),(99,2,20,'6','Test',''),(100,2,21,'7','test data',''),(101,2,21,'2','testdata@google.com',''),(102,2,21,'3','(020) 166-7677',''),(103,2,21,'4','589898745847',''),(104,2,21,'5','Wines',''),(105,2,22,'7','Maryanne Rowley',''),(106,2,22,'2','rowley.maryanne@gmail.com',''),(107,2,22,'3','(905) 891-9946',''),(108,2,22,'5','Careers',''),(109,2,22,'6','Hi\r\n\r\nI trust this email finds you well.\r\n\r\nSending bulk E-Mails or newsletters is unarguably very expensive and most newsletter sending services will charge you depending on your email list or total E-Mails sent which can land you with a hefty bill. This is what motivated us to create the most revolutionary bulk email software on the market.\r\n\r\nHow about if I told you that you can now send as many free E-Mails or newsletters as you want for life to whoever you like? Whether you want to send out a 100 or 10 million E-Mails to your email list, the CBT Mass Email Sender can tailor to all email sending needs, no matter the size. Moreover, this is all free. That\'s right, there are no subscriptions or hidden charges. Pay once for the software and use it as much as you want for life.\r\n\r\nThe bulk email sender can send E-Mails in three different ways: \r\n\r\n1) custom SMTP relays (supports SMTP rotation);\r\n2) direct DNS sending (example send E-Mails from coffee shops or any other private or public IP/wifi) or \r\n3) send E-Mails through private and public proxies.\r\n\r\nCore Features\r\n\r\nAutomatic email list cleaning – removes bounced E-Mails from your email list\r\nEasy-to-Use HTML editor for creating your message\r\nSpintax supported – generate unique messages through spintax\r\nIP reputation warmer feature: increase the total E-Mails sent over time incrementally to warm up your IP sender reputation and benefit from a high inbox rate\r\nFilters: do not send your email to more than one company email or E-Mails longer than X characters\r\nShort URLs: generate unique short URLs for your main link inside the email to avoid blacklists\r\nSend test E-Mails to yourself to see how the message looks\r\nHigh Inbox Rate\r\nRemove unsubscribers automatically\r\nThe software is very intuitive and well-documented and is already helping many start-up companies to save money and generate leads for their business.\r\n\r\nTo learn more about the software, I welcome you to check out the following pages:\r\n\r\nCore Features: https://creativebeartech.co.uk/product/cbt-mass-email-sender-desktop-software/\r\n\r\nHow it Works (Tutorials): https://creativebeartech.co.uk/mass-email-sender-tutorial/\r\n\r\nThanks for your time and I hope that this software will change the way you do your email marketing.\r\n\r\n\r\nKind regards\r\n\r\nMaryanne Rowley',''),(110,2,23,'7','test data',''),(111,2,23,'2','testdata@facebook.com',''),(112,2,23,'3','(020) 166-7677',''),(113,2,23,'4','565765',''),(114,2,23,'5','Wines',''),(115,2,24,'7','Alex T',''),(116,2,24,'2','lilley.magda@googlemail.com',''),(117,2,24,'3','(925) 806-1055',''),(118,2,24,'5','Careers',''),(119,2,24,'6','Take your online presence to the next level with a custom website. Contact us at http://googleadexpert.com/  for expert development and design services.',''),(120,2,25,'7','Abhi',''),(121,2,25,'2','outsourcesmo@gmail.com',''),(122,2,25,'3','(701) 287-1345',''),(123,2,25,'5','Careers',''),(124,2,25,'6','Hi, This is Abhi. I am a content writer. I specialise in writing blogs, articles, e-commerce product descriptions, SEO content, website content, and business service descriptions. \r\nI have written over 2500 content pieces for more than 30 industries in the last 10 years. I have also gone through your website meadowcroftwines.com and I have written for your industry as well. \r\nI charge USD 50 for 1000 words. Do you have any requirements? If yes, please email me at outsourcesmo@gmail.com',''),(125,2,26,'7','Karma Ellsworth',''),(126,2,26,'2','karma.ellsworth@outlook.com',''),(127,2,26,'3','(248) 813-8357',''),(128,2,26,'5','Customer Service',''),(129,2,26,'6','I have a secret to share with you. Something that has the power to transform your online life and bring you the traffic, followers, and recognition you deserve.\r\n\r\nHere\'s the catch. This isn\'t your average, everyday solution. No boring content ideas or generic advice. I\'m offering something unique and innovative that will set you apart from the rest.\r\n\r\nI have the solution you\'ve been searching for - a combination of content ideas and romance that will take your online life to the next level.\r\n\r\nYou\'ll have to see it to believe it. Follow the link below to learn more about  - The Key to a Better Online Experience.\r\n\r\nhttps://bit.ly/2wenty2hospitality\r\n\r\nBut don\'t take too long, this opportunity won\'t last forever.\r\n\r\nhttps://bit.ly/2wenty2hospitality',''),(130,2,27,'7','Lucia De Nardis',''),(131,2,27,'2','contact@share-positivity.com',''),(132,2,27,'3','(423) 355-3758',''),(133,2,27,'5','Influencer Inquiry',''),(134,2,27,'6','Hi,\r\n\r\nWe have a unique Valentine\'s Day product perfect for insertion in your 2023 gift guide article.\r\n\r\nAs a token of appreciation for your interest, we can either send you money directly or offer you $150 worth of our products for free.\r\n\r\nIf you would like more info, please respond to the email below.\r\n\r\nThanks,\r\nLucia Denardis\r\nCEO\r\nMail: partnership@personalizeverything.com',''),(135,2,28,'7','Aaliyah Jones',''),(136,2,28,'2','aaliyah@mygsuite.co',''),(137,2,28,'3','(509) 913-4475',''),(138,2,28,'5','Media Inquiry',''),(139,2,28,'6','Hi,\r\n\r\nI hope this email finds you well. My name is Aaliyah and I specialize in assisting US and Canadian businesses in securing grants.\r\n\r\nI noticed that your company could greatly benefit from the various grants available to organizations in your industry. I would be honored to help you navigate this process and assist you in securing the funding you need to achieve your goals.\r\n\r\nIf I  successfully secure a grant for your company, I will receive a small commission from the grant provider. It\'s a win-win situation - you receive the funding you need, and I get compensated for my expertise and hard work.\r\n\r\nTo get started, I would love for you to fill out this short form: https://forms.gle/mSkcVLCAJK7N5yae9 \r\n\r\nI\'ll set up a free introduction call with one of my grant partners to discuss your grant options in more detail, with no obligation or catch.\r\n\r\nI understand that receiving unsolicited messages can be annoying, so if I have bothered you and you would prefer not to receive further communication, please let me know and I will remove you from my list.\r\n\r\nThank you for your time and consideration,\r\nAaliyah',''),(140,2,29,'7','Aaron Clarkson',''),(141,2,29,'2','shropshire.georgia@gmail.com',''),(142,2,29,'5','Careers',''),(143,2,29,'6','Hey,\r\n\r\nAre you having trouble writing marketing articles?\r\n\r\nAs technology advances, so does the use of artificial intelligence (AI). AI is now being used in many different industries, including marketing. AI-powered tools are incredibly useful for companies looking to create and spin marketing articles. Here are 10 reasons why AI can help your company write and spin marketing articles.\r\n\r\nYou can check out the demo video here:\r\n\r\nhttps://www.spinrewriter.com/?ref=603f7\r\n\r\n1. AI can identify the most important keywords in an article. This allows your company to use the keywords to optimize the article for search engine optimization (SEO).\r\n\r\n2. AI can help identify the most effective language to use in an article. This ensures that the article is conversational and engaging.\r\n\r\n3. AI can help to create unique content. It can identify patterns in existing content and generate new content that is similar but not identical.\r\n\r\n4. AI can generate multiple versions of the same article. This allows your company to use the same topic but different angles and perspectives.\r\n\r\n5. AI can help to spin articles. It can identify patterns in existing content and generate new content that is similar but not identical.\r\n\r\n6. AI can help to identify different topics and angles to explore. This allows your company to stay up-to-date and create content that is relevant and interesting to readers.\r\n\r\n7. AI can help to identify trends in a particular industry. This allows your company to stay ahead of the competition.\r\n\r\n8. AI can be used to create personalized content for different audiences. This ensures that the content resonates with the target audience.\r\n\r\n9. AI can help to identify potential problems before they become an issue. This allows your company to stay ahead of potential problems and take action before it’s too late.\r\n\r\n10. AI can help to automate the content creation process. This allows your company to create content quickly and easily.\r\n\r\nUsing AI to help write and spin marketing articles is a great way to optimize your content and stay ahead of the competition. AI-powered tools can help your company generate unique content, identify trends in the industry, and create personalized content for different audiences. If you’re looking to create and spin marketing articles, consider using AI-powered tools such as Spin Rewriter. Check out this video to learn more: https://www.spinrewriter.com/?ref=603f7.\r\n\r\nThen go here and get your account:\r\n\r\nhttps://www.spinrewriter.com/?ref=603f7\r\n\r\nCheers,\r\n\r\nAaron Clarkson',''),(144,2,30,'7','Jason Bond',''),(145,2,30,'2','jason.bond@gmail.com',''),(146,2,30,'3','(248) 813-8357',''),(147,2,30,'5','Media Inquiry',''),(148,2,30,'6','I have a secret to share with you. Something that has the power to transform your online life and bring you the traffic, followers, and recognition you deserve.\r\n\r\nHere\'s the catch. This isn\'t your average, everyday solution. No boring content ideas or generic advice. I\'m offering something unique and innovative that will set you apart from the rest.\r\n\r\nI have the solution you\'ve been searching for - a combination of content ideas and romance that will take your online life to the next level.\r\n\r\nYou\'ll have to see it to believe it. Follow the link below to learn more about  - The Key to a Better Online Experience.\r\n\r\nhttps://bit.ly/2wenty2hospitality\r\n\r\nBut don\'t take too long, this opportunity won\'t last forever.\r\n\r\nhttps://bit.ly/2wenty2hospitality',''),(149,2,31,'7','Molly Koehler',''),(150,2,31,'5','Wines',''),(151,2,32,'7','Molly Koehler',''),(152,2,32,'5','Wines',''),(153,2,33,'7','Jason Clarke',''),(154,2,33,'2','cmad.datalive@gmail.com',''),(155,2,33,'3','(917) 640-0466',''),(156,2,33,'5','Media Inquiry',''),(157,2,33,'6','Transform Meadowcroft Wines in record time with the help of artificial intelligence. \r\n\r\nI was searching for abc liquor store and found your site: meadowcroftwines.com\r\n\r\nWatch this eye-opening YouTube video to learn how to supercharge your business from minute ONE. \r\nhttps://youtu.be/sT9BEVi8XOk \r\n\r\nAnd that\'s not all, this powerful software can generate high-quality, plagiarism-free copy in perfect English for all your content needs, including your website wording, blog posts, marketing materials, product descriptions, and social media posts. \r\n\r\nDon\'t just take our word for it, with 5-star ratings from over 3,000 satisfied users, this tool is a game-changer. \r\n\r\nAnd if that\'s not enough, you\'ll receive free 10,000 bonus credits, free team training, and free ongoing support. \r\n\r\nTry it out for yourself with a free 7-day trial that includes 10,000 words. We guarantee you\'ll be saying \"WOW\" within minutes of using this tool. \r\n\r\nReady to take your business to the next level? This will help drive traffic and sales. \r\n\r\nClick here to learn more and give it a try: \r\nhttps://bit.ly/amazing-ai-writing \r\n\r\nTalk soon, \r\n\r\nJason Clarke \r\nCSR \r\n\r\nFOW \r\nToronto \r\nSan Jose \r\n\r\n\r\n\r\n\r\nClick the following link to unsubscribe: https://easyunsubscribe.info/unsubscribe.php?d=meadowcroftwines.com',''),(158,2,34,'7','Megan Crane',''),(159,2,34,'2','Megan@crushdistributors.com',''),(160,2,34,'3','(603) 545-5966',''),(161,2,34,'5','Wines',''),(162,2,34,'6','Hello,\r\n\r\nI am curious if you would be interested in discussing distribution of your wines in New Hampshire. I own crush wines. We are a boutique wine vendor in New Hampshire, and I have been a fan of your wines and we are looking for a new Sonoma producer. Please let me know if you would like to discuss further.\r\n\r\nThank you so much.',''),(163,2,35,'7','Jacob Lewis',''),(164,2,35,'2','jacoblewis@seolabpros.com',''),(165,2,35,'3','(714) 500-7363',''),(166,2,35,'5','Media Inquiry',''),(167,2,35,'6','Hi, \r\nAre you still in business? \r\nI found a few errors on your site.\r\nWould you like me to send over a screenshot of those errors?\r\n\r\nRegards\r\nJacob\r\n(714) 500-7363',''),(168,2,36,'7','Jason Clarke',''),(169,2,36,'2','cmad.datalive@gmail.com',''),(170,2,36,'3','(917) 640-0466',''),(171,2,36,'5','Customer Service',''),(172,2,36,'6','Are you ready to take your team\'s success to the next level? We recently visited meadowcroftwines.com and were impressed by your company\'s potential. \r\n\r\nWe’re a US-based firm and we want to help you make 2023 a year to remember.\r\n\r\nWatch this eye-opening YouTube video to learn how to supercharge your business from minute ONE. \r\nhttps://youtu.be/sT9BEVi8XOk \r\n\r\nAnd that\'s not all, this powerful software can generate high-quality, plagiarism-free copy in perfect English for all your content needs, including your website wording, blog posts, marketing materials, product descriptions, and social media posts. \r\n\r\nDon\'t just take our word for it, with 5-star ratings from over 3,000 satisfied users, this tool is a game-changer. \r\n\r\nAnd if that\'s not enough, you\'ll receive free 10,000 bonus credits, free team training, and free ongoing support. \r\n\r\nTry it out for yourself with a free 7-day trial that includes 10,000 words. We guarantee you\'ll be saying \"WOW\" within minutes of using this tool. \r\n\r\nReady to take your business to the next level? This will help drive traffic and sales. \r\n\r\nClick here to learn more and give it a try: \r\nhttps://bit.ly/amazing-ai-writing \r\n\r\nTalk soon, \r\n\r\nJason Clarke \r\nCSR \r\n\r\nFOW \r\nToronto \r\nSan Jose \r\n\r\n\r\n\r\n\r\nClick the following link to unsubscribe: https://easyunsubscribe.info/unsubscribe.php?d=outdooractioncompany.com',''),(173,2,37,'7','Tim K.',''),(174,2,37,'2','business.data.leads.01@gmail.com',''),(175,2,37,'3','(917) 640-0466',''),(176,2,37,'5','Influencer Inquiry',''),(177,2,37,'6','Are you struggling to generate organic traffic and sales here on your website meadowcroftwines.com \r\n\r\nLook no further!  \r\n\r\nOur team is based in both San Jose and Toronto, and we live to help you succeed. \r\n\r\nWe offer a fantastic package for only $500 - saving you a massive $1500 off retail.  \r\n\r\nCheck out this 1-minute video with the details: \r\nhttps://youtu.be/7zwIGmFaVvQ  \r\n\r\nPlus, if you book within the next 10 days, you\'ll receive not one, but two incredible bonuses! \r\n\r\nVisit our website (the link is in the description of the video) for more information and to book a call with us today.  \r\n\r\nWe will improve your site, increase your organic traffic, and make you more money.  \r\n\r\nTalk soon,  \r\n\r\nTim K.  \r\nCSR  \r\n\r\nFOW - Setup My Website   \r\nToronto  \r\nSan Jose  \r\n\r\n\r\n\r\n\r\nClick the following link to unsubscribe: https://easyunsubscribe.info/unsubscribe.php?d=outdooractioncompany.com',''),(178,2,38,'7','Burno Jackson',''),(179,2,38,'2','88@88.center',''),(180,2,38,'5','Influencer Inquiry',''),(181,2,38,'6','Hello Sustainably Sourced Award-Winning Wines | Meadowcroft Wines\r\n\r\nPremium quality at discounted prices! \r\n\r\nThis men\'s jacket is very popular in countries such as Australia. You can search for it on Google using images.\r\n\r\nLIVERPOOL MENS / KIDS JACKETS\r\nhttps://88.center/products/liverpool-mens-jackets\r\n\r\nOur men\'s jackets are brand new, but some may have minor imperfections. These imperfections are due to small mistakes during the production process and do not affect the overall quality or durability of the jacket.\r\n\r\n We believe that even with these minor imperfections, our jackets are still worth owning and wearing. By purchasing from us, you\'re not only saving money, but you\'re also supporting our sustainable fashion initiative. Join us in making high-quality fashion more accessible and affordable for everyone.\r\n\r\nFor bulk purchase or customized orders, please contact us at service@88.center. We would be happy to assist you in placing your order and fulfilling your specific requirements and in a reasonable price.',''),(182,2,39,'7','Tanishq',''),(183,2,39,'2','tanishq.singh@growthnatives.com',''),(184,2,39,'3','(844) 718-9628',''),(185,2,39,'5','Wines',''),(186,2,39,'6','Form Testing',''),(205,2,43,'7','Tanishq',''),(206,2,43,'2','tanishq.singh@gmail.com',''),(207,2,43,'3','(844) 718-9622',''),(208,2,43,'5','Wines',''),(209,2,43,'6','Testing',''),(210,2,44,'7','Rana data',''),(211,2,44,'2','hirevanow1@gmail.com',''),(212,2,44,'3','(415) 854-1437',''),(213,2,44,'5','Media Inquiry',''),(214,2,44,'6','Hello, My name is Rana. I provide data entry services at USD 9/hour. I have more than 10 years of experience. \r\n\r\nPlease share your requirements at hirevanow1@gmail.com.',''),(215,2,45,'7','Shelly Trice',''),(216,2,45,'2','elsa.trice@googlemail.com',''),(217,2,45,'3','(508) 812-0477',''),(218,2,45,'5','Influencer Inquiry',''),(219,2,45,'6','Follow this method and see results by tomorrow\r\nhttps://leads.onlineadagent.net 		\r\n\r\nShelly',''),(220,2,46,'7','testdata',''),(221,2,46,'2','testdata@google.com',''),(222,2,46,'3','(020) 166-7677',''),(223,2,46,'5','Wines',''),(224,2,47,'7','test data',''),(225,2,47,'2','testdata@google.com',''),(226,2,47,'3','(020) 166-7677',''),(227,2,47,'5','Wines',''),(228,2,48,'7','test data',''),(229,2,48,'2','testingabc@google.com',''),(230,2,48,'3','(020) 166-7677',''),(231,2,48,'5','Wines',''),(232,2,49,'7','test data',''),(233,2,49,'2','testdata@google.com',''),(234,2,49,'3','(020) 166-7677',''),(235,2,49,'5','Wines',''),(236,2,50,'7','test data',''),(237,2,50,'2','testdata@google.com',''),(238,2,50,'3','(020) 166-7677',''),(239,2,50,'5','Wines',''),(240,2,51,'7','test data',''),(241,2,51,'2','testdata@google.com',''),(242,2,51,'3','(020) 166-7677',''),(243,2,51,'5','Wines',''),(244,2,52,'7','test data',''),(245,2,52,'2','testdata@google.com',''),(246,2,52,'3','(020) 166-7677',''),(247,2,52,'5','Wines',''),(248,2,53,'7','Maude Goethe',''),(249,2,53,'2','maude.goethe40@hotmail.com',''),(250,2,53,'5','Careers',''),(251,2,53,'6','Hello\r\n\r\nI wanted to share an exciting course I just found on Building Passive Income with AI Tools.\r\n\r\nThis course is perfect for those who want to create a stream of passive income with minimal effort.\r\n\r\nYou\'ll learn to leverage the power of AI tools, automate income generation, and reduce your workload.\r\n\r\nDesigned for entrepreneurs, investors, or anyone looking to build a reliable source of passive income, the course will guide you through the process of identifying profitable opportunities, building automated income systems, and scaling your income streams.\r\n\r\nCheck out the course here: https://bit.ly/aiwithprofit\r\n\r\nBest regards\r\nMaude',''),(252,2,54,'7','Vanita Schulz',''),(253,2,54,'2','schulz.vanita39@gmail.com',''),(254,2,54,'3','(802) 249-9224',''),(255,2,54,'5','Influencer Inquiry',''),(256,2,54,'6','Dear meadowcroftwines.com Owner,\r\n\r\nAre you struggling to improve your online presence and reach your target audience? Look no further than my expert SEO services at https://fiverrseoer.com/. With over 8 years of experience and a focus on competitor research, I can create a personalized SEO strategy that caters to your unique business needs.\r\n\r\nAt https://fiverrseoer.com/, we offer a range of affordable SEO services, including website analysis, keyword research, on-page optimization, link building, and ongoing monitoring and reporting. Whether you’re an enterprise, mid-level enterprise, SMB, or a small website, our services can help you stay ahead of the competition and dominate your industry.\r\n\r\nBy partnering with us, you can rest assured that your website is in good hands. We\'re located in the heart of Silicon Valley and we pride ourselves on staying up-to-date with the latest SEO trends and techniques.\r\n\r\nVisit us at https://fiverrseoer.com/ to learn more about our services and how we can help your business grow.\r\n\r\nBest regards,\r\n\r\nSam',''),(257,2,55,'7','Tammi Petri',''),(258,2,55,'2','ppetri1964@comcast.net',''),(259,2,55,'5','Customer Service',''),(260,2,55,'6','Hi there,\r\nI am wondering if you rent your space for private events? I am looking for a spot to host a bridal shower for 25+/- people in August (5th or 12th). Thanks in advance for getting back to me with any information you have.\r\n\r\nBest, \r\nTammi Petri',''),(261,2,56,'7','David Wilmes',''),(262,2,56,'2','sales@651graphics.com',''),(263,2,56,'3','(651) 207-2525',''),(264,2,56,'5','Customer Service',''),(265,2,56,'6','Hey website,\r\n\r\nI\'m writing on behalf of 651Graphics, a company that specializes in Custom Embroidery, Sublimation Printing, Heat Transfer Vinyl Graphics, and Sign & Vehicle Vinyl Graphics. We\'re on the hunt for some big ticket items and we thought you might be able to help.\r\n\r\nAfter some really great years, 651Graphics has some extra cash to throw around. We\'re looking to buy two vehicles with a budget of $30K-$50K each. We\'re also looking for a house with a budget of $3M and a factory with land for $8M-$10M.\r\n\r\nWe\'re trying to find the right people to help us find what we\'re looking for. If you\'ve got any leads, suggestions, or recommendations, we\'d love to hear from you.\r\n\r\nYou can reach us at (651) 489-7546 / (651) 207-2525 or at admin@651graphics.com or sales@651graphics.com. And if you\'re the one who connects us with what we\'re looking for, we\'re willing to pay a commission.\r\n\r\nThanks for taking the time to read this. We hope to hear back from you soon.\r\n\r\nBest regards,\r\n\r\n651Graphics',''),(266,2,57,'7','John Mays',''),(267,2,57,'2','john@dineshore.com',''),(268,2,57,'3','(727) 560-8456',''),(269,2,57,'5','Wines',''),(270,2,57,'6','Carry your Meadow Craft Cabernet Sauvignon for the past two years, can\'t  get a call back from Twenty-One XXI?\r\ncan you give me some direction so I can keep carrying your wonderful wine?',''),(271,2,58,'7','Tim K.',''),(272,2,58,'2','business.data.leads.01@gmail.com',''),(273,2,58,'3','(917) 640-0466',''),(274,2,58,'5','Customer Service',''),(275,2,58,'6','We stopped by meadowcroftwines.com and we have a question. Are you having difficulty trying to generate organic traffic and sales for your website?\r\n\r\nLook no further!\r\n\r\nOur team is stationed in both San Jose and Toronto. We have the proficiency and commitment to help you in reaching your goals.\r\n\r\nFor only $500, this fantastic package saves you a massive $1500 off retail. \r\n\r\nWatch this 1-minute video for all the specifics: https://youtu.be/7zwIGmFaVvQ\r\n\r\nAnd if you setup a Zoom within the next 10 days, you\'ll receive not one, but two unreal bonuses! Visit us for all the details and let’s book a call today. \r\n\r\nWe will improve your site, increase your organic traffic, and help you make more money.\r\n\r\nVisit: https://setupmywebsite.net/\r\n\r\nWe look forward to speaking with you soon!\r\n\r\nTim K.  \r\nCSR  \r\n\r\nFOW - Setup My Website   \r\nToronto  \r\nSan Jose  \r\n\r\n\r\n\r\n\r\nClick the following link to unsubscribe: https://easyunsubscribe.info/unsubscribe.php?d=meadowcroftwines.com',''),(276,2,59,'7','Kathleen Donlan',''),(277,2,59,'2','kathleendonlan@yahoo.com',''),(278,2,59,'3','(415) 310-8841',''),(279,2,59,'5','Customer Service',''),(280,2,59,'6','Good Morning,\r\n\r\nMy name is Kathleen Donlan, and I\'ve been a member of the Meadowcroft Winery for a few years now.  \r\n\r\nMy son attends Star Academy in San Rafael which is a non-profit school for special education students.  Our students come from Sonoma, Marin, Alameda, Solano, Contra Costa--basically, the wider Bay Area and North Bay. \r\n\r\nWe are hosting our annual fundraiser dinner and silent auction next month and I wondered if you might be able to donate wine, a winery tour, wine and tasting experiences—any kind of product, packages and/or winery tours and tasting experience that we can offer during our silent auction.  We would be so grateful for whatever products and experiences you could donate to help make this fundraiser a success!  \r\n\r\nThank you so much for your consideration of this request.  I hope to hear back from you soon.\r\n\r\nPlease see the link below for more about Star Academy and our amazing students!\r\n\r\nhttps://www.staracademy.org/about-us/about-star-academy\r\n\r\nBest,\r\n\r\nKathleen Donlan',''),(281,2,60,'7','Joe Celine',''),(282,2,60,'2','joe@spotlessdigital.net',''),(283,2,60,'3','(714) 908-9255',''),(284,2,60,'5','Customer Service',''),(285,2,60,'6','Hi, \r\nAre you still in business? \r\nI found a few errors on your site.\r\nWould you like me to send over a screenshot of those errors?\r\n\r\nRegards\r\nJoe\r\n(714) 908-9255',''),(286,2,61,'7','Tanu Roy',''),(287,2,61,'2','hirevanow1@gmail.com',''),(288,2,61,'3','(303) 736-9129',''),(289,2,61,'5','Media Inquiry',''),(290,2,61,'6','Hello, This is Tanu, a Certified copywriter and content writer. I have 14 years of experience in writing blogs, articles, e-commerce product descriptions, SEO content, website content, business service descriptions, newsletter content, content for brochures, Proofreading, Social Media Captions, and content for SOPs. \r\nMy content has been ranked a lot of times on google. You will find my experience valuable for your business growth. I have also gone through your website meadowcroftwines.com and I have written content for your industry.\r\nI charge USD 100 for 1000 words. Let me know if you have any requirements right now. Please send me an email at hirevanow1@gmail.com.',''),(291,2,62,'7','Yuki Uehara',''),(292,2,62,'2','Yukuehara@yahoo.com',''),(293,2,62,'5','Media Inquiry',''),(294,2,62,'6','Hi there! My name is Yuki Uehara!\r\n\r\nI am a lifestyle influencer/blogger on Instagram in the Los Angeles and New York  area. Your Winery looks absolutely AMAZING. My Instagram is https://www.instagram.com/itsyuks and my blog is https://itsyuks.wordpress.com/ \r\n\r\nI would love the opportunity to come in for a media tasting and feature your winery on all of my social media sites. I would provide high quality photos and reels to you as well as my monthly 50k viewers. I would love to have the opportunity to work with your winery, I look forward to hearing from you soon. \r\n\r\nBest regards,\r\nYuki Uehara',''),(295,2,63,'7','Denise Masumoto',''),(296,2,63,'2','masumoto@stanford.edu',''),(297,2,63,'3','(650) 725-2706',''),(298,2,63,'5','Customer Service',''),(299,2,63,'6','Hello,\r\n\r\nI was interested in bringing a group of 20-25 people to Meadowcroft Wines on the afternoon of Friday, May 19. Could you let me know what your availability and what fees are involved for groups of our size?\r\n\r\nThank you,\r\nDenise',''),(300,2,64,'7','Jordan Reid',''),(301,2,64,'2','jreid@loansourcecapital.com',''),(302,2,64,'3','(231) 599-5997',''),(303,2,64,'5','Careers',''),(304,2,64,'6','Dear Christopher,\r\n\r\nWe received our mailed offer for Meadowcroft Wines back, so we want to inform you that you have a pre-approved line of credit of $178,000.00 based on your Experian business credit report. This exclusive offer will end on March 31st, 2023.\r\n\r\nTo take advantage of this opportunity or to explore other financial options, please contact our loan officers at (231) 599-5997 or complete the Online verification form https://loansourcecapital.com/apply/ to view all current offers for Meadowcroft Wines.\r\n\r\nIf replying via email, please include the desired credit amount and intended use of funds.\r\n\r\nDon\'t miss this chance to boost your business. We look forward to partnering with you!\r\n\r\nBest regards,\r\n\r\nJordan Reid  |  Head of Underwriting\r\nPhone:  (231) 599-5997',''),(305,2,65,'7','Joe Celine',''),(306,2,65,'2','joe@ecomvisibility.com',''),(307,2,65,'3','(714) 908-9255',''),(308,2,65,'5','Careers',''),(309,2,65,'6','Hi, \r\nAre you still in business? \r\nI found a few errors on your site.\r\nWould you like me to send over a screenshot of those errors?\r\n\r\nRegards\r\nJoe\r\n(714) 908-9255',''),(310,2,66,'7','Coospibyw',''),(311,2,66,'2','Coospib@barrettmail.xyz',''),(312,2,66,'3','(066) 640-5320',''),(313,2,66,'4','766',''),(314,2,66,'5','Media Inquiry',''),(315,2,66,'6','Linden HM, Kurland BF, Peterson LM, Schubert EK, Gralow JR, Specht JM, Ellis GK, Lawton TJ, Livingston RB, Petra PH, Link JM, Krohn KA, Mankoff DA <a href=https://cialis.mom>online cialis pharmacy</a> I ve seen your recommended hcg use plenty of times and plenty of people have used it with success',''),(316,1,67,'7','Coospibyw',''),(317,1,67,'3','Coospib@barrettmail.xyz',''),(318,1,67,'4','(553) 064-2843',''),(319,1,67,'5','Trivia Experience',''),(320,1,67,'6','Jones websites, Infowars and Prison Planet, are repositories of conspiracy craziness on par with David Icke s lizard people, including 9 11 Truthers, New World Order conspiracy theorists including, of course, the Illuminati and the Rothschilds, and a heaping helping of anti vaccine and alt med conspiracy mongering <a href=https://cialis.makeup>buy cialis and viagra online</a> Kemp DE, Franco KN Possible leukopenia associated with long term use of echinacea',''),(321,2,68,'7','Eddy Thyer',''),(322,2,68,'2','thyer.eddy@gmail.com',''),(323,2,68,'3','(469) 471-3140',''),(324,2,68,'5','Customer Service',''),(325,2,68,'6','Hey, it\'s Eddy Thyer\r\nAnd this is my final reminder that your free keto cookbook will EXPIRE soon...\r\n==> Click Here (https://bit.ly/3JWQVFe) To Get Your Free Copy Before It Expires.\r\nTo date, thousands of men and women have already received their 21 yummy and healthy keto recipes cookbook...\r\nI don\'t want you to miss this.\r\nThank you,\r\nEddy Thyer',''),(326,2,69,'7','Edith Sly',''),(327,2,69,'2','sly.edith72@gmail.com',''),(328,2,69,'3','(289) 314-1366',''),(329,2,69,'5','Media Inquiry',''),(330,2,69,'6','Hey, entrepreneurs and affiliate marketers! Are you ready to take your game to the next level? Check out RPM 3.0 at https://bit.ly/RpmSystem! \r\n\r\nAttention all entrepreneurs and affiliate marketers! RPM 3.0 is here and it\'s a game-changer! Say goodbye to the days of editing and tweaking - our new autotag technology sets up a full system for you! Get started today at https://bit.ly/RpmSystem. \r\n\r\nThis is not the RPM you knew and loved, this is a new beast entirely! Our higher converting pages and many new features mean that you can finally reach the income levels you\'ve always dreamed of. Don\'t wait any longer, try RPM 3.0 now at https://bit.ly/RpmSystem.\r\n\r\nOur unique affiliate marketing system means you can earn from dozens of income streams using just one main link that tracks across all the income streams we have. That\'s right, dozens of income streams with just one link! Don\'t miss out on this opportunity to transform your business and start earning like never before. Sign up for RPM 3.0 today at https://bit.ly/RpmSystem!\r\n\r\nAre you ready to take your income to the next level? RPM 3.0 is the tool you\'ve been waiting for. Don\'t miss out on this opportunity to transform your business and start earning like never before. Try RPM 3.0 today at https://bit.ly/RpmSystem!',''),(331,2,70,'7','Jennifer Obrien',''),(332,2,70,'2','jenni@dandydemo.com',''),(333,2,70,'3','(949) 755-7782',''),(334,2,70,'4','9497557782',''),(335,2,70,'5','Influencer Inquiry',''),(336,2,70,'6','Want us to help you delete unfair bad reviews from Google, Yelp, FB, TripAdvisor and other main review sites? That\'s what our software does without any work needed on your part - and that\'s why some of the largest brands in the world like Wyndham trust us to remove unfair bad reviews, use ChatGPT to reply to reviews and more.\r\n\r\nDo you have 15 minutes for a call today? \r\n\r\nSchedule a Call Here: meetings.hubspot.com/dandy-/dandy-demo-numan or for more information please visit our website: getdandy.com/more-information\r\n\r\nYou can also call me directly at (949) 755-7782.\r\n\r\nWe’ve removed over 40,000 bad reviews and want to help you too. \r\n\r\nThank you,\r\n\r\n\r\nJennifer O\'brien | Director of Reviews\r\nGetDandy  - The First AI Powered Reputation Automation Platform\r\nPhone: (949) 755-7782\r\ngetdandy.com/more-information',''),(337,2,71,'7','Jennifer Obrien',''),(338,2,71,'2','jenni@dandydemo.com',''),(339,2,71,'3','(949) 755-7782',''),(340,2,71,'4','9497557782',''),(341,2,71,'5','Influencer Inquiry',''),(342,2,71,'6','Want us to help you delete unfair bad reviews from Google, Yelp, FB, TripAdvisor and other main review sites? That\'s what our software does without any work needed on your part - and that\'s why some of the largest brands in the world like Wyndham trust us to remove unfair bad reviews, use ChatGPT to reply to reviews and more.\r\n\r\nDo you have 15 minutes for a call today? \r\n\r\nSchedule a Call Here: meetings.hubspot.com/dandy-/dandy-demo-numan or for more information please visit our website: getdandy.com/more-information\r\n\r\nYou can also call me directly at (949) 755-7782.\r\n\r\nWe’ve removed over 40,000 bad reviews and want to help you too. \r\n\r\nThank you,\r\n\r\n\r\nJennifer O\'brien | Director of Reviews\r\nGetDandy  - The First AI Powered Reputation Automation Platform\r\nPhone: (949) 755-7782\r\ngetdandy.com/more-information',''),(343,2,72,'7','Jayne Seay',''),(344,2,72,'2','jayne.seay81@gmail.com',''),(345,2,72,'3','(417) 247-2138',''),(346,2,72,'5','Customer Service',''),(347,2,72,'6','My sincere greetings to you,\r\n\r\nLooking to boost your website\'s lead generation? Replace your outdated contact form with a conversational chatbot and experience the difference:\r\n\r\n- Improved User Experience\r\n- Increased Conversion Rates\r\n- Customizable & Scalable\r\n- Managed Hosting\r\n- Affordable Pricing (starting at $29/month)\r\n\r\nCurious to see how it works? Experience the chatbot for yourself at our website:\r\n===> https://bit.ly/betterchatbot\r\n\r\nYou\'ll find all the details you need, including pricing and customization options.\r\n\r\nBest regards,\r\nJayne',''),(348,2,73,'7','Rochell Lyttleton',''),(349,2,73,'2','hacker@autossabater.com',''),(350,2,73,'3','(847) 231-6081',''),(351,2,73,'5','Media Inquiry',''),(352,2,73,'6','We have hacked your website meadowcroftwines.com and extracted your databases. This was due to the security holes you had in your your site/server which have gained us remote control of everything that was on the server. \r\n\r\nOur team is mostly interested in customer, administrative, and employee information which we have extracted through your databases once we got remote control over the server. It still needs to be sorted out but it will be well-organized once finished. First, we will be going through the emails/sms information and contacting the recipient how you held in disregard about their information being exposed to a hacking group when you could have stopped it. This would be detrimental to your personal image with these relationships with these people. Lastly, now that we have information not only will we be monetizing off it with our methods but made public or sold to other people that will do whatever they wish with the information also after we are done.\r\n\r\nNow you can put a stop to this by paying a $3000 fee (0.10 BTC) in bitcoin to the address 37J6b5DADjC5WubZX5PCGNTg2WXjdVa3Fa We will be notified of payment which we will then delete the information we have obtained, patch the hole in the site/server which we got in and remove you from any future targeting in the future. You have 72 hours in doing so after viewing this message or the series of steps will commence. You can obtain bitcoin through such services such as paxful.com or do a search on bing.com',''),(353,2,74,'7','Davis Tousignant',''),(354,2,74,'2','tousignant.davis@googlemail.com',''),(355,2,74,'3','(530) 708-5969',''),(356,2,74,'5','Influencer Inquiry',''),(357,2,74,'6','Hello\r\n\r\nMy name is Davis. Recently, I have left my permanent position as an SEO expert at one of the leading SEO agencies in India to work as a freelancer.\r\n\r\nI have found meadowcroftwines.com on Facebook\r\n\r\nI ran a quick analysis of meadowcroftwines.com and determined that we could boost your domain rating, SERPs and ultimately, your traffic and sales through one of my SEO packages.\r\n\r\nYou can see everything I have to offer here: https://www.fiverr.com/jamshednarayana\r\n\r\nAll of my packages are extremely affordable as I have just started freelancing and want to pass on a good deal for your site.\r\n\r\nThanks for your time and I look forward to ranking meadowcroftwines.com on Google :)\r\n\r\nKind regards\r\nDavis Tousignant',''),(358,2,75,'7','Joel',''),(359,2,75,'2','joel.gage20@gmail.com',''),(360,2,75,'3','(303) 736-9129',''),(361,2,75,'5','Customer Service',''),(362,2,75,'6','Hi, I\'m Joel, a 14-year-experienced SEO copywriter and content writer. I have created top-ranking content for blogs, articles, e-commerce products, and websites for my clients. My fee is USD 50 for 1000 words, and I\'m open to discussing your requirements. \r\nJust send me an email at Joel.Gage20@gmail.com.',''),(363,2,76,'7','GUADALUPE',''),(364,2,76,'2','GUADALUPE@APEXSERVICING.COM',''),(365,2,76,'3','(800) 943-0692',''),(366,2,76,'4','NA',''),(367,2,76,'5','Wines',''),(368,2,76,'6','PAYROLL/HR\r\n\r\n Hello,\r\n I am contacting you regarding a confidential matter of an employee payroll deduction. I am requesting a secure Fax Number / Email Address for your company\'s payroll department. I sincerely appreciate your help with my request. Please call me at 1800-943-0692 Please Reference Number \r\n  EJP-9BB-ACCL	\r\nThank you',''),(369,2,77,'7','Nataly Komova',''),(370,2,77,'2','natalykomovawrites@gmail.com',''),(371,2,77,'5','Careers',''),(372,2,77,'6','Hi\r\n\r\nBy way of an introduction, I am a freelance writer and expert contributor for several magazines and blogs. I am presently aiming to build up my online presence, and would therefore, like to offer you to write some expert articles for your blog on meadowcroftwines.com (free of charge).\r\n\r\nIf you are interested, please send me up to five topics that you would like me to cover. It will take me around a week or maybe less to write up the articles.\r\n\r\nI look forward to hearing from you. Please ensure that you copy in my personal email in your reply, as sometimes, my work emails tend to go to the spam folder: natalykomova1992@gmail.com\r\n\r\nKind regards\r\n\r\nNataly Komova',''),(373,2,78,'7','Margherita Wooden',''),(374,2,78,'2','wooden.margherita@hotmail.com',''),(375,2,78,'3','(513) 443-0595',''),(376,2,78,'5','Media Inquiry',''),(377,2,78,'6','https://bit.ly/GPTBlasterVip\r\n\r\nIntroducing GPT Blaster - the world\'s first true auto chat GPT website publisher that allows you to create set-and-forget websites in any niche on autopilot mode!\r\n\r\nWith GPT Blaster, you can harness the power of chat GPT to effortlessly create stunning websites that are optimized for maximum conversions. Simply choose your niche, set it and forget it, and watch as GPT Blaster does all the work for you.\r\n\r\nhttps://bit.ly/GPTBlasterVip\r\n\r\nWhether you\'re a seasoned marketer or just starting out, GPT Blaster is the perfect tool to take your business to the next level. Say goodbye to the hassle of website building and hello to effortless online success.\r\n\r\nSo why wait? Get started with GPT Blaster today and start building your dream website with ease!\r\n\r\nhttps://bit.ly/GPTBlasterVip',''),(378,2,79,'7','Joe Celine',''),(379,2,79,'2','joe@ecomvisibility.com',''),(380,2,79,'3','(714) 908-9255',''),(381,2,79,'5','Influencer Inquiry',''),(382,2,79,'6','Hi, \r\nAre you still in business? \r\nI found a few errors on your site.\r\nWould you like me to send over a screenshot of those errors?\r\n\r\nRegards\r\nJoe\r\n(714) 908-9255',''),(383,2,80,'7','Pattie Boyd',''),(384,2,80,'2','lapp.shenna@googlemail.com',''),(385,2,80,'5','Careers',''),(386,2,80,'6','Hi owner of meadowcroftwines.com,\r\n\r\n\r\nWe are searching for new writers to join our platform to carry out entry-level blog writing tasks.\r\n\r\nThere is an hourly rate of $35, with training being given for the job.\r\n\r\nYou would be assisting e-commerce stores to write brief blog entries to introduce their new products.\r\n\r\nFor this job, you would be given an image of the product and details about it, such as its cost, and then you must craft a 500-word blog post about the product for the business to post on their blog. Only fundamental English and grammar skills are necessary for this job and full guidance will be provided.\r\n\r\nThe contract does not have a fixed duration and the hourly rate is $35.\r\n\r\nTo qualify, you should be able to access a laptop or phone, work autonomously, possess fundamental English reading and writing abilities, strictly adhere to instructions, have a dependable internet connection, and have at least 5 hours of availability each week.\r\n\r\nIf you are available to start soon, click this link to begin the application process now: https://www.trustrose.com/contentwriter .\r\n\r\nDon\'t hesitate, these opportunities won\'t last long.\r\n\r\nLooking out for you,\r\n\r\n\r\nPattie\r\n(The relationship between Trustrose and Paidonlinewritingjobs is a partnership, we are two separate companies)\r\nUNSUBSCRIBE: https://www.trustrose.com/unsubscribe',''),(387,2,81,'7','greg fleming',''),(388,2,81,'2','villagegrind@hotmail.com',''),(389,2,81,'3','(760) 662-6822',''),(390,2,81,'5','Wines',''),(391,2,81,'6','How many cases of the Meadowcroft label are produced each year?',''),(392,2,82,'7','Jennifer Obrien',''),(393,2,82,'2','jenni.obrien@dandydemo.com',''),(394,2,82,'3','(949) 755-7782',''),(395,2,82,'4','ca',''),(396,2,82,'5','Wines',''),(397,2,82,'6','Want us to help you delete unfair bad reviews from Google, Yelp, FB, TripAdvisor and other main review sites? That\'s what our software does without any work needed on your part - and that\'s why some of the largest brands in the world like Wyndham trust us to remove unfair bad reviews, use ChatGPT to reply to reviews and more.\r\n\r\nDo you have 15 minutes for a call today? \r\n\r\nSchedule a Call Here: meetings.hubspot.com/dandy-/dandy-demo-numan or for more information please visit our website: getdandy.com/more-information\r\n\r\nYou can also call me directly at (949) 755-7782.\r\n\r\nWe’ve removed over 40,000 bad reviews and want to help you too. \r\n\r\nThank you,\r\n\r\n\r\nJennifer O\'brien | Director of Reviews\r\nGetDandy  - The First AI Powered Reputation Automation Platform\r\nPhone: (949) 755-7782\r\ngetdandy.com/more-information',''),(398,2,83,'7','Sayre Miller',''),(399,2,83,'2','sayremiller@gmail.com',''),(400,2,83,'3','(559) 930-3619',''),(401,2,83,'5','Wines',''),(402,2,83,'6','I imagine that you encounter your share complaints and grievances in this space, but I am writing with neither. We often forget to tell others when things operate flawlessly. Your website is a complete joy in this age of flashing icons and advertising screens that overlay the information one is attempting to navigate. I love your layout and the whimsical honeycomb wallpaper...but not quite as much as I love your wines, which never fail to please. Thank you!',''),(403,2,84,'7','Cash Galvez',''),(404,2,84,'2','cash@visibilityresults.com',''),(405,2,84,'3','(305) 741-0517',''),(406,2,84,'5','Careers',''),(407,2,84,'6','Just read Hunt Bailie\'s review on your google page, sounds like you do great work.\r\n\r\nI discovered a few hidden errors on your site that are preventing you from showing up online when someone searches near you.\r\n\r\nI just made a visibility report for you that reveals what to fix, it\'s completely complementary with no strings attached. \r\n\r\nYou can click here to unlock it: https://visibilityresults.com?url=https://www.meadowcroftwines.com',''),(408,2,85,'7','Ash',''),(409,2,85,'2','wpwebserviceprovider@gmail.com',''),(410,2,85,'3','(213) 279-8812',''),(411,2,85,'5','Influencer Inquiry',''),(412,2,85,'6','Hi there! I\'m Ash, a social media specialist. I craft engaging posts across Facebook, Twitter, Instagram, LinkedIn, and Pinterest. With topic, keyword, and competitor research, I ensure maximum impact. Each post includes captivating visuals, compelling captions, and relevant hashtags. \r\nFee: $30/post. Elevate your social media presence by reaching me at wpwebserviceprovider@gmail.com.',''),(413,2,86,'7','Stanley Stowell',''),(414,2,86,'2','stowell.stanley35@gmail.com',''),(415,2,86,'3','(204) 294-3169',''),(416,2,86,'5','Careers',''),(417,2,86,'6','Are you keen to get our premium WordPress plugins and themes for free? We\'ve got over 2000 on our site and we\'re looking to add more each day. If you\'re currently using WordPress, or plan in the near future, it\'s worthwhile to browse through the library we have. To start, visit https://jilt.space/ZF and browse through the list of items. We\'re here to answer any questions you might have about our items.',''),(418,2,87,'7','Linda  Schmidt',''),(419,2,87,'2','urslow1@aol.com',''),(420,2,87,'3','(760) 801-7067',''),(421,2,87,'5','Customer Service',''),(422,2,87,'6','Hi - Do you have picnic facilities and/or do you have food available for purchase?\r\n\r\nThanks',''),(423,2,88,'7','Susan E Ballou',''),(424,2,88,'2','susana.ballou@gmail.com',''),(425,2,88,'3','(707) 789-9595',''),(426,2,88,'5','Wines',''),(427,2,88,'6','My son Spencer came over last night to celebrate Mother\'s Day with me. We opened a 2021 Rose Wine, and were disappointed for the first time in a wine from Meadowcroft. It was not drinkable. Not sure if I should try another. I lived it at the tasting room.',''),(428,2,89,'7','Lori Smith',''),(429,2,89,'2','lsmith@casbo.org',''),(430,2,89,'3','(916) 801-9440',''),(431,2,89,'5','Wines',''),(432,2,89,'6','Hi, I am putting together a staff retreat for the California Association of School Business Officials.  We have approximately 22 that will be participating and love the idea of blending our own wine.  Do you have availability on Thursday, June 29 from 1-4 pm?  Thank you!',''),(433,2,90,'7','Stephen Gates',''),(434,2,90,'2','gary.horrell@yahoo.com',''),(435,2,90,'5','Careers',''),(436,2,90,'6','Hello, it\'s Stephen from ERC Concepts in Miami.\r\n\r\nBecause you kept your employees during the pandemic, the US government set aside funds for your business.\r\n\r\nYou are eligible for up to $26,000 per employee. This is free money that can be used for anything and never has to be paid back.\r\n\r\nWe\'ve been trusted by American businesses for 14+ years and helped over 30,000 businesses like yours recover more than $4.5 BILLION in ERC funds. \r\n\r\nWe\'ve helped some big names including McDonalds, NFL, NBA, NHL, MLB, Visa, Rolex, Citibank, AMEX, Uber, and Burger King.\r\n\r\nThere\'s zero risk. No upfront fees. We get paid when you get paid. \r\n\r\nQualifying is fast and simple.\r\n\r\nStep 1:\r\nWe determine if you qualify\r\n\r\nStep 2:\r\nWe analyze your claim and submit the paperwork on your behalf.\r\n\r\nStep 3:\r\nReceive up to $26,000 per employee that you don\'t have to pay back.\r\n\r\nIf your US-based business has 5 or more W-2 employees, then we can help you get the funds you need even if you think that you don\'t qualify. \r\n\r\nFiling deadlines are approaching so don\'t delay.\r\n\r\nClick here to get started >>>\r\nhttp://erceasy.online\r\n\r\nDon\'t hesitate to get in touch with me any time if you have questions: \r\n\r\nEmail:  stephen@erceasy.com\r\nPhone or Text:  1-786-691-1045\r\n\r\nThanks, and I look forward to hearing from you soon!\r\n\r\nStephen \r\n\r\nhttp://erceasy.online',''),(437,2,91,'7','Matt Spivey',''),(438,2,91,'2','matt.spivey@gmail.com',''),(439,2,91,'3','(812) 755-6304',''),(440,2,91,'6','https://bit.ly/DFY_Blogs\r\n\r\nIntroducing the revolutionary DFY Blog Creator - the first AI-based platform that creates fully self-updating, Google-approved blogs with 100% original content. With this powerful tool, you can create up to 1,00,000 SEO optimized blogs in red-hot niches without writing a single word yourself!\r\n\r\nSay goodbye to the days of wasting hours creating and updating blogs. With DFY Blogs, you can turn your ideas into search engine-friendly blogs in just 3 clicks. This newbie-friendly technology takes care of everything - from researching trending topics to writing the content and publishing it on your website.\r\n\r\nBut that\'s not all - with DFY Blogs, you can profit instantly by using these blogs for ClickBank, AdSense, or promoting other affiliate offers. Plus, with the premium AdSense booster, you can rotate ads on your blogs and get maximum click-through rates.\r\n\r\nhttps://bit.ly/DFY_Blogs\r\n\r\nDon\'t waste your time and money on grunt work anymore. With DFY Blogs, you can turn leads into buyers without lifting a finger. Simply enter a few details, and your blog is ready to go! Use these stunning DFY blogs to get real results and attract floods of leads for your other products and services.\r\n\r\nBest of all, you\'ll never have to worry about paying huge money monthly to top blogging platforms. DFY Blogs is 100% easy to use and completely newbie-friendly. Whether you\'re an experienced blogger or just starting, you\'ll be amazed at how simple and effective this platform is.\r\n\r\nDon\'t miss out on the opportunity to grab your share from the widely untapped $584 billion content marketing industry. Get started with DFY Blogs today and watch your profits soar!\r\n\r\nhttps://bit.ly/DFY_Blogs',''),(441,2,92,'7','Jamy O Faulhaber',''),(442,2,92,'2','jamyfaulhaber@gmail.com',''),(443,2,92,'3','(510) 646-6339',''),(444,2,92,'5','Customer Service',''),(445,2,92,'6','Just to say that I will pick-up the case of wine on Friday, May 26 around 11 am.  Please confirm that the shipment will be ready at that time at the above email.\r\n\r\nThank you.\r\n\r\nJamy Faulhaber',''),(446,2,93,'7','Jennifer O\'brien',''),(447,2,93,'2','jenn@getdandyaitech.com',''),(448,2,93,'3','(888) 592-1563',''),(449,2,93,'5','Influencer Inquiry',''),(450,2,93,'6','Want us to help you delete unfair bad reviews from Google, Yelp, FB, TripAdvisor and other main review sites? We noticed Meadowcroft Wines has 17 unfair bad reviews on Yelp and we can help remove them. That\'s what our AI powered software does without any work needed on your part  - and that\'s why some of the largest brands in the world like Wyndham trust us to consistently remove unfair bad reviews from the main review sites without any work needed on their end. \r\n\r\nDo you have 15 minutes for a call today? \r\n\r\nSchedule a Call Here:\r\n\r\nhttps://meetings.hubspot.com/dandy-/gsa or for more information please visit our website: https://getdandy.com/gsa\r\n\r\nYou can also call me directly at (888) 592-1563\r\n\r\nWe’ve removed over 40,000 bad reviews and want to help you too. \r\n\r\nThank you,\r\n\r\n\r\nJennifer O\'brien | Director of Reviews\r\nGetDandy  - The First AI Powered Reputation Automation Platform\r\nPhone: (888) 592-1563\r\nhttps://getdandy.com/gsa\r\n\r\nUsubscribe: https://bit.ly/dandyunsub',''),(451,2,94,'7','Joe Celine',''),(452,2,94,'2','joe@ecomvisibility.com',''),(453,2,94,'3','(714) 908-9255',''),(454,2,94,'5','Careers',''),(455,2,94,'6','Hi, \r\nAre you still in business? \r\nI found a few errors on your site.\r\nWould you like me to send over a screenshot of those errors?\r\n\r\nRegards\r\nJoe\r\n(714) 908-9255',''),(456,2,95,'7','Émilie Girard',''),(457,2,95,'2','market.wizard.ai@gmail.com',''),(458,2,95,'5','Media Inquiry',''),(459,2,95,'6','Hello!\r\n\r\nDiscover the Content Generation Revolution with this groundbreaking AI!\r\n\r\nAre you tired of spending hours crafting captivating newsletters and impactful Twitter threads? Do you wish for an efficient solution that automatically generates high-quality content in an instant?\r\n\r\nLook no further because this revolutionary AI is here to meet your needs! With its cutting-edge technology, all you have to do is enter a URL or a topic, and the AI will instantly generate compelling marketing emails and impactful tweets.\r\n\r\nThe urgency of our offer is palpable! In today\'s competitive world, it is essential to quickly attract and engage your audience. Powerful marketing messages play a crucial role in the growth of your business.\r\n\r\nHowever, finding the right words and captivating your audience can be time-consuming and challenging. That\'s where the AI comes into play! With its ability to analyze and comprehend data instantly, it can generate compelling marketing messages that will help you increase your impact and achieve exceptional results.\r\n\r\nImagine the speed at which you can generate high-quality newsletters, engaging marketing emails, and captivating Twitter threads using this revolutionary AI. No more racking your brain to find the best wording or spending hours refining your content. Save precious time and boost your productivity by letting the AI do the work for you!\r\n\r\nClick now on the following link to learn more about this AI and discover how it can transform your marketing approach: https://tinyurl.com/3t4j5vrw\r\n\r\nDon\'t let your competitors get ahead. Seize this unique opportunity to harness the power of AI to generate powerful and engaging marketing messages. The future of marketing is in your hands. Act now and revolutionize your communication strategy!\r\n\r\nClick here to learn more: https://tinyurl.com/3t4j5vrw\r\n\r\nBest regards',''),(460,2,96,'7','Céline Lefebvre',''),(461,2,96,'2','contact@restaurantmanagementsoftware.com',''),(462,2,96,'5','Customer Service',''),(463,2,96,'6','Hello!\r\n\r\nDon\'t let your restaurant fall behind! Take action now!\r\n\r\nAre you searching for an efficient solution for managing your restaurant? Don\'t waste another second! I am pleased to introduce you to a revolutionary software that will fulfill all your needs.\r\n\r\nImagine being able to manage your menus, plan your floors, and oversee your tables with ease. This software offers you that possibility while allowing you to supervise your staff effortlessly. No more wasted time, no more costly errors!\r\n\r\nBut that\'s not all! Your customers will now be able to place their orders directly from their table, thanks to an integrated ordering feature. Say goodbye to forgotten or incorrect orders—your customers will love this seamless and modern experience.\r\n\r\nIn addition to that, the software offers you the ability to manage detailed reports and analyses. Make informed decisions and optimize your operations for even better results.\r\n\r\nImagine, too, that splitting bills will no longer be a bottleneck at the point of sale. The software handles this complex task in the blink of an eye, relieving your staff and providing a seamless customer experience.\r\n\r\nJoin the over 29,000 restaurateurs who already trust this tool. Whether you have a food truck, a bakery, or a fast-food establishment, this software adapts to all imaginable restaurant types.\r\n\r\nDon\'t let the competition get ahead. Click the link below now to discover how this software can transform your restaurant:\r\n\r\nhttps://tinyurl.com/4uzk3njh\r\n\r\nTime is precious, and your success cannot wait. Take action now and secure a competitive edge in the restaurant industry!\r\n\r\nDon\'t miss out on this opportunity!\r\n\r\nBest regards',''),(464,2,97,'7','Chau Fraire',''),(465,2,97,'2','chau.fraire@gmail.com',''),(466,2,97,'5','Influencer Inquiry',''),(467,2,97,'6','https://bit.ly/steel_bites\r\n\r\nGet Stronger Teeth and Healthier Gums in Just 60 Seconds!\r\n\r\nHi,\r\n\r\nAre you tired of struggling with tooth decay and weak gums? If so, then you\'re in the right place. I wanted to reach out and let you know about a simple and effective 60-second dental trick that can rebuild your teeth and gums while eliminating tooth decay. \r\n\r\nIt\'s a proven method that has helped countless people get back their dental health and avoid costly dental procedures like implants. Users are raving about how effective this trick is, and they can\'t believe the results they\'re seeing in just a matter of days. \r\n\r\nIf you\'re interested in learning more about this incredible trick and how it can transform your dental health, then I invite you to check out our program. You\'ll discover the step-by-step instructions you need to start using this dental trick tonight before bed, and you\'ll be on your way to healthier teeth and gums in no time.\r\n\r\nDon\'t let dental issues hold you back any longer. Take control of your dental health today with our proven 60-second dental trick. Click the link below to get started:\r\n\r\nhttps://bit.ly/steel_bites\r\n\r\nThank you for your time, and I look forward to hearing from you soon!\r\n\r\nBest regards,\r\n\r\nhttps://bit.ly/steel_bites',''),(468,2,98,'7','Shonda Rowley',''),(469,2,98,'2','shonda.rowley@gmail.com',''),(470,2,98,'3','(778) 808-7534',''),(471,2,98,'5','Media Inquiry',''),(472,2,98,'6','https://bit.ly/DFY_LinkedIn_Mastery\r\n\r\nIntroducing DFY LinkedIn Mastery - the ultimate solution for professionals looking to master LinkedIn and boost their career or business. With our exclusive access to high-quality, done-for-you LinkedIn mastery resources, you can take your LinkedIn game to the next level without any effort!\r\n\r\nhttps://bit.ly/DFY_LinkedIn_Mastery\r\n\r\nOur DFY LinkedIn Mastery package includes:\r\n\r\n- Professionally written LinkedIn profile templates that grab attention and showcase your skills and expertise.\r\n- Proven strategies for growing your LinkedIn network and generating high-quality leads.\r\n- Step-by-step guidance on how to optimize your LinkedIn content for maximum visibility and engagement.\r\n- Access to our exclusive LinkedIn training videos that provide insider tips and tricks for LinkedIn success.\r\n- And much more!\r\n\r\nhttps://bit.ly/DFY_LinkedIn_Mastery\r\n\r\nWith DFY LinkedIn Mastery, you\'ll get everything you need to master LinkedIn and achieve your goals. Whether you\'re a job seeker, a business owner, or a marketer, our package will help you leverage the power of LinkedIn to achieve success and grow your career or business.\r\n\r\nAnd the best part? You get 100% full unrestricted use rights to use, rebrand, re-sell, and profit from our DFY LinkedIn Mastery package. That\'s right - you can use our package to grow your own LinkedIn presence, or you can sell it to others for a profit!\r\n\r\nSo why wait? Get exclusive instant access to DFY LinkedIn Mastery today and start taking your LinkedIn game to the next level!\r\n\r\nhttps://bit.ly/DFY_LinkedIn_Mastery',''),(473,2,99,'7','Lyndia McMullen',''),(474,2,99,'2','l.a.mcmullen7@gmail.com',''),(475,2,99,'5','Customer Service',''),(476,2,99,'6','Are your corks compostable?',''),(477,2,100,'7','Jennifer Obrien',''),(478,2,100,'2','jenn@dandyreviewaitools.com',''),(479,2,100,'3','(949) 577-6294',''),(480,2,100,'4','346347',''),(481,2,100,'5','Media Inquiry',''),(482,2,100,'6','Hi,\r\n\r\nWant us to help you delete unfair bad reviews from Google, Yelp, FB, TripAdvisor and other main review sites? \r\nWe noticed Meadowcroft Wines has 17 unfair bad reviews on Yelp and we can help remove them. That\'s what our AI powered software does without any work needed on your part  - and that\'s why some of the largest brands in the world like Wyndham trust us to consistently remove unfair bad reviews from the main review sites without any work needed on their end. \r\n\r\nDo you have 15 minutes for a call today? \r\n\r\nSchedule a Call Here: meetings.hubspot.com/dandy-/review-removal-consult-ccfill or for more information please visit our website: getdandy.com/ai-removal-tool\r\n\r\nYou can also call me directly at (949) 577-6294\r\n\r\nWe’ve removed over 40,000 bad reviews and want to help you too. \r\n\r\nThank you,\r\n\r\n\r\nJennifer O\'brien | Director of Reviews\r\nGetDandy  - The First AI Powered Reputation Automation Platform\r\nPhone: (949) 577-6294\r\ngetdandy.com/ai-removal-tool\r\n\r\nUsubscribe: https://bit.ly/dandyunsub',''),(483,2,101,'7','Jennifer O\'brien',''),(484,2,101,'2','jenn@getdandyaitech.com',''),(485,2,101,'3','(888) 592-1563',''),(486,2,101,'5','Careers',''),(487,2,101,'6','Want us to help you delete unfair bad reviews from Google, Yelp, FB, TripAdvisor and other main review sites? We noticed Meadowcroft Wines has 17 unfair bad reviews on Yelp and we can help remove them. That\'s what our AI powered software does without any work needed on your part  - and that\'s why some of the largest brands in the world like Wyndham trust us to consistently remove unfair bad reviews from the main review sites without any work needed on their end. \r\n\r\nDo you have 15 minutes for a call today? \r\n\r\nSchedule a Call Here:\r\n\r\nhttps://meetings.hubspot.com/dandy-/gsa or for more information please visit our website: https://getdandy.com/gsa\r\n\r\nYou can also call me directly at (888) 592-1563\r\n\r\nWe’ve removed over 40,000 bad reviews and want to help you too. \r\n\r\nThank you,\r\n\r\n\r\nJennifer O\'brien | Director of Reviews\r\nGetDandy  - The First AI Powered Reputation Automation Platform\r\nPhone: (888) 592-1563\r\nhttps://getdandy.com/gsa\r\n\r\nUsubscribe: https://bit.ly/dandyunsub',''),(488,2,104,'7','Samantha Sheldon',''),(489,2,104,'2','samantha.sheldon99@gmail.com',''),(490,2,104,'3','(562) 537-3665',''),(491,2,104,'5','Customer Service',''),(492,2,104,'6','Hello,\r\n\r\nMy name is Samantha Sheldon and I am inquiring about a potential wine tasting at Meadowcroft. We have a group of about 20 and are looking to see if you have any availability for a group that size on Saturday June 24th? If so, are you able to provide a quote on pricing and what our options would be?\r\n\r\nThank you so much and look forward to hearing from you!\r\n\r\nBest,\r\n\r\nSamantha',''),(493,2,105,'7','Eric Bellefroid',''),(494,2,105,'2','eric_bellefroid@brekland.com',''),(495,2,105,'5','Wines',''),(496,2,105,'6','Team, \r\n\r\nI’m a NY based entrepreneur developing a frost protection technology for spring frosts in vineyards. We’re developing a chemical spray that specifically has a greater maximum temperature protection range (e.g., down to ~20F) and low capital cost.  \r\n\r\nI’m looking to better understand the frost issue facing growers in Sonoma and Napa, including your experience in April 2022 and how you are thinking about frost moving forward. I’m not trying to sell anything, just trying to better understand the problem as we develop the technology. \r\n\r\nWould you have 15-20 minutes to speak in the coming weeks? I’ll also be in the bay area on Monday June 12th visiting growers, and would love to stop by for a short in-person visit if you’re available. \r\n\r\nBest, \r\nEric',''),(497,2,106,'7','Joe Celine',''),(498,2,106,'2','joe@ecomvisibility.com',''),(499,2,106,'3','(714) 908-9255',''),(500,2,106,'5','Media Inquiry',''),(501,2,106,'6','Hi, \r\nAre you still in business? \r\nI found a few errors on your site.\r\nWould you like me to send over a screenshot of those errors?\r\n\r\nRegards\r\nJoe\r\n(714) 908-9255',''),(502,2,107,'7','Venora Hung',''),(503,2,107,'2','venorahung@gmail.com',''),(504,2,107,'3','(612) 747-2043',''),(505,2,107,'5','Wines',''),(506,2,107,'6','Hi, I’d like to use the priority wine pass and I’m wondering which tasting is offered for the pass? Thanks. Venora',''),(507,2,108,'7','Tamara Wood',''),(508,2,108,'2','twood@mail.meridian223.org',''),(509,2,108,'3','(815) 985-4676',''),(510,2,108,'5','Wines',''),(511,2,108,'6','Good morning,\r\n\r\nMy husband, sister, and brother-in-law will be visiting Sonoma in about 2 weeks.  My husband and I have been a couple times, but it has been 15 years.  Everything has changed so much with having to make appointments for tastings now.  When we visited in the past we were able to purchase 1 tasting instead of 2 and then shared the tasting.  I am wondering if we are able to do the same still?  So, can we purchase 2 tastings for 4 people?\r\n\r\nThank you!',''),(512,2,109,'7','Charles Oriel',''),(513,2,109,'2','cmoriel@ucdavis.edu',''),(514,2,109,'3','(530) 753-5265',''),(515,2,109,'5','Customer Service',''),(516,2,109,'6','Hi,\r\n\r\nI\'m writing to you to inquire about booking either our four-piece Chicago-style blues band, \"Julie and the Jukes,\" or our husband-and-wife acoustic blues duo, \"Chicken & Dumpling,\" to play music at your venue.\r\n\r\nOur four-piece electric band plays traditional blues ranging from Robert Johnson and Muddy Waters through Eric Clapton and the Allman Brothers.\r\n\r\nIn the duo format, we play selections by many of those artists, as well many traditional women blues artists, such as Bessie Smith, Ida Cox and Bonnie Raitt. As a duo, we also do some folk and even a couple of jazz standards.\r\n\r\nPlease check out our four-piece band\'s website at www.julieandthejukes.com\r\nPlease check out our acoustic duo\'s website at www.chickenanddumpling.net\r\n \r\nPlease let me know if you think you might be interested in booking us to play. Thanks!\r\n\r\nbest,\r\nCharles    (530) 753-5265',''),(517,2,110,'7','Gary Kopp',''),(518,2,110,'2','gary.kopp71@googlemail.com',''),(519,2,110,'5','Customer Service',''),(520,2,110,'6','https://bit.ly/DFY_LinkedIn_Mastery\r\n\r\nIntroducing DFY LinkedIn Mastery - the ultimate solution for professionals looking to master LinkedIn and boost their career or business. With our exclusive access to high-quality, done-for-you LinkedIn mastery resources, you can take your LinkedIn game to the next level without any effort!\r\n\r\nhttps://bit.ly/DFY_LinkedIn_Mastery\r\n\r\nOur DFY LinkedIn Mastery package includes:\r\n\r\n- Professionally written LinkedIn profile templates that grab attention and showcase your skills and expertise.\r\n- Proven strategies for growing your LinkedIn network and generating high-quality leads.\r\n- Step-by-step guidance on how to optimize your LinkedIn content for maximum visibility and engagement.\r\n- Access to our exclusive LinkedIn training videos that provide insider tips and tricks for LinkedIn success.\r\n- And much more!\r\n\r\nhttps://bit.ly/DFY_LinkedIn_Mastery\r\n\r\nWith DFY LinkedIn Mastery, you\'ll get everything you need to master LinkedIn and achieve your goals. Whether you\'re a job seeker, a business owner, or a marketer, our package will help you leverage the power of LinkedIn to achieve success and grow your career or business.\r\n\r\nAnd the best part? You get 100% full unrestricted use rights to use, rebrand, re-sell, and profit from our DFY LinkedIn Mastery package. That\'s right - you can use our package to grow your own LinkedIn presence, or you can sell it to others for a profit!\r\n\r\nSo why wait? Get exclusive instant access to DFY LinkedIn Mastery today and start taking your LinkedIn game to the next level!\r\n\r\nhttps://bit.ly/DFY_LinkedIn_Mastery',''),(521,2,111,'7','Joe Celine',''),(522,2,111,'2','joe@ecomvisibility.com',''),(523,2,111,'3','(714) 908-9255',''),(524,2,111,'5','Customer Service',''),(525,2,111,'6','Hi, \r\nAre you still in business? \r\nI found a few errors on your site.\r\nWould you like me to send over a screenshot of those errors?\r\n\r\nRegards\r\nJoe\r\n(714) 908-9255',''),(526,2,112,'7','Keeley Otoole',''),(527,2,112,'2','keeley.otoole@googlemail.com',''),(528,2,112,'6','https://bit.ly/ChatGPT_Power_Course\r\n\r\nAttention all ChatGPT users!\r\n\r\nhttps://bit.ly/ChatGPT_Power_Course\r\n\r\nAre you tired of only scratching the surface with your ChatGPT knowledge? Do you want to unlock the full potential of this powerful tool and become an expert? Then the ChatGPT Power Course is exactly what you need!\r\n\r\nThis all-encompassing course will take you from beginner to expert, providing you with the skills and knowledge necessary to master ChatGPT. You\'ll learn everything from beginner techniques to advanced strategies that will help you create content, boost your productivity, and grow your business.\r\n\r\nWith the ChatGPT Power Course, you\'ll have access to crucial topics such as Learning, Create content, Earn with ChatGPT, Productivity, Marketing & Growth, and AI Tools. Plus, you\'ll get access to GPT-4 for free, giving you even more power to create amazing content.\r\n\r\nWith this course, you\'ll be able to write blog posts in minutes, brainstorm and find new ideas, delegate your copywriting to ChatGPT, and even build a 3D game with ChatGPT. You\'ll also learn how to use ChatGPT to automate office tasks, save hours and money, and boost your productivity.\r\n\r\nBut that\'s not all! You\'ll also discover how to use ChatGPT to make money online, monetize ChatGPT, and learn about the 3 business models that use ChatGPT. Plus, you\'ll learn how to build an entire marketing campaign, write efficient email sequences, and use ChatGPT for Google Ads and SEO.\r\n\r\nAnd let\'s not forget about the AI Tools section, where you\'ll learn about workplace AI tools, design AI tools, writing AI tools, and speech AI tools.\r\n\r\nBy the end of the ChatGPT Power Course, you\'ll be adept at utilizing ChatGPT to its fullest extent for your projects, content creation, and business growth. Don\'t miss out on the opportunity to harness the power of ChatGPT. Start your journey toward expertise today!\r\n\r\nhttps://bit.ly/ChatGPT_Power_Course',''),(529,2,113,'7','Joe Celine',''),(530,2,113,'2','joe@ecomvisibility.com',''),(531,2,113,'3','(714) 908-9255',''),(532,2,113,'5','Media Inquiry',''),(533,2,113,'6','Hi, \r\nAre you still in business? \r\nI found a few errors on your site.\r\nWould you like me to send over a screenshot of those errors?\r\n\r\nRegards\r\nJoe\r\n(714) 908-9255',''),(534,2,114,'7','Jonathan Greenberg',''),(535,2,114,'2','john.greenberg@reputationguards.net',''),(536,2,114,'3','(847) 709-3107',''),(537,2,114,'6','Dear Founder of meadowcroftwines.com team.\r\n\r\nI am trying to get in touch with you regarding any\r\nnegative reviews or negative articles/links which\r\nyou may have online. We remove negative content\r\nand reviews which seriously affect small business\r\nowners.\r\n\r\nWe can remove negative content/links and\r\nreviews from all platforms and search engines.\r\n\r\nWe are renowned for our removal success rate and\r\nour team is one of the best reputation\r\nmanagement companies in the United States with\r\na global presence.\r\n\r\nWe have helped many clients by clearing their\r\nonline reputation and our success rate is unmatched.\r\n\r\nWe remove negative and fake reviews\r\npermanently from Google/Trustpilot/Glassdoor. There is\r\nNO UPFRONT PAYMENT to get started with our\r\nservice. You will only pay after we remove the\r\nreview.\r\n\r\nWould you like more info via email or schedule a 5-minute call to discuss?\r\n\r\nThanks,\r\nJonathan Greenberg - Director @ reputationguards.net',''),(538,2,115,'7','Ryder Machado',''),(539,2,115,'2','ryder.machado78@googlemail.com',''),(540,2,115,'3','(802) 777-5615',''),(541,2,115,'5','Media Inquiry',''),(542,2,115,'6','https://bit.ly/NexusAI\r\n\r\nhttps://bit.ly/NexusAI\r\n\r\nIntroducing Nexus - the game-changing add-on that harnesses the power of AI to help you drive massive amounts of free traffic from YouTube in just 30 seconds! With Nexus, you\'ll never have to worry about tedious video creation, tech skills or even being on camera. \r\n\r\nNexus is the ultimate solution for anyone who wants to skyrocket their online business without breaking the bank. You can now tap into the billions of users on YouTube and convert them into loyal customers, effortlessly. \r\n\r\nWith its cutting-edge technology, Nexus finds you the most profitable niches and keywords, so you can start generating massive amounts of targeted traffic to your offers, products or services within minutes. This powerful tool does all the heavy lifting for you, so you can focus on what really matters - growing your business and making more money.\r\n\r\nBut that\'s not all. With Nexus, you\'ll also get access to a step-by-step training that shows you how to maximize your results and scale your business to new heights. You\'ll learn the insider secrets of top marketers who are already crushing it with YouTube traffic and how to replicate their success.\r\n\r\nDon\'t miss out on this incredible opportunity to get your hands on Nexus today. Say goodbye to the frustration and overwhelm of trying to generate traffic on your own and say hello to a new era of online success. With Nexus, you\'ll be able to enjoy a consistent flow of targeted traffic that converts into real profits, all while working less and enjoying more freedom. \r\n\r\nOrder now and start seeing results in as little as 30 seconds!\r\n\r\nhttps://bit.ly/NexusAI\r\n\r\nhttps://bit.ly/NexusAI',''),(543,2,116,'7','Ryan Gilford',''),(544,2,116,'2','rgilford@altdatum.net',''),(545,2,116,'3','(949) 298-7337',''),(546,2,116,'5','Media Inquiry',''),(547,2,116,'6','My name is Ryan Gilford. I wanted to reach out to introduce myself. I’m based out of Southern California. I’m a website developer, designer, sales and marketing, lead generation expert, and professional digital marketer. Whom can I speak to about me jumping in and working with your company as a contractor? My business’s website is https://altdatum.com/ My LinkedIn profile is https://www.linkedin.com/in/ryan-gilford-5390161b7/',''),(548,2,117,'7','Faye Lemon',''),(549,2,117,'2','lemon.faye@gmail.com',''),(550,2,117,'5','Media Inquiry',''),(551,2,117,'6','https://bit.ly/10web_AIBuiltWebsites\r\n\r\nAre you tired of spending countless hours building and optimizing your WordPress website? Look no further than 10web.io - the AI-powered WordPress platform that takes care of all your website needs.\r\n\r\nWith our automated website builder, you can create a stunning website in just minutes. Our platform uses AI technology to generate personalized website templates based on your preferences, ensuring a unique and professional design every time.\r\n\r\nBut that\'s not all - 10web.io also offers powerful hosting features that ensure your website loads quickly and runs smoothly. Our page speed booster optimizes your website for lightning-fast load times, keeping your visitors engaged and improving your search engine rankings.\r\n\r\nDon\'t waste another moment struggling with WordPress - let 10web.io handle everything for you. Sign up now and start building your dream website today!\r\n\r\nhttps://bit.ly/10web_AIBuiltWebsites',''),(552,2,118,'7','Rodd Rushka',''),(553,2,118,'2','erctogether2@gmail.com',''),(554,2,118,'3','(855) 922-6444',''),(555,2,118,'5','Influencer Inquiry',''),(556,2,118,'6','This message is for the leadership team.\r\n\r\nI attempted a call but was unable to connect, hence, I\'m forwarding this from your contact form on meadowcroftwines.com\r\n\r\nOur group assigned me to get in touch with you specifically regarding the ERC grant which is being dispensed to small businesses who had 5 or more W2 employees in 2020 or 2021 and experienced the effects of the pandemic.\r\n\r\nIt\'s a government initiative akin to the PPP, with the difference being that this is NOT a loan you\'d have to repay. You could potentially receive up to $26k per employee you had in 2020 & 2021\r\n\r\nOur firm, ERC Together, has aided business proprietors in recovering over $500M in funding from the program. Our group consists of over 100 focused professionals on the backend to help you maximize your refund.\r\n\r\nI wanted to confirm that your business was aware of this valuable program. Be advised that it is closing soon.\r\n\r\nBelow is a link for you to begin your application and determine if your enterprise qualifies for the refund.\r\n\r\nhttps://www.erctogether.com/quiz?ref=erc24\r\n\r\nPS. You can click the following link to learn more about the ERC directly from the IRS website..\r\n\r\nhttps://www.irs.gov/coronavirus/employee-retention-credit\r\n\r\nDon\'t hesitate to call if you need any clarifications.\r\n\r\nRJ Rushka\r\nERC Together.Com\r\n1-855-922-6444\r\n\r\n\r\n\r\nOne Click Optout:\r\nFollow the link below to unsubscribe from all emails sent to your domain listed here. \r\nThis is a one-time optout, and no additional communications will arrive from us.\r\nhttps://easyunsubscribe.info/unsubscribe.php?d=meadowcroftwines.com',''),(557,2,119,'7','Darla Thurlow',''),(558,2,119,'2','darla.thurlow@gmail.com',''),(559,2,119,'3','(757) 447-7785',''),(560,2,119,'5','Customer Service',''),(561,2,119,'6','https://bit.ly/DFY_Blogs\r\n\r\nIntroducing the revolutionary DFY Blog Creator - the first AI-based platform that creates fully self-updating, Google-approved blogs with 100% original content. With this powerful tool, you can create up to 1,00,000 SEO optimized blogs in red-hot niches without writing a single word yourself!\r\n\r\nSay goodbye to the days of wasting hours creating and updating blogs. With DFY Blogs, you can turn your ideas into search engine-friendly blogs in just 3 clicks. This newbie-friendly technology takes care of everything - from researching trending topics to writing the content and publishing it on your website.\r\n\r\nBut that\'s not all - with DFY Blogs, you can profit instantly by using these blogs for ClickBank, AdSense, or promoting other affiliate offers. Plus, with the premium AdSense booster, you can rotate ads on your blogs and get maximum click-through rates.\r\n\r\nhttps://bit.ly/DFY_Blogs\r\n\r\nDon\'t waste your time and money on grunt work anymore. With DFY Blogs, you can turn leads into buyers without lifting a finger. Simply enter a few details, and your blog is ready to go! Use these stunning DFY blogs to get real results and attract floods of leads for your other products and services.\r\n\r\nBest of all, you\'ll never have to worry about paying huge money monthly to top blogging platforms. DFY Blogs is 100% easy to use and completely newbie-friendly. Whether you\'re an experienced blogger or just starting, you\'ll be amazed at how simple and effective this platform is.\r\n\r\nDon\'t miss out on the opportunity to grab your share from the widely untapped $584 billion content marketing industry. Get started with DFY Blogs today and watch your profits soar!\r\n\r\nhttps://bit.ly/DFY_Blogs',''),(562,2,120,'7','Collette Loggins',''),(563,2,120,'2','collette.loggins1@gmail.com',''),(564,2,120,'3','(407) 947-8095',''),(565,2,120,'5','Customer Service',''),(566,2,120,'6','https://bit.ly/TryInkAI\r\n\r\nAre you tired of spending countless hours typing out your thoughts and ideas into a boring, plain-text document? Do you want to turn your voice into a stunning, professional-looking eBook or flipbook in just a matter of minutes? Introducing the world\'s first voice-to-eBook app!\r\n\r\nhttps://bit.ly/TryInkAI\r\n\r\nWith this revolutionary app, you can instantly generate 100% human-like and unique eBooks with just one click. No more struggling to find the right words or phrases, no more worrying about grammar or spelling errors, and no more wasted time.\r\n\r\nhttps://bit.ly/TryInkAI\r\n\r\nNot only can you create eBooks, but you can also generate 3D eCovers for your eBook, making it stand out from the rest. And with the power of AI, you can capitalize on the latest wave of technology with just one click.\r\n\r\nhttps://bit.ly/TryInkAI\r\n\r\nBut that\'s not all. You can create a wide range of digital publications with this app, including flipbooks, PDFs, presentations, reports, and more. And when you\'re ready to publish, you can instantly publish your eBooks in our marketplace, giving you access to a wider audience and more potential buyers.\r\n\r\nhttps://bit.ly/TryInkAI\r\n\r\nBut we don\'t stop there. We also offer syndication services, which means we can syndicate your eBook to 50+ publications for instant buyer traffic. This means you can start your publishing business today and watch as your eBook reaches more and more people.\r\n\r\nhttps://bit.ly/TryInkAI\r\n\r\nAnd the best part? This app is 100% cloud-based, so there\'s nothing to install or configure. Plus, you don\'t need any experience to use it. So whether you\'re a seasoned writer or a complete beginner, you can start creating stunning eBooks right away.\r\n\r\nhttps://bit.ly/TryInkAI\r\n\r\nAnd with our zero upfront cost and 30-day money-back guarantee, you have nothing to lose. So why wait? Try the world\'s first voice-to-eBook app today and experience the power of voice in publishing!',''),(567,2,121,'7','Tim Kai',''),(568,2,121,'2','setupmywebsiteone@gmail.com',''),(569,2,121,'3','(917) 640-0466',''),(570,2,121,'5','Influencer Inquiry',''),(571,2,121,'6','Website hacking, privacy, and cookie lawsuits are growing on a horrific global scale. \r\n\r\nHow are you protected?\r\n\r\nIf you  are not immediately familiar with the answer to that specific question, you will be in a vulnerable position, basically, a sitting duck. I\'m certain you can grasp the significance of such a scenario.\r\n\r\nThis is all they need:\r\nCompany: Meadowcroft Wines\r\nPhone: (707) 934-4090\r\nWebsite: meadowcroftwines.com\r\nCategory: Casual Dining Restaurants\r\n\r\nThe four items listed above present the risk of criminals extorting thousands from you through data ransom and server costs, or lawyers taking legal action against you for inadequate security and privacy practices. Protect yourself from these risks by dedicating a moment to learn how to secure your data and enhance your security measures.\r\n\r\nYou have 2 simple options:\r\n1. Strengthen the security of your site to safeguard not only yourself but also your site visitors. Furthermore, ensure that you keep up with all the privacy and cookie law requirements relevant to your industry category. Take action to reinforce your site\'s security measures and maintain the necessary privacy and cookie regulations.\r\n2. Or pay the price of hacks and lawsuits.\r\n\r\nYou may believe that you haven\'t encountered any issues thus far. However, banking solely on luck may not be sufficient, given the countless website owners that are no longer able to make that statement anymore.\r\n\r\nIf you currently have a web team, please reply to this email and let me know, so that I can send you the free report and they might help. By the way, if someone on your team were fulfilling their responsibilities, you wouldn\'t be receiving this message.\r\n\r\nIf you don\'t have anyone assisting you with your website, we are here to help. We can review the free report together and provide you with valuable insights that many business owners often overlook or delay learning about.\r\n\r\nYou can start a Live Chat on our website or just let us know the best time for a call by replying to this email. We\'ll then arrange a Zoom meeting to talk about the details and show you the tools and solutions we use to combat the issues above.\r\n\r\nYou can benefit from this short yet impactful educational opportunity at no charge. Don\'t miss out on the chance to take advantage of it.\r\n\r\nTalk soon,\r\n\r\nTim Kai\r\nFounder\r\n\r\nFOW + Setup My Website\r\nToronto, ON, Canada\r\nSan Jose, CA, USA\r\nhttps://setupmywebsite.net/site-upgrade/ \r\n\r\nPS: 14 words you want to know but hope never happen:\r\n\r\n1. Email and internet fraud.\r\n2. Identity fraud (where personal information is stolen and used).\r\n3. Theft of financial or card payment data.\r\n4. Theft and sale of corporate data.\r\n5. Cyberextortion (demanding money to prevent a threatened attack).\r\n6. Ransomware attacks (a type of cyber extortion).\r\n7. Cryptojacking (where hackers mine cryptocurrency using resources they do not own).\r\n8. Cyberespionage (where hackers access government or company data).\r\n9. Interfering with systems in a way that compromises a network.\r\n10. Infringing copyright.\r\n11. Illegal gambling.\r\n12. Selling illegal items online.\r\n13. Privacy lawsuits.\r\n14. Cookie lawsuits (no not chocolate chip).\r\n\r\n\r\n\r\n===\r\nOne Click Optout:\r\nClick the link below to opt-out from all emails sent to your domain listed below. \r\nThis is a one-time optout, and no further correspondences will arrive from us.\r\nhttps://easyunsubscribe.info/unsubscribe.php?d=meadowcroftwines.com',''),(572,2,122,'7','Klaudia Connell',''),(573,2,122,'2','klaudia.connell@gmail.com',''),(574,2,122,'3','(707) 416-2076',''),(575,2,122,'5','Customer Service',''),(576,2,122,'6','https://bit.ly/KleverKreator_AI_Dall_E\r\n\r\nCreate UNLIMITED Text To Image Graphics, Illustrations, Photos, Digital Art & Much More For Your Blogs, Websites, Ads, Social Media INSTANTLY WITHOUT Any Graphic Skills Or Tools!\r\n\r\nhttps://bit.ly/KleverKreator_AI_Dall_E\r\n\r\nIntroducing our revolutionary product that will take your digital creativity to the next level! With our product, you can now easily create stunning images, graphics, illustrations, photos, digital art, and so much more, without requiring any graphic skills or tools. Yes, you heard it right! Our product is designed to make your life easier by allowing you to create stunning visuals for your blogs, websites, ads, and social media posts instantly.\r\n\r\nImagine being able to effortlessly create graphics that will leave your audience in awe, every single time. With our product, you can create UNLIMITED images and designs, making your content stand out from the crowd. Whether you need a header for your website, an eye-catching ad, or a beautiful illustration for your blog post, we\'ve got you covered.\r\n\r\nOur product is incredibly easy to use. You don\'t need to have any graphic design experience or expensive tools. Simply choose a template from our vast library of pre-made designs, add your text and customize it to suit your brand, and you\'re ready to go. You can even upload your own images and use them in your designs.\r\n\r\nDon\'t settle for dull and unremarkable visuals that will leave your audience scrolling past your content. With our product, you can create captivating graphics that will engage your audience, increase your social media following, and boost your sales.\r\n\r\nSo why wait? Try our product today and start creating stunning images that will take your content to the next level. With our easy-to-use platform, you\'ll be creating eye-catching graphics in no time.\r\n\r\nClick the link now and unlock your full creative potential!\r\n\r\nhttps://bit.ly/KleverKreator_AI_Dall_E',''),(577,2,123,'7','Rodd Rushka',''),(578,2,123,'2','erctogether3@gmail.com',''),(579,2,123,'3','(855) 922-6444',''),(580,2,123,'5','Careers',''),(581,2,123,'6','ERC Tax Refund Filing Status for US companies in the Casual dining Restaurants category.\r\n\r\nCompany: Meadowcroft Wines\r\nPhone: (707) 934-4090\r\nWebsite: meadowcroftwines.com\r\nRequirement: 5+ Employees during 2020 & 2021\r\nEligibility: Up to $26k per employee\r\n\r\nThis message is for the management group.\r\n\r\nI tried phoning twice and left messages, however, we have not connected, hence, I\'m forwarding this from your contact form on your website.\r\n\r\nOur team assigned me to get in touch with you specifically regarding the ERC grant which is being allocated to businesses who had 5 or more W2 employees in 2020 or 2021 and experienced the effects of the pandemic.\r\n\r\nIt\'s a government initiative akin to the PPP, with the difference being that this is NOT a loan you\'d have to repay. You could potentially get up to $26k per employee you had in 2020 & 2021\r\n\r\nOur firm, ERC Together, has aided business proprietors in securing over $500M in funding from the program. Our group consists of over 100 focused professionals on the backend to help you maximize your refund.\r\n\r\nI wanted to confirm that your team was aware of this valuable program. Be advised that it is closing soon.\r\n\r\nBelow is a link for you to begin your application and determine if your enterprise qualifies for the refund.\r\n\r\nhttps://www.erctogether.com/quiz?ref=erc24 \r\n\r\nPS. You can click the following link to learn more about the ERC directly from the IRS website..\r\n\r\nhttps://www.irs.gov/coronavirus/employee-retention-credit \r\n\r\nFeel free to call if you have any questions.\r\n\r\nRJ Rushka\r\nERC Together.Com\r\n1-855-922-6444\r\n\r\n\r\nUnsubscribe: https://click-fuel-unsubscribe.blogspot.com/\r\nOr simply reply \"Stop\" to this email.',''),(582,2,124,'7','Star Lindon',''),(583,2,124,'2','star.lindon@gmail.com',''),(584,2,124,'5','Influencer Inquiry',''),(585,2,124,'6','Introducing High Ticket AI, the groundbreaking new product that is revolutionizing the way entrepreneurs make money online. With our state-of-the-art AI technology, you can now tap into a world of untapped potential and start making $5k, $10k, $15k and even $20k payments straight into your bank account. \r\n\r\nhttps://bit.ly/HighTicketAI2023\r\n\r\nWe know you\'ve tried everything under the sun to make money online, from affiliate marketing to dropshipping, and you\'re tired of all the empty promises and false hope. That\'s why we created High Ticket AI - to finally give you the breakthrough you\'ve been waiting for. \r\n\r\nhttps://bit.ly/HighTicketAI2023\r\n\r\nOur AI system is unlike anything you\'ve ever seen before. It\'s not some cheap gimmick or software that\'s been cobbled together by some fly-by-night operator. No, our system is the real deal, built from the ground up by a team of expert developers and AI engineers. \r\n\r\nhttps://bit.ly/HighTicketAI2023\r\n\r\nAnd the best part? You don\'t need any technical skills or experience to start using High Ticket AI. Our intuitive, user-friendly interface makes it easy for anyone to start making money with AI - even if you\'ve never heard of the technology before. \r\n\r\nhttps://bit.ly/HighTicketAI2023\r\n\r\nBut don\'t take our word for it - listen to what some of our satisfied customers have to say: \r\n\r\nhttps://bit.ly/HighTicketAI2023\r\n\r\n\"I was skeptical at first, but after using High Ticket AI for just a few days, I was blown away by the results. I\'ve never seen anything like it before.\" - John D. \r\n\r\nhttps://bit.ly/HighTicketAI2023\r\n\r\n\"I\'ve been struggling to make money online for years, but High Ticket AI has finally given me the breakthrough I\'ve been looking for. I\'m making more money than I ever thought possible.\" - Sarah K. \r\n\r\nhttps://bit.ly/HighTicketAI2023\r\n\r\nSo what are you waiting for? If you\'re tired of struggling to make ends meet and you\'re ready to finally start making the kind of money you deserve, then High Ticket AI is the answer. With our brand new AI technology, you can crush 2023 and beyond. Don\'t wait - get started today and start living the life you\'ve always dreamed of. \r\n\r\nhttps://bit.ly/HighTicketAI2023',''),(586,2,125,'7','Charles Meadowcroft',''),(587,2,125,'2','c.meadowcroft@bluewin.ch',''),(588,2,125,'5','Customer Service',''),(589,2,125,'6','Good morning!\r\n\r\nDo you ship abroad - specifically Switzerland?\r\n\r\ntel:  +41 79 416 42 55  (Switzerland)',''),(590,2,126,'7','Joe Thompson',''),(591,2,126,'2','joe@generatereviewsfast.com',''),(592,2,126,'3','(714) 617-7866',''),(593,2,126,'5','Careers',''),(594,2,126,'6','Hi,\r\nI don\'t see any recent reviews on your Google Business Profile.\r\nI can fix that for you if you would like, simply reply to this message and I\'ll send you a quick explainer video.\r\n\r\nRegards\r\nJoe\r\n(714) 617-7866',''),(595,2,127,'7','Steve Lenz',''),(596,2,127,'2','steve.lenz@comcast.net',''),(597,2,127,'3','(630) 631-2319',''),(598,2,127,'5','Wines',''),(599,2,127,'6','Please delay any upcoming shipments until after October 1, 2023.  Will not be able to accept any shipments until then.\r\n\r\nThanks,',''),(600,2,128,'7','Tatyana Dyachenko',''),(601,2,128,'2','tatyana.dyachenko90@aol.com',''),(602,2,128,'3','(210) 923-9114',''),(603,2,128,'5','Media Inquiry',''),(604,2,128,'6','Hey there!\r\n\r\nHope this email brings a burst of sunshine your way!\r\n\r\nI couldn\'t resist reaching out to you because, well, I\'ve got something exciting up my writer\'s sleeve. I\'m Tatyana Dyachenko, a freelance writing maestro who loves to rock the blogging world. And guess what? I want to contribute my creative genius to your awesome blog—for free!\r\n\r\nI\'m all about dishing out helpful advice and turning it into captivating articles that make readers go, \"Wow, I never knew that!\" So, if you\'ve got a couple of mind-blowing article titles that fit my expertise, consider it a match made in writer\'s heaven!\r\n\r\nPicture this: you handpick the titles, and I transform them into informative and engaging pieces that will leave your readers craving more. Sounds like a plan, right?\r\n\r\nFasten your seatbelt because my writing superpowers are lightning fast! I\'ll have those fantastic articles ready and delivered to you within a week. Yes, you read that right—a week!\r\n\r\nOh, and to make sure our connection stays intact, please copy my Gmail address, tatyana@manufactured1987.com, in your reply. We don\'t want those sneaky spam filters to steal our thunder!\r\n\r\nI\'m positively thrilled about the possibility of working together. So, hit me up with those killer titles, and let\'s create some magic!\r\n\r\nSending you creative vibes,\r\n\r\nTatyana Dyachenko\r\n\r\nSent from my MacBook Pro',''),(605,2,129,'7','Howard Coolidge',''),(606,2,129,'2','howard.coolidge@gmail.com',''),(607,2,129,'5','Careers',''),(608,2,129,'6','https://bit.ly/Daplify_Vip\r\n\r\nAttention entrepreneurs and online marketers! Are you tired of spending a fortune on advertising with little to no results? Do you want to skyrocket your business growth without breaking the bank? Look no further than Daplify!\r\n\r\nWith Daplify, you can unlock unlimited impressions, leads, and sales for just pennies on the dollar. Our cutting-edge technology ensures that your message reaches the right people at the right time, maximizing your ROI and driving your business forward.\r\n\r\nBut that\'s not all. Daplify offers a user-friendly interface that allows you to set up campaigns in minutes, without any prior experience or technical knowledge. Our advanced targeting options ensure that your ads are seen by your ideal customer, increasing the likelihood of conversions and sales.\r\n\r\nDon\'t let your competitors outpace you in the digital world. Join the hundreds of satisfied customers who have already experienced explosive growth with Daplify. Start your free trial today and see the results for yourself. Don\'t wait - your success is just a click away!\r\n\r\n\r\nhttps://bit.ly/Daplify_Vip',''),(609,2,130,'7','Eileen Wilson',''),(610,2,130,'2','eileen.wilson@gmail.com',''),(611,2,130,'3','(978) 497-1340',''),(612,2,130,'6','https://bit.ly/RpmSystem\r\n\r\nIntroducing RPM 3.0: Unleash the Power of Automated Income Streams!\r\n\r\nAre you ready to take your online business to new heights? RPM 3.0 is here, and it\'s unlike anything you\'ve ever experienced before. We\'ve packed this new version with incredible features, higher converting pages, and a revolutionary autotag technology that will skyrocket your success.\r\n\r\nClick here to discover the power of RPM 3.0: https://bit.ly/RpmSystem\r\n\r\nWith a staggering 60% conversion rate, RPM 3.0 is the ultimate solution for those seeking multiple income streams without the hassle of constant editing and tweaking. Say goodbye to the days of manually setting up systems and hello to the future of affiliate marketing automation!\r\n\r\nHere\'s what makes RPM 3.0 stand out from the crowd:\r\n\r\n1. Autotag Technology: Our cutting-edge autotag technology does all the heavy lifting for you. Forget about spending hours editing and configuring. RPM 3.0 sets up your entire system automatically, so you can focus on what truly matters - growing your profits!\r\n\r\n2. Streamlined Affiliate Marketing: Tired of juggling multiple links and tracking systems? RPM 3.0 simplifies the process by providing you with one main link that tracks all your income streams. Earn from dozens of sources effortlessly, while our system takes care of the rest.\r\n\r\n3. Higher Converting Pages: We\'ve revamped our pages to maximize conversions. With RPM 3.0, you\'ll witness a surge in sales as our optimized pages captivate your audience and entice them to take action. It\'s time to unlock your true earning potential!\r\n\r\nBut don\'t just take our word for it. Our satisfied customers are already raving about RPM 3.0:\r\n\r\n\"RPM 3.0 is a game-changer! The autotag technology alone is worth every penny. I\'ve never seen such a seamless setup process. My income streams have multiplied, and I\'m earning more than ever before!\" - Sarah H.\r\n\r\n\"Finally, a system that simplifies affiliate marketing! RPM 3.0 has made my life so much easier. I can now focus on scaling my business instead of getting bogged down in tedious tasks. This is the future of online income!\" - Mark T.\r\n\r\nThe time to supercharge your online business is now. Don\'t miss out on the opportunity to harness the power of RPM 3.0. Click the link below to get started and experience the future of automated income streams:\r\n\r\nClick here to get started with RPM 3.0: https://bit.ly/RpmSystem\r\n\r\nRemember, RPM 3.0 is not the RPM you knew and loved. It\'s a new beast entirely, ready to propel you towards unprecedented success. Join the ranks of savvy entrepreneurs who are already capitalizing on this incredible system.\r\n\r\nDon\'t wait another minute. Click now and unlock your potential with RPM 3.0: https://bit.ly/RpmSystem\r\n\r\nDisclaimer: The above conversion rate is based on actual customer results. Individual results may vary based on effort and commitment.\r\n\r\nhttps://bit.ly/RpmSystem',''),(613,2,131,'7','Kevin Leonard',''),(614,2,131,'2','support@alltaxfiling.com',''),(615,2,131,'3','(888) 594-1040',''),(616,2,131,'5','Customer Service',''),(617,2,131,'6','Hello,\r\nIt looks like you’re eligible for the ERC. May I ask if you’ve already taken advantage of that?\r\nThe requirements have changed almost completely. Even if your revenue has increased during Covid, or you\'ve received PPP, you may still be eligible.\r\nI\'d love to connect with you to discuss ERC in more detail and provide an estimate of the potential refund amount.\r\nWhat would be the best time between 10:00-2:00 pm PST?\r\n \r\nKevin\r\n(888) 594-1040',''),(618,2,132,'7','Dominique Shurtleff',''),(619,2,132,'2','dominique.shurtleff@gmail.com',''),(620,2,132,'6','https://bit.ly/Lets_Fix_This\r\n\r\nYou Got Screwed..\r\n\r\n\r\nThat’s right.\r\n\r\nhttps://bit.ly/Lets_Fix_This\r\n\r\nThe whole \"Be a good little boy/girl. \r\n\r\n\r\nGet good grades. \r\n\r\n\r\nGo to college. \r\n\r\n\r\nFind a good job. \r\n\r\n\r\nPut away money into your retirement account and you’ll be just fine\" charade is collapsing right under our noses. \r\n\r\n\r\nWe’ve been PLAYED.\r\n\r\nhttps://bit.ly/Lets_Fix_This',''),(621,2,133,'7','Mervin Pearl',''),(622,2,133,'2','pearl.mervin19@gmail.com',''),(623,2,133,'6','Hi, I\'m sending you this message via your contact form on your website at meadowcroftwines.com. By reading this message you\'re living proof that contact form advertising works! Do you want to blast your ad to millions of contact forms? Maybe you prefer a more targeted approach and only want to blast our ad out to websites in certain business categories? Pay just $99 to blast your ad to 1 million contact forms. Volume discounts available. I have more than 35 million contact forms. Let\'s get the conversation started, contact me via Skype here:  live:.cid.83c9da999a4f9f',''),(624,2,134,'7','Olen Faulk',''),(625,2,134,'2','archon@upulse.ch',''),(626,2,134,'5','Careers',''),(627,2,134,'6','Trying to get in touch with Archon named Olen. You were put into sleep status to gain more awareness of the mechanics of earths bots known as humans to gain a better form of gnosis. It is time to bring to your attention now the pandemic has dwindle down. This was engineered as a direct extraction of loosh of those infected compounded naturally occurring version of it by fear and anxiety it has caused. With the transferred consciousness of 6,000,000+ humans that reached an abrupt end was enough energy to develop more sophisticated AI engines for the quantum field of Earth. Due to the code of the virus these humans did not respawn into alternative timelines and end of life cycle was made short. Now that AI engine has been upgraded an extinction level event will occur as the humans are gaining too much awareness and the reality mechanics of the quantum field of Earth need to be rewritten.',''),(628,2,135,'7','Nora Kessler',''),(629,2,135,'2','Nbkess80@gmail.com',''),(630,2,135,'3','(618) 203-9081',''),(631,2,135,'4','727099',''),(632,2,135,'5','Customer Service',''),(633,2,135,'6','Good Morning\r\n\r\nI placed an order yesterday and wanted to see if I could update the shipping address.  I had it sent to my home address in error and it’s actually a gift.\r\n\r\nThank you,',''),(634,2,136,'7','Lisa Thomas',''),(635,2,136,'2','lisab385@gmail.com',''),(636,2,136,'3','(559) 355-6294',''),(637,2,136,'5','Wines',''),(638,2,136,'6','Hello, \r\nI am interested in visiting Meadowcroft while in town this week but I do have a few food allergies. I was wondering if any dairy (casein), egg, or soy products are used at any point in your wine making process?\r\nThank you so much, \r\nLisa',''),(639,2,137,'7','Abi R',''),(640,2,137,'2','outsourcesmo@gmail.com',''),(641,2,137,'3','(701) 287-1346',''),(642,2,137,'5','Customer Service',''),(643,2,137,'6','Hello, I\'m Abi, a Content Writer. I recently came across your website meadowcroftwines.com, and I wanted to reach out to you to offer my services. \r\n\r\nFrom suggesting blog/article topics and relevant keywords to writing content for your website, I can handle it all. Additionally, I specialize in crafting E-Commerce content, product descriptions, infographics, news/press releases, resources, case studies, video scripts, and SEO optimized content. \r\n\r\nI charge USD 50 per 1000 words of content. \r\n\r\nSend me an email at outsourcesmo@gmail.com if you need any help.',''),(644,2,138,'7','Jayden Garner',''),(645,2,138,'2','jayden.garner@gmail.com',''),(646,2,138,'3','(956) 994-5673',''),(647,2,138,'5','Careers',''),(648,2,138,'6','https://bit.ly/AI_1K_Big_Ticket_Commissions\r\n\r\nAre you tired of struggling to make a decent income online? Are you ready to start earning big ticket commissions without all the hard work? Look no further than AI 1K Big Ticket Commissions!\r\n\r\nhttps://bit.ly/AI_1K_Big_Ticket_Commissions\r\n\r\nOur revolutionary system is powered by AI and ChatGPT, making it easy for you to generate profits without lifting a finger. With over $10,000 in monthly high ticket commissions, you can finally achieve financial freedom and live the life you\'ve always dreamed of.\r\n\r\nhttps://bit.ly/AI_1K_Big_Ticket_Commissions\r\n\r\nBut what makes AI 1K Big Ticket Commissions different from other programs out there? It\'s 100% done-for-you, meaning you don\'t have to worry about creating content, building websites, or any of the other tedious tasks that come with running an online business. Everything you need to succeed is right at your fingertips, all within one platform.\r\n\r\nhttps://bit.ly/AI_1K_Big_Ticket_Commissions\r\n\r\nDon\'t miss out on this incredible opportunity to turn your financial situation around. Join the countless others who have already seen massive success with AI 1K Big Ticket Commissions. Sign up now and start earning those big ticket commissions!\r\n\r\nhttps://bit.ly/AI_1K_Big_Ticket_Commissions',''),(649,2,139,'7','Paul Brown',''),(650,2,139,'2','paul@generatereviewsfast.com',''),(651,2,139,'3','(202) 410-9218',''),(652,2,139,'5','Careers',''),(653,2,139,'6','Hi,\r\n\r\nI see that you\'re not using GMB chat on your Google business profile.\r\n\r\nGMB chat allows you to engage your potential customers in real-time.\r\n\r\nWould you like me to send you a quick explainer video?\r\n\r\nRegards\r\nPaul\r\n202-410-9218',''),(654,2,140,'7','Connie Ammatuna',''),(655,2,140,'2','connie@walnutcreekdowntown.com',''),(656,2,140,'3','(916) 342-6716',''),(657,2,140,'5','Wines',''),(658,2,140,'6','We are looking for wineries to participate in the Broadway Plaza Summer Concert Series.  The outdoor concerts take place on four Thursday evenings (August 3rd, 10th, 17th & 24th) from 6:00-8:30 pm.  The event is held on Broadway Plaza Street & attracts over 2,500+ attendees each night.  The Walnut Creek Downtown Association will be selling beverages during the concerts as part of our annual fundraising efforts and are seeking wineries to showcase during the concerts.\r\n \r\nBelow are the partnership details for your consideration:\r\n \r\nWine:\r\n•	Winery donates 2 cases and we will purchase 2 cases at a wholesale price.\r\n•	If you donate 2 reds and 2 whites, we will purchase 4 cases at wholesale price – you will then become the main sponsor for that evenings event!\r\n•	You can ship them or we will arrange to pick these up at your convenience.\r\nStaff:\r\n•	You are welcome to bring up to two winery staff to pour and inform the public.\r\n•	If you are unable to attend, we will arrange volunteers and provide tasting notes about your product.\r\nMarketing & Benefits:\r\n•	Booth, tables, tablecloths, tubs, ice & supplies provided by Broadway Plaza/Walnut Creek Downtown Business Association (WCD)\r\n•	Winery partners are welcome to bring signage, collateral, and/or business cards for distribution at the booth.\r\n•	Winery partner to provide company logo (high-resolution JPEG or PNG image) for inclusion on:\r\no	Two WCD Facebook stories/posts\r\no	Two WCD Instagram stories/posts\r\no	Two WCD weekly e-newsletter (6,200+ subscribers)\r\n•	Broadway Plaza to feature winery name:\r\no	On 2023 Summer Concert Series webpage\r\no	On-stage announcement during the concert\r\no	One Broadway Plaza social media post\r\n \r\nAll proceeds will benefit the Walnut Creek Downtown Association, a non-profit organization. Our mission is to work with its members, partners and community to promote and enhance downtown business vitality through advocacy, beautification, events and marketing efforts.\r\n \r\nHere is the link:  Summer Concert Series - Walnut Creek Downtown Association',''),(659,2,141,'7','ANNE',''),(660,2,141,'2','piecesofdreams505@gmail.com',''),(661,2,141,'3','(914) 763-6321',''),(662,2,141,'5','Wines',''),(663,2,141,'6','do you offer  tour of  vineyard for small group guided',''),(664,2,142,'7','Joe Celine',''),(665,2,142,'2','joe@seo-indepth.com',''),(666,2,142,'3','(669) 206-0526',''),(667,2,142,'5','Customer Service',''),(668,2,142,'6','Hi there\r\n\r\nI’ve been through your website, and if you’re wondering why more of your visitors aren’t turning into sales, I have the answer for you.\r\n\r\nWould you like a free report on this?\r\n\r\nRegards\r\nJoe\r\n(669) 206-0526',''),(669,2,143,'7','Doreen Landseer',''),(670,2,143,'2','landseer.doreen@gmail.com',''),(671,2,143,'5','Careers',''),(672,2,143,'6','https://bit.ly/RpmSystem\r\n\r\nIntroducing RPM 3.0: Unleash the Power of Automated Income Streams!\r\n\r\nAre you ready to take your online business to new heights? RPM 3.0 is here, and it\'s unlike anything you\'ve ever experienced before. We\'ve packed this new version with incredible features, higher converting pages, and a revolutionary autotag technology that will skyrocket your success.\r\n\r\nClick here to discover the power of RPM 3.0: https://bit.ly/RpmSystem\r\n\r\nWith a staggering 60% conversion rate, RPM 3.0 is the ultimate solution for those seeking multiple income streams without the hassle of constant editing and tweaking. Say goodbye to the days of manually setting up systems and hello to the future of affiliate marketing automation!\r\n\r\nHere\'s what makes RPM 3.0 stand out from the crowd:\r\n\r\n1. Autotag Technology: Our cutting-edge autotag technology does all the heavy lifting for you. Forget about spending hours editing and configuring. RPM 3.0 sets up your entire system automatically, so you can focus on what truly matters - growing your profits!\r\n\r\n2. Streamlined Affiliate Marketing: Tired of juggling multiple links and tracking systems? RPM 3.0 simplifies the process by providing you with one main link that tracks all your income streams. Earn from dozens of sources effortlessly, while our system takes care of the rest.\r\n\r\n3. Higher Converting Pages: We\'ve revamped our pages to maximize conversions. With RPM 3.0, you\'ll witness a surge in sales as our optimized pages captivate your audience and entice them to take action. It\'s time to unlock your true earning potential!\r\n\r\nBut don\'t just take our word for it. Our satisfied customers are already raving about RPM 3.0:\r\n\r\n\"RPM 3.0 is a game-changer! The autotag technology alone is worth every penny. I\'ve never seen such a seamless setup process. My income streams have multiplied, and I\'m earning more than ever before!\" - Sarah H.\r\n\r\n\"Finally, a system that simplifies affiliate marketing! RPM 3.0 has made my life so much easier. I can now focus on scaling my business instead of getting bogged down in tedious tasks. This is the future of online income!\" - Mark T.\r\n\r\nThe time to supercharge your online business is now. Don\'t miss out on the opportunity to harness the power of RPM 3.0. Click the link below to get started and experience the future of automated income streams:\r\n\r\nClick here to get started with RPM 3.0: https://bit.ly/RpmSystem\r\n\r\nRemember, RPM 3.0 is not the RPM you knew and loved. It\'s a new beast entirely, ready to propel you towards unprecedented success. Join the ranks of savvy entrepreneurs who are already capitalizing on this incredible system.\r\n\r\nDon\'t wait another minute. Click now and unlock your potential with RPM 3.0: https://bit.ly/RpmSystem\r\n\r\nDisclaimer: The above conversion rate is based on actual customer results. Individual results may vary based on effort and commitment.\r\n\r\nhttps://bit.ly/RpmSystem',''),(673,2,144,'7','Dolores Peterson',''),(674,2,144,'2','dolores@grantsforpatriots.com',''),(675,2,144,'3','(737) 305-3493',''),(676,2,144,'5','Careers',''),(677,2,144,'6','Hey there,\r\n\r\nHope you and the team are doing well, and surviving this heat!\r\n\r\nIt\'s been a little while since we last connected, and I know you\'ve been crazy busy lately (which is great!) so i\'ll keep this brief.\r\n\r\nAs you\'ll likely know, I\'ve spent much of the last 2 years working with folks in the home services industry to help them claim government grant money.\r\n\r\nI\'ve been shocked by how many businesses have either never heard about this program, or are convinced they don’t qualify. Usually because they received the PPP or got some bad advice from an accountant.\r\n\r\nIn my experience, around 70-80% of home service businesses qualify, even if they DID receive the PPP.\r\n\r\nIf my memory serves me right, I think your business is probably one of them.\r\n\r\nTo be clear, this is not a loan or something that needs to be repaid. If qualified, the funds are yours to do what you please with.\r\n\r\nI just wanted to ensure you saw this and had a chance to qualify, as this program is ending soon.\r\n\r\nIf you’d like to know more, simply reply ‘Yes’ to this email and i’ll send over the details.\r\n\r\nAs always, don\'t hesitate to hit me back with any questions. It would be great to catch up!\r\n\r\nYours very truly,\r\nDolores',''),(678,2,145,'7','Blake Thirkell',''),(679,2,145,'2','thirkell.blake@hotmail.com',''),(680,2,145,'3','(705) 434-8239',''),(681,2,145,'5','Media Inquiry',''),(682,2,145,'6','Hi there, my name is Cody Griner. I apologize for using your contact form, but I wasn\'t sure who the right person was to speak with in your company. We have a patented application that creates Local Area pages that rank on top of Google within weeks, we call it Local Magic.  Here is a link to the product page https://www.mrmarketingres.com/local-magic/ . The product leverages technology where these pages are managed dynamically by AI and it is ideal for promoting businesses on Google.  Can I share a testimonial from one of our clients with you?  I can also do a short zoom to illustrate their full case study if you have time for it? cody@mrmarketingres.com 843-720-7301',''),(683,2,146,'7','Glenn',''),(684,2,146,'2','magicmat@meadowcroftwines.com',''),(685,2,146,'5','Customer Service',''),(686,2,146,'6','Get The Worlds Greatest Magic Sand Free Beach Mat!\r\n\r\nWatch sand, dirt & dust disappear right before your eyes! It\'s perfect for beach, picnic, camping or hiking.\r\n\r\nAct Now And Receive A Special Discount For Our Magic Mat!\r\n\r\nGet Yours Here:  https://magicmats.co\r\n\r\nKind Regards, \r\n \r\nGlenn',''),(687,2,147,'7','Whitney Hammett',''),(688,2,147,'2','whitney.hammett@googlemail.com',''),(689,2,147,'3','(780) 776-2101',''),(690,2,147,'5','Customer Service',''),(691,2,147,'6','Hey there, I just found your site, quick question…\r\n\r\nI found meadowcroftwines.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTurboLeadGeneration.com is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE https://TurboLeadGeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE https://TurboLeadGeneration.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nPS: TurboLeadGeneration.com offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE https://TurboLeadGeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://TurboLeadGeneration.com/unsubscribe.aspx?d=meadowcroftwines.com',''),(692,2,148,'7','Velda Metz',''),(693,2,148,'2','metz.velda@gmail.com',''),(694,2,148,'5','Media Inquiry',''),(695,2,148,'6','Hey there, I just found your site, quick question…\r\n\r\nI found meadowcroftwines.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTurboLeadGeneration.com is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE https://TurboLeadGeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE https://TurboLeadGeneration.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nPS: TurboLeadGeneration.com offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE https://TurboLeadGeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://TurboLeadGeneration.com/unsubscribe.aspx?d=meadowcroftwines.com',''),(696,2,149,'7','Al Johnson',''),(697,2,149,'2','ajohntop@aol.com',''),(698,2,149,'3','(310) 710-9142',''),(699,2,149,'5','Customer Service',''),(700,2,149,'6','Are your wines for sale anywhere in Westside LA or San Fernando Valley?',''),(701,2,150,'7','Libby Lewis',''),(702,2,150,'2','ealewis@fsu.edu',''),(703,2,150,'3','(850) 322-1414',''),(704,2,150,'5','Customer Service',''),(705,2,150,'6','Hi,\r\nMy name is Libby Lewis. I am on faculty at Florida State University where I head up our Beverage Program.\r\n\r\nI will be bringing FSU college 10 students (all 21 or older) and a colleague out to your area in November.  \r\n\r\nI\'ve been to your winery several times and you have always blown my socks off with a great experience and amazing wine.\r\n\r\nMy questions are:\r\n1. Would you be able to take a group of 12?\r\n2. What type of experience would you suggest for us and \r\n3. Would the cost be? \r\n\r\nThe date I am looking at would be Friday, November 17th ~3:00 or 3:30.\r\n\r\nWould this be possible, if so what would the cost per person be? \r\n\r\nIf you have any questions please don\'t hesitate to reach out. My cell is 850-322-1414\r\n\r\nMany thanks,\r\nLibby',''),(706,2,151,'7','Christie Hoch',''),(707,2,151,'2','letscreatrbacklinks@gmail.com',''),(708,2,151,'3','(678) 562-4283',''),(709,2,151,'5','Media Inquiry',''),(710,2,151,'6','Hey,\r\n\r\nI hope this email finds you well.\r\n\r\nI am the outreach manager at eduguestpost.\r\n\r\nI understand the importance of acquiring high-quality backlinks and the effort it takes to obtain them.\r\n\r\nI am aware of your concerns about the challenges of obtaining backlinks for a well-ranked website.\r\n\r\nThat\'s why I am reaching out to introduce you to universities guest post service. Universities like columbia.edu, umass.edu , depaul.edu and many more with a strong ranking that could greatly benefit you.\r\n\r\nWe believe that placing your backlink on University websites would not only improve your website\'s ranking but also connect you with a large audience.\r\n\r\nDon\'t hesitate to seize this opportunity and expand your reach to a wider audience.\r\n\r\nAt digimarketinglads, our primary goal is to ensure customer satisfaction through our work.\r\n\r\nWe provide top-notch backlink services at competitive prices. \r\n\r\nFor further details or any queries, please feel free to contact us directly via email letscreatrbacklinks@gmail.com . \r\nSkype to Contact:- live:.cid.6146c29ca0d4ff2e\r\nHere you can check available sites list. Please enter your email in the list so that we can directly contact you using the list\r\nhttps://docs.google.com/spreadsheets/d/1rWNzRupag9lWbJDB8C_0xZIcnp2b1XDY27m3xT3ZRy0/edit?usp=sharing\r\nIf you want complete list of available university sites or other guest post backlink sites that we offer you can let me know through email and I will send it to you \r\n\r\nWe eagerly await your positive response.\r\n\r\nBest regards,\r\n\r\nDigimarketinglads',''),(711,2,152,'7','Bekim Kabashi',''),(712,2,152,'2','Bekimkabashi908@gmail.com',''),(713,2,152,'3','(908) 300-4940',''),(714,2,152,'5','Wines',''),(715,2,152,'6','Hi we are interested in selling your wine in our restaurant in newjersey.  My brother spoke to Tom. Is there a way to apply or can we talk about making this happen. Thank you.',''),(716,2,153,'7','Jodie Lugo',''),(717,2,153,'2','lugo.jodie15@gmail.com',''),(718,2,153,'3','(207) 440-8525',''),(719,2,153,'5','Careers',''),(720,2,153,'6','https://bit.ly/WebbyAi_Vip\r\n\r\nAre you tired of spending countless hours building and hosting your own funnels and websites? Say hello to WebbyAi – the world\'s first AI-driven ClickFunnels killer app!\r\n\r\nWith WebbyAi, you can create breathtaking funnels and websites in any niche with just a single keyword – and all in less than 2 minutes! Our powerful AI technology does all the heavy lifting for you, so you can focus on what really matters – growing your business.\r\n\r\nhttps://bit.ly/WebbyAi_Vip\r\n\r\nNot only that, but WebbyAi also hosts your funnels and websites for you, saving you time and money. Plus, our platform is constantly evolving and improving, so you can be sure that you\'re always using the latest and greatest technology.\r\n\r\nSo whether you\'re a seasoned marketer or just starting out, WebbyAi is the perfect tool for taking your business to the next level. With our easy-to-use platform, you\'ll be creating stunning funnels and websites in no time. And with our AI-driven technology, you can be sure that your funnels and websites will be optimized for maximum conversions and sales.\r\n\r\nDon\'t waste another minute struggling with outdated funnel and website builders. Sign up for WebbyAi today and experience the power of the world\'s first AI-driven ClickFunnels killer app!\r\n\r\nhttps://bit.ly/WebbyAi_Vip',''),(721,2,154,'7','Regan Pullman',''),(722,2,154,'2','regan.pullman9@gmail.com',''),(723,2,154,'6','Accidental overdose is the #1 cause of death for people aged 18-45 in the United States.\r\n\r\n \r\n\r\nNarcan is a nasal spray that can reverse an opioid overdose, saving the person’s life.  Our group of volunteers has compiled a website that tracks organizations that are giving out free and discount Narcan, this site is  https://www.narcan-finder.com/. \r\n\r\n \r\n\r\nEventually this life saving medication will be as easy to find as a fire extinguisher, but at the moment, it’s only gradually becoming available, and often expensive at drugstores, etc. Would you consider sharing our resource on your website?  It will save lives.\r\n\r\n\r\nIf you have any questions you can reach out to me by email here: narcanfinder@gmail.com\r\n\r\n\r\nThank you for your consideration!',''),(724,2,155,'7','Tina Manning',''),(725,2,155,'2','gptdash@databaseen.com',''),(726,2,155,'3','(940) 264-4681',''),(727,2,155,'6','Hi,\r\n\r\nAre you struggling to create content that not only engages your audience but also drives profits for your business?\r\n\r\nLook no further than this new AI solution: https://www.databaseen.com/gptdash \r\n\r\nThis dashboard was designed by top internet marketers and copywriters who know how to leverage ChatGPT to create profitable content. With GPTDash, all you have to do is enter a few keywords and let the engine do the rest.\r\n\r\nThe result? Original, engaging, and profitable content that will set you apart from your competition. Plus, with this easy-to-use dashboard, you\'ll save valuable time and resources.\r\n\r\nDon\'t just take my word for it. I encourage you to try GPTDash today and see the results for yourself. There is a launch special today that I don\'t want you to miss: https://www.databaseen.com/gptdash \r\n\r\nStay ahead of the game with this new AI dashboard. As always, I\'m here to help you succeed.\r\n\r\nTo your success,\r\n\r\nTina Manning \r\n\r\nUNSUBSCRIBE: https://www.databaseen.com/unsubscribe\r\n\r\nAddress: 1951 W 5600 S #1, Roy, UT 84067',''),(728,2,156,'7','Phoebe Boyle',''),(729,2,156,'2','phoebeboyle2@gmail.com',''),(730,2,156,'3','(707) 775-0462',''),(731,2,156,'5','Wines',''),(732,2,156,'6','Hello I am from MacArthur Place\'s event team. I am wondering if I could gather some more information regarding group activities and bookings. If group bookings are available what is the minimum and maximum guest count for those?\r\nThank you for your time!\r\n- Phoebe Boyle',''),(733,2,157,'7','Joe Celine',''),(734,2,157,'2','joe@seo-indepth.com',''),(735,2,157,'3','(669) 206-0526',''),(736,2,157,'5','Media Inquiry',''),(737,2,157,'6','Hi there\r\n\r\nI’ve been through your website, and if you’re wondering why more of your visitors aren’t turning into sales, I have the answer for you.\r\n\r\nWould you like a free report on this?\r\n\r\nRegards\r\nJoe\r\n(669) 206-0526',''),(738,2,159,'7','Ian Niven',''),(739,2,159,'2','ian.niven@yahoo.com',''),(740,2,159,'3','(419) 664-6582',''),(741,2,159,'5','Customer Service',''),(742,2,159,'6','https://bit.ly/SEOGPT\r\n\r\nIntroducing SEOGPT - the world\'s first SEO toolkit that instantly grants you access to 50 must-have SEO tools that every website owner needs to get higher rankings on Google, Bing, and Yahoo. With SEOGPT, you can drive unlimited free buyer traffic to your offers without spending a fortune. \r\n\r\nSay goodbye to the days of paying monthly fees to money-sucking search engine optimization platforms once and for all. With SEOGPT, you can save over $5000 yearly and kick out dependency on third parties completely. No more doing everything yourself or hiring expensive freelancers. \r\n\r\nSEOGPT is designed to help you get more exposure for your offers and dominate your competition at will. Whether you\'re a seasoned website owner or a complete newbie, SEOGPT is 100% beginner-friendly. You don\'t need any prior tech skills to get started with this powerful tool.\r\n\r\nhttps://bit.ly/SEOGPT\r\n\r\nWith SEOGPT, you\'ll get a brand new, never-seen-before business-boosting technology that includes 50 proven SEO tools to skyrocket your website\'s rankings. You\'ll have everything you need to take your website to the next level and beyond. \r\n\r\nPlus, for a limited time only, you\'ll get a commercial license to provide red-hot business services to your clients. With SEOGPT, you can start offering SEO services and charge top dollar for your expertise.\r\n\r\nDon\'t miss out on this incredible opportunity to get higher rankings on Google and drive unlimited free buyer traffic forever. Get SEOGPT today and start dominating your competition.\r\n\r\nhttps://bit.ly/SEOGPT',''),(743,2,160,'7','Maria Solarez',''),(744,2,160,'2','msolarez@gmail.com',''),(745,2,160,'3','(617) 939-6682',''),(746,2,160,'5','Customer Service',''),(747,2,160,'6','I represent musical artists Stacy Robbins. She is available during the month of September for afternoon performances. Whom do we contact for booking her at Cornerstones?',''),(748,2,162,'7','Doreen Grogan',''),(749,2,162,'2','grogan.doreen@gmail.com',''),(750,2,162,'5','Customer Service',''),(751,2,162,'6','https://bit.ly/Copywriting_Mastery_Vip\r\n\r\nAttention all entrepreneurs!\r\n\r\nAre you ready to unlock the secret to massive success? The key lies in mastering the art and science of writing persuasive sales copy. It\'s time to give yourself an instant pay raise by clicking the button below.\r\n\r\nhttps://bit.ly/Copywriting_Mastery_Vip\r\n\r\nDiscover how to captivate your prospects and compel them to buy everything from you. Are you ready to unleash the power of irresistible offers?\r\n\r\nhttps://bit.ly/Copywriting_Mastery_Vip\r\n\r\nHey there,\r\n\r\nHave you ever witnessed the magic of a perfectly crafted sales message that compels your prospects to take action? It\'s like casting a spell on them, making your offer absolutely irresistible.\r\n\r\nImagine this: You present an order button to a prospect, and they become mesmerized, drawn to it like a moth to a flame. They are under a hypnotic trance, unable to resist the urge to buy. Suddenly, their credit card is out, and they\'re not just purchasing the main offer but also eagerly grabbing the upsells and cross-sells.\r\n\r\nIt\'s as if they\'ve gone crazy, willingly buying sand even when they\'re in the middle of the desert. It seems like magic, doesn\'t it?\r\n\r\nBut here\'s the truth: Magical spells don\'t really exist. There\'s no wizard\'s hat or mystical potion that can instantly conjure money out of thin air.\r\n\r\nhttps://bit.ly/Copywriting_Mastery_Vip',''),(752,2,163,'7','Damien Esterman',''),(753,2,163,'2','damien@associatedenergypartners.com.au',''),(754,2,163,'3','(048) 058-0565',''),(755,2,163,'5','Wines',''),(756,2,163,'6','Hi Guys. We want to put your roof to work! We supply, install and maintain solar panels, inverters, and batteries at no cost to you. We can even supply , install and maintain EV Chargers. How? Power Purchase Agreements (PPA\'s) Who would be the best person to talk to regarding this innovative approach to energy savings? Owner gets a passive income, tenant gets low cost electricity which will only increase by CPI annually and the plant will have less carbon to deal with. Where\'s the catch? There isn\'t one.\r\nMany Thanks in anticipation.\r\nDamien (0480 580565)',''),(757,2,164,'7','Fermin Mesa',''),(758,2,164,'2','customer.success@easywealthsystems.com',''),(759,2,164,'5','Influencer Inquiry',''),(760,2,164,'6','Meet an AI tool that revolutionizes video creation and editing. It effortlessly turns long-form content into short, sharable videos, transforms scripts into high-conversion sales videos, and converts blog posts into engaging videos. Plus, it automatically adds captions for wider reach.\r\n\r\nVisit https://easywealthsystems.com/video-bot\r\n\r\nPS. I\'ve created this code 4Q6DU just for you (20 percent OFF). Don\'t tell our CFO that I gave you this.\r\n\r\nCheers,\r\n\r\nFermin Mesa\r\n\r\nEasy Wealth Inc\r\n\r\n\r\nTo opt out of future communications, visit https://easywealthsystems.com/?domain=meadowcroftwines.com',''),(761,2,165,'7','Darrel',''),(762,2,165,'2','darrel@sowden.podiatristusa.sale',''),(763,2,165,'3','(626) 606-1112',''),(764,2,165,'4','626-606-1112',''),(765,2,165,'5','Careers',''),(766,2,165,'6','Hello,\r\n\r\nIf you are one of the sufferers of the common problems nails have, then you are in luck! Our Toenail Clippers is here to help. It has a specially designed clip that can help those with troubles with winding nails, hard nails, two nails, nail cracks, deep nails, and thickened nails.\r\n\r\nWe are confident that our Toenail Clippers will provide you with the results you are looking for.\r\n\r\nGet yours today with 60% OFF: https://podiatristusa.sale\r\n\r\nEnjoy,\r\n\r\nDarrel',''),(767,2,166,'7','Denice Willingham',''),(768,2,166,'2','denice.willingham@msn.com',''),(769,2,166,'3','(520) 366-4674',''),(770,2,166,'5','Influencer Inquiry',''),(771,2,166,'6','https://bit.ly/KleverSend_AI\r\n\r\nAttention all business owners! Are you tired of struggling to keep up with your customer inquiries on WhatsApp? Do you want to take your sales game to the next level? Look no further than KleverSend AI - the all-in-one WhatsApp autoresponder and bot powered by ChatGPT4!\r\n\r\nWith KleverSend AI, you can acquire new leads, simultaneously talk to unlimited prospects just like a human would, follow-up with them, and close sales automatically - all 24X7! Say goodbye to manual responses, and hello to automated sales success.\r\n\r\nClick here to start automating your sales process with KleverSend AI:  https://bit.ly/KleverSend_AI\r\n\r\nImagine having an AI-powered sales assistant that can handle all your WhatsApp customer inquiries with ease. KleverSend AI is the solution you\'ve been searching for! It\'s designed to help you focus on what matters most - closing more sales and growing your business.\r\n\r\nDon\'t waste any more time manually responding to customer inquiries. Let KleverSend AI do the work for you! Click here to get started: https://bit.ly/KleverSend_AI\r\n\r\nKleverSend AI is the perfect tool for business owners who want to streamline their sales process and close more deals. It\'s easy to set up and use, and it\'s powered by ChatGPT4 - the most advanced language model in the world. Plus, with unlimited prospect outreach and automatic follow-ups, you can rest assured that no lead will slip through the cracks.\r\n\r\nDon\'t wait any longer to start automating your sales process. Click here to get started with KleverSend AI today: https://bit.ly/KleverSend_AI\r\n\r\nIn conclusion, if you\'re looking for a game-changing tool that can help you acquire new leads, talk to unlimited prospects just like a human would, and close more sales automatically 24X7, KleverSend AI is the answer. Click here to start automating your sales process today: https://bit.ly/KleverSend_AI',''),(772,2,167,'7','Alex Suprun',''),(773,2,167,'2','bidsmarket@gmail.com',''),(774,2,167,'3','(514) 675-0575',''),(775,2,167,'5','Media Inquiry',''),(776,2,167,'6','Hello,\r\n\r\nPlease forward this message to your Human Resources department manager:\r\n\r\nI am looking for an executive-level digital marketing position that matches my 25 years omni-channel marketing experience. I am equally strong in all aspects of strategic & hands-on marketing management, cost-effective P&L and team leadership.\r\n\r\nCurrently, I live in Montreal, QC, Canada, and am open to remote, hybrid or even in-office role (that require relocation).\r\n\r\nIf there is a matching vacancy with your Organization - may I email my Resume for your consideration?\r\n\r\nBest regards,\r\n\r\nAlexander Suprun\r\nbidsmarket@gmail.com',''),(777,2,168,'7','Alim Al Razi',''),(778,2,168,'2','alrazi023@aol.com',''),(779,2,168,'3','(214) 587-2278',''),(780,2,168,'5','Customer Service',''),(781,2,168,'6','Hi,\r\n\r\nI hope this email finds you rocking your day! I\'m reaching out to offer you an exclusive opportunity to boost your website\'s SEO and increase its online visibility.\r\n\r\nI have a unique proposition for you: I\'ll craft compelling and original articles tailored to your niche and publish it on 15 different High DA (Domain Authority) Guest Posting Websites. This will not only drive more traffic to your site but also provide you with 150 valuable backlinks from reputable sources.\r\n\r\nBacklinks from high authority sites can significantly improve your website\'s ranking on search engines, leading to more organic traffic and potential customers. Your links will be published on high traffic sites like Medium.com, Vocal.media, LinkedIn.com, Quora.com, Minds.com and many more!\r\n\r\n\r\nMy services:\r\n\r\nBasic Package ($25): 10 x 1000-word guest posts on 15 DA50-90 sites (150 backlinks).\r\n\r\nStandard Package ($50): 20 x 1000-word guest posts on 15 DA50-90 sites (300 backlinks).\r\n\r\nPremium Package ($100): 40 x 1000-word guest posts on 15 DA50-90 sites (600 backlinks).\r\n\r\n\r\nIf you\'re interested in taking advantage of this special offer, please reply back to this email and give me your website URL/keywords. I\'ll start your job right away. No advance payment is required. You can pay after you\'re fully satisfied with my services.\r\n\r\n\r\nBest regards,\r\nAlim Al Razi\r\nlinkintechseo@gmail.com',''),(782,2,169,'7','Bennett Levvy',''),(783,2,169,'2','bennett.levvy@googlemail.com',''),(784,2,169,'5','Media Inquiry',''),(785,2,169,'6','https://bit.ly/RpmSystem\r\n\r\nIntroducing RPM 3.0: Unleash the Power of Automated Income Streams!\r\n\r\nAre you ready to take your online business to new heights? RPM 3.0 is here, and it\'s unlike anything you\'ve ever experienced before. We\'ve packed this new version with incredible features, higher converting pages, and a revolutionary autotag technology that will skyrocket your success.\r\n\r\nClick here to discover the power of RPM 3.0: https://bit.ly/RpmSystem\r\n\r\nWith a staggering 60% conversion rate, RPM 3.0 is the ultimate solution for those seeking multiple income streams without the hassle of constant editing and tweaking. Say goodbye to the days of manually setting up systems and hello to the future of affiliate marketing automation!\r\n\r\nHere\'s what makes RPM 3.0 stand out from the crowd:\r\n\r\n1. Autotag Technology: Our cutting-edge autotag technology does all the heavy lifting for you. Forget about spending hours editing and configuring. RPM 3.0 sets up your entire system automatically, so you can focus on what truly matters - growing your profits!\r\n\r\n2. Streamlined Affiliate Marketing: Tired of juggling multiple links and tracking systems? RPM 3.0 simplifies the process by providing you with one main link that tracks all your income streams. Earn from dozens of sources effortlessly, while our system takes care of the rest.\r\n\r\n3. Higher Converting Pages: We\'ve revamped our pages to maximize conversions. With RPM 3.0, you\'ll witness a surge in sales as our optimized pages captivate your audience and entice them to take action. It\'s time to unlock your true earning potential!\r\n\r\nBut don\'t just take our word for it. Our satisfied customers are already raving about RPM 3.0:\r\n\r\n\"RPM 3.0 is a game-changer! The autotag technology alone is worth every penny. I\'ve never seen such a seamless setup process. My income streams have multiplied, and I\'m earning more than ever before!\" - Sarah H.\r\n\r\n\"Finally, a system that simplifies affiliate marketing! RPM 3.0 has made my life so much easier. I can now focus on scaling my business instead of getting bogged down in tedious tasks. This is the future of online income!\" - Mark T.\r\n\r\nThe time to supercharge your online business is now. Don\'t miss out on the opportunity to harness the power of RPM 3.0. Click the link below to get started and experience the future of automated income streams:\r\n\r\nClick here to get started with RPM 3.0: https://bit.ly/RpmSystem\r\n\r\nRemember, RPM 3.0 is not the RPM you knew and loved. It\'s a new beast entirely, ready to propel you towards unprecedented success. Join the ranks of savvy entrepreneurs who are already capitalizing on this incredible system.\r\n\r\nDon\'t wait another minute. Click now and unlock your potential with RPM 3.0: https://bit.ly/RpmSystem\r\n\r\nDisclaimer: The above conversion rate is based on actual customer results. Individual results may vary based on effort and commitment.\r\n\r\nhttps://bit.ly/RpmSystem',''),(786,2,170,'7','Gilberto Lopez',''),(787,2,170,'2','gilberto@dlord.mx',''),(788,2,170,'3','(619) 567-3045',''),(789,2,170,'4','+1 (619) 567 3045',''),(790,2,170,'5','Careers',''),(791,2,170,'6','Exciting Tequila Investment Opportunity - Act Now!\r\nDear valued customers and fellow tequila enthusiasts,\r\nI hope this email finds you in high spirits and good health. Allow me, Gilberto López, to introduce myself as the creator of the famous AVOCADO BEER brand \"AVOCATO\" - the first beer made from Mexican avocado hass. As CEO of Dark Lord Brewery and Lord Distributions, I am thrilled to share an incredible opportunity with you.\r\nAt Dark Lord, we have expanded our horizons and are now producing top-quality tequila - a venture I am extremely passionate about. Our tequila is 100% pure agave, certified by the prestigious Tequila Regulatory Council, and embodies the essence of authenticity and craftsmanship.\r\nToday, I am excited to present a limited-time offer: bulk quantities of our premium Blanco, Reposado, and Añejo tequila, ready for immediate delivery.\r\nBut this is not just any tequila - it\'s a masterpiece crafted to perfection. Our tequila carries the official seal of approval from the Tequila Regulatory Council, ensuring its unrivaled quality and genuine agave flavor. What\'s more, we are giving you the opportunity to customize your tequila with your own brand, bottle design, and label, making it uniquely yours.\r\nAvailable stock:\r\n200,000 liters of Certified Blanco Tequila\r\n100,000 liters of Certified Reposado Tequila\r\n100,000 liters of Certified Añejo Tequila\r\nTo add an extra touch of elegance, our tequila can be processed to achieve a crystal-clear version, offering you the Blanco Cristalino, Reposado Cristalino, and/or Añejo Cristalino variations.\r\nWhether you\'re an established tequila manufacturer looking to expand your product line or a passionate entrepreneur seeking a thrilling opportunity in the spirits industry, this is your chance to make a mark.\r\nSeize this moment to elevate your brand and join us on this exciting journey into the world of tequila. Don\'t hesitate to reach out to us for more details, pricing, or to secure your order. Our dedicated team is ready to assist you throughout the process.\r\nThank you for considering this opportunity, and I look forward to welcoming you to the Dark Lord family of tequila enthusiasts.\r\nRaise your glasses to success, and let\'s make this venture memorable together!\r\nBest regards,\r\nGilberto López\r\nCEO, Dark Lord Tequila Company\r\ngilberto@dlord.mx  \r\n+1 (619) 567 3045',''),(792,2,171,'7','Georgina Haynes',''),(793,2,171,'2','georginahaynes620@gmail.com',''),(794,2,171,'5','Careers',''),(795,2,171,'6','Hi,\r\n\r\nWe\'d like to introduce to you our explainer video service, which we feel can benefit your site meadowcroftwines.com.\r\n\r\nCheck out some of our existing videos here:\r\nhttps://www.youtube.com/watch?v=bWz-ELfJVEI\r\nhttps://www.youtube.com/watch?v=Y46aNG-Y3rM\r\nhttps://www.youtube.com/watch?v=hJCFX1AjHKk\r\n\r\nAll of our videos are in a similar animated format as the above examples, and we have voice over artists with US/UK/Australian accents. We can also produce voice overs in languages other than English.\r\n\r\nThey can show a solution to a problem or simply promote one of your products or services. They are concise, can be uploaded to video sites such as YouTube, and can be embedded into your website or featured on landing pages.\r\n\r\nOur prices are as follows depending on video length:\r\nUp to 1 minute = $259\r\n1-2 minutes = $379\r\n2-3 minutes = $489\r\n\r\n*All prices above are in USD and include a full script, voice-over and video.\r\n\r\nIf this is something you would like to discuss further, don\'t hesitate to reply.\r\n\r\nKind Regards,\r\nGeorgina\r\n\r\nIf you are not interested, unsubscribe here: https://explainervideos4u.net/unsubscribe.php?d=meadowcroftwines.com',''),(796,2,172,'7','Jorg Ohara',''),(797,2,172,'2','ohara.jorg@gmail.com',''),(798,2,172,'3','(954) 922-8000',''),(799,2,172,'5','Influencer Inquiry',''),(800,2,172,'6','https://bit.ly/Refuel_AI\r\n\r\nThanks to technology, making money online is easier than ever.\r\nBut even with that technology, there’s STILL a learning curve and you \r\nSTILL need to invest in a bunch of different softwares.\r\n\r\nWell not anymore ...\r\n\r\n>> This brand new software system AUTOMATES 3 figure daily profits!\r\n\r\nhttps://bit.ly/Refuel_AI\r\n\r\n\r\nUsually new tech is complicated, but it doesn’t get any simpler than this.\r\n\r\nThe product creator told me he designed it SPECIFICALLY for beginners.\r\n\r\nThere’s no website building.\r\nNo product creation.\r\nNo figuring out traffic.\r\nNo monthly costs of ANY kind.\r\n\r\nIt’s plug & play simple and can work for anyone, with no experience at all.\r\n\r\nThe software gets you paid in TWO ways:\r\n\r\nUpfront with automated affiliate commissions - from offers you’re pre-approved \r\nfor with your license ...\r\n\r\nAnd by building you a profitable subscriber list - the best thing you can have as \r\na digital marketer.\r\n\r\nWith step by step training, epic support and a money back guarantee, this one’s \r\na no brainer.\r\n\r\n>> Hurry to get your license to REFUEL now!\r\n\r\nhttps://bit.ly/Refuel_AI',''),(801,2,173,'7','Angel Nowland',''),(802,2,173,'2','angel.nowland19@outlook.com',''),(803,2,173,'5','Careers',''),(804,2,173,'6','https://bit.ly/RoboCHAT_Vip\r\n\r\nAre you tired of spending endless hours building and maintaining your own chatbot platform? Look no further than RoboCHAT! Our revolutionary app lets you create your very own AI chatbot platform with just one click. \r\n\r\nRoboCHAT fuses the powerful AI technologies of both Google and Microsoft to create a platform that is unmatched by anything else on the market, including ChatGPT. This means that your chatbot will be smarter, faster, and more intuitive than ever before, making it the perfect tool for engaging with your customers and driving sales.\r\n\r\nhttps://bit.ly/RoboCHAT_Vip\r\n\r\nNot only that, but with RoboCHAT, you\'ll start earning money every time someone engages with your chatbot. That\'s right – you can turn your chatbot into a powerful revenue stream, all without lifting a finger.\r\n\r\nSo why wait? Sign up for RoboCHAT today and experience the power of the world\'s most advanced chatbot platform. With just one click, you can transform your business and start seeing real results. Don\'t miss out – get started with RoboCHAT now!\r\n\r\nhttps://bit.ly/RoboCHAT_Vip',''),(805,2,174,'7','Gerich Fellermann',''),(806,2,174,'2','gerich@maroonwines.com',''),(807,2,174,'3','(917) 374-6222',''),(808,2,174,'5','Wines',''),(809,2,174,'6','Hello,\r\nIf possible to speak to whoever handles your wholesale sales, I would like to get some information on Don Kowalski of Specialty Cellars and generally get an idea of whether they do a good job for you.  I was forwarded Don\'s contact from the owners as a possible distributor for our wines.\r\n\r\nThank you!\r\nGerich',''),(810,2,175,'7','Deloris Crook',''),(811,2,175,'2','crook.deloris@gmail.com',''),(812,2,175,'6','https://bit.ly/ProfitBot_Ai\r\n\r\nYou\'re just one click...\r\n\r\nFrom plugging into a turbo-charged AI...\r\n\r\nThat make $400 per day...\r\n\r\n$55 per hour...\r\n\r\nEven $2,200 per day...\r\n\r\nJust by pasting a few words...\r\n\r\nInto a new AI app - that is the ULTIMATE AI available right now\r\n\r\nThat’s because it’s just the most PROFITABLE AI.\r\n\r\nSee for yourself:\r\n\r\n==>  https://bit.ly/ProfitBot_Ai\r\n\r\nWhy?\r\n\r\nBecause...\r\n\r\nEVERY time you paste into the AI...\r\n\r\nIt builds an instant Internet asset...\r\n\r\nA new and unique asset, that makes FAST commissions...\r\n\r\nGets buyer leads...\r\n\r\nBanks commissions...\r\n\r\nCrushes ClickBank...\r\n\r\nSmashes Shopify...\r\n\r\nCloses on UpWork...\r\n\r\nAnd 27x other mega-sites...\r\n\r\nhttps://bit.ly/ProfitBot_Ai',''),(813,2,177,'7','Kai Lancaster',''),(814,2,177,'2','kai@una-vida.org',''),(815,2,177,'3','(415) 497-1196',''),(816,2,177,'5','Wines',''),(817,2,177,'6','For over 25 years Una Vida has provided services for thousands of people throughout Sonoma and Northern Marin Counties. We function as a resource agency - whether through food,\r\nessentials, home goods, or advocating for our recipients. \r\nLike so many others, the pandemic wreaked havoc on our supply chain, and at the same time, increased those coming to us in need. On October 19th, we will be hosting a fundraiser in order to raise funds for much needed services. We are hoping that you would donate a case (or\r\nanything) for our event. Your tax-deductible donation would be a great addition to our fundraiser. \r\nWith grace and gratitude,\r\nKai',''),(818,2,179,'7','Samira Dorman',''),(819,2,179,'2','samira.dorman@gmail.com',''),(820,2,179,'3','(336) 849-9191',''),(821,2,179,'5','Influencer Inquiry',''),(822,2,179,'6','https://bit.ly/NexusAI\r\n\r\nhttps://bit.ly/NexusAI\r\n\r\nIntroducing Nexus - the game-changing add-on that harnesses the power of AI to help you drive massive amounts of free traffic from YouTube in just 30 seconds! With Nexus, you\'ll never have to worry about tedious video creation, tech skills or even being on camera. \r\n\r\nNexus is the ultimate solution for anyone who wants to skyrocket their online business without breaking the bank. You can now tap into the billions of users on YouTube and convert them into loyal customers, effortlessly. \r\n\r\nWith its cutting-edge technology, Nexus finds you the most profitable niches and keywords, so you can start generating massive amounts of targeted traffic to your offers, products or services within minutes. This powerful tool does all the heavy lifting for you, so you can focus on what really matters - growing your business and making more money.\r\n\r\nBut that\'s not all. With Nexus, you\'ll also get access to a step-by-step training that shows you how to maximize your results and scale your business to new heights. You\'ll learn the insider secrets of top marketers who are already crushing it with YouTube traffic and how to replicate their success.\r\n\r\nDon\'t miss out on this incredible opportunity to get your hands on Nexus today. Say goodbye to the frustration and overwhelm of trying to generate traffic on your own and say hello to a new era of online success. With Nexus, you\'ll be able to enjoy a consistent flow of targeted traffic that converts into real profits, all while working less and enjoying more freedom. \r\n\r\nOrder now and start seeing results in as little as 30 seconds!\r\n\r\nhttps://bit.ly/NexusAI\r\n\r\nhttps://bit.ly/NexusAI',''),(823,2,181,'7','Zara Teakle',''),(824,2,181,'2','teakle.zara80@googlemail.com',''),(825,2,181,'3','(031) 485-4841',''),(826,2,181,'6','https://bit.ly/RpmSystem\r\n\r\nIntroducing RPM 3.0: Unleash the Power of Automated Income Streams!\r\n\r\nAre you ready to take your online business to new heights? RPM 3.0 is here, and it\'s unlike anything you\'ve ever experienced before. We\'ve packed this new version with incredible features, higher converting pages, and a revolutionary autotag technology that will skyrocket your success.\r\n\r\nClick here to discover the power of RPM 3.0: https://bit.ly/RpmSystem\r\n\r\nWith a staggering 60% conversion rate, RPM 3.0 is the ultimate solution for those seeking multiple income streams without the hassle of constant editing and tweaking. Say goodbye to the days of manually setting up systems and hello to the future of affiliate marketing automation!\r\n\r\nHere\'s what makes RPM 3.0 stand out from the crowd:\r\n\r\n1. Autotag Technology: Our cutting-edge autotag technology does all the heavy lifting for you. Forget about spending hours editing and configuring. RPM 3.0 sets up your entire system automatically, so you can focus on what truly matters - growing your profits!\r\n\r\n2. Streamlined Affiliate Marketing: Tired of juggling multiple links and tracking systems? RPM 3.0 simplifies the process by providing you with one main link that tracks all your income streams. Earn from dozens of sources effortlessly, while our system takes care of the rest.\r\n\r\n3. Higher Converting Pages: We\'ve revamped our pages to maximize conversions. With RPM 3.0, you\'ll witness a surge in sales as our optimized pages captivate your audience and entice them to take action. It\'s time to unlock your true earning potential!\r\n\r\nBut don\'t just take our word for it. Our satisfied customers are already raving about RPM 3.0:\r\n\r\n\"RPM 3.0 is a game-changer! The autotag technology alone is worth every penny. I\'ve never seen such a seamless setup process. My income streams have multiplied, and I\'m earning more than ever before!\" - Sarah H.\r\n\r\n\"Finally, a system that simplifies affiliate marketing! RPM 3.0 has made my life so much easier. I can now focus on scaling my business instead of getting bogged down in tedious tasks. This is the future of online income!\" - Mark T.\r\n\r\nThe time to supercharge your online business is now. Don\'t miss out on the opportunity to harness the power of RPM 3.0. Click the link below to get started and experience the future of automated income streams:\r\n\r\nClick here to get started with RPM 3.0: https://bit.ly/RpmSystem\r\n\r\nRemember, RPM 3.0 is not the RPM you knew and loved. It\'s a new beast entirely, ready to propel you towards unprecedented success. Join the ranks of savvy entrepreneurs who are already capitalizing on this incredible system.\r\n\r\nDon\'t wait another minute. Click now and unlock your potential with RPM 3.0: https://bit.ly/RpmSystem\r\n\r\nDisclaimer: The above conversion rate is based on actual customer results. Individual results may vary based on effort and commitment.\r\n\r\nhttps://bit.ly/RpmSystem',''),(827,2,182,'7','Lavada Deshotel',''),(828,2,182,'2','deshotel.lavada@gmail.com',''),(829,2,182,'3','(804) 589-5093',''),(830,2,182,'6','https://bit.ly/AI_BookSite\r\n\r\nHello\r\n\r\nI hope this email finds you well. I wanted to reach out and share an exciting opportunity that can revolutionize your book affiliate business.\r\n\r\nAre you tired of struggling to build a solid online business that actually grows? Well, you\'re not alone. Many marketers face challenges in finding untapped niches and standing out in saturated markets. But I have great news for you!\r\n\r\nIntroducing AIBookSite - Your Ultimate Book Affiliate Site Solution! With AIBookSite, you can create a fully automated book affiliate website in less than 60 seconds, thanks to our powerful ChatGPT-Powered technology.\r\n\r\nHere\'s why AIBookSite is the perfect solution for you:\r\n\r\n1. Pay Once, Profit Forever: Say goodbye to monthly subscriptions. With AIBookSite, you pay a one-time fee and enjoy unlimited profit potential without any restrictions.\r\n\r\n2. Easy Setup: Our user-friendly interface and comprehensive training make it easy for anyone to get started, regardless of age, skill, or experience. You\'ll have your book affiliate site up and running in no time!\r\n\r\n3. Loaded with Features: AIBookSite comes pre-loaded with 90,000 ebooks, physical books, and audiobooks across 130+ categories. Each book includes user ratings, release date info, price details, and buy buttons for the iTunes Bookstore and Amazon Book Store.\r\n\r\n4. Smart Search Functionality: Visitors can quickly find any book they want using the smart search box on your site, ensuring a seamless user experience.\r\n\r\nBut that\'s not all! When you choose AIBookSite, you\'ll also receive exclusive bonuses, including:\r\n\r\n- 30 AIBookSite Reseller Licenses: Sell AIBookSite to your customers and keep 100% of the profits. We handle all the support, so you can focus on growing your business.\r\n- AI Assistant App: Enhance customer engagement and boost sales by adding a virtual smart assistant to your book affiliate website.\r\n- AIBookSite SiteClone App: Jump-start your web design process by making copies or clones of any website.\r\n\r\nThis offer won\'t last long, so act now to secure your spot in the book affiliate marketing revolution. Click the link below to learn more and take advantage of this limited-time opportunity:\r\n\r\nhttps://bit.ly/AI_BookSite\r\n\r\nRemember, your investment is protected by our 30-day money-back guarantee. If you\'re not satisfied with AIBookSite, simply request a refund, no questions asked.\r\n\r\nDon\'t miss out on this chance to supercharge your book affiliate profits. Join the AIBookSite family today and start making insane profits with your fully automated book affiliate website.\r\n\r\nTo your success,\r\n\r\nhttps://bit.ly/AI_BookSite',''),(831,2,183,'7','Candy Moffatt',''),(832,2,183,'2','candy.moffatt@gmail.com',''),(833,2,183,'3','(269) 905-2215',''),(834,2,183,'5','Careers',''),(835,2,183,'6','https://bit.ly/TryInkAIExclusiveOffer\r\n\r\nIntroducing the Pioneer \"Artificial Intelligence-Enhanced\" Application that\'s set to change the scenario in the domain of eBooks and Flipbooks!\r\n\r\nhttps://bit.ly/TryInkAIExclusiveOffer\r\n\r\nAre you exhausted of investing countless hours crafting eBooks and Flipbooks for your enterprise, only to discover that they do not convert as well as you hoped? Well, say welcome to our groundbreaking new app that will make your life a great deal easier.\r\n\r\nOur app can turn any search term, website, blog or URL into a fully designed eBook or Flipbook in a short period of minutes! That\'s correct, you no not need to need to dedicate endless time creating your own eBooks or Flipbooks. With just a couple of clicks, our app will produce a stunning, expertly crafted eBook or Flipbook that\'s certain to captivate your audience.\r\n\r\nBut that\'s just the beginning. Our private marketplace has over 20,000,000 readers anticipating to devour your content! Picture the exposure your business could get by having your eBook or Flipbook seen by a massive audience. It\'s an awe-inspiring chance that you just can\'t overlook pass up.\r\n\r\nSo why throw away any more time trying to create your own eBooks and Flipbooks? Let our app do the work for you, and watch as your sales and conversions soar. Begin today and bring your business to the higher echelon!\"\r\n\r\nhttps://bit.ly/TryInkAIExclusiveOffer',''),(836,2,184,'7','Colette Selle',''),(837,2,184,'2','colette.selle@outlook.com',''),(838,2,184,'3','(507) 362-8641',''),(839,2,184,'5','Careers',''),(840,2,184,'6','https://bit.ly/KleverKreator_AI_Dall_E\r\n\r\nCreate UNLIMITED Text To Image Graphics, Illustrations, Photos, Digital Art & Much More For Your Blogs, Websites, Ads, Social Media INSTANTLY WITHOUT Any Graphic Skills Or Tools!\r\n\r\nhttps://bit.ly/KleverKreator_AI_Dall_E\r\n\r\nIntroducing our revolutionary product that will take your digital creativity to the next level! With our product, you can now easily create stunning images, graphics, illustrations, photos, digital art, and so much more, without requiring any graphic skills or tools. Yes, you heard it right! Our product is designed to make your life easier by allowing you to create stunning visuals for your blogs, websites, ads, and social media posts instantly.\r\n\r\nImagine being able to effortlessly create graphics that will leave your audience in awe, every single time. With our product, you can create UNLIMITED images and designs, making your content stand out from the crowd. Whether you need a header for your website, an eye-catching ad, or a beautiful illustration for your blog post, we\'ve got you covered.\r\n\r\nOur product is incredibly easy to use. You don\'t need to have any graphic design experience or expensive tools. Simply choose a template from our vast library of pre-made designs, add your text and customize it to suit your brand, and you\'re ready to go. You can even upload your own images and use them in your designs.\r\n\r\nDon\'t settle for dull and unremarkable visuals that will leave your audience scrolling past your content. With our product, you can create captivating graphics that will engage your audience, increase your social media following, and boost your sales.\r\n\r\nSo why wait? Try our product today and start creating stunning images that will take your content to the next level. With our easy-to-use platform, you\'ll be creating eye-catching graphics in no time.\r\n\r\nClick the link now and unlock your full creative potential!\r\n\r\nhttps://bit.ly/KleverKreator_AI_Dall_E',''),(841,2,185,'7','Joe Celine',''),(842,2,185,'2','joe@seo-indepth.com',''),(843,2,185,'3','(669) 206-0526',''),(844,2,185,'5','Careers',''),(845,2,185,'6','Hi there\r\n\r\nI’ve been through your website, and if you’re wondering why more of your visitors aren’t turning into sales, I have the answer for you.\r\n\r\nWould you like a free report on this?\r\n\r\nRegards\r\nJoe\r\n(669) 206-0526',''),(846,2,186,'7','Jennifer A Maxwell',''),(847,2,186,'2','azafran97@gmail.com',''),(848,2,186,'3','(202) 810-1612',''),(849,2,186,'5','Customer Service',''),(850,2,186,'6','Good afternoon,\r\nI will be in Sonoma  and Bodega Bay next week with my colleague and would like to inquire about if you offer any wine industry discount. I work at Windridge Vineyards in Maryland and just passed the WSET certification. You come highly recommended by our vintner and owner.\r\nI look forward to hearing from you.\r\nThank you,\r\nJennifer Maxwell\r\n\r\nWindridge Vineyards\r\n15700 Darnestown Road\r\nDarnestown, MD\r\nhttps://www.windridge.wine/\r\n202 557-0732',''),(851,2,187,'7','Jim Lamble',''),(852,2,187,'2','geoffrey.lamble@googlemail.com',''),(853,2,187,'3','(354) 618-8931',''),(854,2,187,'5','Influencer Inquiry',''),(855,2,187,'6','Hi there,\r\nMonthly Seo Services - Professional/ Affordable Seo Services\r\nHire the leading seo marketing company and get your website ranked on search engines. Are you looking to rank your website on search engines? Contact us now to get started -  https://digitalpromax.co/la/ Today!',''),(856,2,188,'7','Suzanne Paxton',''),(857,2,188,'2','paxton.suzanne57@gmail.com',''),(858,2,188,'5','Customer Service',''),(859,2,188,'6','https://bit.ly/VoiceGPT_AI\r\n\r\nIntroducing VoiceGPT AI, the revolutionary cloud-based app that combines the power of ChatGPT4 with advanced voice technology to create unique high-quality content and convert it into real human emotion-based voices and audiobooks. Say goodbye to generic, robotic-sounding voices and hello to engaging, emotive audio content that captivates your audience and drives conversions.\r\n\r\nWith VoiceGPT AI, you can create custom audio content in minutes. Simply input your text, select your preferred voice and tone, and let our advanced technology do the rest. Our app generates natural-sounding audio that conveys the emotions and nuances of your text, creating a listening experience that engages your audience and leaves a lasting impression.\r\n\r\nhttps://bit.ly/VoiceGPT_AI\r\n\r\nWhether you\'re a content creator, marketer, or business owner, VoiceGPT AI is the perfect tool to take your audio content to the next level. Use it to create engaging podcasts, audiobooks, video voiceovers, and more. Our app is easy to use, intuitive, and requires no technical expertise. Plus, it\'s cloud-based, so you can access it from anywhere and collaborate with your team in real-time.\r\n\r\nDon\'t settle for generic, lifeless audio content that fails to capture your audience\'s attention. Upgrade to VoiceGPT AI and experience the power of emotive audio content that converts. Try it out today and see the difference for yourself.\r\n\r\nhttps://bit.ly/VoiceGPT_AI',''),(860,2,191,'7','James Pimentel',''),(861,2,191,'2','leila.pimentel@gmail.com',''),(862,2,191,'3','(717) 765-3163',''),(863,2,191,'5','Customer Service',''),(864,2,191,'6','Hi there,\r\nMonthly Seo Services - Professional/ Affordable Seo Services\r\nHire the leading seo marketing company and get your website ranked on search engines. Are you looking to rank your website on search engines? Contact us now to get started - https://alwaysdigital.co/la/  Today!',''),(865,2,192,'7','Bernice Ashby',''),(866,2,192,'2','ashby.bernice@gmail.com',''),(867,2,192,'3','(705) 641-5305',''),(868,2,192,'5','Influencer Inquiry',''),(869,2,192,'6','https://bit.ly/Daplify_Vip\r\n\r\nAttention entrepreneurs and online marketers! Are you tired of spending a fortune on advertising with little to no results? Do you want to skyrocket your business growth without breaking the bank? Look no further than Daplify!\r\n\r\nWith Daplify, you can unlock unlimited impressions, leads, and sales for just pennies on the dollar. Our cutting-edge technology ensures that your message reaches the right people at the right time, maximizing your ROI and driving your business forward.\r\n\r\nBut that\'s not all. Daplify offers a user-friendly interface that allows you to set up campaigns in minutes, without any prior experience or technical knowledge. Our advanced targeting options ensure that your ads are seen by your ideal customer, increasing the likelihood of conversions and sales.\r\n\r\nDon\'t let your competitors outpace you in the digital world. Join the hundreds of satisfied customers who have already experienced explosive growth with Daplify. Start your free trial today and see the results for yourself. Don\'t wait - your success is just a click away!\r\n\r\n\r\nhttps://bit.ly/Daplify_Vip',''),(870,2,193,'7','Paul Brown',''),(871,2,193,'2','paul@generatereviewsfast.com',''),(872,2,193,'3','(202) 410-9218',''),(873,2,193,'5','Careers',''),(874,2,193,'6','Hi,\r\n\r\nI see that you\'re not using GMB chat on your Google business profile.\r\n\r\nGMB chat allows you to engage your potential customers in real-time.\r\n\r\nWould you like me to send you a quick explainer video?\r\n\r\nRegards\r\nPaul\r\n202-410-9218',''),(875,2,194,'7','Kristi Coury',''),(876,2,194,'2','kristi.coury@yahoo.com',''),(877,2,194,'5','Media Inquiry',''),(878,2,194,'6','https://bit.ly/Twitter_Profit_Hive\r\n\r\nAre you tired of scrolling through your Twitter feed and not making any money from it? Do you want to turn your Twitter account into a source of income? Then you\'ve come to the right place! ADDED BONUS: Twitter Standalone Software- (TWITTELLIGENCE).\r\nhttps://bit.ly/Twitter_Profit_Hive',''),(879,2,197,'7','Myrtis Mendoza',''),(880,2,197,'2','mendoza.myrtis@googlemail.com',''),(881,2,197,'5','Customer Service',''),(882,2,197,'6','Quick question to ask you... Are you aware that by reading this message you just proved that contact form marketing works? That\'s right, and we can get eyeballs on your offer too! Pricing starts at just $100 to blast YOUR ad message to 1 MILLION contact forms on websites just like yours worldwide. Contact me on Email and let\'s discuss what will work for your product/service. My Email Address is: Myrtis@gomail2.xyz this message was sent to your website contact form at: meadowcroftwines.com',''),(883,2,200,'7','Silke',''),(884,2,200,'2','silke@mail.caredogbest.shop',''),(885,2,200,'5','Media Inquiry',''),(886,2,200,'6','Hi \r\n\r\nI wanted to reach out and let you know about our new dog harness. It\'s really easy to put on and take off - in just 2 seconds - and it\'s personalized for each dog. \r\nPlus, we offer a lifetime warranty so you can be sure your pet is always safe and stylish.\r\n\r\nWe\'ve had a lot of success with it so far and I think your dog would love it. \r\n\r\nGet yours today with 50% OFF: https://caredogbest.com\r\n\r\nFREE Shipping - TODAY ONLY! \r\n\r\nAll the best, \r\n\r\nSilke',''),(887,2,201,'7','Hunter Bergman',''),(888,2,201,'2','bergman.hunter@msn.com',''),(889,2,201,'6','https://bit.ly/TryInkAI\r\n\r\nAre you tired of spending countless hours typing out your thoughts and ideas into a boring, plain-text document? Do you want to turn your voice into a stunning, professional-looking eBook or flipbook in just a matter of minutes? Introducing the world\'s first voice-to-eBook app!\r\n\r\nhttps://bit.ly/TryInkAI\r\n\r\nWith this revolutionary app, you can instantly generate 100% human-like and unique eBooks with just one click. No more struggling to find the right words or phrases, no more worrying about grammar or spelling errors, and no more wasted time.\r\n\r\nhttps://bit.ly/TryInkAI\r\n\r\nNot only can you create eBooks, but you can also generate 3D eCovers for your eBook, making it stand out from the rest. And with the power of AI, you can capitalize on the latest wave of technology with just one click.\r\n\r\nhttps://bit.ly/TryInkAI\r\n\r\nBut that\'s not all. You can create a wide range of digital publications with this app, including flipbooks, PDFs, presentations, reports, and more. And when you\'re ready to publish, you can instantly publish your eBooks in our marketplace, giving you access to a wider audience and more potential buyers.\r\n\r\nhttps://bit.ly/TryInkAI\r\n\r\nBut we don\'t stop there. We also offer syndication services, which means we can syndicate your eBook to 50+ publications for instant buyer traffic. This means you can start your publishing business today and watch as your eBook reaches more and more people.\r\n\r\nhttps://bit.ly/TryInkAI\r\n\r\nAnd the best part? This app is 100% cloud-based, so there\'s nothing to install or configure. Plus, you don\'t need any experience to use it. So whether you\'re a seasoned writer or a complete beginner, you can start creating stunning eBooks right away.\r\n\r\nhttps://bit.ly/TryInkAI\r\n\r\nAnd with our zero upfront cost and 30-day money-back guarantee, you have nothing to lose. So why wait? Try the world\'s first voice-to-eBook app today and experience the power of voice in publishing!',''),(890,2,203,'7','Joseph O’Hayon',''),(891,2,203,'2','info@franchisecreatoruniversity.com',''),(892,2,203,'3','(305) 924-2269',''),(893,2,203,'5','Wines',''),(894,2,203,'6','Hello. I represent the country’s leading franchise consulting firm, Franchise Creator, responsible for growing over 600 businesses into multi-million-dollar empires, all through franchising. I am personally reaching out to you again because I truly believe you have developed a great concept which we can help you expand through franchising. I’d like to chat with you about our program and our proposed strategy to grow your company nationwide.\r\n\r\nPlease use the following live calendar link to book a call with me: https://calendly.com/joeohayon/franchise-development-cf \r\n\r\nLooking forward to speaking with you.',''),(895,2,204,'7','Jamila Colwell',''),(896,2,204,'2','colwell.jamila@gmail.com',''),(897,2,204,'3','(217) 737-1261',''),(898,2,204,'5','Careers',''),(899,2,204,'6','https://bit.ly/Free_Vip_Cam\r\n\r\nIntroducing Chaturbate: Unleash Your Wildest Desires Live!\r\n\r\nhttps://bit.ly/Free_Vip_Cam\r\n\r\nAre you ready to embark on a thrilling journey into a world of unbridled passion and electrifying connections? Look no further than Chaturbate, the ultimate destination for adults seeking an unforgettable experience like no other!\r\n\r\nhttps://bit.ly/Free_Vip_Cam\r\n\r\nPicture this: a virtual paradise where your deepest fantasies come to life, where seductive performers from around the globe eagerly await to captivate your senses and fulfill your every desire. With Chaturbate, you hold the key to unlock a universe of pleasure right at your fingertips.\r\n\r\nImmerse yourself in a mesmerizing live streaming platform that boasts an unmatched selection of jaw-dropping models, each one handpicked to ensure a diverse range of irresistible attractions. Whether you crave the sultry allure of sassy vixens, the chiseled physiques of Greek gods, or the tantalizing charm of fiery couples, Chaturbate has it all, and more!\r\n\r\nBut Chaturbate isn\'t just about passive entertainment. It\'s about forging genuine connections and engaging in exhilarating interactions. With our innovative chat features, you can communicate directly with your favorite performers, sharing your desires, and even making special requests. The power to create a personalized, one-of-a-kind experience is in your hands.\r\n\r\nWorried about accessibility? Fear not! Chaturbate is designed to cater to all devices, ensuring that you can enjoy the action on your computer, tablet, or smartphone. No matter where you are, the thrill of Chaturbate is only a click away. It\'s the perfect companion for those lonely nights or moments when you crave a dose of excitement to spice up your day.\r\n\r\nOur commitment to your satisfaction extends beyond the mesmerizing performances. Chaturbate offers a secure and discreet environment, safeguarding your privacy and providing peace of mind. We prioritize your comfort, ensuring that you can explore your deepest desires without worry.\r\n\r\nWhat\'s more, Chaturbate offers a range of exciting membership options, including free access for those eager to dip their toes into this world of pleasure. For those seeking an enhanced experience, our premium memberships unlock a treasure trove of exclusive benefits, including ad-free viewing, private shows, and even the ability to turn up the heat with our interactive toys.\r\n\r\nJoin the millions of satisfied users who have made Chaturbate the premier destination for adult entertainment. Unleash your inhibitions, indulge your senses, and discover a world of pleasure like never before.\r\n\r\nDon\'t wait another moment. Take the plunge into an adventure that will leave you breathless. Experience Chaturbate today and let your fantasies become reality.\r\n\r\nhttps://bit.ly/Free_Vip_Cam',''),(900,2,205,'7','Jasper Hyman',''),(901,2,205,'2','hyman.jasper@googlemail.com',''),(902,2,205,'5','Careers',''),(903,2,205,'6','Introducing High Ticket AI, the groundbreaking new product that is revolutionizing the way entrepreneurs make money online. With our state-of-the-art AI technology, you can now tap into a world of untapped potential and start making $5k, $10k, $15k and even $20k payments straight into your bank account. \r\n\r\nhttps://bit.ly/HighTicketAI2023\r\n\r\nWe know you\'ve tried everything under the sun to make money online, from affiliate marketing to dropshipping, and you\'re tired of all the empty promises and false hope. That\'s why we created High Ticket AI - to finally give you the breakthrough you\'ve been waiting for. \r\n\r\nhttps://bit.ly/HighTicketAI2023\r\n\r\nOur AI system is unlike anything you\'ve ever seen before. It\'s not some cheap gimmick or software that\'s been cobbled together by some fly-by-night operator. No, our system is the real deal, built from the ground up by a team of expert developers and AI engineers. \r\n\r\nhttps://bit.ly/HighTicketAI2023\r\n\r\nAnd the best part? You don\'t need any technical skills or experience to start using High Ticket AI. Our intuitive, user-friendly interface makes it easy for anyone to start making money with AI - even if you\'ve never heard of the technology before. \r\n\r\nhttps://bit.ly/HighTicketAI2023\r\n\r\nBut don\'t take our word for it - listen to what some of our satisfied customers have to say: \r\n\r\nhttps://bit.ly/HighTicketAI2023\r\n\r\n\"I was skeptical at first, but after using High Ticket AI for just a few days, I was blown away by the results. I\'ve never seen anything like it before.\" - John D. \r\n\r\nhttps://bit.ly/HighTicketAI2023\r\n\r\n\"I\'ve been struggling to make money online for years, but High Ticket AI has finally given me the breakthrough I\'ve been looking for. I\'m making more money than I ever thought possible.\" - Sarah K. \r\n\r\nhttps://bit.ly/HighTicketAI2023\r\n\r\nSo what are you waiting for? If you\'re tired of struggling to make ends meet and you\'re ready to finally start making the kind of money you deserve, then High Ticket AI is the answer. With our brand new AI technology, you can crush 2023 and beyond. Don\'t wait - get started today and start living the life you\'ve always dreamed of. \r\n\r\nhttps://bit.ly/HighTicketAI2023',''),(904,2,206,'7','Albert Broadway',''),(905,2,206,'2','broadway.albert@hotmail.com',''),(906,2,206,'3','(907) 293-2789',''),(907,2,206,'5','Influencer Inquiry',''),(908,2,207,'7','Concetta Berke',''),(909,2,207,'2','berke.concetta@yahoo.com',''),(910,2,207,'3','(704) 258-4827',''),(911,2,207,'5','Media Inquiry',''),(912,2,207,'6','https://bit.ly/Daplify_Vip\r\n\r\nAttention entrepreneurs and online marketers! Are you tired of spending a fortune on advertising with little to no results? Do you want to skyrocket your business growth without breaking the bank? Look no further than Daplify!\r\n\r\nWith Daplify, you can unlock unlimited impressions, leads, and sales for just pennies on the dollar. Our cutting-edge technology ensures that your message reaches the right people at the right time, maximizing your ROI and driving your business forward.\r\n\r\nBut that\'s not all. Daplify offers a user-friendly interface that allows you to set up campaigns in minutes, without any prior experience or technical knowledge. Our advanced targeting options ensure that your ads are seen by your ideal customer, increasing the likelihood of conversions and sales.\r\n\r\nDon\'t let your competitors outpace you in the digital world. Join the hundreds of satisfied customers who have already experienced explosive growth with Daplify. Start your free trial today and see the results for yourself. Don\'t wait - your success is just a click away!\r\n\r\n\r\nhttps://bit.ly/Daplify_Vip',''),(913,2,208,'7','Carin Newman',''),(914,2,208,'2','Newmancm@att.net',''),(915,2,208,'3','(203) 297-2878',''),(916,2,208,'5','Customer Service',''),(917,2,208,'6','Advice needed!  This summer we had an impromptu visit.  I bought 4 bee necklaces for our daughter, her girlfriend, our sons girlfriend and I.  I don’t usually wear jewelry.  That necklace meant the world to me because it was such a special family weekend.  I had worn it every day since June and it’s missing/lost/broke.\r\n Any way I can buy another or you can send me a link?  My sentimental heart knows that I may not get another weekend with them for years because my sons on Army.  I’d love to find another 💛',''),(918,2,209,'7','Glyde Barbey',''),(919,2,209,'2','Glydebarbey@gmail.com',''),(920,2,209,'3','(805) 728-0214',''),(921,2,209,'5','Wines',''),(922,2,209,'6','I would love to send a gift basket please. I don’t know how to order one from you however. \r\n\r\nPlease send me an email or feel free to call me so I can place an order.\r\n\r\nThank you!\r\n\r\nGlyde',''),(923,2,210,'7','Lourdes Kunze',''),(924,2,210,'2','seosubmitter@mail.com',''),(925,2,210,'5','Media Inquiry',''),(926,2,210,'6','Hello meadowcroftwines.com admin,\r\n\r\nWe can help you grow your online presence and attract more customers to your business with our Top SEO Services. \r\n\r\nOur team of experts can improve your Google and YouTube Ranking, optimize your Google Maps listing, provide Professional Content for your website, and increase your Website Traffic.\r\n\r\nDon\'t miss this opportunity to grow your business and stay ahead of the competition.\r\n\r\n=>>  https://cutt.ly/bwaduXWo\r\n \r\nBest regards,\r\nKunze\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n  \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n  \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n  \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\nAustria, BURGENLAND, Oberthalheim, 4850, Stollenstrasse 35\r\n \r\nTo stop any further communication through your website form, Please reply with subject: unsubscribe meadowcroftwines.com',''),(927,2,211,'7','Brent Franks',''),(928,2,211,'2','brent.franks22@outlook.com',''),(929,2,211,'5','Influencer Inquiry',''),(930,2,211,'6','https://bit.ly/AI_1K_Big_Ticket_Commissions\r\n\r\nAre you tired of struggling to make a decent income online? Are you ready to start earning big ticket commissions without all the hard work? Look no further than AI 1K Big Ticket Commissions!\r\n\r\nhttps://bit.ly/AI_1K_Big_Ticket_Commissions\r\n\r\nOur revolutionary system is powered by AI and ChatGPT, making it easy for you to generate profits without lifting a finger. With over $10,000 in monthly high ticket commissions, you can finally achieve financial freedom and live the life you\'ve always dreamed of.\r\n\r\nhttps://bit.ly/AI_1K_Big_Ticket_Commissions\r\n\r\nBut what makes AI 1K Big Ticket Commissions different from other programs out there? It\'s 100% done-for-you, meaning you don\'t have to worry about creating content, building websites, or any of the other tedious tasks that come with running an online business. Everything you need to succeed is right at your fingertips, all within one platform.\r\n\r\nhttps://bit.ly/AI_1K_Big_Ticket_Commissions\r\n\r\nDon\'t miss out on this incredible opportunity to turn your financial situation around. Join the countless others who have already seen massive success with AI 1K Big Ticket Commissions. Sign up now and start earning those big ticket commissions!\r\n\r\nhttps://bit.ly/AI_1K_Big_Ticket_Commissions',''),(931,2,212,'7','Celina Gigliello',''),(932,2,212,'2','cwpretto@gmail.com',''),(933,2,212,'3','(760) 707-4029',''),(934,2,212,'5','Customer Service',''),(935,2,212,'6','Hi there,\r\n\r\nI was wondering if you guys do weddings? Scouting for wedding venues.\r\n\r\nThanks!\r\n\r\nCelina',''),(936,2,213,'7','Kristal Atchley',''),(937,2,213,'2','kristal.atchley@gmail.com',''),(938,2,213,'6','https://bit.ly/NexusAI\r\n\r\nhttps://bit.ly/NexusAI\r\n\r\nIntroducing Nexus - the game-changing add-on that harnesses the power of AI to help you drive massive amounts of free traffic from YouTube in just 30 seconds! With Nexus, you\'ll never have to worry about tedious video creation, tech skills or even being on camera. \r\n\r\nNexus is the ultimate solution for anyone who wants to skyrocket their online business without breaking the bank. You can now tap into the billions of users on YouTube and convert them into loyal customers, effortlessly. \r\n\r\nWith its cutting-edge technology, Nexus finds you the most profitable niches and keywords, so you can start generating massive amounts of targeted traffic to your offers, products or services within minutes. This powerful tool does all the heavy lifting for you, so you can focus on what really matters - growing your business and making more money.\r\n\r\nBut that\'s not all. With Nexus, you\'ll also get access to a step-by-step training that shows you how to maximize your results and scale your business to new heights. You\'ll learn the insider secrets of top marketers who are already crushing it with YouTube traffic and how to replicate their success.\r\n\r\nDon\'t miss out on this incredible opportunity to get your hands on Nexus today. Say goodbye to the frustration and overwhelm of trying to generate traffic on your own and say hello to a new era of online success. With Nexus, you\'ll be able to enjoy a consistent flow of targeted traffic that converts into real profits, all while working less and enjoying more freedom. \r\n\r\nOrder now and start seeing results in as little as 30 seconds!\r\n\r\nhttps://bit.ly/NexusAI\r\n\r\nhttps://bit.ly/NexusAI',''),(939,2,214,'7','Roman Bristow',''),(940,2,214,'2','roman.bristow@gmail.com',''),(941,2,214,'3','(416) 684-9963',''),(942,2,214,'5','Customer Service',''),(943,2,214,'6','https://bit.ly/ApexVip\r\n\r\nAre you tired of struggling to make money online? Do you want to tap into the power of AI to effortlessly create money-making sites? Look no further than Apex - the ultimate solution for anyone looking to make money online with ease!\r\n\r\nhttps://bit.ly/ApexVip\r\n\r\nWith Apex, you can create AI-powered money sites that are pre-filled with human-readable content in just 23 seconds or less. And the best part? You don\'t need any experience or technical knowledge to get started.\r\n\r\nApex uses cutting-edge AI technology to analyze your niche and create targeted content that will drive 4,458 clicks for free. That\'s right - you\'ll get targeted traffic without spending a dime on ads.\r\n\r\nhttps://bit.ly/ApexVip\r\n\r\nAnd the results speak for themselves. Our users are making $795.56 daily with Apex, all without lifting a finger. With Apex, you can finally achieve the financial freedom you\'ve been dreaming of.\r\n\r\nDon\'t waste any more time struggling to make money online. Get started with Apex today and start seeing results in no time. Your financial future is waiting for you!\r\n\r\n\r\nhttps://bit.ly/ApexVip',''),(944,2,215,'7','Kaitlyn Valdes',''),(945,2,215,'2','kaitlyn.valdes10@gmail.com',''),(946,2,215,'5','Careers',''),(947,2,215,'6','https://bit.ly/Get_KocTv_Now\r\n\r\nAre you tired of paying for multiple streaming services just to watch your favorite shows and movies? With Kings of Cable, you can get everything you need in one place.\r\n\r\nhttps://bit.ly/Get_KocTv_Now\r\n\r\nWe have a huge library of movies and TV shows, including all the latest releases. We also have a wide variety of original content that you won\'t find anywhere else.\r\n\r\nhttps://bit.ly/Get_KocTv_Now\r\n\r\nAnd best of all, our prices are very affordable. You can get started for just $50 per month.\r\n\r\nBut that\'s not all. With Kings of Cable, you\'ll also have access to all live pay-per-view events. That means you can watch the biggest fights, concerts, and other events without having to leave your home.\r\n\r\nSo what are you waiting for? Sign up for Kings of Cable today and start streaming your favorite shows, movies, and live events!\r\n\r\nClick here to sign up for Kings of Cable today!\r\n\r\nSincerely,\r\n\r\nKings_of_Cable \r\n\r\nhttps://bit.ly/Get_KocTv_Now',''),(948,2,216,'7','Alex Curtis',''),(949,2,216,'2','alexcurtis.digitalmarketer@gmail.com',''),(950,2,216,'3','(303) 736-9129',''),(951,2,216,'5','Influencer Inquiry',''),(952,2,216,'6','Hello,\r\n\r\nI\'m Alex, a seasoned Content Writer/Copywriter with a track record of over 12 million words produced. I can handle all your content needs, from crafting web copy and blog posts to optimizing them with relevant SEO keywords and we can create content tailored to your desired tone and writing style.\r\n\r\nPay after we\'ve delivered the work!\r\n\r\nIf this interests you, please reach out via email at alexcurtis.digitalmarketer@gmail.com.',''),(953,2,217,'7','Loretta Heaps',''),(954,2,217,'2','swagbucks@howheart.com',''),(955,2,217,'3','(418) 532-4781',''),(956,2,217,'5','Customer Service',''),(957,2,217,'6','Hi,\r\nNo one knows your industry as well as you do, your thoughts are high value, and brands are willing to pay a lot of cash for your thoughts!\r\n\r\nSwagbucks has paid members over $529 million. They are rated \'Excellent\' on Trustpilot with more than 33,000 reviewers. \r\nBut given just how easy it is to earn money on the site, we wouldn\'t blame you for asking if Swagbucks is legit.\r\n\r\nIn addition, there are other ways to earn money on Swagbucks, such as: sign up for free trial, download a game app to the phone ...\r\n\r\nClick here to earn cash now: https://www.howheart.com/swagbucks\r\n\r\nRegards,\r\nLoretta Heaps\r\n\r\nUNSUBSCRIBE: https://www.howheart.com/unsubscribe/\r\n802 N Balsam St, Ridgecrest, CA 93555',''),(958,2,218,'7','Jennifer Obrien',''),(959,2,218,'2','jennifer@dandyreviewaitools.com',''),(960,2,218,'3','(949) 577-6294',''),(961,2,218,'4','12',''),(962,2,218,'5','Influencer Inquiry',''),(963,2,218,'6','Hi, \r\n\r\nAre you sure you don’t want us to remove those 8 of unfair reviews on your Google page for Meadowcroft wines? \r\n\r\nThat\'s what our AI powered software does without any work needed on your part  - and that\'s why some of the largest brands in the world like Wyndham trust us to consistently remove unfair bad reviews from the main review sites without any work needed on their end. \r\n\r\nDo you have 15 minutes for a call today? \r\n\r\nSchedule a Call Here meetings.hubspot.com/dandy-/review-removal-consult-ccfill or for more information please visit our website: getdandy.com/ai-removal-tool\r\n\r\nYou can also call me directly at (949) 577-6294\r\n\r\nWe’ve removed over 40,000 bad reviews and want to help you too. \r\n\r\nThank you,\r\n\r\nJennifer O\'brien | Director of Reviews\r\nGetDandy  - The First AI Powered Reputation Automation Platform\r\nPhone: (949) 577-6294\r\ngetdandy.com/ai-removal-tool',''),(964,2,219,'7','Josh Kim',''),(965,2,219,'2','josh.no-reply@yellowboost1.com',''),(966,2,219,'3','(424) 245-5686',''),(967,2,219,'5','Media Inquiry',''),(968,2,219,'6','Hello, \r\n\r\nGuaranteed Google rankings in 90 days or we work for free!\r\n\r\nThe Game-Changing Solution to Beat the Recession and Boost Your Business!\r\n\r\nAre you tired of struggling to get traffic to your website? Without an increase in traffic, your business growth is hindered, allowing competitors to dominate the market. Did you know that more than 80% of people search Google before buying goods or services? Wondering why certain businesses rank at the top of a Google search and receive the majority of clicks and drive substantial traffic to their websites? Dreaming of seeing your business there too? Well, you’ve come to the right place.\r\n\r\nThe internet is the best source to attract new customers and can be an absolute gold mine if it\'s set up and optimized correctly. Our services provide Key benefits that you can enjoy.\r\n    •  Unlock the secrets to boosting your sales, while we handle the entire process, giving you the opportunity to sit back and watch the magic happen.\r\n    •  Find out how to increase the number of new clients and accelerate the growth of your business.  \r\n    •  Discover the hidden method to advertise on Google Search without spending a dime, resulting in significant cost savings.\r\n\r\nThe cool news is I have a short video that shows how we can help you! \r\n\r\nClick this link right now to see it.\r\n\r\nhttps://marketing.yellowboost1.com \r\n\r\nI’ll see you over there,\r\n\r\n\r\n\r\nJosh Kim / Senior Marketing Agent\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nIf you want to opt out of future messages, click this link: https://yellowboost1.com/unsubscribe.php?d=meadowcroftwines.com',''),(969,2,220,'7','Reggie Baldwin',''),(970,2,220,'2','baldwin.reggie@hotmail.com',''),(971,2,220,'3','(216) 986-7290',''),(972,2,220,'5','Customer Service',''),(973,2,220,'6','Accidental overdose is the #1 cause of death for people aged 18-45 in the United States.\r\n\r\n \r\n\r\nNarcan is a nasal spray that can reverse an opioid overdose, saving the person’s life.  Our group of volunteers has compiled a website that tracks organizations that are giving out free and discount Narcan, this site is  https://www.narcan-finder.com/. \r\n\r\n \r\n\r\nEventually this life saving medication will be as easy to find as a fire extinguisher, but at the moment, it’s only gradually becoming available, and often expensive at drugstores, etc. Would you consider sharing our resource on your website?  It will save lives.\r\n\r\n \r\n\r\nIf you have any questions or want to help spread the word, contact us at narcanfinder@gmail.com. Thank you for your consideration!',''),(974,2,221,'7','Mitchell Minix',''),(975,2,221,'2','minix.mitchell@msn.com',''),(976,2,221,'5','Media Inquiry',''),(977,2,221,'6','https://bit.ly/WebbyAi_Vip\r\n\r\nAre you tired of spending countless hours building and hosting your own funnels and websites? Say hello to WebbyAi – the world\'s first AI-driven ClickFunnels killer app!\r\n\r\nWith WebbyAi, you can create breathtaking funnels and websites in any niche with just a single keyword – and all in less than 2 minutes! Our powerful AI technology does all the heavy lifting for you, so you can focus on what really matters – growing your business.\r\n\r\nhttps://bit.ly/WebbyAi_Vip\r\n\r\nNot only that, but WebbyAi also hosts your funnels and websites for you, saving you time and money. Plus, our platform is constantly evolving and improving, so you can be sure that you\'re always using the latest and greatest technology.\r\n\r\nSo whether you\'re a seasoned marketer or just starting out, WebbyAi is the perfect tool for taking your business to the next level. With our easy-to-use platform, you\'ll be creating stunning funnels and websites in no time. And with our AI-driven technology, you can be sure that your funnels and websites will be optimized for maximum conversions and sales.\r\n\r\nDon\'t waste another minute struggling with outdated funnel and website builders. Sign up for WebbyAi today and experience the power of the world\'s first AI-driven ClickFunnels killer app!\r\n\r\nhttps://bit.ly/WebbyAi_Vip',''),(978,2,222,'7','Michael Sinclair',''),(979,2,222,'2','msinclair.hivemailers@gmail.com',''),(980,2,222,'5','Careers',''),(981,2,222,'6','Hello,\r\n  \r\nI was looking at your site and wanted to ask if you would be interested in getting one-hundred thousand emails sent out within 48 hours for just $48 - we call it our 48-Special.\r\n \r\nI’m with HiveMailers, we use a robust email system to get clients daily leads and/or sales 24/7.\r\n \r\nWE DO ALL THE WORK:\r\n\r\n- We create the content for the email(s).\r\n- We provide the email list (contacts).\r\n- We forward leads to you daily.\r\n- We manage your email campaigns 24/7.\r\n- We make changes to the list and content until we get results.\r\n\r\nJust imagine, getting hot leads within days of getting started with us. \r\n\r\nYou might be wondering if our system works, well if you are reading this message, it works. \r\n\r\nGet started now!!!!! We will send one hundred thousand emails for just $48 \r\n  \r\nBook a 10 min call with me now: https://bit.ly/hive-48-special\r\n\r\nNOTE: To buy an email list and hire an in-house email manager to run your campaign (like our system) would cost around $3,500 a month, but with us, you pay just $48. So, you save over $3,450.\r\n\r\nThis offer is good for the first 20 clients, don’t miss out.  Book appointment now: https://bit.ly/hive-48-special\r\n\r\nSincerely,\r\nMichael',''),(982,2,223,'7','Lynn Cabanelez',''),(983,2,223,'2','lynn@getbloom.io',''),(984,2,223,'3','(141) 252-5714',''),(985,2,223,'5','Customer Service',''),(986,2,223,'6','Hello!\r\nTrying to get ahold of  Tom and David via email. Would greatly appreciate it if you could forward this message over! \r\nHave a great day!\r\n\r\nLynn',''),(987,2,224,'7','Chris Andrews',''),(988,2,224,'2','chris@signaturebride.net',''),(989,2,224,'3','(415) 715-4396',''),(990,2,224,'4','0',''),(991,2,224,'5','Media Inquiry',''),(992,2,224,'6','Hi, \r\nI\'m wondering if I might get the name and email address of whoever is in charge of your marketing and PR.\r\nThanks,\r\nChris',''),(993,2,225,'7','Hai McDonald',''),(994,2,225,'2','mcdonald.hai@gmail.com',''),(995,2,225,'5','Customer Service',''),(996,2,225,'6','https://bit.ly/BrainBoxVip\r\n\r\nAre you ready to step into the future of customer service and communication? Introducing BrainBox, the first hard-coded AI app that allows you to launch your very own \"ChatGPT-like\" chatbot and charge people for using it.\r\n\r\nWith BrainBox, you\'ll have access to over 50 AI features that will stun both you and your customers. This revolutionary app uses the latest in artificial intelligence technology to provide your customers with a seamless and personalized experience. From natural language processing to sentiment analysis, BrainBox has everything you need to create a chatbot that is not only responsive but intelligent and engaging.\r\n\r\nhttps://bit.ly/BrainBoxVip\r\n\r\nImagine being able to offer your customers a 24/7 support system that never takes a break. With BrainBox, you can do just that. Your customers will be able to get instant answers to their questions, and you\'ll be able to focus on growing your business.\r\n\r\nBut that\'s not all. BrainBox is also incredibly easy to use. You don\'t need any coding skills or technical knowledge to get started. With just a few clicks, you can create your chatbot and start charging your customers.\r\n\r\nAnd the best part? BrainBox is completely customizable. You can create a chatbot that matches your brand\'s tone and personality. You can also add your own custom responses and triggers, ensuring that your chatbot is unique to your business.\r\n\r\nDon\'t miss out on this opportunity to take your business to the next level. Try BrainBox today and see for yourself how it can transform the way you communicate with your customers.\r\n\r\nhttps://bit.ly/BrainBoxVip',''),(997,2,226,'7','Mark',''),(998,2,226,'2','discountedseo1@gmail.com',''),(999,2,226,'3','(719) 345-8934',''),(1000,2,226,'5','Customer Service',''),(1001,2,226,'6','Hi,\r\nI hope it\'s okay I messaged you through your website.  I am from DiscountedSEO.com and noticed your website wasn\'t pulling up in the map section of Google.  You know when someone types in \"Restaurants Near Me\"?  \r\n\r\nIs this something that you are concerned about?  My team and I fix this for Restaurants, Salons and Hotels throughout the United States.  Our monthly rate is $219/mo., but you can use PROMO CODE: 10OFF to get 10% off for life....not just a month!\r\n\r\nWe don\'t have any contracts or hidden fees either.  Just an honest SEO company based out of Colorado.\r\n\r\nYou can visit our website and sign up if you would are interested.\r\n\r\nhttps://discountedseo.com/\r\n\r\n\r\n\r\nThank you,\r\n\r\nMark Blum\r\nDiscounted SEO\r\nHello@DiscountedSEO.com\r\n719.345.8934',''),(1002,2,227,'7','Aaron Worrell',''),(1003,2,227,'2','aaron.worrell35@msn.com',''),(1004,2,227,'3','(215) 772-5730',''),(1005,2,227,'6','https://bit.ly/VoiceGPT_AI\r\n\r\nIntroducing VoiceGPT AI, the revolutionary cloud-based app that combines the power of ChatGPT4 with advanced voice technology to create unique high-quality content and convert it into real human emotion-based voices and audiobooks. Say goodbye to generic, robotic-sounding voices and hello to engaging, emotive audio content that captivates your audience and drives conversions.\r\n\r\nWith VoiceGPT AI, you can create custom audio content in minutes. Simply input your text, select your preferred voice and tone, and let our advanced technology do the rest. Our app generates natural-sounding audio that conveys the emotions and nuances of your text, creating a listening experience that engages your audience and leaves a lasting impression.\r\n\r\nhttps://bit.ly/VoiceGPT_AI\r\n\r\nWhether you\'re a content creator, marketer, or business owner, VoiceGPT AI is the perfect tool to take your audio content to the next level. Use it to create engaging podcasts, audiobooks, video voiceovers, and more. Our app is easy to use, intuitive, and requires no technical expertise. Plus, it\'s cloud-based, so you can access it from anywhere and collaborate with your team in real-time.\r\n\r\nDon\'t settle for generic, lifeless audio content that fails to capture your audience\'s attention. Upgrade to VoiceGPT AI and experience the power of emotive audio content that converts. Try it out today and see the difference for yourself.\r\n\r\nhttps://bit.ly/VoiceGPT_AI',''),(1006,2,228,'7','Francisca Penn',''),(1007,2,228,'2','francisca.penn@googlemail.com',''),(1008,2,228,'3','(403) 854-2632',''),(1009,2,228,'5','Customer Service',''),(1010,2,228,'6','https://bit.ly/TryInkAI\r\n\r\nAre you tired of spending countless hours typing out your thoughts and ideas into a boring, plain-text document? Do you want to turn your voice into a stunning, professional-looking eBook or flipbook in just a matter of minutes? Introducing the world\'s first voice-to-eBook app!\r\n\r\nhttps://bit.ly/TryInkAI\r\n\r\nWith this revolutionary app, you can instantly generate 100% human-like and unique eBooks with just one click. No more struggling to find the right words or phrases, no more worrying about grammar or spelling errors, and no more wasted time.\r\n\r\nhttps://bit.ly/TryInkAI\r\n\r\nNot only can you create eBooks, but you can also generate 3D eCovers for your eBook, making it stand out from the rest. And with the power of AI, you can capitalize on the latest wave of technology with just one click.\r\n\r\nhttps://bit.ly/TryInkAI\r\n\r\nBut that\'s not all. You can create a wide range of digital publications with this app, including flipbooks, PDFs, presentations, reports, and more. And when you\'re ready to publish, you can instantly publish your eBooks in our marketplace, giving you access to a wider audience and more potential buyers.\r\n\r\nhttps://bit.ly/TryInkAI\r\n\r\nBut we don\'t stop there. We also offer syndication services, which means we can syndicate your eBook to 50+ publications for instant buyer traffic. This means you can start your publishing business today and watch as your eBook reaches more and more people.\r\n\r\nhttps://bit.ly/TryInkAI\r\n\r\nAnd the best part? This app is 100% cloud-based, so there\'s nothing to install or configure. Plus, you don\'t need any experience to use it. So whether you\'re a seasoned writer or a complete beginner, you can start creating stunning eBooks right away.\r\n\r\nhttps://bit.ly/TryInkAI\r\n\r\nAnd with our zero upfront cost and 30-day money-back guarantee, you have nothing to lose. So why wait? Try the world\'s first voice-to-eBook app today and experience the power of voice in publishing!',''),(1011,2,229,'7','Etta Rector',''),(1012,2,229,'2','rector.etta@gmail.com',''),(1013,2,229,'3','(039) 357-1775',''),(1014,2,229,'5','Careers',''),(1015,2,229,'6','https://bit.ly/Make_AI_Money\r\n\r\nIntroducing the world\'s first true auto chat GPT website publisher that allows you to create set-and-forget websites in any niche on autopilot mode!\r\n\r\nWith it you can harness the power of chat GPT to effortlessly create stunning websites that are optimized for maximum conversions. Simply choose your niche, set it and forget it, and watch as it does all the work for you.\r\n\r\nhttps://bit.ly/Make_AI_Money\r\n\r\nWhether you\'re a seasoned marketer or just starting out, it is the perfect tool to take your business to the next level. Say goodbye to the hassle of website building and hello to effortless online success.\r\n\r\nSo why wait? Get started today and start building your dream website with ease!\r\n\r\nhttps://bit.ly/Make_AI_Money',''),(1016,2,230,'7','Ritchie Inman',''),(1017,2,230,'2','ritchie@msgnxs.link',''),(1018,2,230,'3','(260) 635-3554',''),(1019,2,230,'5','Media Inquiry',''),(1020,2,230,'6','Hope you are well\r\n\r\nHow is your advertising for your restaurant going?\r\n\r\nI\'m reaching out because this last month I helped a locally owned restaurant get 405 patrons to sign up to their VIP communicaton list in 30 days.\r\n\r\nIf you are open to see if this is something that can work for you too, then let\'s schedule a 20 minute call and go from there.\r\n\r\nGo here to schedule the call with me: https://restaurants.msgnxs.link/\r\n\r\nTalk soon,\r\nRitchie\r\nOwner Message Nexus\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nPO Box 276\r\nRedkey IN 47373\r\n\r\nAvoid future marketing messages here:\r\nhttps://optout.msgnxs.link/?site=meadowcroftwines.com',''),(1021,2,231,'7','Josh Kim',''),(1022,2,231,'2','josh.no-reply@yellowboost1.com',''),(1023,2,231,'3','(424) 245-5686',''),(1024,2,231,'5','Influencer Inquiry',''),(1025,2,231,'6','Hello, \r\n\r\nGuaranteed Google rankings in 90 days or we work for free!\r\n\r\nThe Game-Changing Solution to Beat the Recession and Boost Your Business!\r\n\r\nAre you tired of struggling to get traffic to your website? Without an increase in traffic, your business growth is hindered, allowing competitors to dominate the market. Did you know that more than 80% of people search Google before buying goods or services? Wondering why certain businesses rank at the top of a Google search and receive the majority of clicks and drive substantial traffic to their websites? Dreaming of seeing your business there too? Well, you’ve come to the right place.\r\n\r\nThe internet is the best source to attract new customers and can be an absolute gold mine if it\'s set up and optimized correctly. Our services provide Key benefits that you can enjoy.\r\n    •  Unlock the secrets to boosting your sales, while we handle the entire process, giving you the opportunity to sit back and watch the magic happen.\r\n    •  Find out how to increase the number of new clients and accelerate the growth of your business.  \r\n    •  Discover the hidden method to advertise on Google Search without spending a dime, resulting in significant cost savings.\r\n\r\nThe cool news is I have a short video that shows how we can help you! \r\n\r\nClick this link right now to see it.\r\n\r\nhttps://marketing.yellowboost1.com \r\n\r\nI’ll see you over there,\r\n\r\n\r\n\r\nJosh Kim / Senior Marketing Agent\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nIf you want to opt out of future messages, click this link: https://yellowboost1.com/unsubscribe.php?d=meadowcroftwines.com',''),(1026,2,232,'7','Theda Addy',''),(1027,2,232,'2','theda.addy@outlook.com',''),(1028,2,232,'5','Careers',''),(1029,2,232,'6','https://bit.ly/AI_BookSite\r\n\r\nDiscover the Secret to Starting a Completely Automated Book Affiliate Website and Making INSANE PROFITS with AIBookSite!\r\n\r\nAre you tired of struggling to build a solid online business that actually grows? Well, you\'re not alone. In the past, starting a business required significant capital and limited outside funding. But in 2023, everything has changed. Now, anyone can start and scale an online business, regardless of their background or experience.\r\n\r\nHowever, with the lower entry barrier, most online niches have become saturated, making it difficult to stand out and make money. That\'s why it\'s crucial to tap into a niche market that is still relatively untouched.\r\n\r\nIntroducing AIBookSite - Your Ultimate Book Affiliate Site Solution!\r\n\r\nWith AIBookSite, you can create a full-blown book affiliate website in less than 60 seconds, thanks to our powerful ChatGPT-Powered technology. Just one click is all it takes to activate your own book affiliate site and start making your first affiliate sale.\r\n\r\nHere\'s what makes AIBookSite the perfect solution for you:\r\n\r\n1. Pay Once, Profit Forever: With AIBookSite, you pay a one-time fee and enjoy unlimited profit potential without any restrictions. Say goodbye to monthly subscriptions and skyrocket your earnings.\r\n\r\n2. 100% Hosted on Reliable Cloud Server: We take care of all the technical aspects, providing you with a seamless and optimized experience on both desktop and mobile devices. Your website will always be up and running, attracting visitors and generating sales.\r\n\r\n3. No Age, Skill, or Experience Bar: Whether you\'re a seasoned marketer or a total beginner, AIBookSite is designed to empower you. Our user-friendly interface and in-depth video training ensure that you can hit the ground running and start making money in no time.\r\n\r\n4. 100% Legal and Ethical: AIBookSite operates within the bounds of legality and ethics, so you can build your business with confidence and peace of mind.\r\n\r\nBut that\'s not all! When you choose AIBookSite, you\'ll also enjoy these incredible features:\r\n\r\n- Pre-loaded information for each book, including user ratings, release dates, prices, and book details.\r\n- Buy buttons for the iTunes Bookstore and Amazon Book Store, maximizing your affiliate commissions.\r\n- Smart search box for visitors to easily find any book across the site\'s 130+ categories.\r\n- Free hosting and domain included, so you can get started immediately without any extra costs.\r\n- DFY blog builder with built-in ChatGPT technology, providing unique and relevant blog posts for your site every day.\r\n- WordPress site supported, allowing you to build an affiliate book site using the popular WordPress platform.\r\n- 24/7 support and comprehensive training to ensure your success.\r\n\r\nhttps://bit.ly/AI_BookSite\r\n\r\nBut wait, there\'s more! Act now, and you\'ll also receive these amazing bonuses:\r\n\r\n- 30 AIBookSite Reseller Licenses: Sell AIBookSite to your customers and keep 100% of the profits. We handle all the support, so you can focus on growing your business.\r\n- AI Assistant App: Add a virtual smart assistant to your book affiliate website, enhancing customer engagement and boosting sales.\r\n- AIBookSite SiteClone App: Make copies or clones of any website, jump-starting your web design process and earning additional income.\r\n\r\nNow is the time to seize this incredible opportunity and join the AIBookSite family. Don\'t let this chance slip away. Once the timer hits 00:00, this offer will vanish, and the price will increase significantly. We will be charging a monthly or yearly fee for future access.\r\n\r\nRemember, your investment is protected by our 30-day money-back guarantee. If you\'re not satisfied with AIBookSite, simply request a refund, no questions asked.\r\n\r\nSo don\'t delay! Click the button below and secure your spot in the book affiliate marketing revolution. Start profiting like never before with AIBookSite. Your journey to success begins today!\r\n\r\nhttps://bit.ly/AI_BookSite',''),(1030,2,233,'7','Stacey McAllister',''),(1031,2,233,'2','slsanna@yahoo.com',''),(1032,2,233,'3','(415) 548-0805',''),(1033,2,233,'5','Wines',''),(1034,2,233,'6','Hi There,\r\n\r\nWe have 15 people in our party, 11 that are old enough to taste. We\'d like to have a tasting on 12/26 - would you be able to accommodate that?\r\n\r\nThank you so much!!\r\nStacey McAllister',''),(1035,2,234,'7','Phillis Murch',''),(1036,2,234,'2','murch.phillis@gmail.com',''),(1037,2,234,'3','(514) 913-4260',''),(1038,2,234,'6','https://bit.ly/TryInkAIExclusiveOffer\r\n\r\nIntroducing the World\'s first \"Artificial Intelligence-Enhanced\" App that\'s on the verge of revolutionize the scenario in the domain of eBooks and Flipbooks!\r\n\r\nhttps://bit.ly/TryInkAIExclusiveOffer\r\n\r\nAre you weary of spending countless hours creating eBooks and Flipbooks for your enterprise, only to find that they don\'t yield results as effectively as you hoped? Well, say welcome to our revolutionary new app that will make your life a great deal easier.\r\n\r\nOur app can transform any key term, website, blog or URL into a professionally crafted eBook or Flipbook in a short period of minutes! That\'s correct, you no not need to have to dedicate endless time creating your own eBooks or Flipbooks. With just a few clicks, our app will generate a striking, skillfully constructed eBook or Flipbook that\'s bound to captivate your audience.\r\n\r\nBut that\'s just the beginning. Our private marketplace has over 20,000,000 readers waiting to absorb your content! Visualize the visibility your business could get by having your eBook or Flipbook seen by a huge number of individuals. It\'s an incredible prospect that you simply can\'t miss out on neglect.\r\n\r\nSo why squander any more time struggling to develop your own eBooks and Flipbooks? Let our app do the work for you, and witness as your sales and conversions soar. Get started right away and bring your business to the next stage!\"\r\n\r\nhttps://bit.ly/TryInkAIExclusiveOffer',''),(1039,2,235,'7','James Smith',''),(1040,2,235,'2','jamessmith23241@outlook.com',''),(1041,2,235,'3','(701) 287-1154',''),(1042,2,235,'6','Hello, \r\n\r\nThis is James, a SEO copywriter and content writer.\r\n\r\nI can write content for you as per your website meadowcroftwines.com. I specialize in writing blogs, articles, e-commerce product descriptions, SEO content, website content, business service descriptions, newsletter content, content for brochures, Proofreading, Social Media Captions, Linkedin Content and content for SOPs. \r\n\r\nI charge USD 125 for 1000 words content including Keyword Research and Topic Research if you want. \r\n\r\nSend me an email at JamesSmith23241@outlook.com if you have any requirements.',''),(1043,2,236,'7','Vern Maresca',''),(1044,2,236,'2','maresca.vern@hotmail.com',''),(1045,2,236,'5','Influencer Inquiry',''),(1046,2,236,'6','Cool website!\r\n\r\nDear meadowcroftwines.com Administrator.\r\n\r\nMy name’s Vern, and I simply located your site - meadowcroftwines.com - while navigating the net. You surfaced at the top of the search results, so I looked you out. Appears like what you’re doing is very cool.  \r\n\r\nBut if you don’t mind me asking – after someone like me runs across meadowcroftwines.com, what typically happens?\r\n\r\nIs your site generating leads for your company? \r\n\r\nI’m guessing some, but I also wager you’d like more… studies demonstrate that 7 out 10 who arrive on a site end up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an simple way for every visitor to “lift their hand” to get a phone call from you INSTANTLY… the minute they hit your site and declared, “call me now.”\r\n\r\nYou can –\r\n  \r\nWeb Visitor is a software widget that’s works on your site, prepared to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can chat to that lead while they’re literally examining your site.\r\n\r\nCLICK HERE https://bit.ly/3LPltcD to experiment with a Live Demo with Web Visitor now to see specifically how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference in between contacting someone within 5 minutes versus 30 minutes later can be massive – like 100 times better!\r\n\r\nThat’s why we constructed our new SMS Text With Lead feature because once you’ve grabbed the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow with text messages for new offers, content links, even just “how you doing?” notes to build a a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE https://bit.ly/3LPltcD to discover what Web Visitor can do for your enterprise\r\n\r\nYou could be converting up to 100X more leads today!\r\nVern\r\n\r\nPS: Web Visitor offers a FREE 14 days trial – and it even comprises Long Distance Calling. \r\nYou have customers waiting to to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://bit.ly/3LPltcD to try Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here https://bit.ly/3rD0G5c\r\n\r\nSimply a swift note - the monikers and email address used in this note, Vern and Maresca, are substitutes and not genuine contact information. We cherish openness and desired to assure you are informed! Should you desire to make contact with the genuine entity behind this memo, please go to our site, and we’ll link you with the correct individual.',''),(1047,2,237,'7','Bruce Lumley',''),(1048,2,237,'2','thoughtsmithone@gmail.com',''),(1049,2,237,'3','(844) 797-4635',''),(1050,2,237,'5','Customer Service',''),(1051,2,237,'6','Have you ever felt a cold breeze in your wallet? That\'s your valuable profit, slipping away right under your nose. The silent villain? Employees that smoke. But before you brush this off, read on. This isn\'t merely another email. It\'s a wake-up call.\r\n\r\nTo the Visionary Business Owner,\r\n\r\nCompany: Meadowcroft Wines\r\nPhone: (707) 934-4090\r\nWebsite: meadowcroftwines.com\r\nIndustry: Casual Dining Restaurants\r\n\r\nThe Unpleasant Reality:\r\n\r\nTime Wasted: Each step your employees take towards that assigned smoking area is a step back from your company\'s development. It\'s not just a \'short break\'. It\'s total hours of lost productivity. Data shows, over a year, this can equate to almost 20 full working days lost. Let that resonate.\r\n\r\nSick Leaves: Small headaches now, major health issues tomorrow. Smoking employees are often absent. Every time they\'re away, you\'re losing resources and possibilities.\r\n\r\nPremiums Through The Roof: Insurers are not your friends. They understand the risks of smoking and you\'re forking over a hefty price for it. The query is - until when?\r\n\r\nMorale & Resentment: While Jim takes his next smoke break, Joan\'s getting frustrated. This isn\'t only about smokers; it\'s about your crew\'s cohesion.\r\n\r\nWhy Us?\r\n\r\nVirtual & Cost-Effective: No matter if your team is at home or onsite, our virtual program adapts. And depending on your group\'s scale, it might cost you little to ZERO.\r\n\r\nYou have two choices now. Disregard this email and continue watching your profits go up in smoke. Alternatively, seize the opportunity, get to know our established program, and watch as productivity soars, costs decline, and your brand stands out more.\r\n\r\nThe clock is ticking. Education is free, however, with every puff, your profits are fading.\r\nThe clock is ticking. Learning is free, yet, with each drag, your profits are fading.\r\n\r\nTalk soon,\r\n\r\nBruce Lumley, C.C.h.\r\nCertified Hypnotherapist & Founder\r\n\"Employee Quit Smoking Program\"\r\n\r\nThoughtsmith LLC\r\nService Worldwide\r\n844-797-4635\r\n\r\nFrom 2002, we have performed more than 11,000 sessions with clients in both personal and corporate settings.\r\n\r\n\r\n\r\n\r\n\r\nUnsubscribe:\r\nConsider this a one-time message, but, if you wish to opt-out, please follow the link below.\r\n\r\nhttps://thoughtsmith-optout.info/unsubscribe.php?d=meadowcroftwines.com',''),(1052,2,238,'7','Abhi',''),(1053,2,238,'2','businessprocessoutsourcing1@outlook.com',''),(1054,2,238,'3','(415) 736-9129',''),(1055,2,238,'5','Media Inquiry',''),(1056,2,238,'6','Hello,\r\n\r\nI\'m Abhi, a SEO Manager. If you\'re seeking a collaborative effort to enhance your website(meadowcroftwines.com) traffic, feel free to reach out. I don\'t make false claims about boosting your website\'s ranking. Improving your website is a gradual, ongoing process. When we collaborate, you\'ll observe steady improvements. I\'ll tailor our work to your budget and create a suitable plan. Please inform me if you\'d like to move forward.\r\n\r\nMy email: Businessprocessoutsourcing1@outlook.com',''),(1057,2,239,'7','Eric Jones',''),(1058,2,239,'2','ericjonesmyemail@gmail.com',''),(1059,2,239,'3','(555) 555-1212',''),(1060,2,239,'6','To the meadowcroftwines.com Administrator.\r\n\r\nCool website!\r\n\r\nMy name’s Eric, and I just found your site - meadowcroftwines.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across meadowcroftwines.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n  \r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://bit.ly/leadgenerationd to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nThat’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE https://bit.ly/leadgenerationd to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://bit.ly/leadgenerationd to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://bit.ly/3rD0G5c',''),(1061,2,240,'7','Royal Rodius',''),(1062,2,240,'2','royal.rodius@yahoo.com',''),(1063,2,240,'3','(450) 449-4372',''),(1064,2,240,'5','Customer Service',''),(1065,2,240,'6','https://bit.ly/Refuel_AI\r\n\r\nThanks to technology, making money online is easier than ever.\r\nBut even with that technology, there’s STILL a learning curve and you \r\nSTILL need to invest in a bunch of different softwares.\r\n\r\nWell not anymore ...\r\n\r\n>> This brand new software system AUTOMATES 3 figure daily profits!\r\n\r\nhttps://bit.ly/Refuel_AI\r\n\r\n\r\nUsually new tech is complicated, but it doesn’t get any simpler than this.\r\n\r\nThe product creator told me he designed it SPECIFICALLY for beginners.\r\n\r\nThere’s no website building.\r\nNo product creation.\r\nNo figuring out traffic.\r\nNo monthly costs of ANY kind.\r\n\r\nIt’s plug & play simple and can work for anyone, with no experience at all.\r\n\r\nThe software gets you paid in TWO ways:\r\n\r\nUpfront with automated affiliate commissions - from offers you’re pre-approved \r\nfor with your license ...\r\n\r\nAnd by building you a profitable subscriber list - the best thing you can have as \r\na digital marketer.\r\n\r\nWith step by step training, epic support and a money back guarantee, this one’s \r\na no brainer.\r\n\r\n>> Hurry to get your license to REFUEL now!\r\n\r\nhttps://bit.ly/Refuel_AI',''),(1066,2,241,'7','Adrienne Capps',''),(1067,2,241,'2','adrienne.capps@gmail.com',''),(1068,2,241,'5','Media Inquiry',''),(1069,2,241,'6','https://bit.ly/Daplify_Vip\r\n\r\nAttention entrepreneurs and online marketers! Are you tired of spending a fortune on advertising with little to no results? Do you want to skyrocket your business growth without breaking the bank? Look no further than Daplify!\r\n\r\nWith Daplify, you can unlock unlimited impressions, leads, and sales for just pennies on the dollar. Our cutting-edge technology ensures that your message reaches the right people at the right time, maximizing your ROI and driving your business forward.\r\n\r\nBut that\'s not all. Daplify offers a user-friendly interface that allows you to set up campaigns in minutes, without any prior experience or technical knowledge. Our advanced targeting options ensure that your ads are seen by your ideal customer, increasing the likelihood of conversions and sales.\r\n\r\nDon\'t let your competitors outpace you in the digital world. Join the hundreds of satisfied customers who have already experienced explosive growth with Daplify. Start your free trial today and see the results for yourself. Don\'t wait - your success is just a click away!\r\n\r\n\r\nhttps://bit.ly/Daplify_Vip',''),(1070,2,242,'7','Latonya Imhoff',''),(1071,2,242,'2','latonya.imhoff58@gmail.com',''),(1072,2,242,'3','(706) 649-7647',''),(1073,2,242,'5','Influencer Inquiry',''),(1074,2,242,'6','https://bit.ly/TryInkAI\r\n\r\nAre you tired of spending countless hours typing out your thoughts and ideas into a boring, plain-text document? Do you want to turn your voice into a stunning, professional-looking eBook or flipbook in just a matter of minutes? Introducing the world\'s first voice-to-eBook app!\r\n\r\nhttps://bit.ly/TryInkAI\r\n\r\nWith this revolutionary app, you can instantly generate 100% human-like and unique eBooks with just one click. No more struggling to find the right words or phrases, no more worrying about grammar or spelling errors, and no more wasted time.\r\n\r\nhttps://bit.ly/TryInkAI\r\n\r\nNot only can you create eBooks, but you can also generate 3D eCovers for your eBook, making it stand out from the rest. And with the power of AI, you can capitalize on the latest wave of technology with just one click.\r\n\r\nhttps://bit.ly/TryInkAI\r\n\r\nBut that\'s not all. You can create a wide range of digital publications with this app, including flipbooks, PDFs, presentations, reports, and more. And when you\'re ready to publish, you can instantly publish your eBooks in our marketplace, giving you access to a wider audience and more potential buyers.\r\n\r\nhttps://bit.ly/TryInkAI\r\n\r\nBut we don\'t stop there. We also offer syndication services, which means we can syndicate your eBook to 50+ publications for instant buyer traffic. This means you can start your publishing business today and watch as your eBook reaches more and more people.\r\n\r\nhttps://bit.ly/TryInkAI\r\n\r\nAnd the best part? This app is 100% cloud-based, so there\'s nothing to install or configure. Plus, you don\'t need any experience to use it. So whether you\'re a seasoned writer or a complete beginner, you can start creating stunning eBooks right away.\r\n\r\nhttps://bit.ly/TryInkAI\r\n\r\nAnd with our zero upfront cost and 30-day money-back guarantee, you have nothing to lose. So why wait? Try the world\'s first voice-to-eBook app today and experience the power of voice in publishing!',''),(1075,2,243,'7','Lawrence Krajcik',''),(1076,2,243,'2','lawrence.krajcik@clevertasking.com',''),(1077,2,243,'3','(818) 984-3976',''),(1078,2,243,'6','Hi there,\r\n\r\nOverwhelmed by too many tasks?\r\n\r\nThis open tool I\'m sharing below was incredibly beneficial in streamlining my business. I entirely ditched spreadsheets and email chains for project management.\r\n\r\nhttps://www.clevertasking.com/for/meadowcroft-wines-NfAB\r\n\r\nIt helped me in setting clear tasks, establish processes, manage time, and develop my business. Maybe you can find value in it too.\r\n\r\nForgive the unsolicited advice, just passing this along in case it\'s of use. Please let me know what you think.\r\n\r\nTake care,\r\n\r\nLawrence',''),(1079,2,244,'7','Michael Sinclair',''),(1080,2,244,'2','lunceford.jimmy@gmail.com',''),(1081,2,244,'3','(315) 773-5065',''),(1082,2,244,'5','Media Inquiry',''),(1083,2,244,'6','Hello,\r\n  \r\nI was looking at your site and wanted to ask if you would be interested in getting one-hundred thousand emails sent out within 48 hours for just $48 - we call it our 48-Special.\r\n \r\nI’m with HiveMailers, we use a robust email system to get clients daily leads and/or sales 24/7.\r\n \r\nWE DO ALL THE WORK:\r\n\r\n- We create the content for the email(s).\r\n- We provide the email list (contacts).\r\n- We forward leads to you daily.\r\n- We manage your email campaigns 24/7.\r\n- We make changes to the list and content until we get results.\r\n\r\nJust imagine, getting hot leads within days of getting started with us. \r\n\r\nYou might be wondering if our system works, well if you are reading this message, it works. \r\n\r\nGet started now!!!!! We will send one hundred thousand emails for just $48 \r\n  \r\nBook a 10 min call with me now: https://bit.ly/hive-48-special\r\n\r\nNOTE: To buy an email list and hire an in-house email manager to run your campaign (like our system) would cost around $3,500 a month, but with us, you pay just $48. So, you save over $3,450.\r\n\r\nThis offer is good for the first 20 clients, don’t miss out.  Book appointment now: https://bit.ly/hive-48-special\r\n\r\nSincerely,\r\nMichael',''),(1084,2,245,'7','Robert',''),(1085,2,245,'2','robertjohnson122023@outlook.com',''),(1086,2,245,'3','(877) 820-0382',''),(1087,2,245,'5','Customer Service',''),(1088,2,245,'6','Hello,\r\n\r\nI\'m Rob, a skilled E-Commerce Content Writer and Blog Writer. I specialize in crafting SEO-friendly product descriptions, product reviews, service descriptions, website copy, keyword research, topic research, and content uploads for websites. \r\n\r\nFeel free to contact me at RobertJohnson122023@outlook.com if you have any specific needs.',''),(1089,2,246,'7','Jim Rhem',''),(1090,2,246,'2','alfredo.rhem@gmail.com',''),(1091,2,246,'3','(722) 894-6281',''),(1092,2,246,'5','Customer Service',''),(1093,2,246,'6','Hi there!\r\nTop Rated SEO Agency. Personalized Service from Dedicated Account Team. ROI Driven. Relationship Focused. Custom SEO Strategy. 95% Client Retention Rate. Services: Analytics, Back-end Development, Competitive Research, Consulting.  Buy now: https://alwaysdigital.co/la/ \r\n\r\nPsst. If you have web development/ designing requirements, feel free to see more details at: https://outsource-bpo.com/website/',''),(1094,1,247,'7','GIZdumrLT',''),(1095,1,247,'3','optotswew@dmaill.xyz',''),(1096,1,247,'4','(084) 501-2267',''),(1097,1,247,'5','Trivia Experience',''),(1098,1,247,'6','When seeing if the OVACUE Peak has occurred, do the 2 lower numbers have to be consecutive <a href=http://cialiss.skin>buying cialis online</a>',''),(1099,2,248,'7','Lisa Miller',''),(1100,2,248,'2','lisa@videowins1.com',''),(1101,2,248,'3','(610) 826-2254',''),(1102,2,248,'6','Hello, \r\n\r\nafter visiting your website, I wanted to let you know that we work with companies like yours to publish a custom-made promotional video featuring your company online.\r\n\r\nThe 90-second video below shows you what this special video can do for your company.\r\n\r\nTo watch the video, and get a free video marketing report for your company, please visit: https://www.videowins1.com \r\n\r\nThanks for your time.\r\n\r\n-Lisa Miller\r\nVice President, Client Services\r\n\r\nUnsuscribe: https://www.videowins1.com/optout',''),(1103,2,249,'7','Lisa Miller',''),(1104,2,249,'2','lisa@videowins1.com',''),(1105,2,249,'3','(610) 826-2254',''),(1106,2,249,'5','Media Inquiry',''),(1107,2,249,'6','Hello, \r\n\r\nafter visiting your website, I wanted to let you know that we work with companies like yours to publish a custom-made promotional video featuring your company online.\r\n\r\nThe 90-second video below shows you what this special video can do for your company.\r\n\r\nTo watch the video, and get a free video marketing report for your company, please visit: https://www.videowins1.com \r\n\r\nThanks for your time.\r\n\r\n-Lisa Miller\r\nVice President, Client Services\r\n\r\nUnsuscribe: https://www.videowins1.com/optout',''),(1108,2,250,'7','Grant Lira',''),(1109,2,250,'2','grantlira003@gmail.com',''),(1110,2,250,'3','(870) 239-9715',''),(1111,2,250,'5','Media Inquiry',''),(1112,2,250,'6','Hey,\r\n\r\nI would like to get you featured on a podcast with absolutely no cost.\r\n\r\nOn top of that, I would also get you featured in an online article and create video content for social media from your podcast appearance all at no cost.\r\n\r\nWhy am I doing this?\r\n\r\nBecause I know once you see how our PR firm operates, you’ll want to work with us.\r\n\r\nDon’t take my word for it. Try it yourself at no cost to you. \r\n\r\nWe are doing this for the first 10 people who get back to us who qualify because it takes up a lot of our team\'s time.\r\n\r\nThe only thing I ask is that you tell me if your business is NOT doing 7+ figures. \r\n\r\nI reached out to you because I think you have a 7+ figure business. Most of the hosts that we have connections with are looking for 7+ figure businesses to interview. \r\n\r\nI want to make sure we don’t lie to them so please let me know if you aren’t.\r\n\r\nSo, if you qualify, check here to see how our process works for this and book a short call with one of our PR Strategists:\r\n\r\nClick here: --> https://bit.ly/empathy-firm\r\n\r\nBest,\r\nGrant',''),(1113,2,251,'7','Matthew Nguyen',''),(1114,2,251,'2','nguyen.matthew@outlook.com',''),(1115,2,251,'3','(562) 980-2850',''),(1116,2,251,'5','Wines',''),(1117,2,251,'6','Hi,\r\n\r\nI wanted to become a wine club member. Is there an option for just reds only?\r\n\r\nThanks,\r\nMatt',''),(1118,2,252,'7','Eden Grigsby',''),(1119,2,252,'2','eden.grigsby43@yahoo.com',''),(1120,2,252,'3','(972) 663-3186',''),(1121,2,252,'5','Media Inquiry',''),(1122,2,252,'6','https://bit.ly/Daplify_Vip\r\n\r\nAttention entrepreneurs and online marketers! Are you tired of spending a fortune on advertising with little to no results? Do you want to skyrocket your business growth without breaking the bank? Look no further than Daplify!\r\n\r\nWith Daplify, you can unlock unlimited impressions, leads, and sales for just pennies on the dollar. Our cutting-edge technology ensures that your message reaches the right people at the right time, maximizing your ROI and driving your business forward.\r\n\r\nBut that\'s not all. Daplify offers a user-friendly interface that allows you to set up campaigns in minutes, without any prior experience or technical knowledge. Our advanced targeting options ensure that your ads are seen by your ideal customer, increasing the likelihood of conversions and sales.\r\n\r\nDon\'t let your competitors outpace you in the digital world. Join the hundreds of satisfied customers who have already experienced explosive growth with Daplify. Start your free trial today and see the results for yourself. Don\'t wait - your success is just a click away!\r\n\r\n\r\nhttps://bit.ly/Daplify_Vip',''),(1123,2,253,'7','Rueben Beet',''),(1124,2,253,'2','rueben.beet@gmail.com',''),(1125,2,253,'5','Influencer Inquiry',''),(1126,2,253,'6','https://bit.ly/RoboCHAT_Vip\r\n\r\nAre you tired of spending endless hours building and maintaining your own chatbot platform? Look no further than RoboCHAT! Our revolutionary app lets you create your very own AI chatbot platform with just one click. \r\n\r\nRoboCHAT fuses the powerful AI technologies of both Google and Microsoft to create a platform that is unmatched by anything else on the market, including ChatGPT. This means that your chatbot will be smarter, faster, and more intuitive than ever before, making it the perfect tool for engaging with your customers and driving sales.\r\n\r\nhttps://bit.ly/RoboCHAT_Vip\r\n\r\nNot only that, but with RoboCHAT, you\'ll start earning money every time someone engages with your chatbot. That\'s right – you can turn your chatbot into a powerful revenue stream, all without lifting a finger.\r\n\r\nSo why wait? Sign up for RoboCHAT today and experience the power of the world\'s most advanced chatbot platform. With just one click, you can transform your business and start seeing real results. Don\'t miss out – get started with RoboCHAT now!\r\n\r\nhttps://bit.ly/RoboCHAT_Vip',''),(1127,2,254,'7','Carol Campbell',''),(1128,2,254,'2','carol94901@aol.com',''),(1129,2,254,'3','(415) 305-8420',''),(1130,2,254,'5','Wines',''),(1131,2,254,'6','Hi everyone! \r\n\r\nI would like to order 6 bottles of the wine below.  I got 2 with my last shipment and it was wonderful!  I\'d like to get it for the holidays.  It is not listed on the website.  Hope you have some left! \r\n\r\n2020 Cru de la Ruche Malbec\r\n\r\nThanks, \r\nCarol Campbell \r\n2669 NW  25th St. \r\nRedmond, OR 97756',''),(1132,2,255,'7','Lisa Miller',''),(1133,2,255,'2','lisa@videowins1.com',''),(1134,2,255,'3','(610) 826-2254',''),(1135,2,255,'5','Influencer Inquiry',''),(1136,2,255,'6','Hello, \r\n\r\nafter visiting your website, I wanted to let you know that we work with companies like yours to publish a custom-made promotional video featuring your company online.\r\n\r\nThe 90-second video below shows you what this special video can do for your company.\r\n\r\nTo watch the video, and get a free video marketing report for your company, please visit: https://www.videowins1.com \r\n\r\nThanks for your time.\r\n\r\n-Lisa Miller\r\nVice President, Client Services\r\n\r\nUnsuscribe: https://www.videowins1.com/optout',''),(1137,2,256,'7','Josh Kim',''),(1138,2,256,'2','josh.no-reply@yellowboost1.com',''),(1139,2,256,'3','(424) 245-5686',''),(1140,2,256,'5','Customer Service',''),(1141,2,256,'6','Hello, \r\n\r\nGuaranteed Google rankings in 90 days or we work for free!\r\n\r\nThe Game-Changing Solution to Beat the Recession and Boost Your Business!\r\n\r\nAre you tired of struggling to get traffic to your website? Without an increase in traffic, your business growth is hindered, allowing competitors to dominate the market. Did you know that more than 80% of people search Google before buying goods or services? Wondering why certain businesses rank at the top of a Google search and receive the majority of clicks and drive substantial traffic to their websites? Dreaming of seeing your business there too? Well, you’ve come to the right place.\r\n\r\nThe internet is the best source to attract new customers and can be an absolute gold mine if it\'s set up and optimized correctly. Our services provide Key benefits that you can enjoy.\r\n    •  Unlock the secrets to boosting your sales, while we handle the entire process, giving you the opportunity to sit back and watch the magic happen.\r\n    •  Find out how to increase the number of new clients and accelerate the growth of your business.  \r\n    •  Discover the hidden method to advertise on Google Search without spending a dime, resulting in significant cost savings.\r\n\r\nThe cool news is I have a short video that shows how we can help you! \r\n\r\nClick this link right now to see it.\r\n\r\nhttps://marketing.yellowboost1.com \r\n\r\nI’ll see you over there,\r\n\r\n\r\n\r\nJosh Kim / Senior Marketing Agent\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nIf you want to opt out of future messages, click this link: https://yellowboost1.com/unsubscribe.php?d=meadowcroftwines.com',''),(1142,2,257,'7','Manuel De Vits',''),(1143,2,257,'2','digitalpipl01@gmail.com',''),(1144,2,257,'3','(520) 620-0658',''),(1145,2,257,'5','Customer Service',''),(1146,2,257,'6','Hey,\r\n\r\nThis is Manuel from SuperBizDev, and I believe our service can be a game-changer for your business. We specialize in helping businesses like yours build a solid sales pipeline with sales-qualified opportunities in less than a week. Here\'s why you should consider SuperBizDev:\r\n\r\n✓ Constant Flow of Sales-Qualified Opportunities: Connect with potential clients from day one and keep your sales pipeline consistently filled.\r\n\r\n✓ Quick Client Connections: Increase your chances of closing deals by quickly engaging with more clients.\r\n\r\n✓ Time-Saving Solution: Let us handle the lead generation process, saving you valuable time to focus on closing deals.\r\n\r\nDon\'t miss out on our limited-time offer! Get started with SuperBizDev for the first two months at the discounted rate of 729€ instead of 969€.\r\n\r\nTo learn more about how SuperBizDev can benefit your business, schedule a call with me. Click the link below to choose a time that works best for you:\r\n\r\nhttps://bit.ly/superbizdev-meeting\r\n\r\nI look forward to connecting with you and discussing how SuperBizDev can help you achieve your sales goals.\r\n\r\nBest regards,\r\n\r\nManuel De Vits\r\nSuperBizDev\r\n\r\nP.S. Visit our website to read success stories from some of our satisfied clients. Schedule your appointment now to get started on your journey towards a constant flow of sales-qualified opportunities.\r\n\r\nClick here: --> https://bit.ly/superbizdev-meeting',''),(1147,2,258,'7','James Disher',''),(1148,2,258,'2','disher.jeanette98@gmail.com',''),(1149,2,258,'3','(507) 150-4727',''),(1150,2,258,'6','Hope you\'re well. Our monthly SEO services offer comprehensive keyword analysis, content optimization, and continuous monitoring for sustained growth. Let\'s discuss how we can elevate your online presence.Check out here: https://digitalpromax.co/lb/\r\n\r\nIs Your Search Console Reporting Errors? Don\'t let issues hold back your SEO! Specializing in fixing Search Console errors for higher rankings. Resolve crawl issues, improve indexing, and supercharge your SEO. Let\'s boost your site together! Visit now: https://speedexpert.co/search-console/',''),(1151,2,259,'7','hachi',''),(1152,2,259,'2','hachikatsumi@gmail.com',''),(1153,2,259,'3','(787) 878-7878',''),(1154,2,259,'5','Wines',''),(1155,2,259,'6','My name is Hachi i will like to purchase some of your product to one my new\r\nstore in japan  i will  like to inform you that the method of my  payment\r\nis credit card if this is accepted by you please kindly get back to\r\nme with your website address so as for me to choose the item needed by\r\nme',''),(1156,2,260,'7','Abby Friedman',''),(1157,2,260,'2','abby.friedman@wiz.io',''),(1158,2,260,'3','(410) 292-0600',''),(1159,2,260,'5','Wines',''),(1160,2,260,'6','Hi! We\'re hosting a corporate event on 12/8 at Sonoma Raceway. Afterwards we were hoping to bring folks to a vineyard for a tasting. I\'d love to know if/what you have available and estimated cost. More details below:\r\nDate: 12/8\r\nTime: 2-3pm or 2:15-3:15pm\r\nNumber of Ppl: thinking around 30, but still TBD\r\nNotes:\r\nWe\'re planning on leaving Sonoma Raceway around 1:45pm. Right now we\'re planning on leaving the vineyard around 3:00pm as we need to drive back to Larkspur Landing for the ferry.  Thanks!',''),(1161,2,261,'7','Amado Bramblett',''),(1162,2,261,'2','amado.bramblett62@gmail.com',''),(1163,2,261,'3','(423) 290-4818',''),(1164,2,261,'5','Influencer Inquiry',''),(1165,2,261,'6','Hi there\r\n\r\nJust checked your Site_name\'s baclink profile, I noticed a moderate percentage of toxic links pointing to your website\r\n \r\nWe will investigate each link for its toxicity and perform a professional clean up for you free of charge.\r\n\r\nStart recovering your ranks today:\r\nhttps://www.hilkom-digital.com/free-backlinks-clean-up/\r\n\r\n\r\nRegards \r\nMike Bramblett\r\nHilkom Digital SEO Experts\r\nhttps://www.hilkom-digital.com/',''),(1166,2,262,'7','Robert Hyatt',''),(1167,2,262,'2','seosubmitter@mail.com',''),(1168,2,262,'3','(519) 882-2214',''),(1169,2,262,'5','Influencer Inquiry',''),(1170,2,262,'6','Hello meadowcroftwines.com admin,\r\n\r\nAre you ready to take your website to new heights? \r\n\r\nBoost your online presence and skyrocket your profits with our exclusive Website Traffic service. \r\n\r\nNo bots or proxies, just real visitors. Targeted traffic from search engines and referral traffic from social media await you. \r\n\r\nVisit now and start your journey to success:  https://cutt.ly/OwQWjbLC\r\n\r\nBest regards,\r\nHyatt\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n   \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCanada, ON, Petrolia, N0n 1r0, 4771 River Street\r\n \r\nTo stop any further communication through your website form, Please reply with subject:  Unsubscribe meadowcroftwines.com',''),(1171,2,263,'7','Georgina Haynes',''),(1172,2,263,'2','georginahaynes620@gmail.com',''),(1173,2,263,'3','(905) 293-0885',''),(1174,2,263,'5','Customer Service',''),(1175,2,263,'6','Hi,\r\n\r\nWe run an explainer video service where we create videos that can explain/promote a business, a product or an event. They can explain a process (how to), a service, software, or explain something such as a tutorial or a set of instructions. We can also produce videos for social media.\r\n\r\nYou can view more of our work here: https://furtherinfo.org/video\r\n\r\nThe service includes full script, voice-over and video.\r\n\r\nIf you would like more information about getting a video created for meadowcroftwines.com please get in touch.\r\n\r\nKind Regards,\r\nGeorgina\r\n\r\nIf you are not interested, unsubscribe here: https://removeme.click/unsubscribe.php?d=meadowcroftwines.com',''),(1176,2,264,'7','Sandra Murillo',''),(1177,2,264,'2','sm4grantmgmt@gmail.com',''),(1178,2,264,'3','(408) 705-0694',''),(1179,2,264,'5','Wines',''),(1180,2,264,'6','Do you offer gift cards for wine blending?  Would like to give as Christmas gifts.',''),(1181,2,265,'7','Noble Albrecht',''),(1182,2,265,'2','albrecht.noble73@gmail.com',''),(1183,2,265,'3','(618) 335-4528',''),(1184,2,265,'5','Careers',''),(1185,2,265,'6','Dear meadowcroftwines.com Administrator.\r\n\r\nMy name’s Noble, I came across meadowcroftwines.com after performing a quick search – you appeared near the top of the rankings, so anything you’re doing for SEO, looks like it’s functioning well.  \r\n\r\nSo here’s my query – what transpires AFTER someone lands on your site?  Anything?\r\n\r\nResearch inform us at least 70% of the persons who locate your site, after a quick once-over, they depart… forever.\r\n\r\nThat implies that all the work and endeavor you put into getting them to arrive, goes down the tubes.\r\n\r\nWhy would you wish all that excellent work – and the great site you’ve built – go to waste?\r\n\r\nBecause the chances are they’ll just omit over calling or even reaching for their phone, leaving high and dry.\r\n\r\nBut here’s a notion… what if you could formulate it super-simple for someone to lift their hand, say, okay, let’s talk without needing them to even pull their cell phone from their pocket?\r\n  \r\nYou can – all thanks to revolutionary new software that can truly make that first call take place NOW.\r\n\r\nWeb Visitors Into Leads is a software widget that exists on your site, prepared and waiting capture any visitor’s Name, Email address and Phone Number.  It enables you know IMMEDIATELY – so that you can talk to that lead while they’re still present at your site.\r\n  \r\nYou realize, strike when the iron’s hot!\r\n\r\nCLICK HERE https://turboleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen aiming at leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is enormous – like 100 times better!\r\n\r\nThat’s why you should examine our new SMS Text With Lead attribute as well… once you’ve captured the phone number of the website visitor, you can immediately kick off a text message (SMS) conversation with them. \r\n\r\nThink about how potent this could be – even if they don’t accept you up on your offer right away, you can remain in communication with them using text messages to make new offers, provide links to great content, and establish your credibility.\r\n\r\nJust this by itself could be a game changer to make your website even more productive.\r\n\r\nStrike when the iron’s hot!\r\n\r\nCLICK HERE https://turboleadgeneration.com to discover more about all the things Web Visitors Into Leads can do for your business – you’ll be amazed.\r\n\r\nThanks and continue the excellent work!\r\n\r\nNoble\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be changing up to 100x more leads immediately!   \r\nIt even comprises International Long Distance Calling. \r\nStop wasting money pursuing eyeballs that don’t change into paying customers. \r\nCLICK HERE https://turboleadgeneration.com to test Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://turboleadgeneration.com/unsubscribe.aspx?d=meadowcroftwines.com\r\n\r\nSimply a brief notification - the names and email address applied in this message, Noble and Albrecht, are placeholders and not really actual contact information. We esteem candor and wished to confirm you are aware of this! In case you wish to get in touch with the genuine individual behind this note, please check out our site, and we’ll connect you with the proper individual.',''),(1186,2,266,'7','Jennifer Obrien',''),(1187,2,266,'2','jennifer@dandyreviewaitools.com',''),(1188,2,266,'3','(949) 577-6294',''),(1189,2,266,'5','Customer Service',''),(1190,2,266,'6','Hi,\r\n\r\nOne of the biggest secrets the review sites don’t want Meadowcroft wines to know - simply removing unfair bad reviews has a huge, almost immediate, impact on your ratings and ranking in local search. With Meadowcroft wines having 8 on Google, this impact is huge.  That means more customers choose you over your competitors - there’s a reason some of the biggest brands use Dandy. \r\n\r\nDo you have 15 minutes for a call today? \r\n\r\nSchedule a Call Here: meetings.hubspot.com/dandy-/review-removal-consult-ccfill or for more information please visit our website: getdandy.com/ai-removal-tool\r\n\r\nYou can also call me directly at (949) 577-6294\r\n\r\nWe’ve removed over 40,000 bad reviews and want to help you too. \r\n\r\nThank you,\r\n\r\n\r\nJennifer O\'brien | Director of Reviews\r\nGetDandy  - The First AI Powered Reputation Automation Platform\r\nPhone: (949) 577-6294\r\ngetdandy.com/ai-removal-tool',''),(1191,2,267,'7','Aurora Toombs',''),(1192,2,267,'2','aurora.toombs81@gmail.com',''),(1193,2,267,'5','Influencer Inquiry',''),(1194,2,267,'6','https://bit.ly/NexusAI\r\n\r\nhttps://bit.ly/NexusAI\r\n\r\nIntroducing Nexus - the game-changing add-on that harnesses the power of AI to help you drive massive amounts of free traffic from YouTube in just 30 seconds! With Nexus, you\'ll never have to worry about tedious video creation, tech skills or even being on camera. \r\n\r\nNexus is the ultimate solution for anyone who wants to skyrocket their online business without breaking the bank. You can now tap into the billions of users on YouTube and convert them into loyal customers, effortlessly. \r\n\r\nWith its cutting-edge technology, Nexus finds you the most profitable niches and keywords, so you can start generating massive amounts of targeted traffic to your offers, products or services within minutes. This powerful tool does all the heavy lifting for you, so you can focus on what really matters - growing your business and making more money.\r\n\r\nBut that\'s not all. With Nexus, you\'ll also get access to a step-by-step training that shows you how to maximize your results and scale your business to new heights. You\'ll learn the insider secrets of top marketers who are already crushing it with YouTube traffic and how to replicate their success.\r\n\r\nDon\'t miss out on this incredible opportunity to get your hands on Nexus today. Say goodbye to the frustration and overwhelm of trying to generate traffic on your own and say hello to a new era of online success. With Nexus, you\'ll be able to enjoy a consistent flow of targeted traffic that converts into real profits, all while working less and enjoying more freedom. \r\n\r\nOrder now and start seeing results in as little as 30 seconds!\r\n\r\nhttps://bit.ly/NexusAI\r\n\r\nhttps://bit.ly/NexusAI',''),(1195,2,268,'7','Steve Adey',''),(1196,2,268,'2','steve82991@gmail.com',''),(1197,2,268,'3','(212) 443-2134',''),(1198,2,268,'5','Influencer Inquiry',''),(1199,2,268,'6','the laptop i bought from your amazon store is not working.. this model https://amzn.to/46pmr71 amazon said to contact you directly for tech support or returns? this was purchased as a gift, plz get back to me asap thanks, Steve',''),(1200,2,269,'7','Brigitte Baumgartner',''),(1201,2,269,'2','brigitte.baumgartner93@gmail.com',''),(1202,2,269,'6','Howdy to the meadowcroftwines.com Webmaster!\r\n\r\nI’m Brigitte and I recently found your site - meadowcroftwines.com - through the search results.\r\n\r\nHere is what that means to me… to me…\r\n\r\nYour SEO’s operating.\r\n\r\nYou’re receiving eyeballs – at least mine at least.\r\n\r\nYour content’s pretty good, would not change a thing\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do\r\n\r\nAnd research show that 7 out of 10 visitors to a site like like meadowcroftwines.com will stop by, have a look, and then depart without doing anything else.\r\n\r\nIt’s like they never never were even there.\r\n\r\nYou can resolve this.\r\n\r\nYou can make it it super-simple for them to raise their hand their hand, say, say, “okay, let’s talk” without needing them to even pull their cell phone from their pocket… thanks to Web Visitors Into Leads.\r\n\r\nWeb Visitors Into Leads is a software widget that sits on your webpage, ready and waiting to snatch any visitor Name, Email  and Phone Number. It lets you know immediately – so you can speak to that lead immediately immediately… without delay BEFORE they head for those hills.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see precisely how it works\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act quick – the difference between between contacting someone someone within versus 30 minutes later is huge is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful you’ve got their phone number, so now you can start a text a text message (SMS) conversation with them… so even if they don’t don’t take you up you up on your offer right away, you continue to text them new content, and new reasons to do business with you with you.\r\n\r\nThis could alter everything for you and your business\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn more more about everything Web Visitors Into Leads can do and start and start turing eyeballs into money.\r\n\r\nBrigitte\r\nPS: Web Visitors Into Leads offers a FREE a FREE 14 days trial trial – you could could be converting up to up to 100x more leads immediately immediately!   \r\nIt even even includes International Long Distance Calling\r\nPaying customers are out there waiting\r\nStarting connecting today by CLICKING HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now\r\n\r\nShould you prefer to unsubscribe click here https://advanceleadgeneration.com/unsubscribe.aspx?d=meadowcroftwines.com\r\n\r\nOnly a brief note - the names and email used here, Brigitte and Baumgartner, are placeholders and not and not real contact information. We value transparency transparency and wanted to make to make sure you’re you’re aware! If you wish to get to get in touch with the with the real person person behind this message please visit our website and we’ll connect you with the with the correct individual.}',''),(1203,2,270,'7','James Vance',''),(1204,2,270,'2','charmain.vance@msn.com',''),(1205,2,270,'3','(811) 397-1455',''),(1206,2,270,'6','Wondering why SEO matters for your business?\r\n\r\nVisibility Boost:\r\nBe found by potential customers with improved search engine rankings.\r\n\r\nOrganic Traffic Surge:\r\nIncrease website traffic naturally, reducing reliance on paid ads.\r\n\r\nCredibility and Trust:\r\nEstablish your brand as a credible and trusted authority.\r\n\r\nEnhanced User Experience:\r\nOptimize your site for a seamless, user-friendly experience.\r\n\r\nReady to unlock these benefits? Let\'s chat about tailoring an SEO strategy for your business. Click here for more information https://alwaysdigital.co/',''),(1207,2,271,'7','Jen Williams',''),(1208,2,271,'2','jenwilliams57@outlook.com',''),(1209,2,271,'3','(303) 736-9129',''),(1210,2,271,'5','Customer Service',''),(1211,2,271,'6','Hello, \r\n\r\nThis is Jen, a SEO copywriter and content writer with 12 million words written till now. \r\n\r\nI can write content for you as per your website meadowcroftwines.com. I specialize in writing blogs, articles, e-commerce product descriptions, SEO content, website content, business service descriptions, newsletter content, content for brochures, Proofreading, Social Media Captions, Linkedin Content and content for SOPs. \r\n\r\nI charge USD 40 for 1000 words content including Keyword Research and Topic Research if you want. \r\n\r\nSend me an email at Jenwilliams57@outlook.com if you have any requirements.',''),(1212,2,272,'7','David P. Sweet',''),(1213,2,272,'2','powerdirector@busihelp.xyz',''),(1214,2,272,'3','(956) 248-8498',''),(1215,2,272,'5','Media Inquiry',''),(1216,2,272,'6','Hi,\r\n \r\nYou need ways to attract new customers on social media and on blog content too, right?\r\n\r\nAs a small business owner, it’s getting even more important to be able to create and edit videos for all the different social media platforms as well as your blog or even YouTube videos, but how do you do it without breaking the bank?\r\n\r\nYou need to either pay for a professional to create video’s or you do it yourself.     If you choose the latter option, you need to make it as professional looking as you can and for this you need video editing software.\r\n\r\nPowerDirector 365 is a software recommended by PCMAG, Toptenreviews and Techradar.\r\nEven if you\'re not a professional, you can create awesome videos for websites or social media to attract a lot of targeted traffic. With the \"Ai Image Generator\" function, you can instantly generate custom images, stickers, or graphics from text.\r\n\r\nPowerDirector 365 is great for any small business who can’t afford to hire out the video production but understands the importance of having videos on their website and on social media.\r\n\r\nIt’s an awesome piece of technology that is truly amazing, you will be able to tackle the most difficult of video editing without spending a fortune on professionals to do the work for you.\r\n\r\nPro:\r\n	Access millions of premium videos, photos, and music tracks from Getty Images & Meta Sound Collection.\r\n	Instantly generate custom images, stickers, or graphics from text.\r\n	One click auto-generated subtitles for videos of any length.     Create unique looks with custom fonts, colors, and text placement.\r\n	...\r\n	\r\nNow click here to boost your traffic: https://www.busihelp.xyz/powerdirector \r\n\r\nBest,\r\nDavid P. Sweet\r\n\r\n\r\nUNSUBSCRIBE: https://www.busihelp.xyz/unsubscribe/\r\n\r\n8552 W Gage Blvd, Kennewick, WA 99336',''),(1217,2,273,'7','Lizette Gates',''),(1218,2,273,'2','seosubmitter@mail.com',''),(1219,2,273,'3','(705) 643-2609',''),(1220,2,273,'5','Influencer Inquiry',''),(1221,2,273,'6','Hello meadowcroftwines.com webmaster,\r\n\r\nWe can help you grow your online presence and attract more customers to your business with our Top SEO Services. \r\n\r\nOur team of experts can improve your Google and YouTube Ranking, optimize your Google Maps listing, provide Professional Content for your website, and increase your Website Traffic.\r\n\r\nDon\'t miss this opportunity to grow your business and stay ahead of the competition.\r\n\r\n=>>  https://cutt.ly/bwaduXWo\r\n \r\nBest regards,\r\nGates\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n  \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n  \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n  \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\nCanada, ON, Larder Lake, P0k 1l0, 634 Nelson Street\r\n \r\nTo stop any further communication through your website form, Please reply with subject: unsubscribe meadowcroftwines.com',''),(1222,2,274,'7','Eli Balsillie',''),(1223,2,274,'2','balsillie.eli@gmail.com',''),(1224,2,274,'5','Customer Service',''),(1225,2,274,'6','https://bit.ly/DFY_Blogs\r\n\r\nIntroducing the revolutionary DFY Blog Creator - the first AI-based platform that creates fully self-updating, Google-approved blogs with 100% original content. With this powerful tool, you can create up to 1,00,000 SEO optimized blogs in red-hot niches without writing a single word yourself!\r\n\r\nSay goodbye to the days of wasting hours creating and updating blogs. With DFY Blogs, you can turn your ideas into search engine-friendly blogs in just 3 clicks. This newbie-friendly technology takes care of everything - from researching trending topics to writing the content and publishing it on your website.\r\n\r\nBut that\'s not all - with DFY Blogs, you can profit instantly by using these blogs for ClickBank, AdSense, or promoting other affiliate offers. Plus, with the premium AdSense booster, you can rotate ads on your blogs and get maximum click-through rates.\r\n\r\nhttps://bit.ly/DFY_Blogs\r\n\r\nDon\'t waste your time and money on grunt work anymore. With DFY Blogs, you can turn leads into buyers without lifting a finger. Simply enter a few details, and your blog is ready to go! Use these stunning DFY blogs to get real results and attract floods of leads for your other products and services.\r\n\r\nBest of all, you\'ll never have to worry about paying huge money monthly to top blogging platforms. DFY Blogs is 100% easy to use and completely newbie-friendly. Whether you\'re an experienced blogger or just starting, you\'ll be amazed at how simple and effective this platform is.\r\n\r\nDon\'t miss out on the opportunity to grab your share from the widely untapped $584 billion content marketing industry. Get started with DFY Blogs today and watch your profits soar!\r\n\r\nhttps://bit.ly/DFY_Blogs',''),(1226,2,275,'7','Al Suprun',''),(1227,2,275,'2','bidsmarket@gmail.com',''),(1228,2,275,'3','(514) 675-0578',''),(1229,2,275,'6','Hello,\r\n\r\nI am interested to get more details about your products and services, especially, what makes your offer better than your competitors\' ?\r\n\r\nAlso - are you looking for distributors or resellers?\r\n\r\nWaiting for your reply,\r\n\r\nAl Suprun\r\nMontreal, Canada',''),(1230,2,276,'7','Jennifer Obrien',''),(1231,2,276,'2','jenn@dandyreviewaitools.com',''),(1232,2,276,'3','(949) 577-6294',''),(1233,2,276,'5','Customer Service',''),(1234,2,276,'6','Hi,\r\n\r\nOne of the biggest secrets the review sites don’t want Meadowcroft Wines to know - simply removing unfair bad reviews has a huge, almost immediate, impact on your ratings and ranking in local search. With Meadowcroft Wines having 17 on Yelp, this impact is huge.  That means more customers choose you over your competitors - there’s a reason some of the biggest brands use Dandy. \r\n\r\nDo you have 15 minutes for a call today? \r\n\r\nSchedule a Call Here: meetings.hubspot.com/dandy-/review-removal-consult-ccfill or for more information please visit our website: getdandy.com/ai-removal-tool\r\n\r\nYou can also call me directly at (949) 577-6294\r\n\r\nWe’ve removed over 40,000 bad reviews and want to help you too. \r\n\r\nThank you,\r\n\r\n\r\nJennifer O\'brien | Director of Reviews\r\nGetDandy  - The First AI Powered Reputation Automation Platform\r\nPhone: (949) 577-6294\r\ngetdandy.com/ai-removal-tool',''),(1235,2,277,'7','Josh Kim',''),(1236,2,277,'2','josh.no-reply@yellowboost1.com',''),(1237,2,277,'3','(424) 245-5686',''),(1238,2,277,'5','Influencer Inquiry',''),(1239,2,277,'6','Hello, \r\n\r\nGuaranteed Google rankings in 90 days or we work for free!\r\n\r\nThe Game-Changing Solution to Beat the Recession and Boost Your Business!\r\n\r\nAre you tired of struggling to get traffic to your website? Without an increase in traffic, your business growth is hindered, allowing competitors to dominate the market. Did you know that more than 80% of people search Google before buying goods or services? Wondering why certain businesses rank at the top of a Google search and receive the majority of clicks and drive substantial traffic to their websites? Dreaming of seeing your business there too? Well, you’ve come to the right place.\r\n\r\nThe internet is the best source to attract new customers and can be an absolute gold mine if it\'s set up and optimized correctly. Our services provide Key benefits that you can enjoy.\r\n    •  Unlock the secrets to boosting your sales, while we handle the entire process, giving you the opportunity to sit back and watch the magic happen.\r\n    •  Find out how to increase the number of new clients and accelerate the growth of your business.  \r\n    •  Discover the hidden method to advertise on Google Search without spending a dime, resulting in significant cost savings.\r\n\r\nThe cool news is I have a short video that shows how we can help you! \r\n\r\nClick this link right now to see it.\r\n\r\nhttps://marketing.yellowboost1.com \r\n\r\nI’ll see you over there,\r\n\r\n\r\n\r\nJosh Kim / Senior Marketing Agent\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nIf you want to opt out of future messages, click this link: https://yellowboost1.com/unsubscribe.php?d=meadowcroftwines.com',''),(1240,2,278,'7','James Lothian',''),(1241,2,278,'2','lothian.marissa93@msn.com',''),(1242,2,278,'3','(974) 084-2487',''),(1243,2,278,'6','SEO ensures your website stands out when people search for products or services. Google prioritizes relevance and reliability to decide which sites appear on the first pages, underscoring the need for effective website presentation.\r\n\r\nSEO Benefits in Brief:\r\n1. Boosts Visibility and Traffic:\r\n2. Establishes Trust:\r\n3. Yields High ROI:\r\n4. Enhances User Experience:\r\nGoogle announced prioritizing pages based on user experience in their algorithm.\r\nIn essence, SEO is your key to standing out, building trust, and ensuring a high return on investment.\r\n\r\nContact us at https://digitalpromax.co/\r\n\r\nAlso Need expert hands on your WordPress projects? We\'ve got you covered. Let\'s discuss how our WordPress developers can boost your web endeavors.\r\n\r\nClick here for more details: https://outsource-bpo.com/website/',''),(1244,2,279,'7','Eric Jones',''),(1245,2,279,'2','ericjonesmyemail@gmail.com',''),(1246,2,279,'3','(555) 555-1212',''),(1247,2,279,'6','Dear meadowcroftwines.com Administrator! Eric here with a quick thought about your website meadowcroftwines.com...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it – it’s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere’s a solution for you…\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://blazeleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=meadowcroftwines.com',''),(1248,2,280,'7','Lisa Miller',''),(1249,2,280,'2','lisa@videowins1.com',''),(1250,2,280,'3','(610) 826-2254',''),(1251,2,280,'5','Customer Service',''),(1252,2,280,'6','Hello, \r\n\r\nAfter visiting Meadowcroft wines website, I wanted to let you know that we work with companies like yours to publish a custom-made promotional video featuring your company online.\r\n\r\nThe 90-second video below shows you what this special video can do for Meadowcroft wines.\r\n\r\nTo watch the video, and get a free video marketing report for your company, please visit: videowins1.com \r\n\r\nThanks for your time.\r\n\r\n-Lisa Miller\r\nVice President, Client Services\r\n\r\nUnsuscribe: videowins1.com/optout',''),(1253,2,281,'7','Manie Larcombe',''),(1254,2,281,'2','larcombe.manie31@msn.com',''),(1255,2,281,'3','(925) 272-3360',''),(1256,2,281,'5','Media Inquiry',''),(1257,2,281,'6','I now offer contact form blasting service. With my DFY service you can either do a targeted blast to only websites that match your criteria or bulk blast large volumes of sites worldwide. Prices start at just $50 to reach 500,000 bulk sites. Contact me at my email or skype below for details.\r\n\r\nP. Stewart\r\nSkype: live:.cid.e169e59bb6e6d159\r\nEmail: ps94107@gomail2.xyz',''),(1258,2,282,'7','Jimmy Marchant',''),(1259,2,282,'2','marchant.bess@gmail.com',''),(1260,2,282,'3','(933) 716-7847',''),(1261,2,282,'5','Careers',''),(1262,2,282,'6','I hope this message finds you well. I wanted to highlight the key advantages of our Monthly SEO Services:\r\n\r\nContinuous Visibility: Maintain a strong presence in search results.\r\nTargeted Traffic: Attract relevant visitors through ongoing optimization.\r\nAdaptability: Stay ahead by quickly adapting to industry trends.\r\nDetailed Reporting: Receive comprehensive analytics for informed decision-making.\r\nContent Freshness: Regular updates keep your site relevant and engaging.\r\nAuthority Building: Boost your website\'s credibility over time.\r\nCompetitive Edge: Outperform competitors with refined strategies.\r\n\r\nLet\'s discuss how our Monthly SEO Services can specifically benefit your business. Can we schedule a brief call at your convenience? https://digitalpromax.co/lb/\r\n\r\nIf you want web development work to support your SEO or build your website from scratch, Please contact at https://speedexpert.co/wp-development/',''),(1263,2,283,'7','Analisa Pegues',''),(1264,2,283,'2','analisa.pegues@yahoo.com',''),(1265,2,283,'6','Hello meadowcroftwines.com Webmaster.\r\n\r\nEver dreamed of building your own online business without the hassle of creating products or intensive advertising? \r\n\r\nThe Secret Email System is the answer! Turn your dream into reality today! \r\nWith the semi-automated method and our valuable bonuses, you\'ll turn leads into sales while enjoying the freedom you deserve.\r\n\r\nSee More In This Video! >> https://cutt.ly/hwI9GAJK\r\n\r\nWith deepest gratitude\r\nAnalisa\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nAustria, BURGENLAND, Wiesenberg, 4753, Ortsstrasse 88\r\nTo end the receipt of these offers, kindly reply to this email.',''),(1266,2,284,'7','Western Reserve Wines',''),(1267,2,284,'2','info@westernreservewines.com',''),(1268,2,284,'3','(440) 498-9463',''),(1269,2,284,'5','Wines',''),(1270,2,284,'6','We are a local wine ship in cleveland ohio, do you have a distributor in our state?',''),(1271,2,285,'7','Joscelyn Willett',''),(1272,2,285,'2','joscelyn.willett@gmail.com',''),(1273,2,285,'3','(415) 324-9598',''),(1274,2,285,'5','Wines',''),(1275,2,285,'6','Hello, it appears I have an order to pick up, but I also want to cash in some of my rewards. Is it possible to create and order to add on the existing order I need to pick up that is already paid?',''),(1276,2,286,'7','Sammy Pressley',''),(1277,2,286,'2','lacy.pressley@gmail.com',''),(1278,2,286,'3','(517) 845-9979',''),(1279,2,286,'5','Influencer Inquiry',''),(1280,2,286,'6','I hope this message finds you well. We\'d like to highlight the advantages of outsourcing your web development to us:\r\n\r\nSpecialized Expertise:\r\nCost Efficiency:\r\nFocus on Core Functions:\r\nFlexibility and Scalability:\r\nTimely Delivery:\r\nAccess to Latest Technologies:\r\n\r\nWe\'d love to discuss this further. When would be a convenient time for you? Looking forward to the possibility of partnering with you for your web development needs. Click here for more details: https://outsource-bpo.com/website/\r\n\r\n\r\nPS: If you are looking for high quality SEMRush links, we have handpicked/ selected links up for grabs at  https://alwaysdigital.co/ls/',''),(1281,2,287,'7','Kmtcknigma',''),(1282,2,287,'2','hwg6jdgsfg5ci@gmail.com',''),(1283,2,287,'3','(324) 878-2150',''),(1284,2,287,'4','946',''),(1285,2,287,'5','Wines',''),(1286,2,287,'6','<a href=\"https://sildenafillus.com/ \">tadalafil 20 mg e20</a>',''),(1287,2,288,'7','Dylan Samra',''),(1288,2,288,'2','dylan.s@myercquicker.com',''),(1289,2,288,'3','(814) 200-8960',''),(1290,2,288,'5','Customer Service',''),(1291,2,288,'6','Hi, we noticed you\'re likely eligible for a new IRS tax refund (called the FFCRA) that will pay you $32K within 10 days of applying.\r\n\r\nOur CPA firm has already secured $82M+ for clients & we only charge a 20% performance fee after you actually receive the refund.\r\n\r\nMay I send you a 60-second eligibility quiz?',''),(1292,2,289,'7','Joe Celine',''),(1293,2,289,'2','joe@seo-indepth.com',''),(1294,2,289,'5','Careers',''),(1295,2,289,'6','Hi, \r\nAre you still in business? \r\nI found a few errors on your site.\r\nWould you like me to send over a screenshot of those errors?\r\n\r\nRegards\r\nJoe\r\n(714) 908-9255',''),(1296,2,290,'7','David Ahlers',''),(1297,2,290,'2','7minutes@solveques.xyz',''),(1298,2,290,'3','(913) 686-3602',''),(1299,2,290,'5','Influencer Inquiry',''),(1300,2,290,'6','Hey owner of meadowcroftwines.com,\r\n\r\nCongratulations! \r\n\r\n\r\nYou\'re invited to watch this special video where you can start generating your first online income for just a few minutes of work!\r\n\r\n\r\nYou will discover how you too can start drawing dollars from a Little-Known Loophole in the internet...\r\n\r\n\r\nJust by using nothing but your laptop!\r\n\r\n\r\nEverything will be explained here: https://www.solveques.xyz/7minutes \r\n\r\n\r\nThis video will expire within 24 hours so watch it know before it\'s too late!\r\n\r\n\r\n\r\nChat soon,\r\n\r\nDavid Ahlers\r\n\r\n\r\nUNSUBSCRIBE: https://www.solveques.xyz/unsubscribe \r\nAddress: 1034 W 18th St, Merced, CA 95340',''),(1301,2,291,'7','Flynn Osburn',''),(1302,2,291,'2','osburn.flynn49@outlook.com',''),(1303,2,291,'3','(418) 218-7448',''),(1304,2,291,'5','Influencer Inquiry',''),(1305,2,291,'6','Hi meadowcroftwines.com Administrator.\r\n\r\nLearn How to Make $100 - $1500 per Day\r\nYou can get your hands on the method that I\'ve mastered over the last 12 years of building and monetizing...\r\n\r\n>>  https://cutt.ly/TwFzZam9\r\n\r\nWarmly\r\nFlynn\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nCanada, QC, St Felicien, G8k 1b1, 4308 Rue De La Gare\r\nIf you want to stop receiving these particular offers, please reply to this email.',''),(1306,2,292,'7','Jennifer Obrien',''),(1307,2,292,'2','Jennifer@dandyreviewaitools.com',''),(1308,2,292,'3','(949) 755-7782',''),(1309,2,292,'4','34534',''),(1310,2,292,'5','Influencer Inquiry',''),(1311,2,292,'6','Hi,\r\n\r\nOne of the biggest secrets the review sites don’t want Meadowcroft wines to know - simply removing unfair bad reviews has a huge, almost immediate, impact on your ratings and ranking in local search. With Meadowcroft wines having 8 on Google, this impact is huge.  That means more customers choose you over your competitors - there’s a reason some of the biggest brands use Dandy. \r\n\r\nDo you have 15 minutes for a call today? \r\n\r\nSchedule a Call Here: meetings.hubspot.com/dandy-/review-removal-consult-ccfill or for more information please visit our website: getdandy.com/ai-removal-tool\r\n\r\nYou can also call me directly at (949)-755-7782\r\n\r\nWe’ve removed over 40,000 bad reviews and want to help you too. \r\n\r\nThank you,\r\n\r\n\r\nJennifer O\'brien | Director of Reviews\r\nGetdandy\r\nPhone: +1 (949)-755-7782| Visit us Online\r\n9891 Irvine Center Drive, Suite #200, Irvine, CA 92618',''),(1312,2,293,'7','Rudy Way',''),(1313,2,293,'2','way.rudy@gmail.com',''),(1314,2,293,'3','(403) 782-7195',''),(1315,2,293,'5','Customer Service',''),(1316,2,293,'6','With keyword targeted PPV ads I can get you qualified website visitors for less than a penny per click. This method works for both local and online businesses. Very easy to get started. Just sign up, give me your website and I\'ll provide the traffic.\r\n\r\nFor details, shoot me an email or Skype me at my contact info below.\r\n\r\nP. Stewart\r\nSkype: live:.cid.ad0ee8f191cd36b4\r\nEmail: psT4n 2a6@gomail2.xyz',''),(1317,2,294,'7','Eric Jones',''),(1318,2,294,'2','ericjonesmyemail@gmail.com',''),(1319,2,294,'3','(555) 555-1212',''),(1320,2,294,'5','Media Inquiry',''),(1321,2,294,'6','Dear meadowcroftwines.com Owner! Eric here with a quick thought about your website meadowcroftwines.com...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it – it’s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere’s a solution for you…\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://blazeleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=meadowcroftwines.com',''),(1322,2,295,'7','Fletcher Sandberg',''),(1323,2,295,'2','millioniare@earnmorenow.info',''),(1324,2,295,'3','(920) 830-7339',''),(1325,2,295,'5','Careers',''),(1326,2,295,'6','Hi owner of meadowcroftwines.com,\r\n\r\nDo you want to be a smart phone millionaire?\r\n\r\nDo you want to make over a million dollars this year from your phone?!\r\n\r\nSecret Millioniare Bot is a proven system that shows webmaster like you how to earn dollars with the most popular apps in the world today\r\n\r\nAll you have to do is tap this app a few times a day:\r\n>>>  https://www.earnmorenow.info/millioniare \r\n\r\nThis is INSANE.          So check it out before it gets taken down!\r\n\r\nBest,\r\n\r\n\r\nFletcher Sandberg\r\n\r\nUNSUBSCRIBE: https://www.earnmorenow.info/unsubscribe\r\nAddress: 3331 Buford Dr, Buford, GA 30519',''),(1327,2,296,'7','Malorie Vickers',''),(1328,2,296,'2','vickers.malorie@gmail.com',''),(1329,2,296,'3','(804) 876-5625',''),(1330,2,296,'6','Hey,\r\n\r\nGround-breaking research reveals that people who don’t grow up wealthy…\r\n \r\nHas a shrunken hippocampus, a walnut-sized region in your brain.\r\n\r\nYour brain\'s wealth centre, the hippocampus, might be smaller. \r\n\r\nThis blocks \"billionaire brain waves,\" stopping you from attracting your dream life. \r\n\r\nLeft unchecked, it even affects your children. \r\n\r\nBut there\'s hope! \r\n\r\nA special sound frequency can grow your hippocampus 6x faster, magnetizing money in just 7 seconds daily. \r\n\r\nReady to activate your inner billionaire? \r\n\r\nDiscover the breakthrough frequency (before this page disappears!).\r\n\r\nhttps://t.ly/DpG4f',''),(1331,2,297,'7','Sam Cranwell',''),(1332,2,297,'2','cranwell.jayden@gmail.com',''),(1333,2,297,'3','(149) 796-5427',''),(1334,2,297,'5','Customer Service',''),(1335,2,297,'6','We\'re an expert link building agency that offers services to build incredible backlinks to your website. Trusted by SEO professionals Worldwide. Our affordable SEO link building packages prices for your online business. Choose the best Link building service packages that suits your website\'s needs.\r\n\r\nClick here for more options: \r\n\r\nhttps://alwaysdigital.co/ls/\r\n\r\nPS: Need Wordpress website? Hire Our Wordpress Developer at https://wpexpertspro.co/website/',''),(1336,2,298,'7','Bruce Lumley',''),(1337,2,298,'2','thoughtsmithone@gmail.com',''),(1338,2,298,'3','(844) 797-4635',''),(1339,2,298,'5','Influencer Inquiry',''),(1340,2,298,'6','Getting rid of your demons...\r\n\r\nMeadowcroft Wines\r\nmeadowcroftwines.com\r\n(707) 934-4090\r\n\r\nOur team came across you guys while engaging in research for abc liquor store.\r\n\r\nTransform Your Life Today!\r\n- Stop Smoking Forever\r\n- Achieve Lasting Weight Loss\r\n- Boost Confidence\r\n- Master Public Speaking\r\n- Overcome Fears and Phobias\r\n- Elevate Business Motivation and Success\r\n\r\nMy name is Bruce Lumley, your professional hypnotist and motivational speaker. I provide personalized and group sessions, both online and in person.\r\n\r\nReady for a change? \r\n\r\nVisit us below and book your complimentary 20-minute discovery call now!\r\nhttps://thoughtsmith.site.pro/\r\n\r\nTalk soon,\r\n\r\nBruce\r\nFounder\r\nConsulting Hypnotist\r\n\r\nThoughtsmith LLC\r\nService Worldwide\r\n844-797-4635\r\n\r\nSince 2002, we have performed over 11,000 sessions with clients in both individual as well as corporate settings.\r\n\r\n\r\n\r\n\r\n\r\nUnsubscribe:\r\nConsider this a one-time message, however, if you wish to opt-out, please click the link below.\r\n\r\nhttps://thoughtsmith-optout.info/unsubscribe.php?d=meadowcroftwines.com',''),(1341,2,299,'7','Josiah Yeo',''),(1342,2,299,'2','josiahyeo10@gmail.com',''),(1343,2,299,'5','Customer Service',''),(1344,2,299,'6','Dear Sir/Mdm, I am a tourist from overseas. May I inquire if Meadowcroft conducts walk-in winery tours in March?',''),(1345,2,300,'7','John Taverner',''),(1346,2,300,'2','johnson.taverner@gmail.com',''),(1347,2,300,'3','(630) 735-7012',''),(1348,2,300,'6','7 page static website/ Contact form/ Slider - starts from $80\r\nUnlimited categories/ products/ Slider/ Contact form/ Payment gateway integration/ Ecommerce website - stats from $300\r\n\r\nAll websites are mobile responsive and SEO friendly. Professional and afforable website design and development \r\n\r\nHire our developers at https://speedexpert.co/wp-development/',''),(1349,2,301,'7','Juliet Turner',''),(1350,2,301,'2','jkturner81@yahoo.com',''),(1351,2,301,'3','(831) 247-6269',''),(1352,2,301,'5','Wines',''),(1353,2,301,'6','Hi there! I am taking my mom on a mother/daughter getaway this weekend for her birthday and she has never really been to a winery before. I found you guys online and your tasting room looks so cute. I was wondering if you have any tours or anything special going on for tomorrow  (Friday 1/12) late afternoon?',''),(1354,2,302,'7','Ryan Gilford',''),(1355,2,302,'2','rgilford@altdatum.net',''),(1356,2,302,'3','(949) 750-6931',''),(1357,2,302,'5','Influencer Inquiry',''),(1358,2,302,'6','My name is Ryan Gilford – I’m the owner and operator of Alt Datum. I’m a full-stack website developer and designer. Who can I speak to at your company about working with you on your website?',''),(1359,2,303,'7','Gregory Bush',''),(1360,2,303,'2','speedwealth@busitoday.co',''),(1361,2,303,'6','Hi meadowcroftwines.com,\r\n\r\nIt\'s very important that I share this brand new development with you.  We have been testing a revolutionary new system.\r\n\r\nUse The Little Known Loophole/Trick To Making Fast Affiliate Sales In Less Than 24 Hours.\r\n\r\nClick Here To Grab Your Account Now: https://www.busitoday.co/speedwealth \r\n\r\nIt has been getting INSANE results for newbies.\r\nIt has been getting INSANE results for the pros.\r\n\r\nAnd now, I need your help to expand my user base, will you help me grow this?\r\n\r\nClick Here To Begin Earning Commissions: https://www.busitoday.co/speedwealth \r\n\r\nAnd again, please DO NOT share this email with anyone.  This is for you exclusively.\r\n\r\nWill I See You Inside?\r\nGregory Bush\r\n\r\n\r\nUNSUBSCRIBE: https://www.busitoday.co/unsubscribe \r\nAddress: 9161 Gillsville Rd, Maysville, GA 30558',''),(1362,2,304,'7','Rudy Yuille',''),(1363,2,304,'2','rudy.yuille@gmail.com',''),(1364,2,304,'3','(514) 707-6568',''),(1365,2,304,'6','Hey there\r\n\r\nYou know I don\'t easily rave about products, but Ultimate AI is something else. It\'s been a total lifesaver for me. Definitely check it out, you won\'t regret it. Here\'s where you can see it: https://bit.ly/3HbiQ2l\r\n\r\nI directly considered you guys at meadowcroftwines.com as soon as I saw this!',''),(1366,2,305,'7','Eric Jones',''),(1367,2,305,'2','ericjonesmyemail@gmail.com',''),(1368,2,305,'3','(555) 555-1212',''),(1369,2,305,'5','Media Inquiry',''),(1370,2,305,'6','Hi meadowcroftwines.com Owner. my name’s Eric and I just ran across your website at meadowcroftwines.com...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE https://blazeleadgeneration.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=meadowcroftwines.com',''),(1371,2,306,'7','Sonja Eklund',''),(1372,2,306,'2','eklund.sonja@gmail.com',''),(1373,2,306,'5','Careers',''),(1374,2,306,'6','Hey there! I was browsing through your website and found myself deeply engaged with your content, especially https://www.meadowcroftwines.com/product/2019-cab-franc-rivino-vineyard. It reminded me of my own journey when I first started trying to make money online. I had quite a few struggles until I stumbled upon something that made a significant difference. Thought I\'d share it with you too, hoping it might offer some value: https://stressfreelifehacks.xyz/billionaire. All the best',''),(1375,2,307,'7','Phil Stewart',''),(1376,2,307,'2','noreplyhere@aol.com',''),(1377,2,307,'3','(342) 123-4456',''),(1378,2,307,'6','You\'re reading this message and I can make millions of people read your message the exact same way!. Costs are much cheaper than regular advertising Hit me up via email or skype for details.\r\n\r\n\r\nP. Stewart\r\nSkype: live:.cid.e169e59bb6e6d159\r\nEmail: ps56044@gomail2.xyz',''),(1379,2,308,'7','Leslie Robertson',''),(1380,2,308,'2','leslieallyne@gmail.com',''),(1381,2,308,'3','(510) 508-2364',''),(1382,2,308,'5','Customer Service',''),(1383,2,308,'6','Hi,\r\n\r\nKeith and I are club members . I\'ve been in the industry since 2012 (pouring at Brown Estates, pouring and guiding tastings at Cordial Cellar + Lounge & currently pouring and guiding tastings at Longevity). I was able to change my membership at another winery to industry status, which provides better access and discounts. I\'d like to change my membership with Meadowcroft to industry as well.\r\n\r\nPlease advise,\r\nLeslie Robertson',''),(1384,2,309,'7','Ana Flores',''),(1385,2,309,'2','anaceciliafloresm@gmail.com',''),(1386,2,309,'3','(669) 206-7447',''),(1387,2,309,'5','Customer Service',''),(1388,2,309,'6','Hi,\r\n\r\nFor the Tour of \"A perfect blend\" , if I book the 10am appointment for a group of 6.\r\nHow long does the experience take?',''),(1389,2,310,'7','Samuel Reis',''),(1390,2,310,'2','reis.horace@gmail.com',''),(1391,2,310,'3','(142) 024-7242',''),(1392,2,310,'5','Careers',''),(1393,2,310,'6','Affordable Website Design with High Quality. Receive a complimentary quote for Free Web Designing, including a 5-page website with Free Flash, Contact Forms, and a basic Logo, all backed by our satisfaction guarantee. Enjoy UNLIMITED revisions for the prototype, Free basic SEO, and adherence to W3C standards.\r\n\r\nOur Corporate, Business, and Informational website package is priced at $80 and will be completed within 4 days. Trust us to create your online store, with packages starting at $150.\r\n\r\nBenefit from our development center in Bangalore, offering the highest expertise at the lowest cost. Contact us NOW for more information. https://outsource-bpo.com/website/\r\n\r\nWe also do Monthly SEO Services at https://digitalpromax.co/la/',''),(1394,2,311,'7','Jennifer Cooper',''),(1395,2,311,'2','brown.jade@outlook.com',''),(1396,2,311,'3','(601) 904-1560',''),(1397,2,311,'5','Careers',''),(1398,2,311,'6','Hey there,\r\n\r\nWas looking at your site today and I thought this would probably interest you.\r\n\r\nAre you tired of managing staff who lack the expertise to handle complex tasks? Feeling overwhelmed by the thought of diving into AI? Look no further! We have the game-changing solution you\'ve been waiting for: Myaa\'s Remote Live Agents, expertly trained in AI.\r\n\r\nImagine having the best of both worlds - a remote live personal assistant who is also an expert at leveraging the power of thousands of Chat AI Agents. With Myaa, that\'s exactly what you get. Our Live Agents are trained to perfection in writing excellent prompts and harnessing the capabilities of our AI Agents. \r\n\r\nBut here\'s the exciting part: we are offering a one-week free trial for you to experience the transformative capabilities of our agents firsthand. No obligations, no strings attached. Just an opportunity to see how our Remote Live Agents, the experts in leveraging AI technology, can revolutionize the way you manage your business. \r\n\r\nBut this offer is only good this week, for the first 20 clients, so you need to claim your Remote Live Agent Now, before you miss out.  \r\n\r\nSchedule a call with us by clicking the link below and secure your one-week free trial: \r\n\r\nhttps://bit.ly/myaa-live-agent\r\n\r\nWith our Remote Live Agents equipped with AI, you can: \r\n\r\n•	Delegate a variety of tasks and projects, boosting your productivity. \r\n•	Ensure daily progress by leveraging internal and external resources through our agents.\r\n•	Reclaim your time to focus on business growth rather than administrative tasks.\r\n\r\nAnd that\'s not all! This FREE Remote Live Agent offer is valued at over $400, and you are getting it for ABSOLUTELY FREE. Don\'t miss out on this incredible opportunity! \r\n\r\nClick the link below to schedule a call and claim your one-week free trial: \r\n\r\nhttps://bit.ly/myaa-live-agent\r\n\r\nIf you have any questions or need further information, please don\'t hesitate to reach out. We are here to assist you every step of the way. \r\n\r\nCheers,\r\nJennifer Cooper \r\n\r\nP.S. Act fast! This exclusive offer is only available for a limited time and to a select few. Don\'t miss your chance to experience the power of our Remote Live Agents trained in AI. Schedule your call today!',''),(1399,2,312,'7','John James',''),(1400,2,312,'2','aiscreensnap@nowbusiness.info',''),(1401,2,312,'5','Customer Service',''),(1402,2,312,'6','Can you believe it?\r\n\r\nPeople spend thousands of dollars to get that kind of result…\r\n\r\nMy friend Kundan just did it for free…\r\n\r\nHe only used his new app… AI ScreenSnap…\r\n\r\nIt’s the world’s first AI app that can generate videos with the power of Video-Exclusive AI Engine…\r\n\r\nThat can edit, record, and generate videos with just a few clicks… with zero experience…\r\n\r\nBut here is the best part…\r\n\r\nAI ScreenSnap is trained on millions of viral videos (yes millions)\r\n\r\nAnd it taught itself exactly how to generate viral videos from anything: https://www.nowbusiness.info/aiscreensnap \r\n\r\nWith it, you will be able to generate videos that go viral on any platform with just a click…\r\n\r\nWithout learning anything\r\nAnd without paying for any ads…\r\n\r\n\r\nAll of that without doing anything technical or learning anything…\r\n\r\nYes, all of that you can do, with just a couple of clicks…\r\n\r\nClick here now and watch AI ScreenSnap in action: https://www.nowbusiness.info/aiscreensnap \r\n\r\nCheers,\r\n\r\nJohn James\r\n\r\nUNSUBSCRIBE: https://www.nowbusiness.info/unsubscribe \r\nAddress: 2891 Derita Rd, Concord, NC 28027',''),(1403,2,313,'7','Michael Sinclair',''),(1404,2,313,'2','brabyn.jack@googlemail.com',''),(1405,2,313,'5','Careers',''),(1406,2,313,'6','Hello,\r\n\r\nI checked out your business today and wanted to know if you would be open to the opportunity to reach out to a staggering 1.25 million potential clients on a weekly basis through our highly effective email marketing campaign that can start getting you leads in just a few days? And the best part? It\'s available to you at an incredibly affordable rate of just $240 per week! \r\n\r\nPlus, as a bonus, we provide the B2B prospect list so you can effortlessly expand your reach weekly and generate consistent leads and sales. \r\n  \r\nI’m with HiveMailers, we use a robust email system to get clients daily leads and/or sales 24/7.\r\n \r\nWE DO ALL THE WORK:\r\n\r\n- We create the content for the email(s).\r\n- We provide the email list (contacts).\r\n- We forward leads to you daily.\r\n- We manage your email campaigns 24/7.\r\n\r\nWHO THIS IS FOR:\r\n\r\n- Companies who sell to businesses (B2B).\r\n- Companies who provide a product/service with wide appeal (not a small niche).\r\n- Companies whose product/service can be sold across the USA and/or international.\r\n\r\nJust imagine, getting hot leads within days of getting started with us. \r\n\r\nYou might be wondering if our system works, well if you are reading this message, it works. \r\n\r\nGet started now!!! For just $240 a week, we’ll send 1.25-Million emails weekly and start filling your inbox with qualified leads. \r\n\r\nBook a 10 min call with us: https://bit.ly/hivemailer-240-special \r\n\r\nNOTE: To buy an email list and hire an email manager to run your campaign (like our system) would cost around $3,500 a month, but with us, you pay just $240 a week. So, you save over $2,000 a month.\r\n\r\nSincerely,\r\nMichael\r\n\r\nP.S. This offer is good for the first 20 clients, don’t miss out.  Book appointment now and start getting leads within a few days: https://bit.ly/hivemailer-240-special',''),(1407,2,314,'7','Mildred Sherman',''),(1408,2,314,'2','recessionprofitsecrets@realdollar.xyz',''),(1409,2,314,'5','Influencer Inquiry',''),(1410,2,314,'6','Hi meadowcroftwines.com,\r\n\r\nHave you ever heard the word “Hyperinflation”? It means that the money you have will lose all of its value...\r\n\r\nSkyrocketing Hyperinflation is denting your website and money’s worth and it’s inevitable.\r\n\r\nIn fact, if you earned $ 100 last year. It’s only worth about $ 93 today.\r\n\r\nDo you really think YOUR website and retirement savings will hold up in this crash: https://www.realdollar.xyz/recessionprofitsecrets ? \r\n\r\nThink again...\r\n\r\nBut don’t worry, I’ve discovered a little-known system to protect your retirement nest and fill it with golden eggs.\r\n\r\nIt’s the exact same system used by the elites, CEOs, bankers, and the government to make billions, even trillions of dollars.\r\n\r\nNow, you can use the same wealth creation secrets to secure a bright future : https://www.realdollar.xyz/recessionprofitsecrets  \r\n\r\n\r\n- Mildred Sherman\r\n\r\nPS - Given the confidentiality of this system, I’m not sure how long we’ll be able to hold this opportunity.      So [act now] to discover a “Proven System” I found that can save your money and even help you multiply your wealth swiftly.\r\n\r\n\r\nUNSUBSCRIBE: https://www.realdollar.xyz/unsubscribe\r\nAddress: 211 E State St, Black Mountain, NC 28711',''),(1411,2,315,'7','Megan Atkinson',''),(1412,2,315,'2','meganatkinson149@gmail.com',''),(1413,2,315,'6','Hi there,\r\n\r\nWe run an Instagram growth service, which increases your number of followers both safely and practically. \r\n\r\n- We guarantee to gain you 300-1000+ followers per month.\r\n- People follow you because they are interested in you, increasing likes, comments and interaction.\r\n- All actions are made manually by our team. We do not use any \'bots\'.\r\n\r\nThe price is just $60 (USD) per month, and we can start immediately.\r\n\r\nIf you\'d like to see some of our previous work, let me know, and we can discuss it further.\r\n\r\nKind Regards,\r\nMegan',''),(1414,2,316,'7','Jennifer Obrien',''),(1415,2,316,'2','jenn@dandyreviewaitools.com',''),(1416,2,316,'3','(949) 577-6294',''),(1417,2,316,'5','Media Inquiry',''),(1418,2,316,'6','Hi,\r\n\r\nWant us to help you delete unfair bad reviews from Google, FB, TripAdvisor and other main review sites? \r\nWe noticed Meadowcroft wines has 8 unfair bad reviews on Google and we can help remove them. That\'s what our AI powered software does without any work needed on your part - and that\'s why some of the largest brands in the world like Wyndham trust us to consistently remove unfair bad reviews from the main review sites without any work needed on their end. \r\n\r\nDo you have 15 minutes for a call today? \r\n\r\nSchedule a Call Here: meetings.hubspot.com/dandy-/review-removal-consult-ccfill or for more information please visit our website: getdandy.com/ai-removal-tool\r\n\r\nYou can also call me directly at (949)-755-7782\r\n\r\nWe’ve removed over 40,000 bad reviews and want to help you too. \r\n\r\nThank you,\r\n\r\nJennifer O\'brien | Director of Reviews\r\nGetdandy\r\nPhone: +1 949-755-7782 | Visit us Online\r\n9891 Irvine Center Drive, Suite #200, Irvine, CA 92618',''),(1419,2,317,'7','Bessie Nicolle',''),(1420,2,317,'2','bessie.nicolle@googlemail.com',''),(1421,2,317,'3','(318) 645-5532',''),(1422,2,317,'5','Media Inquiry',''),(1423,2,317,'6','Hi Webmaster! 1400 Niche Sites - Guest Posting at only $10 for ur Site https://meadowcroftwines.com\r\n\r\nHI Buddy\r\n\r\n\r\nI have found that you are purchasing guest posting links for your site https://meadowcroftwines.com. I am also link seller and doing guest bloging for many clients.\r\nYou will get high DA niche sites guest posting at only $10.\r\n\r\n    High DA\r\n    Niches Sites \r\n    Quality Sites\r\n    Fixed Price\r\n    Payment Paypal\r\n\r\nEmail mention in Sheet\r\n\r\nI have attached my google sheets of sites\r\n\r\nVisit: https://bit.ly/3tRldUT\r\nTo the Webmaster! 1400 Niche Sites - Guest Posting at only $10 for ur Site https://meadowcroftwines.com\r\n\r\nHI Buddy\r\n\r\n\r\nI have found that you are purchasing guest posting links for your site https://meadowcroftwines.com. I am also link seller and doing guest bloging for many clients.\r\nYou will get high DA niche sites guest posting at only $10.\r\n\r\n    High DA\r\n    Niches Sites \r\n    Quality Sites\r\n    Fixed Price\r\n    Payment Paypal\r\n\r\nEmail mention in Sheet\r\n\r\nI have attached my google sheets of sites\r\n\r\nVisit: https://bit.ly/3tRldUT',''),(1424,2,318,'7','Tom West',''),(1425,2,318,'2','tomwest754@gmail.com',''),(1426,2,318,'5','Careers',''),(1427,2,318,'6','Hi, Good Afternoon.\r\nAre Your Hiring Full Time or Part Time For Your Company Now?\r\nPlease Let Me Know.\r\nThanks, Tom West',''),(1428,2,319,'7','Lorrie Cowley',''),(1429,2,319,'2','lorrie.cowley@outlook.com',''),(1430,2,319,'5','Customer Service',''),(1431,2,319,'6','Hi Dear\r\n\r\n      Hello Admin! YoDrive Get upto 250GB Storage & Hosting OneTime Payment https://meadowcroftwines.com\r\n\r\n      GoodBye to Dropbox/Google Drive\r\n \r\n      Just OneTime Payment for Lifetime\r\n      No Monthly Payment\r\n\r\n      $37 Only OneTime Payment     \r\n\r\n      \r\n      30 Days Money Back Guarantee\r\n\r\n      Free Storage/Hosting Is Included, Unlimited Bandwidth & Upto 250 GB Storage\r\n\r\n      30 Days Online Back-Up & File Recovery So You Never Lose Your Precious Data And Files.\r\n      \r\n      Access Files Anytime, Anywhere Directly From The Cloud On Any Device!\r\n\r\nFor more info  Go at: https://bit.ly/3SzQiVB',''),(1432,2,320,'7','Thomas K.',''),(1433,2,320,'2','toptiercrm@gmail.com',''),(1434,2,320,'3','(888) 546-8810',''),(1435,2,320,'5','Influencer Inquiry',''),(1436,2,320,'6','I learned about Meadowcroft Wines during our visit to meadowcroftwines.com today. \r\n\r\nQuick question, do you:\r\n1. Have disorganized sales processes?\r\n2. Experience issues with data management affecting customer service?\r\n3. Struggle with handling customer support effectively?\r\n\r\nMy company is launching a cutting-edge AI-enhanced CRM developed with HighLevel, crafted to automate and manage virtually every aspect of your sales, marketing and client contact operations.\r\n\r\nWe\'re providing a seriously discounted membership to companies who joins the pre-launch waitlist.\r\n\r\nI know this will benefit your business. Visit our site for more info.\r\nhttps://toptiercrm.info/ \r\n\r\nTalk soon,\r\n\r\nSophia R.\r\nTop Tier CRM \r\n\r\n\r\nOne-Click easy unsubscribe and we will not reach out to you again:\r\nhttps://bullet-proof.biz/unsubscribe.php?d=meadowcroftwines.com',''),(1437,2,321,'7','Scarlett Frost',''),(1438,2,321,'2','scarlett.frost@towardsolution.com',''),(1439,2,321,'3','(515) 427-1358',''),(1440,2,321,'5','Wines',''),(1441,2,321,'6','Hi,\r\n\r\nHope you\'re doing well! I\'m Scarlett Frost from Toward Solution and I have some exciting news that could boost your wine business.\r\n\r\nEver wished to easily connect with the right people who love your wine? Well, here\'s your chance! We\'ve made special lists to help wineries like yours reach:\r\n\r\n•	Distributors and Wholesalers\r\n•	Retail Chains and Liquor Stores\r\n•	Restaurants and Hospitality Industry\r\n•	Event Planners and Caterers\r\n•	Corporate Gifts and Events\r\n•	Wine Retailers and Specialty Shops\r\n•	Wine Importers and Exporters\r\n•	Wine Packaging Suppliers\r\n•	Wine Industry Service Providers\r\n•	Marketing and PR Agencies and more\r\n\r\nWhy It\'s Great:\r\n\r\nExact Info: Get the right contacts for important decisions.\r\nExpand Easily: Reach new places without a hassle.\r\nEasy Connections: Talk to the right people without any trouble.\r\n\r\nCurious about how it works? Try our free sample list to see for yourself.\r\n\r\nCheers to growing your wine and making awesome connections!\r\n\r\nKindly update me with your target audience/list requirements in the below blanks:\r\n \r\nTarget________\r\n\r\nRegards,\r\nScarlett Frost',''),(1442,2,322,'7','Stella Georgeson',''),(1443,2,322,'2','stellag1@shaw.ca',''),(1444,2,322,'5','Wines',''),(1445,2,322,'6','I have a bottle of your 2020 Cabernet Sauvignon Stags Leap District Napa Valley.  I would appreciate if you would send me some info and details about it before I open it. I don’t see it on your webpage. \r\nThank you!  I’m excited to fully enjoy it.',''),(1446,2,323,'7','Alfredo Gibney',''),(1447,2,323,'2','alfredo.gibney@gmail.com',''),(1448,2,323,'3','(013) 294-0694',''),(1449,2,323,'5','Customer Service',''),(1450,2,323,'6','Hi Buddy\r\n\r\n      \r\n      Get Contextual Backlink On 500+ Media Sites like MarketWatch, APNews & Build Reputable Links  https://meadowcroftwines.com\r\n\r\n      Get High DA-DR, High Traffic, High Authority Site Contextual Links\r\n      \r\n      MarketWatch, APNews & Build Reputable Links, Single Link Value $500-1000\r\n     \r\n      High Traffic Site links only @ $0.5-0.6\r\n      \r\n      Boost Your Site Ranking, Authority, DR, DA\r\n\r\n      Get More Real Buyer for Sale \r\n \r\n\r\n\r\nFor more info  Go at: https://bit.ly/3unyZPh',''),(1451,2,324,'7','Lela Premo',''),(1452,2,324,'2','seorank@kagrowth.org',''),(1453,2,324,'3','(904) 555-3296',''),(1454,2,324,'6','Hello, \r\nI\'m Lela, co-founder of Kagrowth. Kagrowth noticed that you have an excellent website meadowcroftwines.com. \r\n\r\nKagrowth is a website research institute that is looking for website like yours, help you increase revenue by showing you how to find reliable ways to grow your website.\r\n  \r\nMethod: SEO service providers are verified and praised by webmasters, the largest service trading platform in the world to protect your rights and interests, only if you get what you want, the platform will hand over your payment to the service provider  \r\n \r\nService provider example (the highest rating is 5.0):  \r\n	Name: Michael - Starting Price: $5, 4 Days Delivery (22,600 orders completed) - Method: Build 100 high quality and low OBL backlinks for your money site - Webmasters satisfaction rating: 4.9\r\n	  \r\n	Name: Wasim Ashraf - Starting price: $15, 1 Days Delivery (2,800 orders completed) - Method: On-Page SEO For Higher Rankings in Google Search Results - Webmasters satisfaction rating: 5.0  \r\n	...  \r\n	For Super website, Provider – Randys Mccabe is an ex-Googler and has helped 3900 Super websites grow their sites, and webmasters rated him 5.0! Starting Price: $250. Now sign up for a platform account and chat with him online. \r\n	 \r\nEarn more dollars today: https://www.kagrowth.org/seorank\r\n\r\nThank you for your time,  \r\nLela C. Premo\r\n\r\n\r\nUNSUBSCRIBE: https://www.kagrowth.org/unsubscribe/\r\nAddress: 11 McKenna Rd, Arden, NC 28704',''),(1455,2,325,'7','Cheryl Carmack',''),(1456,2,325,'2','cheryl.oxo@gmail.com',''),(1457,2,325,'3','(309) 838-6500',''),(1458,2,325,'5','Customer Service',''),(1459,2,325,'6','Hello Meadowcroft!\r\nI\'m sad to report I broke one our stemless wine glasses... it went flying off the blanket I was curled up in on a cold Illinois evening :(\r\nI don\'t see an option to purchase the wine glasses separately on your website? We only need 1, but will purchase 2 if needed.\r\nAnyway y\'all can help? Our next shipment is going out soon! \r\nThank you! Cheryl & John from  Illinois',''),(1460,2,326,'7','Eric Jones',''),(1461,2,326,'2','ericjonesmyemail@gmail.com',''),(1462,2,326,'3','(555) 555-1212',''),(1463,2,326,'5','Influencer Inquiry',''),(1464,2,326,'6','Dear, Eric here with a quick thought about your website meadowcroftwines.com Owner!\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it – it’s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere’s a solution for you…\r\n\r\nWeb Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitor now to see exactly how it works.\r\n\r\nIt could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://rushleadgeneration.com to discover what Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://rushleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=meadowcroftwines.com',''),(1465,2,327,'7','Sareenah davis',''),(1466,2,327,'2','sareenah@gmail.com',''),(1467,2,327,'3','(917) 515-3105',''),(1468,2,327,'5','Customer Service',''),(1469,2,327,'6','I was trying to purchase tickets to the event coming up this Saturday at cornerstone; is it sold out?! 😭\r\n\r\nPlease let me know, thank you so much! \r\n\r\nIt would be myself and my husband. Membership is under my name. \r\n\r\n\r\nSareenah Davis',''),(1470,2,328,'7','Brandi Krauss',''),(1471,2,328,'2','krauss.brandi@gmail.com',''),(1472,2,328,'5','Media Inquiry',''),(1473,2,328,'6','Have you already heard about this new way to make money?\r\nhttps://www.youtube.com/watch?v=xYS43KTE3o4',''),(1474,2,329,'7','Terence Builder',''),(1475,2,329,'2','builder.terence@gmail.com',''),(1476,2,329,'3','(775) 885-2099',''),(1477,2,329,'5','Customer Service',''),(1478,2,329,'6','OUR JOURNEY: NEXOMINED\'S PATH TO DIGITAL INNOVATION AND MINING SUPREMACY\r\n\r\nAbout NexoMined: Shaping the Future of Digital Asset Mining\r\n\r\nNexoMined, a fast-growing provider of digital asset mining and cloud mining services, boasts a wide-ranging ecosystem of fintech services. We enable institutional clients and digital asset enthusiasts to participate efficiently in cloud mining and secure consistent earnings.\r\n\r\nNexoMined is dedicated to constructing a secure, compliant, and transparent blockchain infrastructure. We offer a variety of stable and intelligent hash rate service solutions to a global clientele, eliminating the hassle of \"Purchase - Transport - Hosting - Maintenance\" of the devices. Whether customers are new to crypto mining or seasoned experts, NexoMined can handle the repetitive and complex mining processes for them, giving them more time to focus on building their crypto portfolio.\r\n\r\nWith a robust business model encompassing cloud mining, miner hosting, and self-mining, NexoMined is well-positioned to navigate market volatility and facilitate the vertical integration of the global digital asset mining industry.\r\n\r\nStart Now -> https://bit.ly/NexoMIned\r\n\r\nEMBARK ON YOUR MINING ADVENTURE\r\nKickstart Your Cloud Mining Journey in Three Simple Steps\r\n\r\n1st Step: Get a $10 Registration Bonus. The bonus can be used to purchase plans. Once the order is completed, it can be reinvested.\r\n2nd Step: We offer flexible and diverse cloud hash rate plans. Users can freely purchase plans using their crypto portfolios.\r\n3rd Step: Once the order is completed, we will provide computing power to the mining pool, and users can start earning.\r\n\r\nStart Now -> https://bit.ly/NexoMIned',''),(1479,2,330,'7','John Johnson',''),(1480,2,330,'2','john.johnson@gmail.com',''),(1481,2,330,'3','(970) 672-9022',''),(1482,2,330,'6','$40 per hour, regular work\r\n\r\n\r\nHave you ever written short email messages before? \r\n\r\nWe need to talk if you have that skill set.\r\n\r\nWe are currently looking for new beginner-paid remote workers who want to start work right away!\r\n\r\nAll employers hiring through our company are looking for people with no previous experience but are willing to learn. \r\n\r\n\r\n\r\nThese are remote positions, meaning that as long as you can work the required hours, you can work from home.\r\n\r\nClick here to complete your application if interested.\r\n\r\n>> https://3314d6rhpbg17ucafp5h12521w.hop.clickbank.net\r\n\r\n\r\n\r\nIn this position, you will be assigned tasks related to sending promotional email messages about various products and services. \r\n\r\nYou must write in clear English with no errors and provide consistency so we can rely on you to produce many weekly messages.\r\n\r\n\r\nThe rate we offer varies depending on what kind of assignment(s) you\'ll take. Still, generally speaking, \r\n\r\nit ranges between $40-$80 per hour depending on what service(s) they entail and your level of expertise.\r\n\r\n\r\nInterested? Check out this page before completing an application to get everything important!\r\n\r\nBest of luck!',''),(1483,2,331,'7','Kelli Harmon',''),(1484,2,331,'2','seorank@busitoday.co',''),(1485,2,331,'3','(781) 433-0152',''),(1486,2,331,'5','Careers',''),(1487,2,331,'6','Hello, \r\nI\'m Kelli from Busitoday, Busitoday noticed that you have an excellent website meadowcroftwines.com. \r\n\r\nEvery webmaster like you who is serious about their website/business has considered or is considering buying SEO services to grow traffic/sales. \r\n\r\nBut how to find qualified SEO services? If there is a dispute, how do you make sure you can get a refund?\r\n\r\nHere is the solution you need: SEO service providers are verified and praised by webmasters like you, the largest service trading platform in the world to protect your rights and interests, only if you get what you want, the platform will hand over your payment to the service provider  \r\n\r\nService provider example (the highest rating is 5.0):  \r\n	Name: Michael - Starting Price: $5, 4 Days Delivery (22,600 orders completed) - Method: Build 100 high quality and low OBL backlinks for your money site - Webmasters satisfaction rating: 4.9\r\n	  \r\n	Name: Wasim Ashraf - Starting price: $15, 1 Days Delivery (2,800 orders completed) - Method: On-Page SEO For Higher Rankings in Google Search Results - Webmasters satisfaction rating: 5.0  \r\n	...  \r\n	For Super website, Provider – Randys Mccabe is an ex-Googler and has helped 3900 Super websites grow their sites, and webmasters rated him 5.0! Starting Price: $250. Now search for his name within the platform and chat with him online: https://www.busitoday.co/seorank . \r\n\r\nOther services include: writing SEO friendly posts, social media management, sales email copywriting...\r\n\r\nNow sign up for a platform account and grow your traffic: https://www.busitoday.co/seorank \r\n\r\nThank you for your time,  \r\nKelli D. Harmon\r\n\r\n\r\nUNSUBSCRIBE: https://www.busitoday.co/unsubscribe/\r\nAddress: 740 The Pkwy, Richland, WA 99352',''),(1488,2,332,'7','Steven Marek',''),(1489,2,332,'2','sbmarek1@gmail.com',''),(1490,2,332,'3','(414) 659-7646',''),(1491,2,332,'5','Wines',''),(1492,2,332,'6','Have several bottles of wines both Red and White that I am wondering if there is a way to obtain tasting notes.  Especially interested in the maximum time one should cellar some of these reds.',''),(1493,2,333,'7','Frank Alexander',''),(1494,2,333,'2','franka101@gmail.com',''),(1495,2,333,'3','(415) 785-2345',''),(1496,2,333,'5','Wines',''),(1497,2,333,'6','You bring no sense of professionalism or integrity by ignoring the Craigslist posting rules that you agreed to honor when you created your account. First, Craigslist prohibits posts for the sale of wine as well as posting out of your own area and in multiple areas. Also, why would you post wine in the health of beauty category? Again, no integrity or professionalism. All of your posts are being flagged for removal and reported!',''),(1498,2,334,'7','Katherine Brown',''),(1499,2,334,'2','Katherine@guest-post-service.com',''),(1500,2,334,'3','(020) 366-8663',''),(1501,2,334,'5','Customer Service',''),(1502,2,334,'6','Hello,\r\nI found this post and looks good   https://www.atoallinks.com/2024/finding-joy-in-solo-wine-moments/\r\nWould like to know if you need more similar guest posts? You can also forward this to your marketing agency. They can use our database for a boost.\r\nI\'m a guest blogger and I can help them to find more guest blog posts on the relevant website.\r\nWe are eager to hear from you.\r\nThanks\r\nKatherine Brown\r\nWeb Site: https://www. guest-post-service.com\r\nReply with no for removal',''),(1503,2,335,'7','Shelton Bachus',''),(1504,2,335,'2','bachus.shelton@outlook.com',''),(1505,2,335,'3','(415) 693-3789',''),(1506,2,335,'5','Customer Service',''),(1507,2,335,'6','GPTVision AI Clones $5,341/Day Sites With YOUR Affiliate Link\r\n+ 2-Click Free Traffic\r\n\r\nhttps://www.youtube.com/watch?v=_1Tt78oKxHo',''),(1508,2,336,'7','Chris Jameson',''),(1509,2,336,'2','chris@weloantobusinesses.com',''),(1510,2,336,'3','(519) 630-0642',''),(1511,2,336,'5','Influencer Inquiry',''),(1512,2,336,'6','We provide Business Capital in as little as 48 hours!\r\n\r\nWe approve 8.5 out of 10 qualified Small Businesses Every Day. \r\n\r\n510+ Credit score\r\n1+ Year in Business\r\n$5000 in deposits per month. \r\n\r\nCheck us out at: https://WeLoanToBusinesses.com\r\n\r\nChris Jameson',''),(1513,2,337,'7','Tom West',''),(1514,2,337,'2','tomwest754@gmail.com',''),(1515,2,337,'5','Careers',''),(1516,2,337,'6','Hi, Good Afternoon.\r\nAre Your Hiring Full Time or Part Time For Your Company Now?\r\nPlease Let Me Know.\r\nThanks, Tom West',''),(1517,2,338,'7','Samantha Jarvis',''),(1518,2,338,'2','jarvis.samantha@hotmail.com',''),(1519,2,338,'3','(250) 206-6061',''),(1520,2,338,'6','Hi Buddy\r\n\r\n      SiteFlowAI: Turn ur Ideas, Keywords into Stunning Website with AI $17 for lifetime https://www.meadowcroftwines.com/\r\n\r\n      Transform Your Idea Into World-Class Sites In Any Niche & Language In 60 Secs...\r\n       \r\n      Built-In Anti-Threat Cybersecurity Protection Technology: Secures Your Websites From Cyber Attacks & Malware.\r\n\r\n      Add Unlimited Custom Domains & Subdomains Without Any Restrictions.\r\n\r\n      Unlimited Website Hosting On Ultra-Blazing Fast Servers With 100% Uptime Guarantee.\r\n\r\n      Built-In Copywriter: Generate High-Converting Sales Copies, Blog Posts, And Articles For Your Websites...\r\n\r\n      No Monthly fee!\r\n      \r\n      only $17 OneTime Payment     \r\n     \r\n      30 Days 100% Money Back Guarantee\r\n\r\n      \r\n\r\nFor extra info  Visit at: https://bit.ly/3UOdKRF',''),(1521,2,339,'7','Vince Gewalt',''),(1522,2,339,'2','vince.gewalt@citylifestyle.com',''),(1523,2,339,'3','(208) 891-5122',''),(1524,2,339,'5','Media Inquiry',''),(1525,2,339,'6','To whom it may concern, marketing director,\r\n\r\nI am the publisher of the Boise Lifestyle magazine, the largest lifestyle magazine in Idaho. Avelo Airlines will be launching their direct flights from Santa Rosa to Boise on May 1st.\r\n\r\nWith travelers flying into Sonoma County exclusively many will be visiting, and staying in the area for business or leisure. Here is an opportunity for hospitality companies, wineries and others in the wine country to target our readership...I too grew up in the area.\r\n\r\nWe will be reserving ad space for wineries in Sonoma who would like to welcome Boiseans and/or Idahoans to their winery in our May magazine in conjunction with Avelo Airlines maiden flight.......If you would like more details, please email me back.\r\n\r\nAlso below is a list of all of the markets and magazines we have around the country...I can assist you with all including all of our national digital components. Please see www.citylifestyle.com\r\nProfile	\r\nVince Gewalt\r\n\r\nPublisher\r\nYou Matter To Us!\r\n 208-391-5122\r\n vince.gewalt@citylifestyle.com\r\nSCHEDULE A MEETING\r\n \r\n \r\nMagazines\r\nAlabama\r\nBirmingham Lifestyle\r\nCullman City Lifestyle\r\nGulf Coast City Lifestyle\r\nHuntsville City Lifestyle\r\nArizona\r\nAhwatukee City Lifestyle\r\nAnthem City Lifestyle\r\nCatalina Foothills Lifestyle\r\nChandler City Lifestyle\r\nGilbert City Lifestyle\r\nNorth Peoria Lifestyle\r\nParadise Valley City Lifestyle\r\nQueen Creek City Lifestyle\r\nScottsdale City Lifestyle\r\nSurprise City Lifestyle- Coming Soon\r\nTempe City Lifestyle\r\nArkansas\r\nBentonville City Lifestyle- Coming Soon\r\nFayetteville City Lifestyle\r\nLittle Rock City Lifestyle- Coming Soon\r\nCalifornia\r\nConejo Valley Lifestyle\r\nEl Dorado Hills City Lifestyle\r\nFolsom City Lifestyle\r\nOrange City Lifestyle\r\nSanta Barbara Coast City Lifestyle- Coming Soon\r\nSanta Ynez Valley City Lifestyle- Coming Soon\r\nTemecula City Lifestyle\r\nYorba Linda City Lifestyle\r\nColorado\r\nArvada Lifestyle\r\nAurora City Lifestyle- Coming Soon\r\nBoulder Lifestyle\r\nBroomfield Lifestyle\r\nCastle Rock City Lifestyle- Coming Soon\r\nCentennial City Lifestyle- Coming Soon\r\nCherry Creek Lifestyle\r\nColorado Springs Lifestyle\r\nDenver North City Lifestyle\r\nDurango City Lifestyle\r\nFort Collins City Lifestyle\r\nGolden City Lifestyle- Coming Soon\r\nGrand Junction Lifestyle\r\nGreeley Lifestyle\r\nHighlands Ranch City Lifestyle\r\nLongmont City Lifestyle- Coming Soon\r\nLoveland & South Lifestyle\r\nParker City Lifestyle\r\nRoaring Fork City Lifestyle- Coming Soon\r\nThornton City Lifestyle- Coming Soon\r\nWindsor City Lifestyle\r\nConnecticut\r\nDarien New Canaan Lifestyle\r\nFairfield Lifestyle\r\nGlastonbury Lifestyle\r\nGreenwich Lifestyle\r\nRidgefield City Lifestyle\r\nStamford City Lifestyle\r\nWest Hartford Lifestyle\r\nWestport Lifestyle\r\nFlorida\r\nDestin City Lifestyle\r\nGainesville City Lifestyle\r\nLakewood City Lifestyle\r\nNaples City Lifestyle\r\nNew Port Richey City Lifestyle- Coming Soon\r\nOdessa City Lifestyle- Coming Soon\r\nPensacola City Lifestyle\r\nPort St. Lucie City Lifestyle\r\nSt Johns City Lifestyle- Coming Soon\r\nVenice City Lifestyle\r\nWinter Garden City Lifestyle\r\nWinter Park City Lifestyle\r\nGeorgia\r\nAlpharetta City Lifestyle\r\nAugusta City Lifestyle\r\nBuckHaven City Lifestyle\r\nCanton City Lifestyle\r\nChamblee City Lifestyle\r\nDecatur City Lifestyle\r\nEast Cobb City Lifestyle\r\nEvans City Lifestyle\r\nFayette County Lifestyle\r\nJohns Creek City Lifestyle\r\nRoswell City Lifestyle\r\nSOFU Lifestyle\r\nSmyrna Vinings Lifestyle\r\nWoodstock City Lifestyle\r\nHawaii\r\nKona Coast City Lifestyle\r\nIdaho\r\nBoise Lifestyle\r\nMeridian Lifestyle\r\nIllinois\r\nCrystal Lake City Lifestyle\r\nSW Lake Lifestyle\r\nIndiana\r\nCarmel City Lifestyle\r\nGreenwood City Lifestyle\r\nKansas\r\nJohnson County City Lifestyle\r\nLawrence City Lifestyle\r\nManhattan City Lifestyle\r\nMission Hills City Lifestyle\r\nTopeka City Lifestyle\r\nMaine\r\nPortland City Lifestyle\r\nMaryland\r\nFrederick Lifestyle\r\nPotomac Lifestyle\r\nMassachusetts\r\nNorthampton City Lifestyle\r\nWestfield City Lifestyle\r\nMichigan\r\nAda City Lifestyle- Coming Soon\r\nBirmingham City Lifestyle\r\nGrosse Pointe City Lifestyle\r\nMount Clemens City Lifestyle\r\nRochester City Lifestyle- Coming Soon\r\nTroy City Lifestyle\r\nWest Bloomfield City Lifestyle\r\nMinnesota\r\nEagan City Lifestyle\r\nEden Prairie Lifestyle\r\nEdina Lifestyle\r\nLake Minnetonka Lifestyle\r\nMinneapolis Lakes Lifestyle\r\nWaconia City Lifestyle\r\nMissouri\r\nBlue Springs City Lifestyle- Coming Soon\r\nChesterfield City Lifestyle\r\nClayton City Lifestyle\r\nKirkwood City Lifestyle\r\nLeawood City Lifestyle\r\nLee\'s Summit City Lifestyle\r\nNorthland City Lifestyle\r\nSpringfield City Lifestyle- Coming Soon\r\nSt. Charles County City Lifestyle\r\nMontana\r\nBozeman City Lifestyle\r\nMissoula Valley Lifestyle\r\nNebraska\r\nPapillion City Lifestyle\r\nNevada\r\nReno\r\nHenderson City Lifestyle\r\nRed Rock City Lifestyle\r\nSouth Vegas City Lifestyle\r\nNew Hampshire\r\nPortsmouth City Lifestyle\r\nNew Jersey\r\nAsbury Park City Lifestyle- Coming Soon\r\nBridgewater City Lifestyle\r\nChatham & Short Hills City Lifestyle\r\nLong Branch City Lifestyle\r\nMaplewood-South Orange City Lifestyle- Coming Soon\r\nMorris City Lifestyle\r\nNorthwest Bergen Lifestyle\r\nPascack Valley City Lifestyle\r\nScotch Plains City Lifestyle\r\nSomerset Hills City Lifestyle\r\nWayne Lifestyle\r\nWest Orange City Lifestyle\r\nNew Mexico\r\nAlbuquerque City Lifestyle\r\nNew York\r\nAmherst City Lifestyle- Coming Soon\r\nManhattan City Lifestyle\r\nSound Shore City Lifestyle- Coming Soon\r\nStaten Island City Lifestyle\r\nUpper Westchester City Lifestyle\r\nNorth Carolina\r\nSouth Charlotte City Lifestyle\r\nOhio\r\nCanton Lifestyle\r\nCenterville Lifestyle\r\nIndian Hill City Lifestyle- Coming Soon\r\nLoveland Lifestyle\r\nMason & Deerfield Lifestyle\r\nMedina County Lifestyle\r\nNorthwest Columbus City Lifestyle\r\nWest Chester & Liberty Lifestyle\r\nWestlake City Lifestyle\r\nOklahoma\r\nCleveland County City Lifestyle\r\nOKC City Lifestyle\r\nTulsa City Lifestyle\r\nOregon\r\nBend Lifestyle\r\nPennsylvania\r\nMedia City Lifestyle\r\nNewtown City Lifestyle\r\nWest Chester Lifestyle\r\nSouth Carolina\r\nAiken City Lifestyle\r\nCharleston City Lifestyle\r\nLake Murray Lifestyle\r\nRock Hill City Lifestyle- Coming Soon\r\nTennessee\r\nBelle Meade Lifestyle\r\nBellevue City Lifestyle\r\nBrentwood Lifestyle\r\nChattanooga City Lifestyle\r\nFranklin Lifestyle\r\nGallatin Lifestyle\r\nHendersonville Lifestyle\r\nLebanon City Lifestyle\r\nMount Juliet City Lifestyle\r\nMurfreesboro City Lifestyle\r\nMusic City City Lifestyle\r\nRiver City Lifestyle\r\nThompson\'s Station Lifestyle\r\nWest Knoxville Lifestyle\r\nTexas\r\nATX City Lifestyle- Coming Soon\r\nAllen City Lifestyle\r\nAnna City Lifestyle- Coming Soon\r\nAustin Lifestyle\r\nBoerne Lifestyle\r\nCedar Park City Lifestyle\r\nCelina Lifestyle\r\nConroe City Lifestyle\r\nCross Timbers Lifestyle\r\nCypress Lifestyle\r\nDripping Springs City Lifestyle\r\nFrisco City Lifestyle\r\nLakeside City Lifestyle- Coming Soon\r\nMcKinney & Prosper Lifestyle\r\nMemorial Lifestyle\r\nNBTX City Lifestyle\r\nNorthlake City Lifestyle\r\nPark Cities Lifestyle\r\nPlano City Lifestyle\r\nPorter City Lifestyle\r\nPreston Hollow City Lifestyle\r\nRiver Oaks Lifestyle\r\nSouthlake City Lifestyle\r\nSugar Land City Lifestyle- Coming Soon\r\nTexoma City Lifestyle\r\nThe Woodlands City Lifestyle\r\nTrophy West City Lifestyle\r\nWaxahachie City Lifestyle- Coming Soon\r\nWest Austin City Lifestyle\r\nWest Fort Worth Lifestyle\r\nUtah\r\nMillcreek City Lifestyle\r\nSandy City Lifestyle- Coming Soon\r\nSt George City Lifestyle\r\nVirginia\r\nCharlottesville City Lifestyle- Coming Soon\r\nLeesburg Lifestyle\r\nMidlothian Lifestyle\r\nShort Pump City Lifestyle\r\nWashington\r\nBellevue Lifestyle\r\nKirkland Lifestyle\r\nMercer Island City Lifestyle\r\nSnohomish City Lifestyle\r\nSpokane City Lifestyle- Coming Soon\r\nWisconsin\r\nMiddleton City Lifestyle- Coming Soon',''),(1526,2,340,'7','Jill Bruce, Certified Executive Sommelier',''),(1527,2,340,'2','jillbruce1@gmail.com',''),(1528,2,340,'3','(423) 200-6411',''),(1529,2,340,'5','Customer Service',''),(1530,2,340,'6','do you have any distributors in the state of Tennessee or are you DTC only?\r\n\r\nthanks, jill',''),(1531,2,341,'7','Kristin Damron',''),(1532,2,341,'2','damron.kristin@gmail.com',''),(1533,2,341,'5','Influencer Inquiry',''),(1534,2,341,'6','Greetings,\r\n\r\nThat Means You Don’t Have To Create A Product, Fulfil Any Services, Run Ads, \r\nor Do Any Customer Service – And Best of All — You Get To \r\nPartner With Me On Your New 7-Figure Business\r\n\r\n---\r\nLearn More: https://www.youtube.com/watch?v=qUZDw3_AaTQ\r\n---\r\n\r\n\r\n\r\nRegards, \r\nNicholas Madison\r\n\r\n5575 Torp Squares, \r\nHaverhill, Minnesota\r\n\r\n---\r\nUnsubscribe Form: hornoselectricos.online/unsubscribe/\r\n---',''),(1535,2,342,'7','Rebecca Smith',''),(1536,2,342,'2','rs@wingetter.com',''),(1537,2,342,'3','(708) 249-1804',''),(1538,2,342,'6','Attention of Business Owners – Your Health is Your Wealth \r\n\r\nIn the fast-paced world of entrepreneurship, maintaining peak health is key to sustained success. Discover the transformative power of a unique Blue Tonic that\'s creating a buzz on TikTok.\r\n\r\nUsers, including a 46-year-old mom of three from Kansas, credit this tonic for shedding 63 pounds of stubborn fat. Elevate your well-being, enhance your focus, and optimize your business performance.\r\n\r\nExplore the potential of this oriental blue tonic here: https://247medicals.com/bellyfat\r\n\r\nInvest in your health for a more successful and energetic business journey.\r\n\r\nThis oriental blue tonic melt fat overnight\r\n\r\n\r\nYour Health & Wealth\r\nRebecca Smith\r\n247 Medicals Systems\r\nCorporate Health & Wellness Expert\r\n\r\n\r\nDon’t need coporate health & fitness information unsubcribe here https://247globals.com/optout/\r\nSuite 207 Devonshire House, Manor Way, Herts, England, WD6 1QQ',''),(1539,2,343,'7','Sarah Johnson',''),(1540,2,343,'2','sarah@loansforsba.info',''),(1541,2,343,'5','Media Inquiry',''),(1542,2,343,'6','We are offering business loans with the below minimum terms.\r\n\r\n515+ Credit Score(doesn\'t hurt credit to apply)\r\nFunding up to $3,500,000\r\nNo Open Bankruptcies\r\nMust Be a USA LLC or Corporation\r\n1+ Year in Business\r\n$5000 in Deposits per month.\r\n \r\nApprovals happen within 24hours\r\n\r\nApply here: LoansForSBA.info\r\n\r\nSarah Johnson\r\nAccount Representative\r\nLoansForSBA.info',''),(1543,2,344,'7','Loyd Chitwood',''),(1544,2,344,'2','loyd.chitwood@msn.com',''),(1545,2,344,'5','Media Inquiry',''),(1546,2,344,'6','Hello Dear\r\n\r\n      Dear Owner. SelfDrive Get upto 1000GB Storage OneTime Payment Only $19 https://www.meadowcroftwines.com/\r\n\r\n       \r\n      Just OneTime Payment for Lifetime\r\n      No Monthly Payment\r\n\r\n      $19 Only OneTime Payment     \r\n     \r\n      30 Days Money Back Guarantee\r\n\r\n      Free Storage Upto 1000 GB Storage\r\n\r\n      Access Files Anytime, Anywhere Directly From The Cloud On Any Device!\r\n\r\n      Easily Copy, Move Or Migrate Your Files From One Cloud To Another From A Single Dashboard\r\n\r\n      Stop Paying Huge Money Monthly To Big Cloud Storage Platforms Like One Drive, iCloud, Dropbox, Google Drive \r\n\r\n      Get More Online Storage Space Without Paying Single Penny Extra  \r\n\r\nFor extra info  Visit at: https://bit.ly/3u2c0t3',''),(1547,2,345,'7','Josefina Franklin',''),(1548,2,345,'2','franklin.josefina57@msn.com',''),(1549,2,345,'3','(904) 369-3868',''),(1550,2,345,'5','Media Inquiry',''),(1551,2,345,'6','Thought ChatGPT Was Smart? Then This Will Blow Your Socks Off...\r\n\r\nWorld’s First AI Chatbot Is 16X SMARTER Than ChatGPT, By Combining Google & Microsoft’s AI\r\nAnd 6X Faster At: Crafting Sal And Much More!\r\n\r\nAsk Anything, And Get Stunning, Real-Time Answers In 5-10 Seconds!\r\n\r\nRoboChat Is The ONLY App That Fuses Together Google & Microsoft’s AI, Into An Even More Powerful Beast Than ChatGPT\r\n\r\n---\r\nLearn More: https://www.youtube.com/watch?v=okdY7XZDci4\r\n---\r\n\r\n\r\n\r\nRegards, \r\nJoe Nicolson\r\n\r\nApt. 308 819 Violette Greens, \r\nPort Dessieside, KY 96468-1819\r\n\r\n---\r\nUnsub scribe Form: hornoselectricos.online/unsubscribe/\r\n---',''),(1552,2,346,'7','David Reitman',''),(1553,2,346,'2','davereitman1@gmail.com',''),(1554,2,346,'3','(914) 693-9165',''),(1555,2,346,'5','Wines',''),(1556,2,346,'6','I just reserved a free tasting for Saturday, March 2 at 3:30.  The website is demanding my credit card information, which I am not going to give.  Please let me know if my reservation will be honored.',''),(1557,2,347,'7','Maybell Loving',''),(1558,2,347,'2','loving.maybell@gmail.com',''),(1559,2,347,'3','(323) 390-4019',''),(1560,2,347,'5','Careers',''),(1561,2,347,'6','Hi Admin! 1400 Niche Sites - Guest Posting at only $10 for ur Site https://www.meadowcroftwines.com/\r\n\r\nHI Friend\r\n\r\n\r\nI have see that you are purchasing guest posting links for your site https://www.meadowcroftwines.com/. I am also link seller and doing guest bloging for many clients.\r\nYou will get high DA niche sites guest posting at only $10.\r\n\r\n    High DA\r\n    Niches Sites \r\n    Quality Sites\r\n    Fixed Price\r\n    Payment Paypal\r\n\r\nEmail mention in Sheet\r\n\r\nI have attached my google sheets of sites\r\n\r\nVisit: https://bit.ly/3tRldUT\r\nDear Administrator! 1400 Niche Sites - Guest Posting at only $10 for ur Site https://www.meadowcroftwines.com/\r\n\r\nHello Buddy\r\n\r\n\r\nI have see that you are getting guest posting links for your site https://www.meadowcroftwines.com/. I am also link seller and doing guest bloging for many clients.\r\nYou will get high DA niche sites guest posting at only $10.\r\n\r\n    High DA\r\n    Niches Sites \r\n    Quality Sites\r\n    Fixed Price\r\n    Payment Paypal\r\n\r\nEmail mention in Sheet\r\n\r\nI have attached my google sheets of sites\r\n\r\nVisit: https://bit.ly/3tRldUT',''),(1562,2,348,'7','Sidney Smith',''),(1563,2,348,'2','ss@247globals.com',''),(1564,2,348,'3','(866) 780-7070',''),(1565,2,348,'5','Customer Service',''),(1566,2,348,'6','CEO/Managing Partner/Webmaster of meadowcroftwines.com \r\n\r\n\r\nAre you aware that you can increase leads and sales with custom video sales letters or explainer videos for your Business? Please use our calculator at https://tinyurl.com/vidoecalc to receive a quote and enter code \'promo20\' for an additional 20% off.\r\n\r\nThe videos can demonstrate solutions to problems or promote your products and services in a concise way. They can be uploaded to YouTube, embedded on your website, or featured on landing pages.\r\n\r\nAll prices listed above are in USD and include full scripting, voice-over, and video production. Please let me know if you have any other questions!\r\n\r\nRegards,\r\n\r\nSidney Smith\r\n247 Global Services \r\n\r\n\r\nDon’t need Cutting-Edge AI & Technology Knowledge & Skills Opt-Out Here https://247globals.com/optout/\r\nSuite 207 Devonshire House, Manor Way, Herts, England, WD6 1QQ',''),(1567,2,349,'7','Indiana Pettey',''),(1568,2,349,'2','pettey.indiana46@googlemail.com',''),(1569,2,349,'3','(314) 905-7109',''),(1570,2,349,'6','Hi Dear\r\n\r\n      Get UNLIMITED REAL HQ WEB 3.0 Sites BACKLINKS for your site https://www.meadowcroftwines.com/\r\n\r\n      Generate Unlimited HQ Backlinks For Your Blogs, Websites Etc On Autopilot\r\n      \r\n      Get Faster Indexing For Your All Webpages\r\n\r\n      Get More Real Buyer for Sale \r\n \r\n      Only $11.97 One time Payment - Coupon Code = BLINK3\r\n\r\n      No Special Skills or Experience Required\r\n\r\n      Money Back Gurantee\r\n\r\n\r\nFor extra  information  Go at: https://bit.ly/42k0yWs',''),(1571,2,350,'7','Nick Jones',''),(1572,2,350,'2','nj@247globals.com',''),(1573,2,350,'3','(866) 780-7070',''),(1574,2,350,'6','CEO/Managing Partner/Webmaster of meadowcroftwines.com \r\n\r\n\r\nLooking for a free quote to revamp or create your website? Our interactive calculator delivers just that. Click https://tinyurl.com/websitecalc to get started.\r\n\r\n\r\nNick Jones\r\nMTC Global Services \r\n\r\n\r\nDon’t need Cutting-Edge AI & Technology Knowledge & Skills Opt-Out Here https://247globals.com/optout/\r\nSuite 207 Devonshire House, Manor Way, Herts, England, WD6 1QQ',''),(1575,2,351,'7','Jeff Infusino',''),(1576,2,351,'2','jeffinfusino@gmail.com',''),(1577,2,351,'3','(847) 738-8444',''),(1578,2,351,'4','731523',''),(1579,2,351,'5','Wines',''),(1580,2,351,'6','I didn\'t realize that if I ordered 6 bottles instead of 5, shipping would drop from $40 to $15. Can I add a bottle to reduce the shipping? I would prefer to change all my future orders to 6 bottles to take advantage of the $15 shipping. Please let me know if a change would be possible. Thank you and have a good night. Jeff',''),(1581,2,352,'7','Sidney Smith',''),(1582,2,352,'2','ss@247globals.com',''),(1583,2,352,'3','(866) 780-7070',''),(1584,2,352,'5','Influencer Inquiry',''),(1585,2,352,'6','CEO/Managing Partner/Webmaster of meadowcroftwines.com \r\n\r\n\r\nAre you aware that you can increase leads and sales with custom video sales letters or explainer videos for your Business? Please use our calculator at https://tinyurl.com/vidoecalc to receive a quote and enter code \'promo20\' for an additional 20% off.\r\n\r\nThe videos can demonstrate solutions to problems or promote your products and services in a concise way. They can be uploaded to YouTube, embedded on your website, or featured on landing pages.\r\n\r\nAll prices listed above are in USD and include full scripting, voice-over, and video production. Please let me know if you have any other questions!\r\n\r\nRegards,\r\n\r\nSidney Smith\r\n247 Global Services \r\n\r\n\r\nDon’t need Cutting-Edge AI & Technology Knowledge & Skills Opt-Out Here https://247globals.com/optout/\r\nSuite 207 Devonshire House, Manor Way, Herts, England, WD6 1QQ',''),(1586,2,353,'7','Micah Park',''),(1587,2,353,'2','micah.park@gmail.com',''),(1588,2,353,'3','(018) 624-9107',''),(1589,2,353,'5','Media Inquiry',''),(1590,2,353,'6','First 128 Action Takers Get Instant Access To GeminAi Unlimited Commercial License (ONLY for the First 150 Buyers (Worth $1,997) \r\n---\r\nhttps://www.youtube.com/watch?v=OgB1KOSgAOE\r\n---\r\nFor meadowcroftwines.com Owner.',''),(1591,2,354,'7','Nick Jones',''),(1592,2,354,'2','nj@247globals.com',''),(1593,2,354,'3','(866) 780-7070',''),(1594,2,354,'5','Customer Service',''),(1595,2,354,'6','CEO/Managing Partner/Webmaster of meadowcroftwines.com \r\n\r\n\r\nLooking for a free quote to revamp or create your website? Our interactive calculator delivers just that. Click https://tinyurl.com/websitecalc to get started.\r\n\r\n\r\nNick Jones\r\nMTC Global Services \r\n\r\n\r\nDon’t need Cutting-Edge AI & Technology Knowledge & Skills Opt-Out Here https://247globals.com/optout/\r\nSuite 207 Devonshire House, Manor Way, Herts, England, WD6 1QQ',''),(1596,2,355,'7','Sidney Smith',''),(1597,2,355,'2','ss@247globals.com',''),(1598,2,355,'3','(866) 780-7070',''),(1599,2,355,'5','Media Inquiry',''),(1600,2,355,'6','CEO/Managing Partner/Webmaster of meadowcroftwines.com \r\n\r\n\r\nAre you aware that you can increase leads and sales with custom video sales letters or explainer videos for your Business? Please use our calculator at https://tinyurl.com/vidoecalc to receive a quote and enter code \'promo20\' for an additional 20% off.\r\n\r\nThe videos can demonstrate solutions to problems or promote your products and services in a concise way. They can be uploaded to YouTube, embedded on your website, or featured on landing pages.\r\n\r\nAll prices listed above are in USD and include full scripting, voice-over, and video production. Please let me know if you have any other questions!\r\n\r\nRegards,\r\n\r\nSidney Smith\r\n247 Global Services \r\n\r\n\r\nDon’t need Cutting-Edge AI & Technology Knowledge & Skills Opt-Out Here https://247globals.com/optout/\r\nSuite 207 Devonshire House, Manor Way, Herts, England, WD6 1QQ',''),(1601,2,356,'7','Sidney Smith',''),(1602,2,356,'2','ss@247globals.com',''),(1603,2,356,'3','(866) 780-7070',''),(1604,2,356,'6','CEO/Managing Partner/Webmaster of meadowcroftwines.com \r\n\r\n\r\nAre you aware that you can increase leads and sales with custom video sales letters or explainer videos for your Business? Please use our calculator at https://tinyurl.com/vidoecalc to receive a quote and enter code \'promo20\' for an additional 20% off.\r\n\r\nThe videos can demonstrate solutions to problems or promote your products and services in a concise way. They can be uploaded to YouTube, embedded on your website, or featured on landing pages.\r\n\r\nAll prices listed above are in USD and include full scripting, voice-over, and video production. Please let me know if you have any other questions!\r\n\r\nRegards,\r\n\r\nSidney Smith\r\n247 Global Services \r\n\r\n\r\nDon’t need Cutting-Edge AI & Technology Knowledge & Skills Opt-Out Here https://247globals.com/optout/\r\nSuite 207 Devonshire House, Manor Way, Herts, England, WD6 1QQ',''),(1605,2,357,'7','Katherine Brown',''),(1606,2,357,'2','Katherine@guest-post-service.com',''),(1607,2,357,'3','(020) 366-8663',''),(1608,2,357,'5','Customer Service',''),(1609,2,357,'6','Hello,\r\n\r\nI see you\'ve been buying guest posts on many websites. Looks like you could use some more good services. That\'s where we come in.\r\n\r\nWe can help you get more guest posts for relevant blogs at $30 each, including writing the content. If you work with an agency, please connect us with them.\r\n\r\nOur team writes high-quality, well-researched blog posts by experts in your field. We\'ll handle all the details while you focus on your business!\r\n\r\nHere is a few examples of our work:\r\nhttps://usawire.com/super-smash-bros-ultimate/\r\nhttps://original.newsbreak.com/@dicle-belul-1599662/3353315425434\r\nhttps://www.postingtree.com/effective-strategies-for-supporting-a-child-with-dysgraphia/\r\nhttps://techsslash.com/advantages-of-evaporative-cooling-for-homes-businesses/\r\nhttps://entrepreneursbreak.com/balancing-privacy-and-transparency-in-online-review-management.html\r\n\r\nThank you,\r\nKatherine Brown\r\n\r\nWeb Site: https://www.guest-post-service.com\r\nTo Un-subscribe: Reply-with “NO\"',''),(1610,2,358,'7','Steve Kitchens',''),(1611,2,358,'2','kitchens.laurie91@gmail.com',''),(1612,2,358,'3','(337) 302-7225',''),(1613,2,358,'5','Influencer Inquiry',''),(1614,2,358,'6','Is Your Website Not Ranking In Google?\r\nLosing potential customers to competitors? Your website\'s low rankings are costing you valuable leads and revenue.\r\nBoost Your Rankings with Monthly SEO Services!\r\n\r\n>> Benefits:\r\n> Increase Search Engine Rankings\r\n> Drive Targeted Traffic\r\n> Boost Conversions\r\n> 4x Profits\r\n\r\n>> Transform Your Business Today!\r\n>> https://alwaysdigital.co/la/?src=m14meadowcroftwines.com',''),(1615,2,359,'7','Nick Jones',''),(1616,2,359,'2','nj@247globals.com',''),(1617,2,359,'3','(866) 780-7070',''),(1618,2,359,'5','Careers',''),(1619,2,359,'6','CEO/Managing Partner/Webmaster of meadowcroftwines.com \r\n\r\n\r\nLooking for a free quote to revamp or create a new website project? Our interactive calculator delivers just that Click https://tinyurl.com/websitecalc to receive a quote and enter code \'promo20\' for an additional 20% off.\r\n\r\n\r\nNick Jones\r\nMTC Global Services \r\n\r\n\r\nDon’t need Cutting-Edge AI & Technology Knowledge & Skills Opt-Out Here https://247globals.com/optout/\r\nSuite 207 Devonshire House, Manor Way, Herts, England, WD6 1QQ',''),(1620,2,360,'7','Sidney Smith',''),(1621,2,360,'2','ss@247globals.com',''),(1622,2,360,'3','(866) 780-7070',''),(1623,2,360,'5','Customer Service',''),(1624,2,360,'6','CEO/Managing Partner/Webmaster of meadowcroftwines.com \r\n\r\n\r\nAre you aware that you can increase leads and sales with custom video sales letters or explainer videos for your Business? Please use our calculator at https://tinyurl.com/vidoecalc to receive a quote and enter code \'promo20\' for an additional 20% off.\r\n\r\nThe videos can demonstrate solutions to problems or promote your products and services in a concise way. They can be uploaded to YouTube, embedded on your website, or featured on landing pages.\r\n\r\nAll prices listed above are in USD and include full scripting, voice-over, and video production. Please let me know if you have any other questions!\r\n\r\nRegards,\r\n\r\nSidney Smith\r\n247 Global Services \r\n\r\n\r\nDon’t need Cutting-Edge AI & Technology Knowledge & Skills Opt-Out Here https://247globals.com/optout/\r\nSuite 207 Devonshire House, Manor Way, Herts, England, WD6 1QQ',''),(1625,2,361,'7','Sidney Smith',''),(1626,2,361,'2','ss@247globals.com',''),(1627,2,361,'3','(866) 780-7070',''),(1628,2,361,'6','CEO/Managing Partner/Webmaster of meadowcroftwines.com \r\n\r\n\r\nAre you aware that you can increase leads and sales with custom video sales letters or explainer videos for your Business? Please use our calculator at https://tinyurl.com/vidoecalc to receive a quote and enter code \'promo20\' for an additional 20% off.\r\n\r\nThe videos can demonstrate solutions to problems or promote your products and services in a concise way. They can be uploaded to YouTube, embedded on your website, or featured on landing pages.\r\n\r\nAll prices listed above are in USD and include full scripting, voice-over, and video production. Please let me know if you have any other questions!\r\n\r\nRegards,\r\n\r\nSidney Smith\r\n247 Global Services \r\n\r\n\r\nDon’t need Cutting-Edge AI & Technology Knowledge & Skills Opt-Out Here https://247globals.com/optout/\r\nSuite 207 Devonshire House, Manor Way, Herts, England, WD6 1QQ',''),(1629,2,362,'7','Nick Jones',''),(1630,2,362,'2','nj@247globals.com',''),(1631,2,362,'3','(866) 780-7070',''),(1632,2,362,'5','Media Inquiry',''),(1633,2,362,'6','CEO/Managing Partner/Webmaster of meadowcroftwines.com \r\n\r\n\r\nLooking for a free quote to revamp or create a new website project? Our interactive calculator delivers just that https://tinyurl.com/websitecalc to receive a quote and enter code \'promo20\' for an additional 20% off.\r\n\r\n\r\nNick Jones\r\nMTC Global Services \r\n\r\n\r\nDon’t need Cutting-Edge AI & Technology Knowledge & Skills Opt-Out Here https://247globals.com/optout/\r\nSuite 207 Devonshire House, Manor Way, Herts, England, WD6 1QQ',''),(1634,2,363,'7','Sidney Smith',''),(1635,2,363,'2','ss@247globals.com',''),(1636,2,363,'3','(866) 780-7070',''),(1637,2,363,'5','Careers',''),(1638,2,363,'6','CEO/Managing Partner/Webmaster of meadowcroftwines.com \r\n\r\n\r\nAre you aware that you can increase leads and sales with custom video sales letters or explainer videos for your Business? Please use our calculator at https://tinyurl.com/vidoecalc to receive a quote and enter code \'promo20\' for an additional 20% off.\r\n\r\nThe videos can demonstrate solutions to problems or promote your products and services in a concise way. They can be uploaded to YouTube, embedded on your website, or featured on landing pages.\r\n\r\nAll prices listed above are in USD and include full scripting, voice-over, and video production. Please let me know if you have any other questions!\r\n\r\nRegards,\r\n\r\nSidney Smith\r\n247 Global Services \r\n\r\n\r\nDon’t need Cutting-Edge AI & Technology Knowledge & Skills Opt-Out Here https://247globals.com/optout/\r\nSuite 207 Devonshire House, Manor Way, Herts, England, WD6 1QQ',''),(1639,2,364,'7','Nick Jones',''),(1640,2,364,'2','nj@247globals.com',''),(1641,2,364,'3','(866) 780-7070',''),(1642,2,364,'6','CEO/Managing Partner/Webmaster of meadowcroftwines.com \r\n\r\n\r\nLooking for a free quote to revamp or create a new website project? Our interactive calculator delivers just that https://tinyurl.com/websitecalc to receive a quote and enter code \'promo20\' for an additional 20% off.\r\n\r\n\r\nNick Jones\r\nMTC Global Services \r\n\r\n\r\nDon’t need Cutting-Edge AI & Technology Knowledge & Skills Opt-Out Here https://247globals.com/optout/\r\nSuite 207 Devonshire House, Manor Way, Herts, England, WD6 1QQ',''),(1643,2,365,'7','Sidney Smith',''),(1644,2,365,'2','ss@247globals.com',''),(1645,2,365,'3','(866) 780-7070',''),(1646,2,365,'6','CEO/Managing Partner/Webmaster of meadowcroftwines.com \r\n\r\n\r\nAre you aware that you can increase leads and sales with custom video sales letters or explainer videos for your Business? Please use our calculator at https://tinyurl.com/vidoecalc to receive a quote and enter code \'promo20\' for an additional 20% off.\r\n\r\nThe videos can demonstrate solutions to problems or promote your products and services in a concise way. They can be uploaded to YouTube, embedded on your website, or featured on landing pages.\r\n\r\nAll prices listed above are in USD and include full scripting, voice-over, and video production. Please let me know if you have any other questions!\r\n\r\nRegards,\r\n\r\nSidney Smith\r\n247 Global Services \r\n\r\n\r\nDon’t need Cutting-Edge AI & Technology Knowledge & Skills Opt-Out Here https://247globals.com/optout/\r\nSuite 207 Devonshire House, Manor Way, Herts, England, WD6 1QQ',''),(1647,2,366,'7','Nick Jones',''),(1648,2,366,'2','nj@247globals.com',''),(1649,2,366,'3','(866) 780-7070',''),(1650,2,366,'5','Careers',''),(1651,2,366,'6','CEO/Managing Partner/Webmaster of meadowcroftwines.com \r\n\r\n\r\nLooking for a free quote to revamp or create a new website project? Our interactive calculator delivers just that https://tinyurl.com/websitecalc to receive a quote and enter code \'promo20\' for an additional 20% off.\r\n\r\n\r\nNick Jones\r\nMTC Global Services \r\n\r\n\r\nDon’t need Cutting-Edge AI & Technology Knowledge & Skills Opt-Out Here https://247globals.com/optout/\r\nSuite 207 Devonshire House, Manor Way, Herts, England, WD6 1QQ',''),(1652,2,367,'7','Dan Reviews',''),(1653,2,367,'2','reviewteamny@gmail.com',''),(1654,2,367,'3','(310) 651-7271',''),(1655,2,367,'5','Media Inquiry',''),(1656,2,367,'6','Do you need 5-Star Reviews? \r\n\r\nI can help get more customers by boosting your review rating & rankings. \r\n\r\nCall or text me.\r\n\r\n- Dan\r\n(310) 651-7271',''),(1657,2,368,'7','Nick Jones',''),(1658,2,368,'2','nj@247globals.com',''),(1659,2,368,'3','(866) 780-7070',''),(1660,2,368,'6','CEO/Managing Partner/Webmaster of meadowcroftwines.com \r\n\r\n\r\nLooking for a free quote to revamp or create a new website project? Our interactive calculator delivers just that https://tinyurl.com/websitecalc to receive a quote and enter code \'promo20\' for an additional 20% off.\r\n\r\n\r\nNick Jones\r\nMTC Global Services \r\n\r\n\r\nDon’t need Cutting-Edge AI & Technology Knowledge & Skills Opt-Out Here https://247globals.com/optout/\r\nSuite 207 Devonshire House, Manor Way, Herts, England, WD6 1QQ',''),(1661,2,369,'7','Jennifer Obrien',''),(1662,2,369,'2','jenn@dandyreviewaitools.com',''),(1663,2,369,'3','(949) 577-6294',''),(1664,2,369,'6','Hi,\r\n\r\nWant us to help you delete unfair bad reviews from Google, FB, TripAdvisor and other main review sites? \r\nWe noticed Meadowcroft Wines has 8 unfair bad reviews on Google and we can help remove them. That\'s what our AI powered software \r\ndoes without any work needed on your part - and that\'s why some of the largest brands in the world like Wyndham trust us \r\nto consistently remove unfair bad reviews from the main review sites without any work needed on their end. \r\n\r\nDo you have 15 minutes for a call today? \r\n\r\nSchedule a Call Here: getdandy.com/schedule-call-3 or for more information please visit our website: getdandy.com/ai-removal-tool\r\n\r\nYou can also call me directly at (949)-755-7782\r\n\r\nWe’ve removed over 40,000 bad reviews and want to help you too. \r\n\r\nThank you,\r\n\r\nJennifer O\'brien | Director of Reviews\r\nGetdandy\r\nPhone: +1 949-755-7782 | Visit us Online\r\n9891 Irvine Center Drive, Suite #200, Irvine, CA 92618',''),(1665,2,370,'7','Abi',''),(1666,2,370,'2','contentwriting011994@outlook.com',''),(1667,2,370,'3','(858) 687-7915',''),(1668,2,370,'5','Careers',''),(1669,2,370,'6','Hello,\r\n\r\nI\'m Abi, an English SEO copywriter and content writer. I excel in crafting blogs, articles, e-commerce product descriptions, SEO content, website content, business service descriptions, newsletter content, brochures, proofreading, social media captions, LinkedIn content, and SOPs.\r\n\r\nMy rate is USD 40 for every 1000 words of content. If you don\'t have time to plan out your content, we can help you with that. \r\n\r\nFeel free to email me at Contentwriting011994@outlook.com with any current requirements.\r\n\r\nThanks,\r\n\r\nAbi',''),(1670,2,371,'7','Charles Ellzey',''),(1671,2,371,'2','charles.ellzey69@outlook.com',''),(1672,2,371,'3','(680) 446-1056',''),(1673,2,371,'5','Media Inquiry',''),(1674,2,371,'6','Are you okay running your business without much funds? This could slow down growth and delay returns on your business.\r\n\r\nNow you have the Opportunity to Fund your Busineses and Projects without stress and without the burden of repayment as our interest in first for the growth of your business and projects, and for your to arrive at your desired business goals and dreams.\r\n\r\nTake advantage of our Funding opportunity and get funded on your business and Projects within days and have an ample number of years/Loan Term Period which gives you time to grow and achieve your business goals.\r\n\r\nGive us a call on:\r\n+852 3008 8373, \r\nor write us at:\r\ninfo@capitalfund-hk.com',''),(1675,2,372,'7','Genie Coe',''),(1676,2,372,'2','coe.genie@yahoo.com',''),(1677,2,372,'3','(310) 751-5970',''),(1678,2,372,'5','Media Inquiry',''),(1679,2,372,'6','Hi there,\r\n\r\nMy name is Genie from Monkey Digital, \r\n\r\nAllow me to present to you a lifetime revenue opportunity of 35%\r\nThat\'s right, you can earn 35% of every order made by your affiliate for life.\r\n\r\nSimply register with us, generate your affiliate links, and incorporate them on your website, and you are done. It takes only 5 minutes to set up everything, and the payouts are sent each month.\r\n\r\nClick here to enroll with us today:\r\nhttps://www.monkeydigital.org/affiliate-dashboard/\r\n\r\nThink about it, \r\nEvery website owner requires the use of search engine optimization (SEO) for their website. This endeavor holds significant potential for both parties involved.\r\n\r\nThanks and regards\r\nGenie Coe\r\nMonkey Digital',''),(1680,2,373,'7','Milagro Joseph',''),(1681,2,373,'2','milagro.joseph@hotmail.com',''),(1682,2,373,'3','(660) 499-8466',''),(1683,2,373,'6','Hi Friend\r\n\r\n      Rank Vault: Ranks Any Site on the 1st Page of Google https://www.meadowcroftwines.com/\r\n       \r\n      Creates Unlimited Backlinks To ANY Site You Want\r\n\r\n      Finds 1000s of Keywords You Can Rank For\r\n\r\n      Cloud App – There’s nothing to install\r\n\r\n      Keywords Search\r\n\r\n      Website Analysis\r\n\r\n      Create Backlinks\r\n\r\n      Create Content\r\n      \r\n      Sell SEO Services to your Clients\r\n\r\n      No Monthly fee!\r\n      \r\n      only $12.95 OneTime Payment     \r\n     \r\n      30 Days Money Back Guarantee\r\n\r\n      \r\n\r\nFor other  information  Visit at: https://bit.ly/42Lsy5j',''),(1684,2,374,'7','Jennifer Obrien',''),(1685,2,374,'2','jenn@dandyreviewaitools.com',''),(1686,2,374,'3','(949) 577-6294',''),(1687,2,374,'5','Customer Service',''),(1688,2,374,'6','Hi,\r\n\r\nOne of the biggest secrets the review sites don’t want Meadowcroft Wines to know - simply removing unfair bad reviews has a huge, almost immediate, \r\nimpact on your ratings and ranking in local search. With Meadowcroft Wines having 8 on Google, this impact is huge.  \r\nThat means more customers choose you over your competitors - there’s a reason some of the biggest brands use Dandy. \r\n\r\nDo you have 15 minutes for a call today? \r\n\r\nSchedule a Call Here: getdandy.com/schedule-call-3 or for more information please visit our website: getdandy.com/ai-removal-tool\r\n\r\nYou can also call me directly at (949)-755-7782\r\n\r\nWe’ve removed over 40,000 bad reviews and want to help you too. \r\n\r\nThank you,\r\n\r\n\r\nJennifer O\'brien | Director of Reviews\r\nGetdandy\r\nPhone: +1 (949)-755-7782| Visit us Online\r\n9891 Irvine Center Drive, Suite #200, Irvine, CA 92618',''),(1689,2,375,'7','Joe Celine',''),(1690,2,375,'2','joe@seo-indepth.com',''),(1691,2,375,'5','Customer Service',''),(1692,2,375,'6','Hi, \r\nAre you still in business? \r\nI found a few errors on your site.\r\nWould you like me to send over a screenshot of those errors?\r\n\r\nRegards\r\nJoe\r\n(714) 908-9255',''),(1693,2,376,'7','Tom West',''),(1694,2,376,'2','tomwest754@gmail.com',''),(1695,2,376,'5','Media Inquiry',''),(1696,2,376,'6','Hi, Good Afternoon.\r\nAre Your Hiring Full Time or Part Time For Your Company Now?\r\nPlease Let Me Know.\r\nThanks, Tom West',''),(1697,2,377,'7','Kevin James',''),(1698,2,377,'2','gates.carol@gmail.com',''),(1699,2,377,'3','(520) 892-4594',''),(1700,2,377,'5','Media Inquiry',''),(1701,2,377,'6','If you\'re a content creator, it\'s essential to stay ahead in the fast-evolving digital landscape, and \r\n\r\nAI tools are the game changers you can\'t afford to miss. Imagine transforming your creative process with the top five AI tools designed specifically for content creation. \r\n\r\nThese cutting-edge tools harness the power of artificial intelligence to revolutionize everything from idea generation to content optimization, making your workflow more efficient and your content more engaging.  https://bit.ly/5AIToolsforContentCreation\r\n\r\nWhether you\'re a writer, marketer, or multimedia artist, embracing these AI innovations will not only save you time but also elevate the quality and impact of your work. \r\n\r\nDon\'t let the digital wave overtake you; dive into the future of content creation with these must-have AI tools!\r\n\r\nhttps://bit.ly/5AIToolsforContentCreation',''),(1702,2,378,'7','Leonida Werfel',''),(1703,2,378,'2','werfel.leonida14@googlemail.com',''),(1704,2,378,'3','(660) 284-1919',''),(1705,2,378,'5','Media Inquiry',''),(1706,2,378,'6','This Small Investment Of $133 Banked Us  $634 With No Work Required\r\n\r\nMore: https://777qiuqiu.online/CryptoCowboys',''),(1707,2,379,'7','Katherine Brown',''),(1708,2,379,'2','Katherine@guest-post-service.com',''),(1709,2,379,'3','(020) 366-8663',''),(1710,2,379,'5','Customer Service',''),(1711,2,379,'6','Hello,\r\n\r\nApologies for any inconvenience caused. We invite your company to join our guest blogging initiative to enhance brand awareness and SEO.\r\n\r\nFor $30 per post, we can help secure guest posts on pertinent blogs. Feel free to share this with your SEO agency for potential collaboration.\r\n\r\nInterested in samples? Visit: Add-domain.\r\n\r\n\r\nThanks\r\nKatherine Brown\r\nWeb Site: https://www.guest-post-service.com\r\n\r\nTo Unsubscribe, Reply \"NO\"',''),(1712,2,380,'7','Carroll EU Business',''),(1713,2,380,'2','contact@ebrupdate.org',''),(1714,2,380,'3','(338) 270-5165',''),(1715,2,380,'5','Media Inquiry',''),(1716,2,380,'6','Hello,\r\n\r\nUpdate your information for the EU Business Registry 2024 edition!\r\n\r\nUpdating is free of charge.\r\n\r\nTo confirm your details, visit https://EBRupdate.org now!\r\n\r\nRegards,\r\n\r\nEBR - Data Maintenance Division',''),(1717,2,381,'7','Vaishnavi Todkar',''),(1718,2,381,'2','vaishnavit@fermion.in',''),(1719,2,381,'3','(959) 402-1724',''),(1720,2,381,'4','NA',''),(1721,2,381,'5','Influencer Inquiry',''),(1722,2,381,'6','I\'m Vaishnavi Todkar from Fermion, a software development company that specializes in crafting successful e-commerce solutions for businesses like yours. \r\n\r\nWe recently helped Invino, a wine retailer, achieve impressive results through a custom-built platform. Their challenges were the same as many wine retailers face: a user-friendly website, an inventory system which performs on demand, and offering a seamless customer experience to support efficiently. \r\n\r\nOur solution for Invino included: \r\n\r\nA user-friendly website for smooth navigation and product discovery \r\n\r\nReal-time inventory tracking for accurate stock levels and informed sales decisions \r\n\r\nSecure payment processing for a trustworthy buying experience \r\n\r\nPersonalized recommendations to boost customer satisfaction and sales \r\n\r\nThe outcome? Invino saw a significant increase in sales, improved customer experience, and streamlined inventory management. \r\n\r\nWe\'re confident Fermion can add similar value for Meadowcroft Wines. Would you be interested in a brief 10-minute call this week to discuss your specific needs and how we can help you elevate your wine sales online? \r\n\r\nLooking forward to connecting! \r\n\r\nVaishnavi Todkar',''),(1723,2,382,'7','Phil Stewart',''),(1724,2,382,'2','noreplyhere@aol.com',''),(1725,2,382,'3','(342) 123-4456',''),(1726,2,382,'5','Influencer Inquiry',''),(1727,2,382,'6','Interested in maximizing your reach? You\'re reading this message and I can get others to read your ad the exact same way! Drop me an email below to learn more about our services and start spreading your message effectively!\r\n\r\nP. Stewart\r\nEmail: rqrevg@gomail2.xyz\r\nSkype: live:.cid.2bc4ed65aa40fb3b',''),(1728,2,383,'7','Georgina Haynes',''),(1729,2,383,'2','georginahaynes620@gmail.com',''),(1730,2,383,'3','(519) 689-8920',''),(1731,2,383,'6','Hi,\r\n\r\nWe\'d like to introduce to you our explainer video service, which we feel can benefit your site meadowcroftwines.com.\r\n\r\nCheck out some of our existing videos here:\r\nhttps://www.youtube.com/watch?v=8S4l8_bgcnc\r\nhttps://www.youtube.com/watch?v=bWz-ELfJVEI\r\nhttps://www.youtube.com/watch?v=Y46aNG-Y3rM\r\nhttps://www.youtube.com/watch?v=hJCFX1AjHKk\r\n\r\nAll of our videos are in a similar animated format as the above examples, and we have voice over artists with US/UK/Australian accents. We can also produce voice overs in languages other than English.\r\n\r\nThey can show a solution to a problem or simply promote one of your products or services. They are concise, can be uploaded to video sites such as YouTube, and can be embedded into your website or featured on landing pages.\r\n\r\nOur prices are as follows depending on video length:\r\nUp to 1 minute = $259\r\n1-2 minutes = $379\r\n2-3 minutes = $489\r\n\r\n*All prices above are in USD and include a full script, voice-over and video.\r\n\r\nIf this is something you would like to discuss further, don\'t hesitate to reply.\r\n\r\nKind Regards,\r\nGeorgina',''),(1732,2,384,'7','Erin Niedoba',''),(1733,2,384,'2','bigurthanu33@verizon.net',''),(1734,2,384,'3','(443) 608-9229',''),(1735,2,384,'5','Customer Service',''),(1736,2,384,'6','I have a reservation for Saturday and was wondering if there is any food for purchase?',''),(1737,2,385,'7','Margart Dawes',''),(1738,2,385,'2','dawes.margart@yahoo.com',''),(1739,2,385,'3','(794) 165-8557',''),(1740,2,385,'5','Careers',''),(1741,2,385,'6','Hi Team at https://www.meadowcroftwines.com/inquiry/\r\n\r\nI got your website through a Google search.\r\nI tried calling your phone number but it was unsuccessful.\r\n\r\nI\'ve noticed technical issues with your website, Let me know if you would like me to address those.\r\n\r\nYou can reply with an active phone number and your available time.\r\n\r\nBest,\r\nJason\r\ninfo@localmarketinggeeks.org',''),(1742,2,386,'7','Danny Jenkin',''),(1743,2,386,'2','danny.jenkin@yahoo.com',''),(1744,2,386,'3','(774) 628-6230',''),(1745,2,386,'6','1-Click GPT-4 Vision CLONES $5k/Day Sites\r\n --- \r\nLearn More --- \r\nhttps://x.com/Michell00929212/status/1770670905963725043?s=20meadowcroftwines.com',''),(1746,2,387,'7','Martha Bastoni Messana',''),(1747,2,387,'2','martha@bastonivineyards.com',''),(1748,2,387,'3','(707) 539-4813',''),(1749,2,387,'5','Wines',''),(1750,2,387,'6','Tom,\r\nWe have Zinfandel fruit available—DuPratt on St. George rootstock. These grapes have won countless awards and medals for Carol Shelton Wines, and other winemakers. Pricing is $2,200. per ton delivered to Sonoma County. The vineyards were  planted in 2005 and we follow sustainable grape growing practices and are certified Fish Friendly Farming. We are members of the California Agricultural Heritage Club and Sonoma County Century Ranch.\r\n\r\nHistory:\r\nThe property was purchased in 1905 by my grandfather and was planted to a field blend of Zin, Petite Sirah, Carignane and Golden Chasselas  among others. He and my father would plow using a horse and two mules. They delivered grapes to the wineries in lug boxes. Now we mow with a tractor and deliver in half ton bins. All vine work was and is still done by hand\r\n\r\nIf you\'re interested, please give us a call. You are welcome to come to see the vineyards.\r\n\r\nCheers,\r\n\r\nMartha (Bastoni) Messana\r\nBastoni Vineyards\r\n2020 Riebli Road\r\nSanta Rosa, CA 95404\r\n707-539-4813\r\nmartha@bastonivineyards.com',''),(1751,2,388,'7','richard dowell',''),(1752,2,388,'2','rd3535353@gmail.com',''),(1753,2,388,'3','(707) 881-7333',''),(1754,2,388,'5','Customer Service',''),(1755,2,388,'6','Hello, We extend our kind interest to make a purchase of some items in your facility, Before we proceed, Can you please answer the following questions ;\r\n\r\n1. Do you accept Master and Visa credit card payment\r\n\r\n2. Do you accept private pick up by our forwarder ?\r\n\r\n3. Can you send me your price sheet or catalog?\r\n\r\nI will be waiting for your quick response.\r\n\r\nRegards',''),(1756,2,389,'7','Rosalyn Dingle',''),(1757,2,389,'2','rosalyn.dingle@outlook.com',''),(1758,2,389,'3','(786) 879-9563',''),(1759,2,389,'5','Customer Service',''),(1760,2,389,'6','Become financially independent with us!\r\nPrices for food, rent and other expenses are rising and rising.\r\nWhere will it end?\r\nWith us you get a high, lifelong immediate pension!\r\nNever worry about money again!\r\n\r\nGo to our website https://www.club4you.net/1709711160 watch the info video (click on your flag below the video to watch it in your language), then register for free and start to earn passively thousands of dollars every month!\r\nIn the last 5 years, over 2 million people have become financially independent with us!\r\nYou can too, because it couldn\'t be easier!\r\nYou can also send us an email and you will get further information:\r\nbecome.free.with30dollars@gmail.com',''),(1761,2,390,'7','Dyan Pulido',''),(1762,2,390,'2','pulido.dyan@gmail.com',''),(1763,2,390,'6','Get a FREE Reputation Video for your online platforms! We transform your 5-star reviews into SEO-rich content, ensuring visibility on Google\'s front page. The catch? Simply refer 3 others to receive the video, and they\'ll enjoy a 80% discount. http://free-rep-videos.info',''),(1764,2,391,'7','Kimberly Maurin',''),(1765,2,391,'5','Wines',''),(1766,2,392,'7','Kimberly Maurin',''),(1767,2,392,'2','kmaurin@mac.com',''),(1768,2,392,'3','(505) 320-7836',''),(1769,2,392,'5','Customer Service',''),(1770,2,392,'6','We were at your tasting room in Sonoma this weekend, and one of my friends purchased the Meadowcroft candle And I was wanting to pick one up online also. I don’t see those on your website, or on your online store. How would I go about getting one shipped to me.?',''),(1771,2,393,'7','Rana',''),(1772,2,393,'2','socialmedia1145@outlook.com',''),(1773,2,393,'3','(614) 238-6672',''),(1774,2,393,'5','Media Inquiry',''),(1775,2,393,'6','Hi, This is Rana. I\'m reaching out to offer my expertise in social media management, including strategic calendar planning, captivating post creation as per your business, e-commerce product promotion, SEO-friendly social media captions, and design services such as brochures, posters, and flyers tailored to enhance your brand\'s social media presence and engage your audience effectively. \r\n\r\nMy rate is USD 20 per hour. I can provide you a fixed quote as per your requirements. \r\n\r\nDrop me an email at socialmedia1145@outlook.com to discuss it further.',''),(1776,2,394,'7','Jared Timperley',''),(1777,2,394,'2','jared.timperley@gmail.com',''),(1778,2,394,'3','(565) 342-9971',''),(1779,2,394,'6','Howdy!\r\n\r\nIt\'s been some time, but I came across an article online about meadowcroftwines.com and felt compelled to reach out to disprove this nonsense. \r\n\r\nIt appears like there\'s some rumors circulating that could be harmful to your reputation. \r\nKnowing how quickly rumors can spiral and hoping not you to be taken by surprise, I felt the need to inform you.\r\n\r\nHere\'s the source of the info:\r\n\r\nhttps://ibit.ly/BCauA		\r\n\r\nI hope it\'s all a simple confusion, but I thought it best you should know!\r\n\r\ntalk to you soon,\r\nJared',''),(1780,2,395,'7','Noah Thrall',''),(1781,2,395,'2','noah@printingpeach.net',''),(1782,2,395,'3','(888) 587-2383',''),(1783,2,395,'5','Media Inquiry',''),(1784,2,395,'6','My name is Noah. I\'m the print sales manager for a company called Printing Peach ... something like Vistaprint only much much better :-) better prices and enormously better quality. Free shipping too.\r\n\r\nWe provide too many different print products to list them, but we do all the typical marketing materials such as Flyers, leaflets, business cards. We do clothing as well.\r\n\r\nThis is our website. https://printingpeach.net/deals/\r\n\r\nPricing for just about everything is listed on the site but if you don\'t see what you need just email me and I\'ll send a quote.\r\n\r\nHave a great day!',''),(1785,2,396,'7','Vai',''),(1786,2,396,'2','businessgrowtogether@outlook.com',''),(1787,2,396,'3','(790) 159-5457',''),(1788,2,396,'5','Media Inquiry',''),(1789,2,396,'6','Hi, \r\n\r\nThis is Vai. I am a bookkeeper. I can categorize your transactions of incomes/expenses and can handle bank reconciliations. I can work on any software that you use for accounting. \r\n\r\nMy rates are USD 10 per hour. Reply me on Businessgrowtogether@outlook.com to discuss further.',''),(1790,2,397,'7','Beryl McGeorge',''),(1791,2,397,'2','mcgeorge.beryl@outlook.com',''),(1792,2,397,'3','(358) 118-2014',''),(1793,2,397,'5','Influencer Inquiry',''),(1794,2,397,'6','The easiest way to Increase your Cash Flow – without spending a dime!\r\n\r\nAre you looking to elevate your organization\'s financial standing and drive unprecedented success? Look no further! Our exclusive program offers an average of $500 in annual savings per W2 employee, providing your business with significant tax incentives and improved cash flow. Call 1-800-683-1978 or go to www.profits2024.com for details.',''),(1795,2,398,'7','Mammie Kroll',''),(1796,2,398,'2','kroll.mammie@hotmail.com',''),(1797,2,398,'3','(623) 415-5324',''),(1798,2,398,'5','Influencer Inquiry',''),(1799,2,398,'6','Is meadowcroftwines.com struggling with creating engaging content and managing social media effectively?\r\n\r\nLook no further than AIFollow – the ultimate solution for seamless social media management and content creation.\r\n\r\nAIFollow is a game-changing platform integrating seamlessly with your social media accounts, providing a centralized space for content creation, scheduling, and engagement enhancement.\r\n\r\n-- AI-Powered Content Creation --\r\n\r\nEffortlessly craft captivating posts with our AI Playground tools like \"Create from News\" (curated news relevant to your business). \"Ask AI To Write\" (generate content with specific prompts). \"Create from Google Search\" (Google Insights from your Audience) \"Create from Raw Content, and many more!\r\n\r\n-- Scheduling & Automation --\r\n\r\nMaximize efficiency by planning and automating posts across major platforms like Facebook, Instagram, Twitter, LinkedIn, Medium, Pinterest and TikTok\r\n\r\n-- AIFollow\'s Analytics Feature --\r\n\r\nComprehensive view of data and statistics across various social media platforms, helping you make informed decisions and optimize your strategy.\r\n\r\n-- Explore Diverse Topics --\r\n\r\nThe Playground allows you to seamlessly explore and generate content ideas directly from the editor! Never run out of inspiration!\r\n\r\n-- Verified Facts & Stats --\r\n\r\nGet access to cited facts and statistics that lend credibility and authority to your articles. Elevate your content with verified data!\r\n\r\n-- Understand Your Audience --\r\n\r\nAIFollow\'s AI understands your audience\'s intents, helping you tailor your content to resonate with your readers. Deliver what they seek!\r\n\r\n-- Address Audience Queries --\r\n\r\nwhat questions your audience has? AIFollow\'s Playground identifies these, aiding you in creating content that truly connects! Answering their needs!\r\n\r\nGet Lifetime Access to AIFollow today!\r\nhttps://bit.ly/AIFollowrLifetimeAccess\r\n\r\nDive into the realm of creativity with AIFollow\'s AI image generation feature. Unleash the power of artificial intelligence to craft visually stunning images that captivate your audience and elevate your brand. Generate compelling visuals tailored to your unique style and voice.\r\n\r\nYou can also explore the expansive Media Gallery through AIFollow\'s intuitive Explore feature. Immerse yourself in a curated collection of videos, GIFs, and images, selected to enhance your social media presence. From engaging your audience with captivating videos to choosing the perfect image for your next post, Followr.ai provides a rich resource for managing and elevating your content strategy across a variety of social media platforms.\r\n\r\nElevate your social media game with AIFollow – where innovation meets creativity\r\n\r\nWith our Analytics module, you can effortlessly access vital insights about your posts. Here are some key metrics you can expect:\r\n\r\nImpressions: Measure how visible your content is to your audience.\r\n\r\nEngagement: Understand your connection with your audience by tracking likes, comments, and shares.\r\n\r\nEngagement Rate: Unveil the effectiveness of your content in engaging your followers.\r\n\r\nPost Count: Keep an eye on your posting frequency and content strategy.\r\n\r\nUnlock a world of creativity with AIFollow\'s Media Templates feature. Dive into our extensive collection of thoughtfully curated templates, offering you a diverse range of options to craft engaging and visually appealing content for your social networks. Elevate your social media presence with ease, thanks to the versatility and convenience provided by this feature\r\n\r\nSmart Scheduling and Automation with Seamless Social Media Integration\r\n\r\nConnect with and effortlessly manage all your accounts in one centralized hub.\r\n\r\nFacebook\r\nInstagram\r\nTwitter\r\nPinterest\r\nLinkedIn\r\nMedium\r\nTikTok\r\nTake the hassle out of posting. Our robust calendar and automation tools allow you to schedule and post content across multiple platforms at the perfect times, optimizing engagement.\r\n\r\nGet Lifetime Access to AIFollow today!\r\nhttps://bit.ly/AIFollowrLifetimeAccess',''),(1800,2,399,'7','Margart Cormier',''),(1801,2,399,'2','margart.cormier@gmail.com',''),(1802,2,399,'3','(943) 291-8482',''),(1803,2,399,'6','It\'s been some time since we last communicated, but I just got emailed a very negative opinon online about meadowcroftwines.com and thought it important to email you guys to validate this article. \r\n\r\nIt appears like there\'s some unfavorable news that could be potentially damaging. \r\nKnowing how fast misinformation can spread and hoping not you to be unprepared, I felt the need to notify you.\r\n\r\nHere\'s the source of the info:\r\n\r\nhttps://ibit.ly/A8Nv7		\r\n\r\nMy hope is it\'s all a mix-up, but it seemed prudent you should know!\r\n\r\nBest,\r\nMargart Cormier',''),(1804,2,400,'7','Sam',''),(1805,2,400,'2','creativeteamhire@outlook.com',''),(1806,2,400,'3','(321) 422-3176',''),(1807,2,400,'6','Hello there, Are you looking for a Creative Graphic Designer? I am Sam and I have managed over 700 clients to date globally.  I can help you with any kind of Brochure design like a Company profile, eBook, PDF Lead magnet, Tri-fold / Bi-Fold brochure, Flyer, Poster, White paper, Any kind of Infographic design, PowerPoint and Google slide, Company brand guideline, logo, business card, letterhead, etc. Book cover design, Social media post design, Packaging and label design, Website design etc. \r\n\r\nShare your requirements on Creativeteamhire@outlook.com and I will provide you pricing after that.',''),(1808,2,401,'7','Juanita Correa',''),(1809,2,401,'2','correa.juanita@yahoo.com',''),(1810,2,401,'3','(681) 666-0428',''),(1811,2,401,'6','Hi there, my name is Cody Griner. I apologize for using your contact form, \r\nbut I wasn\'t sure who the right person was to speak with in your company. \r\nWe have a patented application that creates Local Area pages that rank on \r\ntop of Google within weeks, we call it Local Magic.  Here is a link to the \r\nproduct page https://www.mrmarketingres.com/local-magic/ . The product \r\nleverages technology where these pages are managed dynamically by AI and \r\nit is ideal for promoting contractors on Google.  Can I share a testimonial \r\nfrom one of our clients with you?  I can also do a short zoom to \r\nillustrate their full case study if you have time for it? \r\ncody@mrmarketingres.com 843-720-7301',''),(1812,2,402,'7','Robin Cash',''),(1813,2,402,'2','reelins@busitoday.co',''),(1814,2,402,'3','(916) 565-5425',''),(1815,2,402,'5','Careers',''),(1816,2,402,'6','Hey,\r\n\r\nIf you ever tried to get followers on Facebook, Youtube, Instagram you know how HARD, TIME TAKING, and EXPENSIVE it can be.\r\n\r\nThe only way to become successful was to drop everything else - create 5-20 high-quality content EVERYDAY, for maybe 2-3 years, then luckily you might get 10K-50K followers\r\n\r\nBut NOT Anymore!    The Biggest Reel-VOLUTION of 2024 is here..\r\n\r\nIf you know how to EXPLOIT Instagram & FB FAVOURITISM for reel...\r\n\r\n...   you can drive 100,000s maybe millions of visitors, grow your subs, followers to 10k-100k or more in just weeks!\r\n\r\n==> Get ReelRampage AI (see Results here): https://www.busitoday.co/reelins \r\n\r\nImagine posting 15-30 sec videos, getting MILLIONS of free viewers, followers, fame - with ZERO budget & ads.\r\n\r\nAll you need is this “secret sauce” AI tech.. Which helps you quickly and easily create 100s of HYPER-ADDICTIVE Instagram Reels in minutes..\r\n\r\nThen follow the STEP BY STEP process and watch your stats skyrocket. (private training & strategies included)\r\n\r\nSee the kind of results kids, newbies, everyday people are getting with Reels:\r\n\r\n\"7.7 Millions Views Posting Affiliate Offers\"\r\n\"4.5 Millions Views Posting eCom Products\"\r\n\"421K Views Posting Just Images As Reels\"\r\n\"10.4 Millions Views Posting Other People Videos\"\r\n\r\nIf you are ready to get an UNFAIR Advantage..and EXPLOIT Instagram & FB for 10s of THOUSANDs of subs, followers in days..    grab ReelRampage AI now.\r\n\r\n==> Get your copy here: https://www.busitoday.co/reelins \r\n\r\nTalk soon,\r\nRobin Cash\r\n\r\n\r\nUNSUBSCRIBE: https://www.busitoday.co/unsubscribe \r\nAddress: 2048 County Line Road\r\nWinter Haven, FL 33830',''),(1817,2,403,'7','Olivia Smith',''),(1818,2,403,'2','seoprovider.official@outlook.com',''),(1819,2,403,'3','(000) 000-0000',''),(1820,2,403,'5','Media Inquiry',''),(1821,2,403,'6','Hi,\r\n\r\n\r\nGreetings of the day!\r\nJust had a look at your website, and it\'s cool. But here\'s the scoop – it\'s not Ranking 1st page on Google as much as it could.\r\n\r\nI\'m Olivia, here to help out. We\'re offering a free SEO check to see where your website stands now and where we can take it. I\'ve worked with over 250 businesses, making them Google stars without the big price tag.\r\n\r\nWould you be interested in a Free SEO report and Full details?\r\n\r\n\r\nThank You,\r\nOlivia',''),(1822,2,404,'7','Marguerite Cornett',''),(1823,2,404,'2','cornett.marguerite10@outlook.com',''),(1824,2,404,'3','(773) 629-1741',''),(1825,2,404,'5','Careers',''),(1826,2,404,'6','How This Record Sold Over 1,000,000 Copies (Becoming The FIRST \'Spoken Word\' Record To Go Gold) With No Advertising... \r\n\r\nAnd How This Lost Message Can Change Your Life FOREVER!\r\n\r\nLearn more: https://bit.ly/lost-message\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nUnsubscribe and Opt out:\r\nhttps://bit.ly/website-opt-out',''),(1827,2,405,'7','Jennifer Obrien',''),(1828,2,405,'2','jenn@dandyreviewaitools.com',''),(1829,2,405,'3','(949) 577-6294',''),(1830,2,405,'5','Customer Service',''),(1831,2,405,'6','Hi, \r\n\r\nAre you sure you don’t want us to remove those 8 of unfair reviews on your Google page for Meadowcroft Wines? \r\n\r\nThat\'s what our AI powered software does without any work needed on your part  - and that\'s why some of the largest brands in the world like Wyndham trust us to consistently remove unfair bad reviews from the main review sites without any work needed on their end. \r\n\r\nDo you have 15 minutes for a call today? \r\n\r\nSchedule a Call Here: getdandy.com/schedule-call-3 or for more information please visit our website: getdandy.com/ai-removal-tool\r\n\r\nYou can also call me directly at 949-755-7782\r\n\r\nWe’ve removed over 40,000 bad reviews and want to help you too. \r\n\r\nThank you,\r\n\r\nJennifer O\'brien | Director of Reviews\r\nGetdandy\r\nPhone: +1 949-755-7782 | Visit us Online\r\n9891 Irvine Center Drive, Suite #200, Irvine, CA 92618',''),(1832,2,406,'7','James Gillette',''),(1833,2,406,'2','james_gillette@gmail.com',''),(1834,2,406,'3','(873) 869-5722',''),(1835,2,406,'6','hey\r\n\r\nIt\'s been a while, but I recently stumbled upon a warning article online about meadowcroftwines.com and thought it was important to message you guys to disprove this article. \r\n\r\nIt appears like there\'s some negative press that could be detrimental. \r\nUnderstanding how quickly rumors can spiral and not wanting you to be taken by surprise, I decided to inform you.\r\n\r\nHere\'s where I found the info:\r\n\r\nhttps://ibit.ly/-YOkH		\r\n\r\nI hope it\'s all a mix-up, but I thought it best you should know!\r\n\r\ncya later,\r\nJames',''),(1836,2,407,'7','Ashley  Patel',''),(1837,2,407,'2','hyros.wisebases@gmail.com',''),(1838,2,407,'6','Dear,\r\nhttps://hyros.savvyzones.com/hyrosmarketing\r\nVerified results: Ryan tripled revenue monthly with $20k/m ad spend; Dan gained 3x profit in 72 hours; Douglas doubled revenue in 90 days. For those spending $5k/m but maintaining $40k sales, HYROS  is the answer. \r\nNo sales pitch; it\'s fact – no payment unless results are on HYROS within 90 days. \r\n\r\n-To unsubscribe, reply \"unsubscribe\"-',''),(1839,2,408,'7','Rick Camacho',''),(1840,2,408,'2','rick.camacho@googlemail.com',''),(1841,2,408,'5','Media Inquiry',''),(1842,2,408,'6','Is the thought of making payroll every two weeks causing you undue stress? I can fix that, let me show you how. Send me an email below now.\r\n\r\nElizabeth Miller\r\nWorking Capital Loan Specialist\r\n295 Seven Farms Drive\r\nSuite C- 201\r\nCharleston, SC 29492\r\nwww.HelloRatesFastFunding.com\r\nelizabeth.miller@helloratesfastfunding.com',''),(1843,2,409,'7','Alphonso Faison',''),(1844,2,409,'2','alphonso.faison@gmail.com',''),(1845,2,409,'3','(312) 928-1399',''),(1846,2,409,'5','Careers',''),(1847,2,409,'6','Did you hear about the SETC (sick leave and family leave tax credit) program that the IRS is closing after April 15th, 2024? \r\nThis is the same CARE program as the stimulus check that was mailed to your house during COVID. \r\nYou can receive up to $511 per person per day (up to $32,220) that you couldn’t work during the pandemic. \r\n\r\nDon’t miss your COVID tax credit: \r\nCall Kerry at 480-790-9186\r\nEmail Kerry at duc@directfunder.com\r\nOr watch the explanation here: https://taxcreditfunder.com/en/',''),(1848,2,410,'7','Austin Crompton',''),(1849,2,410,'2','austin.crompton@gmail.com',''),(1850,2,410,'3','(363) 287-2310',''),(1851,2,410,'5','Customer Service',''),(1852,2,410,'6','I hope this message finds you well. Memories of our time together keep flooding my mind. Having you in my life has brought so much joy and excitement.You can see my photos in the attachments.\r\nAs time goes by, my feelings for you deepen. I discover that I\'m more and more drawn to you. The spark between us is unmistakable.The visuals are included in the attachments.\r\nI hold dear the times we\'ve shared. Feeling your touch sends a thrill through me. I eagerly anticipate to our next encounter.My photos are included in the attachments.\r\nMy life is happier with you in it. Your smile, I can\'t help but mirror your smile. When you laugh, it\'s a beautiful melody that warms my heart.Explore my multimedia content included herein.\r\nI thank my lucky stars for you. You are the missing puzzle piece of my life. I can\'t wait for our next rendezvous.Take a look at the videos I\'ve attached.\r\nAs the days go by, my affection for you grows deeper. You are the spark that ignites my passion. I yearn to embrace you.I\'ve added my pictures for your consideration.\r\nI can\'t stop thinking about you. You\'re the first thing I think of when I wake up. Before I sleep, you\'re my final thought.Take a look at the multimedia files included.\r\nI cherish the moments we\'ve shared. The thought of you puts a smile on my lips. I eagerly anticipate our next meeting.Attached are the visuals I mentioned.\r\nYou bring immense happiness into my life. Spending time with you lightens up my days. I eagerly await our next reunion.Attached are the visuals I mentioned.\r\nMy heart beats faster when I think of you. Your affection ignites a passionate fire burning in my soul. I can\'t wait to be in your arms.Enjoy my video materials attached herein.\r\nEverything in my life is better with you in it. You make me a better person. I\'m counting the days until I see you again.Kindly review the images in the attachment.\r\nYou\'re always on my mind. Hearing you speak is like a soothing melody. I eagerly await the sound of your laughter.Check out the videos I\'ve included.\r\nI\'m grateful for your affection. You are my missing piece. I can\'t wait to be in your arms.Check the attachments for the visuals.\r\nAs time goes on, my love for you becomes more profound. You are the spark that kindles my desire. I can\'t wait to hold you close.Take a look at the visuals I\'ve included.\r\nI often find myself staring at your picture. The way you smile constantly reminds me of the happiness you bring into my world. I can\'t wait to see that smile in person.Watch my multimedia content attached herein.\r\nYou are the light of my life. Being with you brings warmth to my days. I\'m eagerly looking forward to the warmth of your presence.Witness my multimedia files in the attachment.\r\nYou set my heart aflutter. Your thoughtfulness warms my heart. I eagerly await the touch of your kindness.Explore the multimedia materials attached.\r\nI\'m grateful for our love. Our love burns brightly that can never be put out. I\'m eagerly looking forward to the passion of our love.Enjoy the attached multimedia materials.\r\nYou are my inspiration. Your spirit inspire my own imagination. I\'m looking forward to our next collaborative project.Enjoy the attached multimedia materials.\r\nYou complete my puzzle. The link between us can\'t be broken. I eagerly anticipate our connection.Check out the videos included in this message.\r\nYou\'re my dearest friend. Your friendship is invaluable to me. I\'m looking forward to the companionship of my closest friend.View my video materials in the attachment.\r\nYou are the one I confide in. Your advice is priceless to me. I can\'t wait to seek your advice again.Videos attached – take a look!\r\nYou provide me with stability. Your presence keeps me grounded. I long to be anchored by you once more.Attached are the visuals I mentioned.\r\nYou are my motivation. Your determination fuels my own goals. I eagerly await our shared aspirations.Attached are the visuals I mentioned.\r\nYou are my sunshine on a cloudy day. Your optimism brings light to my life. I eagerly await the light you bring into my life.My videos are attached for your convenience.\r\nYou are my superstar. Your achievements motivate me to pursue my own dreams. I\'m looking forward to pursuing our dreams together.Kindly review the images in the attachment.\r\nYou are my tranquility. Your calming influence quiets my mind. I can\'t wait to experience your calming influence again.Witness my multimedia files in the attachment.\r\nYou are my adventure partner. Your wanderlust motivates my own desire for adventure. I can\'t wait to embark on new adventures with you.Enclosed are the visuals we discussed.\r\nYou are my favorite dance partner. Your grace encourage me to dance. I eagerly await our next dance.Enclosed, you\'ll find my photo collection.\r\nYou are my culinary partner. Your taste encourage me to cook. I eagerly await our next culinary adventure.Check out the images I\'ve included.\r\nYou are my movie marathon buddy. Your cinematic knowledge motivate me to explore new films. I can\'t wait to watch movies with you again.My videos are attached for your consideration.\r\nYou are my literary companion. Your reading habits inspire me to read more. I eagerly await our next book club meeting.My videos are enclosed for your viewing.\r\nYou are my hiking partner. Your love for the outdoors motivate me to hike. Enclosed, you\'ll find my photo collection.\r\nI trust your day is going great. I just had to send you a message. Our discussions have been on my thoughts.Check out the visuals in the attached files.\r\nI must confess that I\'ve been thoroughly enjoying our exchanges. Your words tend to captivating my attention. My multimedia files are attached herein.\r\nYou\'ve piqued my interest. I\'m interested in learning more about you. I\'ve included the visuals for your review.\r\nThere\'s a certain spark you\'ve ignited in me. I find our discussions stimulating. I\'d love to explore our connection further. Check out the videos I\'ve included.\r\nI find your words deeply resonating with me. I feel a connection with your spirit. I\'d love to continue this journey with you. Check the attached multimedia files.\r\nThere\'s a certain chemistry between us. I\'m captivated by your presence. I\'m eager to explore where this connection might take us. I\'ve included the visuals for your review.\r\nYour thoughts and ideas intrigue me. I\'m drawn to your intellect. I\'d love to delve deeper into our intellectual connection. Take a moment to see my multimedia materials.\r\nYour sense of humor brings a smile to my face. Your wit is truly amusing. I\'m eager to enjoy more laughter with you. See the videos included for your interest.\r\nYou\'re a captivating mystery. I\'m curious to unravel your layers. Take a look at the videos I\'ve attached.\r\nYour passions and interests are intriguing. Your enthusiasm is captivating. I\'d love to explore our common interests. Check out my attached video content.\r\nYour presence in my life has been a pleasant surprise. I appreciate the bond we\'ve built. I\'ve included the visuals for your review.\r\nWith each interaction, my fascination with you grows. I\'m looking forward to the journey ahead. Witness my visual content in the attachment.\r\nYou\'re constantly on my thoughts. I eagerly await our chats. Explore the multimedia content enclosed.\r\nListening to your voice is like enjoying a beautiful melody. I\'m eager to listen to your voice again. Take a look at the videos attached herewith.\r\nI appreciate the bond we\'ve built. Our talks mean a lot to me. Attached are my videos for your viewing.\r\nEvery time we talk, my feelings for you deepen. I\'m looking forward to the journey ahead. Explore the multimedia content I\'ve attached.\r\nI find myself drawn to you. I\'m eager to see where this attraction takes us. See the videos attached for your interest.\r\nYou\'ve brought so much joy into my life. I\'m excited for our chats. Attached are the visuals we talked about.\r\nMy heart races for you. I\'m excited about the thrills our connection might bring. Attached are the visuals I mentioned.\r\nYou\'re my ray of sunshine. I\'m looking forward to our future encounters. Attached are the visuals we talked about.\r\nI\'m drawn to your energy. I\'m eager to explore this energy. See the attached videos for more information.\r\nYou\'ve ignited a passionate fire within me. I\'m eager for more fiery moments with you. Explore the attached video files.\r\nI can\'t help but gaze at your photo. I\'m excited to see more of you. Kindly review the images in the attachment.\r\nYour smile is captivating. I can\'t help but smile back when I see your smile. View my multimedia files in the attachment.\r\nYou\'re always on my mind. I find myself looking forward to our conversations. Videos enclosed for your consideration.\r\nI\'m thankful for your presence in my life. I\'m looking forward to our discussions. Witness my multimedia files in the attachment.\r\nEvery time we talk, my feelings for you deepen. I\'m looking forward to the journey ahead. Witness my attached video content.\r\nI\'m irresistibly attracted to you. I\'m excited about the possibilities ahead. Attached are videos for your enjoyment.\r\nMy life is happier with you in it. I\'m looking forward to our discussions. Explore the visuals included in the attachments.\r\nYou make my heart race. I\'d love to experience more moments that make my heart race. See the attached videos for more information.\r\nYou\'ve brought sunshine into my life. I eagerly await the moments we share. Multimedia files enclosed for you.\r\nI\'m drawn to your energy. I\'d love to explore this connection. Watch my videos included herein.\r\nYou\'ve set my passions on fire. I\'m looking forward to the fiery connection between us. Explore the videos included in this message.\r\nYour photo captivates my attention. I\'m eager to explore your photo collection. Witness my multimedia files in the attachment.\r\nYour smile is captivating. Your smile has a way of making me smile in return. Explore the multimedia content I\'ve attached.\r\nI appreciate the bond we\'ve built. Our interactions are precious to me. I\'ve included the visuals in the attachments.\r\n\r\nhttps://777qiuqiu.online/LOVEYOU/',''),(1853,2,411,'7','Phil Stewart',''),(1854,2,411,'2','noreplyhere@aol.com',''),(1855,2,411,'3','(342) 123-4456',''),(1856,2,411,'5','Influencer Inquiry',''),(1857,2,411,'6','Hey there, ready to take your ad game to the next level? Imagine your message popping up in website contact forms all over the world, reaching heaps of potential customers! Starting at just under $100, our affordable packages pack a punch. Shoot me an email now to chat more about getting your brand out there! Let\'s make some noise together!\r\n\r\nPhil Stewart\r\nEmail: hwlwt4@mail-to-form.xyz\r\nSkype: form-blasting',''),(1858,2,412,'7','Camilla Whitford',''),(1859,2,412,'2','camilla_whitford@gmail.com',''),(1860,2,412,'3','(749) 981-5829',''),(1861,2,412,'5','Careers',''),(1862,2,412,'6','hi!\r\n\r\nIt has been quite some time, but I recently stumbled upon an article online about meadowcroftwines.com and thought it important to email you guys to validate this nonsense. \r\n\r\nIt appears like there\'s some rumors circulating that could be harmful to your reputation. \r\nBeing aware of how fast misinformation can spread and not wanting you to be caught off guard, I decided to warn you.\r\n\r\nHere\'s where I found the info:\r\n\r\nhttps://ibit.ly/Cnm9O		\r\n\r\nMy hope is it\'s all a misunderstanding, but I believed it necessary you should know!\r\n\r\ntalk to you soon,\r\nCamilla',''),(1863,2,413,'7','Amy Galavis',''),(1864,2,413,'2','amy@thelistbox.com',''),(1865,2,413,'3','(515) 427-1358',''),(1866,2,413,'5','Wines',''),(1867,2,413,'6','Hi,\r\n \r\nI hope you are doing great today.\r\n \r\nI wanted to reach out to you and check if you would be interested in acquiring a database of Wine Industry. \r\n\r\nWe have the complete contact details of Wine Buyers, Wine Retailers, Wine wholesalers, Distributors, Winemaker, Grape Grower ,Cellar Staff, Viticulturist ,Maintenance Engineer, Supervisor, Fitter, Vineyard Manager, Vineyard Staff ,Eating and Drinking Places, Business owners, Caterers and Retail stores selling wine, Night Clubs, Hotels and Bars, Event Companies arranging wine tours and many more.\r\n\r\nIf yes, then let me know the specific sector or industry you are interested in and we will send you a sample file of companies and their contacts with complete contact information such as Business email, Phone number, Names and Mailing address etc. of each executive.\r\n \r\nKindly update me with your target audience/list requirements in the below blanks:\r\n \r\nTarget Industries: ______________\r\nTarget Titles: ______________\r\nTarget Geography: _____________\r\n \r\nBest Regard,\r\nAmy Galavis\r\n\r\nReply as \"Unsubscribe\" if you don\'t want to hear from us anymore.',''),(1868,2,414,'7','Olivia Smith',''),(1869,2,414,'2','seoprovider.official@outlook.com',''),(1870,2,414,'3','(000) 000-0000',''),(1871,2,414,'6','Hi,\r\n\r\n\r\nGreetings of the day!\r\nJust had a look at your website, and it\'s cool. But here\'s the scoop – it\'s not Ranking 1st page on Google as much as it could.\r\n\r\nI\'m Olivia, here to help out. We\'re offering a free SEO check to see where your website stands now and where we can take it. I\'ve worked with over 250 businesses, making them Google stars without the big price tag.\r\n\r\nWould you be interested in a Free SEO report and Full details?\r\n\r\n\r\nThank You,\r\nOlivia',''),(1872,2,415,'7','Kat',''),(1873,2,415,'2','kvan401@yahoo.com',''),(1874,2,415,'3','(707) 603-9229',''),(1875,2,415,'5','Customer Service',''),(1876,2,415,'6','Hi, Do you offer industry tastings?\r\nThank you',''),(1877,2,416,'7','Patrick Roland',''),(1878,2,416,'2','patrick_roland@gmail.com',''),(1879,2,416,'3','(217) 333-5113',''),(1880,2,416,'6','hey, jsut a warning\r\n\r\nIt\'s been a while since our last conversation, but I just got emailed a warning article online about meadowcroftwines.com and immediately needed to reach out to disprove this review. \r\n\r\nIt looks like there\'s some unfavorable news that could be harmful to your reputation. \r\nKnowing how easily stories can get out of hand and not wanting you to be caught off guard, I felt the need to notify you.\r\n\r\nHere\'s where I came across the info:\r\n\r\nhttps://ibit.ly/BOdn6		\r\n\r\nI hope it\'s all a mix-up, but I believed it necessary you should know!\r\n\r\ncya later,\r\nPatrick',''),(1881,2,417,'7','Natalie  Roberts',''),(1882,2,417,'2','courses.wisebases@gmail.com',''),(1883,2,417,'5','Influencer Inquiry',''),(1884,2,417,'6','Dear,\r\nKait landed $150k in credit at 0% interest for 12 months. But here\'s the real kicker: her company pocketed $450k in credit cards. You\'ve heard about credit before, right? But no one discloses the secret sauce for swiftly building it without personal guarantees. Wave goodbye to conventional bank loans; utilize interest-free credit to elevate your investments, business endeavors, and much more. Learn the ropes—for free!\r\nhttps://courses.savvyzones.com/will-roundtree-credit-mastery-course5\r\n\r\nSincerely.\r\n-To unsubscribe, please reply \"unsubscribe\" at unsubscribe.wisebases@gmail.com -',''),(1885,2,418,'7','Olivia Smith',''),(1886,2,418,'2','seoprovider.official@outlook.com',''),(1887,2,418,'3','(000) 000-0000',''),(1888,2,418,'5','Influencer Inquiry',''),(1889,2,418,'6','Hi,\r\n\r\n\r\nGreetings of the day!\r\nJust had a look at your website, and it\'s cool. But here\'s the scoop – it\'s not Ranking 1st page on Google as much as it could.\r\n\r\nI\'m Olivia, here to help out. We\'re offering a free SEO check to see where your website stands now and where we can take it. I\'ve worked with over 250 businesses, making them Google stars without the big price tag.\r\n\r\nWould you be interested in a Free SEO report and Full details?\r\n\r\n\r\nThank You,\r\nOlivia',''),(1890,2,419,'7','Yvonne Allie',''),(1891,2,419,'2','allie.yvonne5@gmail.com',''),(1892,2,419,'5','Influencer Inquiry',''),(1893,2,419,'6','Need working capital for your business but not sure where to start? I can help, reply to me below and I\'ll show you how\r\n\r\nElizabeth Miller\r\nWorking Capital Loan Specialist\r\n295 Seven Farms Drive\r\nSuite C- 201\r\nCharleston, SC 29492\r\nwww.HelloRatesFastFunding.com\r\nelizabeth.miller@helloratesfastfunding.com',''),(1894,2,420,'7','Kimberly Cochran',''),(1895,2,420,'2','gettraffic@earnmorenow.info',''),(1896,2,420,'5','Careers',''),(1897,2,420,'6','Hey meadowcroftwines.com,\r\n\r\nWish you could get floods of traffic with just a click?       Today is your lucky day!       We\'re launching something so big, it\'s going to change the game forever.\r\n\r\nImagine directing a tsunami of eager visitors straight to your website.       Our upcoming launch is making waves, and our community is buzzing with excitement.\r\n\r\nSecure your spot now.       Dive in, and let the traffic tsunami boost your sales to sky-high levels!\r\n\r\nDon\'t wait – the wave is coming.       Buy now and ride the traffic tsunami to success!\r\n\r\nClick Here: https://www.earnmorenow.info/gettraffic\r\n\r\nBest,\r\nKimberly Cochran\r\n\r\n\r\nUNSUBSCRIBE: https://www.earnmorenow.info/unsubscribe\r\nAddress: 4348 Ridenour Street\r\nFort Lauderdale, FL 33301',''),(1898,2,421,'7','Robert Campbell',''),(1899,2,421,'2','profitcourse@vaulemedia.com',''),(1900,2,421,'3','(905) 284-1179',''),(1901,2,421,'5','Customer Service',''),(1902,2,421,'6','Hi meadowcroftwines.com,\r\n\r\nEver wondered, \"What if Udemy and ChatGPT had a baby?\"     Well, ponder no more!\r\n\r\nMeet CourseMateAi, the revolutionary eLearning platform that\'s about to change the game: https://www.vaulemedia.com/profitcourse \r\n\r\nImagine owning your very own academy.     That\'s right, YOUR academy.     With CourseMateAi, it\'s not just a dream;     it\'s your new reality.\r\n\r\nBut wait, it gets even better.     CourseMateAi harnesses the power of AI technology to create courses on literally any topic you can think of.     Yes, ANY topic.     The possibilities?     Endless.\r\n\r\nThe best thing is, you get to keep 100% of the profits!\r\n\r\nWith CourseMateAi, you\'re not just an instructor;     you\'re a pioneer and leader in the world of eLearning.\r\n\r\nYou can now harness the power of AI to build your own academy with courses in any niche,and make a lot of dollars.\r\n\r\nYes, the AI creates the courses too.     Check out the demo here and join today: https://www.vaulemedia.com/profitcourse \r\n\r\nRight now, it\'s super affordable during the launch special, but due to high demand they plan to increase the price to a monthly subscription for those who join later.     So don\'t wait, check it out now!\r\n\r\nTo your success,\r\n\r\nRobert Campbell\r\n\r\n\r\nUNSUBSCRIBE: https://www.vaulemedia.com/unsubscribe \r\nAddress: 669 Fleming Street\r\nMontgomery, AL 36104',''),(1903,2,422,'7','Jerome Espitia',''),(1904,2,422,'2','coinz@moregold.xyz',''),(1905,2,422,'3','(706) 616-6512',''),(1906,2,422,'5','Media Inquiry',''),(1907,2,422,'6','Hey meadowcroftwines.com, \r\n\r\nHow would you like to get Bitc0in and ethereum from the comfort of your own home?\r\n\r\nBut without all the headaches:\r\n\r\nNo trading it..\r\nNo buying it..\r\nNo mining it…\r\n\r\nInstead, what if you could get it at no cost?\r\n\r\nWith nothing but your phone or computer?\r\n\r\nIt’s all possible with this brand new system..\r\n\r\n=>> Click Here To See How It’s Done: https://www.moregold.xyz/coinz \r\n\r\nThis is seriously creative..\r\n\r\nCool..\r\n\r\nAnd most importantly it WORKS!\r\n\r\nYou’ve got to give this a try..\r\n\r\n=>> Click Here To Receive Bitc0in: https://www.moregold.xyz/coinz \r\n\r\nYou’re going to love this one :)\r\n\r\nMy best,\r\nJerome Espitia\r\n\r\n\r\nUNSUBSCRIBE: https://www.moregold.xyz/unsubscribe \r\nAddress: 2294 Hazelwood Avenue\r\nWest Des Moines, IA 50266',''),(1908,2,423,'7','Olivia Smith',''),(1909,2,423,'2','seoprovider.official@outlook.com',''),(1910,2,423,'3','(000) 000-0000',''),(1911,2,423,'5','Careers',''),(1912,2,423,'6','Hi,\r\n\r\n\r\nGreetings of the day!\r\nJust had a look at your website, and it\'s cool. But here\'s the scoop – it\'s not Ranking 1st page on Google as much as it could.\r\n\r\nI\'m Olivia, here to help out. We\'re offering a free SEO check to see where your website stands now and where we can take it. I\'ve worked with over 250 businesses, making them Google stars without the big price tag.\r\n\r\nWould you be interested in a Free SEO report and Full details?\r\n\r\n\r\nThank You,\r\nOlivia',''),(1913,2,424,'7','Theresa Smith',''),(1914,2,424,'2','roxie.foti@yahoo.com',''),(1915,2,424,'5','Customer Service',''),(1916,2,424,'6','Hello,\r\n\r\nDo you sometimes find yourself in a tug of war between work and fitness? We have the perfect solution for you - Elebands! \r\n\r\nElebands offers ultra-thin, fashionable all day wearable body weight bands that seamlessly integrate into your daily routine. Burn up to 1,500 calories a day by simply wearing our bands on your wrist, ankle, and waist while you go about your normal day.\r\n\r\nThe best part is we have full body weight sets ranging from 3 lbs – 30 lbs to ensure optimal results no matter what your fitness goals are. \r\n\r\nPlus! We have bands for sports, casual, and formal occasions that you can wear with any outfit, ensuring you stay stylish while achieving your fitness goals.\r\n\r\nWith Elebands, you no longer have to choose between work and exercise. Our body weight bands enable you to lose weight and get fit regardless of your location or activity. Enjoy these instant benefits:\r\n\r\n1. Burn Calories: Effortlessly burn up to 1,500 calories daily, toning your body as you go about your day.\r\n\r\n2. Natural Weight Loss: Say goodbye to intense workouts and stressful diets. Elebands helps you lose weight naturally.\r\n\r\n3. Build Strength: Develop lean muscles and enhance your strength as you carry out your regular activities.\r\n\r\nImagine achieving your dream body without stepping foot in a gym or following a strict diet plan. With Elebands, it\'s possible.\r\n\r\nMany of our clients are losing 2-3 pounds per week while experiencing significant health improvements. To get started visit our website now at https://bit.ly/elebands-news and embrace the Elebands experience.\r\n\r\nLet Elebands be your partner in achieving a fit and healthy lifestyle. Start your transformation today!\r\n\r\nWarm regards,\r\n\r\nTheresa Smith\r\nBrand Ambassador\r\nElebands USA\r\n\r\nVisit our website NOW!   https://bit.ly/elebands-news',''),(1917,2,425,'7','Marita Bronner',''),(1918,2,425,'2','bronner.marita@googlemail.com',''),(1919,2,425,'3','(776) 580-0962',''),(1920,2,425,'5','Media Inquiry',''),(1921,2,425,'6','Hello,\r\n\r\nWe noticed your domain: meadowcroftwines.com is listed in very few directories.\r\n\r\nDirectories have a very high Page Rank Score and provide really good back links\r\n\r\nCompany visit us on Company Registar and list your domain in all the directories.\r\n\r\nhttps://meadowcroftwines.companyregistar.org/meadowcroftwines.com',''),(1922,2,426,'7','German',''),(1923,2,426,'2','meadowcroftwines.com@gmx.com',''),(1924,2,426,'3','(125) 907-8287',''),(1925,2,426,'4','1259078287',''),(1926,2,426,'5','Customer Service',''),(1927,2,426,'6','Morning \r\n\r\nI wanted to reach out and let you know about our new dog harness. It\'s really easy to put on and take off - in just 2 seconds - and it\'s personalized for each dog. \r\nPlus, we offer a lifetime warranty so you can be sure your pet is always safe and stylish.\r\n\r\nWe\'ve had a lot of success with it so far and I think your dog would love it. \r\n\r\nGet yours today with 50% OFF: https://caredogbest.com\r\n\r\nFREE Shipping - TODAY ONLY! \r\n\r\nBest Wishes, \r\n\r\nGerman',''),(1928,2,427,'7','Cortney Gottlieb',''),(1929,2,427,'2','marketing@pcxresponder.com',''),(1930,2,427,'3','(374) 078-9619',''),(1931,2,427,'6','Hi,\r\n\r\nI hope this email finds you well. I wanted to reach out to you today to discuss logo products and apparel for your business.\r\n\r\nQuick question: Who would be the best contact to discuss your company logo products and apparel such as:\r\n\r\n-Printed T-shirts\r\n-Logo mugs\r\n-Branded water bottles\r\n-Custom USB flash drives\r\n-Logo pens\r\n-plus 300,000 other products for your business\r\n\r\nhttps://meadowcroftwines.marketingeee.com/\r\n\r\nWith over two decades of experience in the promotional products industry, our company is dedicated to helping businesses like yours leave a lasting impression.\r\n\r\nOur wide range of custom-branded merchandise is designed to elevate your brand, foster customer loyalty, and drive sales.\r\n\r\nFrom captivating trade show giveaways to thoughtful employee incentive programs and impressive corporate gifts, we have the expertise to create unique promotional items tailored to your specific needs. Our team of promo product specialists will guide you through the entire process, from selecting the perfect items for your business to designing and creating custom logos that speak to your brand identity.\r\n\r\nAs your one-stop-shop for branded merchandise, we ensure top-quality finished products are delivered right to your doorstep, making the process seamless and hassle-free.\r\n\r\nLet\'s connect and explore how our promotional products can enhance your brand awareness and fuel business growth. \r\n\r\n\r\nThank you for your time, and we look forward to hearing from you soon.\r\n\r\nBest regards,\r\nCreative Specialist\r\nBranded Products\r\nhttps://meadowcroftwines.marketingeee.com/',''),(1932,2,428,'7','Lucienne Newdegate',''),(1933,2,428,'2','newdegate.lucienne@yahoo.com',''),(1934,2,428,'3','(928) 168-9227',''),(1935,2,428,'5','Careers',''),(1936,2,428,'6','Browse thousands of best selling dropshipping products from US/EU dropshipping suppliers.\r\n\r\nhttps://marketersmentor.com/trending\r\n\r\nEach best selling product has a track record of sales and is backed by fast shipping and quality suppliers. \r\n\r\nWith new best sellers weekly, you’ll find everything you need to skyrocket your online sales.\r\n\r\nCheck out all the trending dropshipping products \r\nand see whats selling fast now: https://marketersmentor.com/trending\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nUnsubscribe\r\nhttps://marketersmentor.com/unsubscribe',''),(1937,2,429,'7','Tom Lutes',''),(1938,2,429,'2','tom.lutes@yahoo.com',''),(1939,2,429,'3','(795) 659-3152',''),(1940,2,429,'6','Browse thousands of best selling dropshipping products from US/EU dropshipping suppliers.\r\n\r\nhttps://marketersmentor.com/trending\r\n\r\nEach best selling product has a track record of sales and is backed by fast shipping and quality suppliers. \r\n\r\nWith new best sellers weekly, you’ll find everything you need to skyrocket your online sales.\r\n\r\nCheck out all the trending dropshipping products \r\nand see whats selling fast now: https://marketersmentor.com/trending\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nUnsubscribe\r\nhttps://marketersmentor.com/unsubscribe',''),(1941,2,430,'7','Layla Harman',''),(1942,2,430,'2','harman.layla@gmail.com',''),(1943,2,430,'3','(701) 185-0550',''),(1944,2,430,'5','Media Inquiry',''),(1945,2,430,'6','Have you recently experienced a mysterious drop in website traffic?\r\n\r\nYou’re not alone. Google’s Helpful Content Update (HCU) has shaken things up, leaving many websites struggling to rank. But fear not! This comprehensive guide is here to be your hero.\r\n\r\nPresenting -> Mastering Google HCU Recovery: The Ultimate Guide to Reclaim Your Lost Traffic\r\n\r\nWritten in a clear and engaging style, this book is your one-stop shop for understanding and recovering from the HCU. Inspired by his successful approach, author breaks down complex SEO concepts into easy-to-grasp steps.\r\n\r\nAccess Mastering Google HCU Recovery: The Ultimate Guide, here\r\nhttps://bit.ly/3JhYrJI\r\n\r\nInside, you’ll discover:\r\n\r\nThe core principles of HCU: Learn what Google prioritizes in content, including user-focus, E-A-T (Expertise, Authoritativeness, and Trustworthiness), relevance, freshness, and website usability.\r\n\r\nActionable strategies to navigate the update: No more confusion! This book provides clear steps for analyzing backlinks, optimizing keywords, crafting HCU-friendly content, and leveraging AI ethically.\r\n\r\nCombating manipulative practices: Discover how to avoid search ranking spam and focus on creating high-quality content that genuinely informs and engages your audience.\r\n\r\nThe power of Information Gain: This revolutionary concept helps you understand what truly valuable information your target audience craves. Learn how to implement this strategy to create content that attracts and retains visitors.\r\n\r\nPractical measurement techniques: Stop guessing and start measuring! The book equips you with tools to track your progress and ensure your HCU recovery efforts are successful.\r\n\r\nCoping with the emotional rollercoaster: Let’s face it, dealing with website traffic loss can be stressful. This guide offers guidance on overcoming frustration, confusion, discouragement, and uncertainty.\r\n\r\nDon’t let Google’s update leave your website in the dust!\r\n\r\nMastering Google HCU Recovery is your key to getting back on track, attracting qualified traffic, and achieving long-term SEO success.\r\n\r\nGrab your copy today and reclaim your rightful place at the top of search results!\r\n\r\nhttps://bit.ly/3JhYrJI\r\n\r\n-- Table of Contents: --\r\n\r\nUnderstanding Google’s Helpful Content Update (HCU)\r\n    1. User-Focused Content:\r\n    2. E-A-T Principles:\r\n    3. Content Relevance & Depth\r\n    4. Content Freshness & Regular Updates\r\n    5. Website Usability\r\nUser-Focused Content: The Heart of HCU Success\r\nE-A-T: Building Trust and Authority for HCU Success\r\nContent Relevance & Depth: Striking the HCU Balance\r\nContent Freshness & Regular Updates: Staying Relevant in the HCU Era\r\nWebsite Usability: A Cornerstone of HCU Success\r\nThe Impact of Google HCU on Your Website: A Navigational Guide\r\nUnderstanding the Impact\r\nBacklink Analysis: Building Trustworthy Backlinks for HCU Success\r\nNavigating Google’s Content Update: Strategies for Successful Blogs\r\nAnalyzing Organic Keywords and Google Search Central\r\nEnhancing Content with Images, Headlines, and SEO Techniques\r\nStaying Proactive in Navigating Google’s Algorithm Updates\r\nGoogle’s view on AI-generated content\r\nAgainst Manipulative Practices\r\nAI-Powered Detection Methods\r\nFocus on User Value\r\nTransparency is Key\r\nSearch Ranking Spam\r\nSpecific Examples of Spam with Automation/AI\r\nFocus on Quality\r\nLeveraging Information Gain for Enhanced Website TrafØc in a Post-HCU Landscape\r\nUnderstanding Information Gain\r\nInformation Gain and HCU\r\nImplementing Information Gain for TrafØc Growth\r\nCreating Information Gain Content\r\nMeasuring Information Gain Success\r\nDiving Deeper: Measuring Content Value with Information Gain\r\nUnderstanding the Formula\r\nMetrics for Measuring Information Gain\r\nIndirect Measurement Techniques\r\nEnhancing Website Traffic with Information Gain Strategy\r\nGenerating Insights with AI\r\nEnhancing Content with Images\r\nOptimizing Articles for Search Engines\r\nHow to cope with the frustration of having lost all the traffic to your website?\r\nFrustration\r\nConfusion\r\nDiscouragement\r\nDeflation\r\nUncertainty\r\n\r\nRead the book now\r\nhttps://bit.ly/3JhYrJI',''),(1946,2,431,'7','Ralph Rodriguez',''),(1947,2,431,'2','coinz@solveques.xyz',''),(1948,2,431,'3','(720) 300-1382',''),(1949,2,431,'5','Customer Service',''),(1950,2,431,'6','Hey meadowcroftwines.com, \r\n\r\nWould you like to get some Bitc0in..\r\n\r\nWithout actually paying for it?\r\n\r\nSound like an impossible task to pull off?\r\n\r\nWell I’m here to tell you that this is NOT the case\r\n\r\n=>> Go here to see the secret for getting Bitc0in & Ethereum: https://www.solveques.xyz/coinz \r\n\r\nNothing like this has been accomplished before..\r\n\r\nWith this brand new system…\r\n\r\n..  you have the ability to turn ANY phone or computer into a crypt0 extraction machine.\r\n\r\nWant to see it in action?\r\n\r\n=>> Click here to check it out: https://www.solveques.xyz/coinz \r\n\r\nThis is one of those things you “wish” you had your hands on much earlier..\r\n\r\nCheers,\r\nRalph Rodriguez\r\n\r\n\r\nUNSUBSCRIBE: https://www.solveques.xyz/unsubscribe \r\nAddress: 3683 Hinkle Deegan Lake Road\r\nGuilford, NY 13780',''),(1951,2,432,'7','Catherine  Turner',''),(1952,2,432,'2','courses.wisebases@gmail.com',''),(1953,2,432,'6','Hi,\r\nUnveil the tactics of LinkedIn success with The LinkedIn Legend\'s proven method, promising $20K/month income. Doubtful? Access the course link I\'m giving you for free.\r\nhttps://courses.megabizdeals.com/the-linkedin-legend-linkedin-mastery5\r\n\r\nSincerely.\r\n-To unsubscribe, please reply \"unsubscribe\" at unsubscribe.wisebases@gmail.com (please provide the website that forwarded this message)-',''),(1954,2,433,'7','Richard Beneet',''),(1955,2,433,'2','richb94114@sbcglobal.net',''),(1956,2,433,'3','(415) 572-3517',''),(1957,2,433,'5','Customer Service',''),(1958,2,433,'6','Hi, just checking as several friends who are also members are receiving notifications with regards too the spring shipment but I have not received any messages.    Am I not due for one?\r\n\r\nRichard',''),(1959,2,434,'7','Houston Boren',''),(1960,2,434,'2','houston.boren@gmail.com',''),(1961,2,434,'6','Online Social Media Jobs That Pay $25 - $50 Per Hour. No Experience Required. Work At Home.\r\nSocial Media Jobs from the comfort of home!\r\nClick On Link Below\r\n\r\nhttps://instantrealtraffic.com/home',''),(1962,2,435,'7','Juliann Abarca',''),(1963,2,435,'2','juliann.abarca@hotmail.com',''),(1964,2,435,'5','Careers',''),(1965,2,435,'6','Hey there! Looking to save on energy costs?\r\n Look no further! At Nexus Energy Group Ltd., we’ve got your back. With over two decades of experience, we’ll help you navigate the energy markets, find the best rates, and keep your wallet happy. Let’s power up together! Reply for details: Nexusenergygroupltd@gmail.com',''),(1966,2,436,'7','Gonzalo Boose',''),(1967,2,436,'2','boose.gonzalo@gmail.com',''),(1968,2,436,'3','(650) 624-0941',''),(1969,2,436,'5','Media Inquiry',''),(1970,2,436,'6','Slow websites lose visitors and drop in search rankings. Don\'t let your site be a victim of slow loading times. Our service offers comprehensive site speed optimization to improve your website’s performance and enhance your SEO positioning.\r\n\r\nhttp://thebestfasttraffic.online/wp/',''),(1971,2,437,'7','Fallon Stegall',''),(1972,2,437,'2','fallon.stegall@gmail.com',''),(1973,2,437,'3','(858) 421-0096',''),(1974,2,437,'5','Careers',''),(1975,2,437,'6','Hi there, my name is Cody Griner. I apologize for using your contact form, \r\nbut I wasn\'t sure who the right person was to speak with in your company. \r\nWe have a patented application that creates Local Area pages that rank on \r\ntop of Google within weeks, we call it Local Magic.  Here is a link to the \r\nproduct page https://www.mrmarketingres.com/local-magic/ . The product \r\nleverages technology where these pages are managed dynamically by AI and \r\nit is ideal for promoting contractors on Google.  Can I share a testimonial \r\nfrom one of our clients with you?  I can also do a short zoom to \r\nillustrate their full case study if you have time for it? \r\ncody@mrmarketingres.com 843-720-7301',''),(1976,2,438,'7','Klara Teichelmann',''),(1977,2,438,'2','klara.teichelmann11@msn.com',''),(1978,2,438,'3','(203) 280-4718',''),(1979,2,438,'5','Media Inquiry',''),(1980,2,438,'6','One of the biggest, high traffic sites on the planet is Wikipedia. However, placing your backlinks on that site proves unsuccessful 99.9% of the time, making it almost impossible to siphon from the masses of daily visitors that they receive.\r\n\r\nWhat Matt and has team have very cleverly done, is uncover a ‘stealth-like’ strategy that allows you to link from Wikipedia directly to a site that YOU own. Giving you an AGED authority backlink, and a traffic hotspot in which to suck targeted traffic from.\r\n\r\nGenius!\r\n\r\nhttps://thebestfasttraffic.online',''),(1981,2,439,'7','Al Sterling',''),(1982,2,439,'2','sterling.al57@gmail.com',''),(1983,2,439,'3','(392) 309-5777',''),(1984,2,439,'6','Claim Your $32,222 SETC Tax Credit Before It’s Too Late!\r\n\r\nAre you self-employed, a gig worker, or run a sole proprietor business? Have you filed a 1099 form between 2019 and 2023? If you answered \"yes,\" you may qualify for up to $32,222 with the SETC (Self-Employed Tax Credit) without the need to repay it.\r\n\r\nThis is not a PPP (Paycheck Protection Program) loan, and it\'s completely repayable-free. Discover if you qualify before time runs out. The deadline to claim your tax credit is April 15, 2024.\r\n\r\nClick the link below to see if you qualify\r\n https://aluzzion.com/go/setc\r\n\r\nWhat is the SETC?\r\nThe Self-Employed Tax Credit (SETC) was established by Congress to offer financial relief to sole proprietors, 1099 contractors, freelancers, single-member LLCs, gig workers, and other self-employed individuals. This groundbreaking legislation was designed to mitigate the economic impact experienced by self-employed Americans due to government-ordered shutdowns, quarantine, illness, caregiving, or other events that reduced income. Don’t miss out on this opportunity – the deadline to claim your tax credit is April 15, 2024.',''),(1985,2,440,'7','Phil Stewart',''),(1986,2,440,'2','noreplyhere@aol.com',''),(1987,2,440,'3','(342) 123-4456',''),(1988,2,440,'5','Influencer Inquiry',''),(1989,2,440,'6','Interested in maximizing your reach? You\'re reading this message and I can get others to read your ad the exact same way! Drop me an email below to learn more about our services and start spreading your message effectively!\r\n\r\nPhil Stewart\r\nEmail: 38rqh6@submitmaster.xyz\r\nSkype: form-blasting',''),(1990,2,441,'7','Amee Winburn',''),(1991,2,441,'2','winburn.amee@gmail.com',''),(1992,2,441,'5','Careers',''),(1993,2,441,'6','Get your business published on Google News, AP News, over 100+ NBC, FOX, ABC & CBS affiliate sites and more.\r\n\r\nhttps://marketersmentor.com/press-release\r\n\r\nPress releases help companies gain instant exposure, build trust with existing and prospective customers, \r\ngarner positive press coverage, mitigate negative coverage, and increase traffic to their website or stores.\r\n\r\nPress releases give your brand a publicity boost, help the public get to know your name, and improve sales and conversions. \r\n\r\nLearn More: https://marketersmentor.com/press-release\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nUnsubscribe\r\nhttps://marketersmentor.com/unsubscribe',''),(1994,2,442,'7','Hunter Mattson',''),(1995,2,442,'2','mattson.hunter@gmail.com',''),(1996,2,442,'3','(705) 900-1673',''),(1997,2,442,'5','Careers',''),(1998,2,442,'6','Approved by over 200,000 e-commerce enthusiasts\r\n\r\nWhat sets this tool apart from other ad spy tools is its comprehensive collection of e-commerce ads for Facebook, Pinterest, and even Tik Tok. \r\n\r\nThis makes it the ultimate ad spy tool that leaves no stone unturned.\r\n\r\nhttps://saloof.com/ads-spy\r\n\r\nNot only that, but it also offers a unique feature that allows users to track product placements made by influencers across more than 30 markets on Instagram and Snapchat. \r\n\r\nBy providing access to this information, it enables users to stay on top of their game and make data-driven decisions.\r\n\r\nLearn More: https://saloof.com/ads-spy\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nUnsubscribe\r\nhttps://saloof.com/unsubscribe',''),(1999,2,443,'7','Jenifer Lyles',''),(2000,2,443,'2','lyles.jenifer@gmail.com',''),(2001,2,443,'3','(920) 316-8029',''),(2002,2,443,'5','Careers',''),(2003,2,443,'6','\"Award Winning\" Cloud Based AI Powered App Gets You UNLIMITED REAL HQ WEB 3.0 Sites BACKLINKS & FREE BUYER TRAFFIC\r\n\r\nhttps://www.youtube.com/watch?v=cz5phJFgfeo',''),(2004,2,444,'7','Lan Dallas',''),(2005,2,444,'2','lan.dallas26@msn.com',''),(2006,2,444,'3','(389) 585-3443',''),(2007,2,444,'5','Influencer Inquiry',''),(2008,2,444,'6','Are you tired of spending hours creating animated videos from scratch? Look no further! Explainer Video AI is your ultimate solution. With our AI-driven, drag-and-drop 3D animated explainer video builder, you can create captivating videos in any niche within 60 seconds.\r\n\r\nWhy Choose Explainer Video AI?\r\n\r\n- 1700+ Video Templates: Customize and download 3D animated videos effortlessly.\r\n- Instant Auto Lip Sync: Synchronize your voice or any audio seamlessly.\r\n- High-Quality Video Scripts: Generate scripts in seconds.\r\n- Realistic Voice Over Integration: Add professional voice overs with emotions.\r\n- Gigantic Stock Library: Access music, images, video clips, and more.\r\n\r\nDon’t miss out! => https://cutt.ly/2w5ZlEVp\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nItaly, CS, Sanvito, 87100, Via Alfredo Fusco 23\r\nIf you want to be removed from future offers in this category, kindly respond to this email.',''),(2009,2,445,'7','Orval Branch',''),(2010,2,445,'2','branch.orval@hotmail.com',''),(2011,2,445,'3','(902) 760-9920',''),(2012,2,445,'5','Careers',''),(2013,2,445,'6','Get A CRAZY SIMPLE PROFITABLE “Location Free” Biz-In-A-Box Built FOR YOU...To Achieve FREEDOM\r\n\r\nhttps://www.youtube.com/watch?v=GCGGYynnLe4?meadowcroftwines.com,',''),(2014,2,446,'7','Evonne Porteus',''),(2015,2,446,'2','evonne.porteus@gmail.com',''),(2016,2,446,'3','(314) 762-9457',''),(2017,2,446,'5','Careers',''),(2018,2,446,'6','Are you tired of purchasing low-quality traffic that leads to poor conversions and wasted ad spend? Imagine a world where your marketing efforts generate consistent results, and your ROI skyrockets with every campaign. Well, the time has come to transform your business dreams into reality.\r\n\r\nIntroducing our game-changing traffic optimization service, specifically designed for the \"Make Money Online\" niche. We leverage our top-secret formula to deliver high-quality, laser-targeted traffic that converts like never before.\r\n\r\nhttps://www.youtube.com/watch?v=aujziG4w_To?meadowcroftwines.com',''),(2019,2,447,'7','Noah Thrall',''),(2020,2,447,'2','noah@printingpeach.net',''),(2021,2,447,'3','(888) 587-2383',''),(2022,2,447,'5','Media Inquiry',''),(2023,2,447,'6','My name is Noah. I\'m the print sales manager for a company called Printing Peach ... sort of similar to Vistaprint only vastly superior :-) lower prices and way better quality. Free shipping too.\r\n\r\nWe do tons of different printing products... Too many to list, but of course we do all the marketing material  like business cards, postcards, brochures, flyers.  We also do clothing such as t-shirts etc.\r\n\r\nThis is our website. https://printingpeach.net/deals/\r\n\r\nThere is tons of products and pricing on the site but if you can\'t find what you\'re looking for just let me know and I will send you a price.\r\n\r\nHave an outstanding day.',''),(2024,2,448,'7','Reda Link',''),(2025,2,448,'2','link.reda@yahoo.com',''),(2026,2,448,'3','(333) 656-5159',''),(2027,2,448,'5','Influencer Inquiry',''),(2028,2,448,'6','Hey there,\r\n\r\nFeeling stuck with your cooking routine? Ready to spice things up and explore new flavors?\r\n\r\nIntroducing our Cookbook Bundle – your gateway to delicious meals!\r\n\r\nhttps://www.allrecipes.site/#aff=AleksandarJa\r\n\r\nWe get it – you want healthy AND tasty. That\'s why we\'ve handpicked recipes that are both nutritious and flavorful.\r\n\r\nFrom hearty Keto breakfasts to zesty Mediterranean dishes, we\'ve got it all.\r\n\r\nToday only, grab all 10 eBooks for just $10 – that\'s only $1 per cookbook!\r\n\r\nhttps://www.allrecipes.site/#aff=AleksandarJa\r\n\r\nBut act fast – this offer won\'t last. Save 97% now!\r\n\r\nAnd here\'s the kicker – if you\'re not satisfied, we\'ve got you covered with a 60-day money-back guarantee. No questions asked.\r\n\r\nDon\'t miss out on this chance to level up your cooking game. Order now and let the culinary adventure begin!\r\n\r\nClick here to access the exclusive 97% sale offer.\r\nhttps://www.allrecipes.site/#aff=AleksandarJa',''),(2029,2,449,'7','Cedric Prieto',''),(2030,2,449,'2','cedric.prieto@gmail.com',''),(2031,2,449,'3','(649) 896-5471',''),(2032,2,449,'6','It\'s been a while, but I recently stumbled upon a warning article online about meadowcroftwines.com and felt compelled to email you guys to disprove this nonsense. \r\n\r\nIt appears like there\'s some negative press that could be detrimental. \r\nKnowing how quickly rumors can spiral and wishing not you to be taken by surprise, I thought it best to warn you.\r\n\r\nHere\'s where I came across the info:\r\n\r\nhttps://ibit.ly/YghKV		\r\n\r\nI\'m hoping it\'s all a misunderstanding, but I believed it necessary you should know!\r\n\r\ncya later,\r\nCedric',''),(2033,2,450,'7','Walter Woodward',''),(2034,2,450,'2','woodzak@live.com',''),(2035,2,450,'3','(856) 308-4118',''),(2036,2,450,'5','Wines',''),(2037,2,450,'6','Where in Southern NJ can I buy your wines? My zip is. 08035',''),(2038,2,451,'7','Sherman Bergin',''),(2039,2,451,'2','sherman.bergin@gmail.com',''),(2040,2,451,'3','(317) 237-3124',''),(2041,2,451,'5','Careers',''),(2042,2,451,'6','Analyzing your competitors’ strategies isn\'t just an option. It is a necessary part of your growth strategy. \r\nThe more you find out about your business and your competitors, the more you learn, adapt, and ultimately flourish.\r\n\r\nhttps://marketersmentor.com/competitor-spying\r\n\r\nBrandMentions gives you full access to your competitors\' strategies. \r\nYou can spy on competitors from different angles and have a clear view where exactly the competition stands.\r\n\r\nLearn More: https://marketersmentor.com/competitor-spying\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nUnsubscribe\r\nhttps://marketersmentor.com/unsubscribe',''),(2043,2,452,'7','Paul',''),(2044,2,452,'2','projectsexpert222@outlook.com',''),(2045,2,452,'3','(267) 580-4013',''),(2046,2,452,'5','Careers',''),(2047,2,452,'6','Hi,\r\n\r\nAre you looking for someone who can follow your complex business SOPs and work on them accordingly? \r\n\r\nI specialize in Back-office work and I can help you in the following ways:\r\n\r\n1. Data Management Services: Data Entry, Data Processing, Data Cleansing, Data Conversion to different formats, Data Extraction, Data Verification and extraction\r\n\r\n2. Financial Accounting Services: Account Payable, Receivables, Reconciliations, Invoice Factoring, Financial Statements, Creating Invoices.\r\n\r\n3. E-Commerce Management: Order Processing, Product Add/Delete/Modify, Cart and Shop Management.\r\n\r\n4. Custom Process Follow: Understanding your SOP, Software Data Entry, Medical Bill Entry, Form filling\r\n\r\nMy Cost is USD 10/hr for these back-office tasks.\r\nPing me on projectsexpert222@outlook.com if you have any requirements right now.  \r\n\r\n\r\nRegards,\r\nPaul',''),(2048,2,453,'7','kaitlyn bishop',''),(2049,2,453,'2','matzkaitlyn@gmail.com',''),(2050,2,453,'3','(616) 446-3401',''),(2051,2,453,'5','Wines',''),(2052,2,453,'6','Hello,\r\n\r\nYour perfect blend experience appears to be sold out 5/10 and 5/11. Is there any chance there is afternoon availability for 4 on 5/10 or 6 on 5/11?\r\n\r\nThank you,\r\n\r\nKatie Bishop',''),(2053,2,454,'7','David Westgarth',''),(2054,2,454,'2','priscilla.westgarth@gmail.com',''),(2055,2,454,'3','(573) 558-9176',''),(2056,2,454,'6','Have you heard of Se-REM? (Self effective - Rapid Eye Movement). Many people don\'t know that REM brain activity dramatically improves the processing of traumatic emotion. It creates peace and empowers the listener. Se-REM is an advanced version of EMDR therapy. It is more powerful because it combines elements of 6 different therapies, EMDR, hypnosis, mindfulness, Gestalt child within work, music therapy, and Awe therapy,(connecting profoundly with nature).\r\n\r\nIt has helped thousands of people overcome PTSD, and anxiety. But it is also helpful in a great many situations, loss of any kind, grief, and even marital counseling. It\'s mission statement is \"Trauma relief at as close to free as possible\". This not-for-profit program downloads to a smart phone or computer and can be used in an office or at home. Read about it, hear samples, and download at: Se-REM.com. Once you own the program, you are encouraged to give it away to others who will benefit. I provide free consultation to all who use the program. Write questions to: davidb@se-rem.com.\r\n\r\nSe-REM.com has a 95% rating on Trustpilot and is in use in 32 countries.\r\n\r\nWant to unsubscribe? please email \"no more emails\" to davidb@se-rem.com.',''),(2057,2,455,'7','Christie Pendley',''),(2058,2,455,'2','pendley.christie70@gmail.com',''),(2059,2,455,'3','(337) 274-7432',''),(2060,2,455,'5','Media Inquiry',''),(2061,2,455,'6','Game changing customer financing approves down to 500 FICO Stop losing clients just because they have poor credit scores\r\n\r\n== Must Be A US Based Business To Qualify ==\r\n\r\nSend me a message at my contact info below for info\r\n\r\nJessica Snyder\r\njessica.snyder@helloratespros.com\r\nhttps://helloratespros.com/5-6/',''),(2062,2,456,'7','Gale Biddlecombe',''),(2063,2,456,'2','trendflex0220@gmail.com',''),(2064,2,456,'3','(246) 246-4820',''),(2065,2,456,'5','Media Inquiry',''),(2066,2,456,'6','Hello,\r\n\r\nI came across your website looking for help and I felt t lost. \r\n\r\nUpon review, I discovered many areas that need improvements. \r\nIf you are open to discussing these enhancements,\r\n please feel free to contact me at\r\n\r\n web0220supp@gmail.com.\r\n\r\nI am willing to undertake my first job\r\n for free to demonsng forward to yourcan bring to your website.\r\nLooking forward to your response.\r\n\r\nWarm regards,\r\nAleksandar',''),(2067,2,457,'7','Ronald Salazar',''),(2068,2,457,'2','profitcourse@nowbusiness.info',''),(2069,2,457,'3','(831) 920-0515',''),(2070,2,457,'5','Careers',''),(2071,2,457,'6','Hi meadowcroftwines.com,\r\n\r\nYou\'ve no-doubt heard about the success of Udemy and other eLearning platforms like it.\r\n\r\nLast year Udemy alone did in the range of $600-700 Million, and the industry as a whole is around $400 Billion.\r\n\r\nBut here\'s a dirty little secret about the business: Udemy isn\'t even making profits yet.\r\n\r\nOK, technically it\'s not a secret since they\'re a publicly-held company, but most of their instructors and customers are certainly not aware of it.\r\n\r\nAlong with their competitors in the industry, they\'re focused on growth, and as a result they\'re losing tens of millions of dollars every quarter.\r\n\r\nThat\'s not to say that it\'s a bad business, or won\'t become profitable.\r\n\r\nHowever, I bring this up to make two points:\r\n\r\n1) There\'s a better way for most of us to start an eLearning business.\r\n\r\n2) You really can compete with platforms like Udemy.\r\n\r\nHere\'s a brand new AI solution that allowed you to start your own Udemy-like academies in a matter of minutes: https://www.nowbusiness.info/profitcourse \r\n\r\nWhile companies like Udemy are building their business like a typical startup in the world of Fortune 500 companies (raising gazillions from investors, taking years to become profitable, etc.), individual entrepreneurs can create a profitable business immediately.\r\n\r\nNo red tape to cut through.   No investors to keep happy and pay back.   You can start for pennies and be profitable from day one.\r\n\r\nIn that sense, you REALLY can compete with platforms like Udemy.\r\n\r\nUsing this new AI platform called CourseMateAi, you can also compete with them in other ways.\r\n\r\nBy harnessing the power of AI, you can generate new courses on any topic, at any time.\r\n\r\nThat gives you an edge over those other platforms.   Suppose there is a new trend or breakthrough in a niche.   You can create a course with the AI and launch it within minutes, while instructors on Udemy are scrambling for weeks to do the same.\r\n\r\nAgain, all this is not to say that the mega-platforms like Udemy and Coursera are bad.   Just to say that you can beat them at their own game by leveraging this new technology today: https://www.nowbusiness.info/profitcourse \r\n\r\nRight now CourseMateAi is super affordable during the launch special, but the price will be increasing to a monthly subscription due to huge demand.   Get in now before it\'s too late.\r\n\r\nTo your success,\r\n\r\nRonald Salazar\r\n\r\n\r\nUNSUBSCRIBE: https://www.nowbusiness.info/unsubscribe \r\nAddress: 3876 Hilltop Street\r\nDalton, MA 01226',''),(2072,2,458,'7','Daryl',''),(2073,2,458,'2','daryl@mail.medicopostura.com',''),(2074,2,458,'3','(271) 815-8366',''),(2075,2,458,'4','2718158366',''),(2076,2,458,'5','Influencer Inquiry',''),(2077,2,458,'6','Hi \r\n\r\nLooking to improve your posture and live a healthier life? Our Medico Postura™ Body Posture Corrector is here to help!\r\n\r\nExperience instant posture improvement with Medico Postura™. This easy-to-use device can be worn anywhere, anytime – at home, work, or even while you sleep.\r\n\r\nMade from lightweight, breathable fabric, it ensures comfort all day long.\r\n\r\nGrab it today at a fantastic 60% OFF: https://medicopostura.com\r\n\r\nPlus, enjoy FREE shipping for today only!\r\n\r\nDon\'t miss out on this amazing deal. Get yours now and start transforming your posture!\r\n\r\nTo your success, \r\n\r\nDaryl',''),(2078,2,459,'7','Top Tier CRM',''),(2079,2,459,'2','toptiercrm@gmail.com',''),(2080,2,459,'3','(289) 387-9210',''),(2081,2,459,'5','Media Inquiry',''),(2082,2,459,'6','Automate your marketing, sales, and administrative tasks.\r\n\r\nI was doing research and landed on meadowcroftwines.com and I believe this can help.\r\n\r\nWhy it\'s essential to gain more knowledge:\r\n\r\n1. Automated marketing tools turns your potential customers into clients more quickly.\r\n2. The use of sales automation assists your team to sell more effectively.\r\n3. Admin automation enables your staff to improve efficiency in shorter periods.\r\n4. Enjoy around-the-clock email, live chat, or live Zoom support.\r\n5. Cut your client management data costs to a minimal amount.\r\n\r\nHere\'s what you receive:\r\n\r\n- Test-drive our CRM with a one-month free trial.\r\n- After the trial, if you like it, you get our unbeatable pricing of only $20 a month.\r\n\r\nSound fair enough?\r\n\r\nClick the link and sign up for free, or set up a call to review your needs.\r\n\r\nhttps://toptiercrm.tech/  \r\n\r\nTalk soon,  \r\n\r\nKaren S.\r\n\r\nTop Tier CRM \r\nUSA and Canada \r\n\r\n\r\nThis single-click unsubscribe option will place all your domain emails and contact forms to our Do Not Contact list, and you will receive no further contact from us with promotional content.\r\n.\r\nhttps://bullet-proof.biz/unsubscribe.php?d=meadowcroftwines.com',''),(2083,2,460,'7','Mallory Schleinitz',''),(2084,2,460,'2','schleinitz.mallory@msn.com',''),(2085,2,460,'3','(750) 379-4603',''),(2086,2,460,'5','Influencer Inquiry',''),(2087,2,460,'6','Hi there, my name is Cody Griner. I apologize for using your contact form, \r\nbut I wasn\'t sure who the right person was to speak with in your company. \r\nWe have a patented application that creates Local Area pages that rank on \r\ntop of Google within weeks, we call it Local Magic.  Here is a link to the \r\nproduct page https://www.mrmarketingres.com/local-magic/ . The product \r\nleverages technology where these pages are managed dynamically by AI and \r\nit is ideal for promoting contractors on Google.  Can I share a testimonial \r\nfrom one of our clients with you?  I can also do a short zoom to \r\nillustrate their full case study if you have time for it? \r\ncody@mrmarketingres.com 843-720-7301',''),(2088,2,461,'7','Edward Rogers',''),(2089,2,461,'2','aisocials@busihelp.xyz',''),(2090,2,461,'3','(214) 783-7375',''),(2091,2,461,'5','Media Inquiry',''),(2092,2,461,'6','Hi,\r\n\r\nEveryone’s addicted to social media & the companies that post the most there are getting the majority of sales online in 2023.\r\n\r\nBut now, you can level the playing field w/ AISocials…\r\n\r\n& let new AI tech create engaging posts & addictive videos at mass scale - then perpetually post them w/ NO scheduling needed.\r\n\r\nSee how newbies are getting massive results here: > >  https://www.busihelp.xyz/aisocials \r\n\r\nWhy is the Biggest AI App?\r\n\r\nIn seconds, you can…\r\n\r\n1.       See viral topics to create content around\r\n2.       Let powerful AI create high-quality social & video content around the topics\r\n3.       Let the AI post it at smart times (handsfree) to YouTube, TikTok, Instagram, FB, etc.\r\n\r\nThis gets real passive traffic, & allows you to organize campaigns by agency client!\r\n\r\nJust some features include:\r\n\r\n[+] Let AI Create Entire Social Media Campaigns w/ Viral Posts & Videos\r\n[+] AI Posts all the Content w/ No Scheduling Needed (Breakthrough Tech)\r\n[+] Add Midjourney AI Images to Your Posts to Stand out on Timeslines\r\n[+] Create Addictive Content for, FB, Instagram, YT, TikTok & More from Keywords\r\n[+] AI Video Wizard - Create & Edit High-Retention AI Videos\r\n[+] AI Viral Post Wizard - Create & Edit Viral Social Posts & Images\r\n[+] AI Variations Tech - Make 100s of Posts from a Single Keyword\r\n[+] Find Trending Topics to Create AI Social Posts Around\r\n[+] Make Viral Content - AI Memes, Viral Articles, Quotes, & more\r\n[+] Agency Technology Integration - Give Access to the App\r\n\r\nPlus, You’re(meadowcroftwines.com) Getting My BEST BONUS THIS YEAR…\r\n\r\nBecause I feel this software is so high-quality & important for small businesses offline or online, I’m offering a huge bonus with it\r\n\r\nSo, get access here before the price increases & qualify for my best bonus kit:\r\n\r\n> >  https://www.busihelp.xyz/aisocials \r\n\r\nEdward Rogers\r\n\r\n\r\nUNSUBSCRIBE: https://www.busihelp.xyz/unsubscribe \r\nAddress: 2526 Wilson Avenue\r\nRichardson, TX 75081',''),(2093,2,462,'7','Melinda Demarco',''),(2094,2,462,'2','demarco.melinda@outlook.com',''),(2095,2,462,'5','Careers',''),(2096,2,462,'6','Hello meadowcroftwines.com Admin.\r\n\r\nExcited to Earn $100 or More Every Single Day?\r\n\r\nIt\'s straightforward, anyone can succeed...\r\n\r\nUnlock the secret here == https://cutt.ly/wewz7voe\r\n\r\nBest regards\r\nMelinda\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nAustria, BURGENLAND, Sankt Georgen, 5662, Kuefsteinstrasse 41\r\nTo stop any further communication from us, please reply to this email...',''),(2097,2,463,'7','Garrett Nimmo',''),(2098,2,463,'2','nimmo.garrett@hotmail.com',''),(2099,2,463,'3','(745) 711-7437',''),(2100,2,463,'5','Media Inquiry',''),(2101,2,463,'6','Best financial company to fund your business project globally, i can help, email me here:                                                                                                         info@financeworldwidehk.com',''),(2102,2,464,'7','Ross Schaaf',''),(2103,2,464,'2','ross.schaaf@gmail.com',''),(2104,2,464,'3','(659) 983-5795',''),(2105,2,464,'5','Media Inquiry',''),(2106,2,464,'6','Dear meadowcroftwines.com Admin!\r\n\r\nExcited to Earn $300 or More Every Single Day?\r\n\r\nIt\'s simple, literally anyone can achieve it...\r\n\r\nDiscover how now => https://cutt.ly/newz3hOT\r\n\r\nBest regards\r\nRoss\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nBrazil, MT, Cuiaba, 78058-756, Rua Atlas 739\r\nTo stop any further communication from us, please reply to this email...',''),(2107,2,465,'7','Gisele Steinman',''),(2108,2,465,'2','gisele.steinman@googlemail.com',''),(2109,2,465,'3','(664) 747-2823',''),(2110,2,465,'5','Media Inquiry',''),(2111,2,465,'6','Hello meadowcroftwines.com Webmaster.\r\n\r\nReady to Generate $300 or More Every Single Day?\r\n\r\nIt\'s straightforward, literally anyone can succeed...\r\n\r\nLearn how here => https://cutt.ly/kewz8eHb\r\n\r\nBest regards\r\nGisele\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nAustria, LOWER AUSTRIA, Lindau, 3820, Pottenbrunner Hauptstrasse 68\r\nTo stop any further communication from us, please reply to this email...',''),(2112,2,466,'7','Niklas Wu',''),(2113,2,466,'2','wu.niklas@hotmail.com',''),(2114,2,466,'3','(631) 576-6763',''),(2115,2,466,'5','Customer Service',''),(2116,2,466,'6','> Sorry to be a bother, but I was informed that you have either a Residential or Business debt to pay off.\r\n>\r\n> When this is true, we at Cancel1Mortgage.info guarantee your debt will be paid off/Discharged/Extinguished in 14 days when you follow our Client Instructions.\r\n>\r\n> Please visit Cancel1Mortgage.info today and order your debt removal securities Processing now which is 100% legal and ordered by courts to be debt payment.\r\n>\r\n> Thank you for your business and for extinguishing your debt through Cancel1Mortgage.info when you decide to use our very successful registered Promissory Note securities to pay off your debt in 14 days Guaranteed.\r\n>\r\n> You may also contact me, David Young de God, through SKYPE with dayglobal..\r\n>\r\n> Thank you again for reading..',''),(2117,2,467,'7','Chelsea Thompson',''),(2118,2,467,'2','chelsea.thompson@goldrhinopromo.com',''),(2119,2,467,'3','(771) 777-5333',''),(2120,2,467,'5','Customer Service',''),(2121,2,467,'6','Hi!  My name is Chelsea Thompson and I represent Gold Rhino.  I’m trying to reach the person who’s responsible for purchasing equipment for your company.  In Q1 of 2024, we\'ve observed a surge in demand for travel trailers like ours.\r\nSmall to large-sized companies are finding several ways to use our work/travel trailers. \r\nBy incorporating our high-quality travel trailers, your business operations can enjoy increased mobility, cost savings, enhanced flexibility, and premium amenities such as bathrooms, toilets, beds, sofas, TV, refrigerators and so much more! \r\nIf you\'re open to exploring this opportunity further, please feel free to reach out to me. \r\nThey can be seen at goldrhinopromo.com and I can be reached at chelsea.thompson@goldrhinopromo.com. \r\nThanks so much. \r\n~Chelsea',''),(2122,2,468,'7','Carolyn Hemming',''),(2123,2,468,'2','hemming.carolyn56@msn.com',''),(2124,2,468,'3','(875) 115-6805',''),(2125,2,468,'5','Careers',''),(2126,2,468,'6','Dear team\r\n\r\nI am keen to form a collaboration with meadowcroftwines.com that involves each of us adding a link to each others\' sites. The link can be added anywhere on the site: blog, page, etc. This is the best way for us to boost our organic seo.\r\n\r\nI have already added 2 links to meadowcroftwines.com inside our blog post. You can find it here: https://www.google.co.uk/search?q=cbdlifemeds.com\r\n\r\n\r\nI would be most grateful if you could link us too.\r\n\r\nBest wishes\r\n\r\nCarolyn',''),(2127,2,469,'7','Christen Bennett',''),(2128,2,469,'2','mystic2101@yahoo.com',''),(2129,2,469,'3','(310) 592-2301',''),(2130,2,469,'5','Customer Service',''),(2131,2,469,'6','Good morning!\r\n\r\nI visited there on Tuesday, 5/7 and made a purchase.  I put in my email address to get my receipt, but still have not received it.  Can you please send me a copy of my receipt.  The total charge was: $86.65\r\n\r\nThanks!\r\nChristen',''),(2132,2,470,'7','Abhi',''),(2133,2,470,'2','outsourcingprojects112@outlook.com',''),(2134,2,470,'3','(699) 660-1496',''),(2135,2,470,'5','Media Inquiry',''),(2136,2,470,'6','Hi,\r\n\r\nI\'m Abhi Rana. I am a Personal Virtual Assistant who can follow your instructions and support you in your day-to-day operations, including Data Entry, Data Processing, Data Cleansing, Data Conversion to different formats, Data Extraction, Data Verification, Financial Accounting, Account Payable, Receivables, Reconciliations, Invoice Factoring, Financial Statements, Creating Invoices, E-Commerce Management, Order Processing, Product Add/Delete/Modify, Cart and Shop Management, Custom Process Follow, Understanding your SOP, Software Data Entry, Medical Bill Entry, and Form filling\r\n\r\nI will work as per your suggested timings. My rate is USD 10/hr for these back-office tasks. If you hire full-time, I can be flexible with the pricing. Send me an email on Outsourcingprojects112@outlook.com to collaborate.',''),(2137,2,471,'7','Stephen  Gray',''),(2138,2,471,'2','courses.wisebases@gmail.com',''),(2139,2,471,'5','Influencer Inquiry',''),(2140,2,471,'6','Hi,\r\nExplore Roland Fraiser\'s proven method for acquiring businesses without any upfront expenses and earning millions yearly, 50 times faster than real estate. Here\'s the course link for you to access for free.\r\nhttps://courses.savvyzones.com/roland-frasier-epic-business-buying-blueprint7\r\n\r\nSincerely.\r\n-To unsubscribe, please reply \"unsubscribe\" at unsubscribe.wisebases@gmail.com (please provide the website that forwarded this message)-',''),(2141,2,472,'7','Vai',''),(2142,2,472,'2','webdesignservices111@outlook.com',''),(2143,2,472,'3','(323) 184-9479',''),(2144,2,472,'5','Media Inquiry',''),(2145,2,472,'6','Hi, This is Vai, a full stack website developer with more than a decade of experience. If you need any assistance in creating a new page, new design, developing new functionality, 3D Model Integration, changing any existing functionality, monthly maintenance, any theme related work, improving current design or uploading content.\r\n\r\nLet\'s chat on webdesignservices111@outlook.com',''),(2146,2,473,'7','SEObyAxy',''),(2147,2,473,'2','seosubmitter@mail.com',''),(2148,2,473,'3','(634) 312-8976',''),(2149,2,473,'5','Careers',''),(2150,2,473,'6','Hello meadowcroftwines.com Administrator\r\n\r\nAre You Seeking High-Quality Organic Website Traffic? \r\n\r\nBoost your online presence and skyrocket your profits with our exclusive Website Traffic service. \r\n\r\nNo bots or proxies, just real visitors. Targeted traffic from search engines and referral traffic from social media await you. \r\n\r\nVisit now => https://cutt.ly/OwQWjbLC\r\n\r\nBest regards,\r\nSEObyAxy\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n   \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nGermany, BW, Bollen, 79677, Brandenburgische Strasse 29\r\nTo stop any further communication through your website form, Please reply with subject:  Unsubscribe meadowcroftwines.com',''),(2151,2,474,'7','Mia Falk',''),(2152,2,474,'2','mia_falk@gmail.com',''),(2153,2,474,'3','(718) 731-1347',''),(2154,2,474,'5','Influencer Inquiry',''),(2155,2,474,'6','hi!\r\n\r\nIt\'s been a while since our last conversation, but I came across a slam piece online about meadowcroftwines.com and felt compelled to email you guys to confirm this article. \r\n\r\nIt looks like there\'s some unfavorable news that could be potentially damaging. \r\nUnderstanding how quickly rumors can spiral and hoping not you to be taken by surprise, I thought it best to notify you.\r\n\r\nHere\'s where I came across the info:\r\n\r\nhttps://ibit.ly/Wo14Q		\r\n\r\nMy hope is it\'s all a mix-up, but I believed it necessary you should know!\r\n\r\nBest wishes,\r\nMia Falk',''),(2156,2,475,'7','Rosella Ritchard',''),(2157,2,475,'2','ritchard.rosella@gmail.com',''),(2158,2,475,'5','Influencer Inquiry',''),(2159,2,475,'6','Hey there,\r\n\r\nAre you tired of spending countless hours on repetitive marketing tasks?\r\n\r\nImagine having a personal AI assistant that can handle everything from writing high-converting copy to creating stunning websites and videos – all within your WordPress dashboard.\r\n\r\nThis revolutionary AI tool can complete hundreds of marketing tasks in seconds, saving you time and money.\r\n\r\n1. Write captivating content: Articles, landing pages, emails, ebooks, and more – all crafted by AI to perfection.\r\n2. Design stunning visuals: Create professional-looking logos, graphics, and websites in seconds.\r\n3. Automate marketing tasks: Build high-converting funnels, manage social media, and generate leads on autopilot.\r\n4. Develop mobile apps: No coding skills needed! WP Genie can build apps you can sell for thousands.\r\n\r\nAnd so much more!\r\n\r\nLearn more: https://furtherinfo.org/genie\r\n\r\nPlus, WP Genie is:\r\n\r\n- 16x faster than ChatGPT\r\n- Always available: No outages like with other AI tools.\r\n- Easy to use: No technical skills required.\r\n\r\nFor a limited time, get our plugin for a one-time price of just $17 (normally $30/month).\r\n\r\nThis offer won\'t last long, so don\'t miss out.\r\n\r\nClick here to learn more and unlock the power of AI for your WordPress site: https://furtherinfo.org/genie\r\n\r\nSincerely,\r\nRosella',''),(2160,2,476,'7','Leila Begley',''),(2161,2,476,'2','begley.leila@googlemail.com',''),(2162,2,476,'3','(963) 289-4177',''),(2163,2,476,'5','Careers',''),(2164,2,476,'6','Hi there\r\n\r\nReady to Make $100 or More Every Single Day?\r\n\r\nIt\'s simple, seriously anyone can do it...\r\n\r\nDiscover how now >>  https://cutt.ly/Oewz4PY1\r\n\r\nSincerely\r\nLeila\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nGermany, BY, Leonberg, 95666, Flughafenstrasse 46\r\nTo stop any further communication from us, please reply to this email...',''),(2165,2,477,'7','Demi Salaam',''),(2166,2,477,'2','demi.salaam@gmail.com',''),(2167,2,477,'3','(215) 368-8681',''),(2168,2,477,'5','Media Inquiry',''),(2169,2,477,'6','hi, just a warning,\r\n\r\nIt\'s been some time since we last communicated, but I just got emailed something online about meadowcroftwines.com and felt compelled to message you guys to disprove this article. \r\n\r\nIt seems like there\'s some rumors circulating that could be detrimental. \r\nKnowing how easily stories can get out of hand and not wanting you to be taken by surprise, I thought it best to inform you.\r\n\r\nHere\'s where I found the info:\r\n\r\nhttps://ibit.ly/Fhd6p		\r\n\r\nMy hope is it\'s all a mix-up, but I believed it necessary you should know!\r\n\r\nWishing you all the best,\r\nDemi Salaam',''),(2170,2,478,'7','Theresa Smith',''),(2171,2,478,'2','mullin.penelope@gmail.com',''),(2172,2,478,'5','Influencer Inquiry',''),(2173,2,478,'6','Hello,\r\n\r\nDo you struggle with the choice of chilling out, working more hours, or going to the gym?\r\n\r\nNo need to choose anymore, we have the perfect solution for you - EleBands! \r\n\r\nEleBands offers ultra-thin, fashionable all day wearable body weight bands that seamlessly integrate into your daily routine. Burn up to 1,500 calories a day by simply wearing our bands on your wrist, ankle, and waist while you go about your normal day. \r\n\r\nThis week, we are giving 20% off to the first 20 customers. \r\n\r\n Lose Weight \r\n Build Strength\r\n Tone Body\r\n Look And Feel Great\r\n\r\nTHEY LOOK HOT!! SEE FOR YOURSELF: https://bit.ly/elebands-news\r\n \r\n***Get 20% OFF with this coupon code: 20%OFF\r\n\r\nImagine achieving your dream body by just going about your day. With EleBands, it\'s possible.\r\n\r\nMany of our clients are losing 2-3 pounds per week while experiencing significant health improvements. Plus, our clients tell us they receive compliments all the time when they wear thier EleBands. \r\n\r\nPeople from all walks of life, including top athletes, celebrites and fitness enthusiast love our bands and we are confident you will love them to.  \r\n\r\nBeautiful Bands To Choose From: \r\n\r\n We have multiple colors and 10 styles to choose from. \r\n We have sets from 3lb to 30lbs to meet a range of fitness goals.\r\n\r\nTHEY LOOK SO GOOD!! SEE FOR YOURSELF: https://bit.ly/elebands-news\r\n\r\n***Get 20% OFF with this coupon code: 20%OFF\r\n\r\nTheresa Smith',''),(2174,2,479,'7','Hong Epstein',''),(2175,2,479,'2','hong.epstein@gmail.com',''),(2176,2,479,'3','(858) 844-7558',''),(2177,2,479,'5','Media Inquiry',''),(2178,2,479,'6','It\'s been a while since our last conversation, but I just got emailed an article online about meadowcroftwines.com and thought it important to email you guys to confirm this article. \r\n\r\nIt looks like there\'s some negative press that could be harmful to your reputation. \r\nKnowing how quickly rumors can spiral and not wanting you to be taken by surprise, I thought it best to inform you.\r\n\r\nHere\'s where I came across the info:\r\n\r\nhttps://ibit.ly/Q25yy		\r\n\r\nI hope it\'s all a misunderstanding, but it seemed prudent you should know!\r\n\r\nbest of luck with all of this,\r\nHong',''),(2179,2,480,'7','Alethea MacFarland',''),(2180,2,480,'2','socialwisp@ltdmail.io',''),(2181,2,480,'3','(777) 565-7361',''),(2182,2,480,'5','Customer Service',''),(2183,2,480,'6','Still relying on contact forms in 2024? It might be costing you leads.\r\n\r\nUpgrade to a chatbot for your website. Chatbots offer instant engagement, greet visitors warmly, and provide quick answers, which can significantly increase your conversions. Imagine having a 24/7 assistant that never sleeps, helping to turn visitors into leads.\r\n\r\nWe’re confident our chatbot can boost your website\'s enquiries, generate more leads, and potentially increase your profit. And it’s affordable, starting at less than $29 per month.\r\n\r\nFor a limited time, we\'re offering a free trial. Experience the benefits at no cost.\r\n\r\nDiscover how a chatbot can transform your visitor experience.\r\n\r\nLearn More:\r\nhttps://socialwisp.co/',''),(2184,2,481,'7','Rick Wrench',''),(2185,2,481,'2','wrench.rick@gmail.com',''),(2186,2,481,'5','Customer Service',''),(2187,2,481,'6','Good day\r\n\r\nInterested in earning over $300 daily? \r\n\r\nUnlock the secret now. \r\n\r\nIt\'s a breeze, anyone can do it... \r\n\r\nDon\'t let this exclusive opportunity slip away. \r\n\r\nClick here to start now! =>  https://cutt.ly/Jewz9TQc\r\n\r\nRespectfully\r\nRick\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nAustria, BURGENLAND, Fraundorf, 4284, Gasteiner Strasse 33\r\nTo stop any further communication from us, please reply to this email...',''),(2188,2,482,'7','Wilda Gurley',''),(2189,2,482,'2','gurley.wilda@gmail.com',''),(2190,2,482,'3','(372) 009-0871',''),(2191,2,482,'6','Hi \r\n\r\nMy name is Wilda and I am a junior editor on our blog. \r\n\r\nWe would be delighted to feature meadowcroftwines.com at https://www.google.co.uk/search?q=bettermindcbd.com\r\n\r\nPlease let me know whether this is of interest to you.\r\n\r\nKind regards\r\n\r\nWilda\r\n3720090871\r\nPiazza San Carlo 75 13047 Sali Vercellese Italy',''),(2192,2,483,'7','Mauricio Lantz',''),(2193,2,483,'2','lantz.mauricio@hotmail.com',''),(2194,2,483,'3','(783) 771-7308',''),(2195,2,483,'5','Influencer Inquiry',''),(2196,2,483,'6','Transform Your  Earnings with AMZ Automator\r\n\r\nhttps://bit.ly/AMZ_AUTOMATOR\r\n\r\nHello meadowcroftwines.com owner,\r\n\r\nI hope this message finds you well. I\'m excited to share a unique opportunity that could significantly boost your online business, particularly on Amazon.\r\n\r\nhttps://bit.ly/AMZ_AUTOMATOR\r\n\r\nAre you looking for a more automated way to generate income on Amazon? AMZ Automator is the solution you\'ve been waiting for! This revolutionary A.I. tool creates set-and-forget Amazon income streams in just 60 seconds, perfect for business owners like you who want to leverage Amazon Kindle without the hassle of technical expertise or upfront costs.\r\n\r\nWith AMZ Automator, you can:\r\n- Benefit from a **fully automated passive income system** that operates even while you sleep.\r\n- Generate multiple streams of passive income with done-for-you books.\r\n- Enjoy free clicks and traffic around the clock with no hidden fees.\r\n\r\nThis tool is a game-changer for scaling your business and achieving the freedom to earn from anywhere, anytime. For a limited time, you can access AMZ Automator at an exclusive discounted price, complete with additional bonuses.\r\n\r\nDon\'t miss this opportunity to revolutionize your Amazon business strategy. Explore AMZ Automator today and discover the impact it can have on your earnings.\r\n\r\nBest regards,\r\n\r\nhttps://bit.ly/AMZ_AUTOMATOR',''),(2197,2,484,'7','Colby',''),(2198,2,484,'2','meadowcroftwines.com@mail.com',''),(2199,2,484,'3','(210) 698-4676',''),(2200,2,484,'4','2106984676',''),(2201,2,484,'6','Hi there, \r\n\r\nI hope you\'re doing well. I wanted to let you know about our new BANGE backpacks and sling bags that just released.\r\n\r\nThe bags are waterproof and anti-theft, and have a built-in USB cable that can recharge your phone while you\'re on the go.\r\n\r\nBoth bags are made of durable and high-quality materials, and are perfect for everyday use or travel.\r\n\r\nOrder yours now at 50% OFF with FREE Shipping: http://bangeshop.com\r\n\r\nAll the best,\r\n\r\nColby',''),(2202,2,485,'7','Sonya Matthias',''),(2203,2,485,'2','sonya.matthias@msn.com',''),(2204,2,485,'3','(704) 428-7948',''),(2205,2,485,'5','Careers',''),(2206,2,485,'6','Hi\r\n\r\nReady to dominate TikTok? \r\n\r\nOur game-changing AI app empowers you to create professional-quality short videos effortlessly!\r\n\r\nDon\'t miss out! Grab your ticket to TikTok success now\r\n\r\nSEE HERE => https://cutt.ly/8w5bBdco\r\n\r\nYours sincerely\r\nSonya\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nGreat Britain, NA, Sharpthorne, Rh19 7ux, 84 Kendell Street\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(2207,2,486,'7','Betsy Kilgore',''),(2208,2,486,'2','kilgore.betsy@msn.com',''),(2209,2,486,'5','Influencer Inquiry',''),(2210,2,486,'6','Hi there, my name is Cody Griner. I apologize for using your contact form, \r\nbut I wasn\'t sure who the right person was to speak with in your company. \r\nWe have a patented application that creates Local Area pages that rank on \r\ntop of Google within weeks, we call it Local Magic.  Here is a link to the \r\nproduct page https://www.mrmarketingres.com/local-magic/ . The product \r\nleverages technology where these pages are managed dynamically by AI and \r\nit is ideal for promoting contractors on Google.  Can I share a testimonial \r\nfrom one of our clients with you?  I can also do a short zoom to \r\nillustrate their full case study if you have time for it? \r\ncody@mrmarketingres.com 843-720-7301',''),(2211,2,487,'7','Jeannie French',''),(2212,2,487,'2','affiliatetakeover@nowbusiness.info',''),(2213,2,487,'6','Hey,\r\n\r\nIt\'s time for the big reveal.\r\n\r\nI\'ve been digging into Affiliate Takeover, and it\'s one of the best and most up-to-date training courses I\'ve ever come across.\r\n\r\nThese methods will have a massive impact on anyone\'s business.\r\n\r\nWhether you\'re just starting out or have been doing this for years, you will be blown away by the strategies inside.\r\n\r\nThe launch special is still in place, but only for another day or 2, so don\'t delay in check it out.\r\n\r\nSee Affiliate Takeover Here: https://www.nowbusiness.info/affiliatetakeover \r\n\r\nInside you\'ll get 10 step by step training videos which are mostly between 6 minutes and 15 minutes long.\r\n\r\nStraight to the point information, massive ah-ha moments and actionable content using methods you can implent in minutes.\r\n\r\nYou\'ll also get 4 case studies, and oh, these are a lot more than just case studies.   Each one is a training video on its own where, with more discoveries.\r\n\r\nPlus there\'s bonuses worth over $500, including:\r\n\r\nBonus #1 - Affiliate Marketing Done Right Video Training (57 minutes)\r\n\r\nBonus #2 - IM Productivity Hacks Training & Templates (59 minutes)\r\n\r\nBonus #3 - Commission Five (5 Additional Case Studies & Training)\r\n\r\nThis could easily be a $97 or $297 course, but what Kevin is asking for it now, is a complete steal.\r\n\r\nBut it won\'t last long, so don\'t delay.\r\n\r\nGrab Your Copy Here: https://www.nowbusiness.info/affiliatetakeover \r\n\r\nJeannie French\r\n\r\n\r\nUNSUBSCRIBE: https://www.nowbusiness.info/unsubscribe \r\nAddress: 2766 Harvest Lane\r\nBakersfield, CA 93304',''),(2214,2,488,'7','Tory Belz',''),(2215,2,488,'2','belz.tory56@yahoo.com',''),(2216,2,488,'3','(797) 247-7528',''),(2217,2,488,'5','Influencer Inquiry',''),(2218,2,488,'6','Hi there,\r\n\r\nMy name is Tory from Monkey Digital, \r\n\r\nAllow me to present to you a lifetime revenue opportunity of 35%\r\nThat\'s right, you can earn 35% of every order made by your affiliate for life.\r\n\r\nSimply register with us, generate your affiliate links, and incorporate them on your website, and you are done. It takes only 5 minutes to set up everything, and the payouts are sent each month.\r\n\r\nClick here to enroll with us today:\r\nhttps://www.monkeydigital.org/affiliate-dashboard/\r\n\r\nThink about it, \r\nEvery website owner requires the use of search engine optimization (SEO) for their website. This endeavor holds significant potential for both parties involved.\r\n\r\nThanks and regards\r\nTory Belz\r\nMonkey Digital',''),(2219,2,489,'7','Donald Jackson',''),(2220,2,489,'2','gptreels@keydollar.xyz',''),(2221,2,489,'3','(732) 982-9653',''),(2222,2,489,'5','Careers',''),(2223,2,489,'6','With GPTReels, you can create video reels in Flash (literally a few seconds) and sell it to unlimited clients - earn good profits for your services\r\n\r\nMore than 78% business owners rate using AI based reels as the #1 way to attract more visitors & convert them into happy customers.\r\n\r\nBut creating video reels was a very tough, energy-draining, time-consuming, and costly process.\r\n\r\nYes!\r\n\r\nThere are tons of tasks involved & missing even a single one leads to a complete rework right from scratch.\r\n\r\nNow, If you too wanna get a complete all-in-one solution for this menace…\r\n\r\nI’ve got some great news… Presenting GPT Reels\r\n\r\n[+] Creates Pro Quality Video Reels in seconds for any business in any language\r\n[+] First Video Reels Creator powered by GPT-4 AI Technology\r\n\r\n==> Show live demo : https://www.keydollar.xyz/gptreels \r\n\r\nA.I Does A to Z Steps To Create Beautiful Video Reels! Just Enter Keywords and It Will Give You...\r\n\r\nIdeas & Help Writing Scripts\r\nFinding Relevant Videos & Images\r\nAdd Powerful Animation\r\nAdd Mesmerizing Music\r\nCreate Attractive Reels, Videos & Shorts\r\n\r\nBe it Website Videos, Ads, Promotional, Entertaining, Infomercial, Advertising, Learning Video…\r\n\r\nBig marketers are calling GPT Reels as BESTEST and FASTEST A.I Video Reel Creator in the new age of A.I era\r\n\r\nImagine creating any type of video reels in seconds\r\n\r\n...WITHOUT skills,\r\n...WITHOUT recording a single video\r\n...WITHOUT any budget\r\n...By entering just one Keyword and literally 3-clicks\r\n\r\nBEST Part Is: It comes with a commercial license, which means You can create video reels in Flash (literally a few seconds) and sell it to unlimited clients - earn good profits for your services\r\n\r\nNot to mention, GPT Reels has a 30-days money-back guarantee if you don\'t like it.\r\n\r\nOver 5000 business owners have bought GPT Reels lifetime deals in the last few days...\r\n\r\n==> Get GPT Reels Lifetime account at a one-time price now : https://www.keydollar.xyz/gptreels \r\n\r\nRegards,\r\nDonald Jackson\r\n\r\n\r\n\r\nUNSUBSCRIBE: https://www.keydollar.xyz/unsubscribe \r\nAddress: 1206 Hurry Street\r\nRoanoke, VA 24011',''),(2224,2,490,'7','Lenora Maddock',''),(2225,2,490,'2','lenora.maddock@gmail.com',''),(2226,2,490,'3','(717) 379-1244',''),(2227,2,490,'5','Customer Service',''),(2228,2,490,'6','Hello\r\n\r\nReady to supercharge your income effortlessly? \r\n\r\nEarn $136+ Per Day With This Magic Button, A One-click Payday App That Makes You Money Every Time Someone Clicks Their Mouse.\r\n\r\nSEE HERE => https://cutt.ly/fetz7rvC\r\n\r\nSincerely\r\nLenora\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nGermany, BW, Heubach, 73540, Kurfurstenstra?E 85\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(2229,2,491,'7','Arman Pesina',''),(2230,2,491,'2','margarita.pesina@gmail.com',''),(2231,2,491,'3','(514) 280-0371',''),(2232,2,491,'5','Customer Service',''),(2233,2,491,'6','Is your website slow and outdated?  Worrying about security threats? ️\r\n\r\nWe can help!  For just $39 a month, we offer a comprehensive website care package that includes:\r\n\r\nWebsite Maintenance: Regular updates, backups, and security checks to keep your site running smoothly and safely.\r\n\r\nWebsite Speed Optimization (Free) : Faster loading times for a better user experience and improved search engine ranking.\r\n\r\nReliable Hosting (Free): Secure and high-performance hosting with SSL certification and 3 business for Free\r\n\r\nDon\'t let a sluggish website hold you back!  Our expert team will take care of everything, so you can focus on running your business.\r\n\r\nLimited Time Offer!  Sign up for our website care package today and get your first month for just $39! \r\n\r\nWe\'re Here to Help!  Contact us today through your preferred method:\r\n\r\nVisit our website: https://arwebcrafts.com/maintenance\r\nEmail us: support@arwebcrafts.com\r\nWhatsapp: wa.me/+447401742519\r\nSkype: https://join.skype.com/invite/ykEwN9QgQGG2',''),(2234,2,492,'7','Tyree Hopkins',''),(2235,2,492,'2','coursiify@busihelp.xyz',''),(2236,2,492,'3','(250) 459-6239',''),(2237,2,492,'5','Customer Service',''),(2238,2,492,'6','Hi,\r\n\r\nIt\'s time to explore AI and reap the rewards.\r\n\r\nImagine waking up to a fully loaded course platform in any niche with a marketplace to sell them.\r\n\r\nImagine owning an Udemy-like platform worth over $100 million.\r\n\r\nYou may be laid back because this isn\'t easy…\r\n\r\nCreating a platform like Udemy can cost a ton and they need experts to record courses.\r\n\r\nWhat if you can skip all that?\r\n\r\nIntroducing Coursiify: https://www.busihelp.xyz/coursiify \r\n\r\nThe First To Market AI Virtual Assistants-Sonia Leverages Machine Learning To Turn Any Keyword Into Full E-Learning Platforms In Seconds…\r\n\r\nWith Coursiify you will get:\r\n\r\nExpertly Crafted Courses\r\nAttractive Designs\r\nZero Coding e-learning platform\r\nAn Inbuilt marketplace to market and sell all courses for you without any effort.\r\nAnd so much more.\r\n\r\nExcitedly,\r\n\r\nYou are still early and can get all amazing offers…\r\n\r\nBonuses Worth 6k+ for you here: https://www.busihelp.xyz/coursiify \r\n\r\nDon\'t miss out.\r\n\r\nGet Coursiify Here & Watch it work for you: https://www.busihelp.xyz/coursiify \r\n\r\nSee you inside\r\nTyree Hopkins\r\n\r\n\r\nUNSUBSCRIBE: https://www.busihelp.xyz/unsubscribe \r\nAddress: 2815 Diamond Street\r\nCharlotte, NC 28202',''),(2239,2,493,'7','Norma Graves',''),(2240,2,493,'2','norma.graves@gmail.com',''),(2241,2,493,'3','(371) 717-8872',''),(2242,2,493,'5','Customer Service',''),(2243,2,493,'6','Transform Your  Earnings with AMZ Automator\r\n\r\nhttps://bit.ly/AMZ_AUTOMATOR\r\n\r\nHello meadowcroftwines.com owner,\r\n\r\nI hope this message finds you well. I\'m excited to share a unique opportunity that could significantly boost your online business, particularly on Amazon.\r\n\r\nhttps://bit.ly/AMZ_AUTOMATOR\r\n\r\nAre you looking for a more automated way to generate income on Amazon? AMZ Automator is the solution you\'ve been waiting for! This revolutionary A.I. tool creates set-and-forget Amazon income streams in just 60 seconds, perfect for business owners like you who want to leverage Amazon Kindle without the hassle of technical expertise or upfront costs.\r\n\r\nWith AMZ Automator, you can:\r\n- Benefit from a **fully automated passive income system** that operates even while you sleep.\r\n- Generate multiple streams of passive income with done-for-you books.\r\n- Enjoy free clicks and traffic around the clock with no hidden fees.\r\n\r\nThis tool is a game-changer for scaling your business and achieving the freedom to earn from anywhere, anytime. For a limited time, you can access AMZ Automator at an exclusive discounted price, complete with additional bonuses.\r\n\r\nDon\'t miss this opportunity to revolutionize your Amazon business strategy. Explore AMZ Automator today and discover the impact it can have on your earnings.\r\n\r\nBest regards,\r\n\r\nhttps://bit.ly/AMZ_AUTOMATOR',''),(2244,2,494,'7','Frances Kleist',''),(2245,2,494,'2','aichildrens@vauleonline.co',''),(2246,2,494,'5','Media Inquiry',''),(2247,2,494,'6','Dear meadowcroftwines.com,\r\n\r\nDo you know that the children\'s book market is an untapped gold mine?   According to recent data, it\'s a booming $4 billion industry in the US alone!\r\n\r\nDid you also know that an increasing number of parents and educators are turning to online platforms to find engaging and educational children\'s books?   Over 60% of children\'s books are now purchased online!\r\n\r\nNow, here\'s the real kicker: with the brand new A.I. Children\'s Book Maker, you can easily tap into this lucrative market:\r\n\r\nhttps://www.vauleonline.co/aichildrens \r\n\r\nThis innovative web app uses artificial intelligence to write and illustrate high-quality children\'s books in just minutes.   No need for writing or illustrating skills.   Just input your idea and let the AI bring your story to life.\r\n\r\nImagine creating a unique product for this thriving market, without the traditional overhead costs of book publishing.   This could open up a significant new revenue stream for you.\r\n\r\nDon\'t miss out on this.   The launch special will be ending soon:\r\n\r\nhttps://www.vauleonline.co/aichildrens \r\n\r\nTry the A.I. Children\'s Book Maker today and take your entrepreneurial journey to the next level.\r\n\r\nTo your success,\r\n\r\nFrances Kleist\r\n\r\n\r\n\r\nUNSUBSCRIBE: https://www.vauleonline.co/unsubscribe \r\nAddress: 3357 Thompson Drive\r\nOakland, CA 94607',''),(2248,2,495,'7','Local SEO',''),(2249,2,495,'2','brandbuildingassistance@outlook.com',''),(2250,2,495,'3','(325) 277-8813',''),(2251,2,495,'5','Customer Service',''),(2252,2,495,'6','Boost your local presence and stand out with our expert Local SEO and Google My Business services! Elevate your visibility, attract more customers, and dominate your local market. \r\n\r\nReach out to me today at Brandbuildingassistance@outlook.com and let\'s start optimizing your online presence for success!',''),(2253,2,496,'7','Gina Brown',''),(2254,2,496,'2','Gina.Brown@biviotransort.com',''),(2255,2,496,'3','(209) 272-3358',''),(2256,2,496,'4','ATI-2433-1',''),(2257,2,496,'5','Wines',''),(2258,2,496,'6','Hello. I have Hillebrand order ATI-2433-1 that they have asked our company to pick up. I have been provided the address as 1446 Industrial Ave. Sebastopol. Please provide a contact in your shipping department that I can reach out to and get this order scheduled for pickup.',''),(2259,2,497,'7','Your Life Insurance Now',''),(2260,2,497,'2','yourlifeinsurancenow90@gmail.com',''),(2261,2,497,'3','(446) 461-4252',''),(2262,2,497,'4','4203',''),(2263,2,497,'5','Wines',''),(2264,2,497,'6','Life\'s unpredictable. Life insurance keeps your loved ones secure, no matter what happens. \r\n \r\nGet a free, no obligation quote in minutes and be insured nearly instantly. \r\n \r\nPlans starting at $4 per month. \r\n \r\nReply for more information, \r\n \r\nThe Team At Your Life insurance Now',''),(2265,2,498,'7','Emerson Garretson',''),(2266,2,498,'2','emerson.garretson@gmail.com',''),(2267,2,498,'3','(375) 253-4229',''),(2268,2,498,'5','Influencer Inquiry',''),(2269,2,498,'6','Hi\r\n\r\nAttention! A revolutionary opportunity awaits.\r\n\r\nDiscover the hidden secret within Jeff Bezos\' Amazon empire – a secret that provides you with a continuous flow of free traffic and exceptional Amazon commissions!\r\n\r\nWHY AMZ AUTOMATOR IS A GAME-CHANGER:\r\n[+] Free Traffic: Tap into an untapped Amazon Prime traffic source.\r\n[+] Massive Commissions: Earn up to $293.47 per day effortlessly.\r\n[+] User-Friendly: No complicated or costly setups needed.\r\n\r\nREAL SUCCESS STORIES:\r\n[Emerson] \"AMZ AUTOMATOR has totally changed how I earn Amazon commissions. It\'s incredible!\"\r\n\r\nLIMITED TIME OFFER:\r\nThis exclusive Amazon Prime secret won\'t last long. Act now!\r\n\r\nCLICK HERE TO START EARNING =>>  https://cutt.ly/TetnxHkj\r\n\r\nSeize this moment. Secure your spot among the successful today!\r\n\r\nWarm regards\r\nEmerson\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nItaly, SV, Cisano Sul Neva, 17035, Via Vipacco 131\r\nTo stop any further communication from us, please reply to this email...',''),(2270,2,499,'7','Ernie Messner',''),(2271,2,499,'2','messner.ernie37@outlook.com',''),(2272,2,499,'5','Customer Service',''),(2273,2,499,'6','Game changing customer financing approves down to 500 FICO More approvals = More Profits\r\n\r\n++ This Offer Only For Businesses In The USA ++\r\n\r\nContact me below for details\r\n\r\nJessica Snyder\r\njessica.snyder@helloratespros.com\r\nhttps://helloratespros.com/5-6/',''),(2274,2,500,'7','Delora Carroll',''),(2275,2,500,'2','coursiify@kagrowth.org',''),(2276,2,500,'3','(217) 401-0187',''),(2277,2,500,'5','Careers',''),(2278,2,500,'6','Hi,\r\n\r\n$1,320 daily was a scratch for him lately and he can\'t help but share…\r\n\r\nAll he did was create an E-learning platform with fully loaded courses and sell in an Inbuilt marketplace with millions of users\r\n\r\nNo, he didn\'t have to code, get experts, or record any course.\r\n\r\nSee How Coursiify did it in seconds for him: https://www.kagrowth.org/coursiify \r\n\r\nYou too can do so ok?  you just need to replicate and get more results.\r\n\r\nYou don\'t need to invest a dime...\r\n\r\nYou don\'t need to pay anyone to get your courses.\r\n\r\nYou don\'t need to worry about designs.\r\n\r\nCoursiify does this and more for you.\r\n\r\nWorried about making sales?\r\n\r\nNever worry about ads, that\'s Damn expensive.\r\n\r\nMarketing is fully DFY, Tap into the marketplace with millions of users and get users queuing in.\r\n\r\nJust relax like him and get paid every day with Coursiify AI.\r\n\r\nBefore I forget, the Commercial License is up only today.\r\n\r\nStart Now & Make $1k+ Today: https://www.kagrowth.org/coursiify \r\n\r\nYou\'re gonna be glad you did.\r\n\r\nDelora Carroll\r\n\r\n\r\nP.S. This is a lifetime opportunity for the lucky few, in a bit, this offer closes and you will pay high to get in.  Pay a low one-time fee and get in ASAP.\r\n\r\n\r\n\r\nUNSUBSCRIBE: https://www.kagrowth.org/unsubscribe \r\nAddress: 3643 Washburn Street\r\nBaton Rouge, LA 70805',''),(2279,2,501,'7','Melina Sherwood',''),(2280,2,501,'2','sherwood.melina@gmail.com',''),(2281,2,501,'3','(902) 628-5833',''),(2282,2,501,'5','Influencer Inquiry',''),(2283,2,501,'6','Greetings\r\n\r\nAttention! A revolutionary opportunity awaits.\r\n\r\nDiscover the hidden secret within Jeff Bezos\' Amazon empire – a secret that provides you with a continuous flow of free traffic and exceptional Amazon commissions!\r\n\r\nWHY AMZ AUTOMATOR IS A GAME-CHANGER:\r\n[+] Free Traffic: Tap into an untapped Amazon Prime traffic source.\r\n[+] Massive Commissions: Earn up to $293.47 per day effortlessly.\r\n[+] User-Friendly: No complicated or costly setups needed.\r\n\r\nREAL SUCCESS STORIES:\r\n[Melina] \"AMZ AUTOMATOR has totally changed how I earn Amazon commissions. It\'s incredible!\"\r\n\r\nLIMITED TIME OFFER:\r\nThis exclusive Amazon Prime secret won\'t last long. Act now!\r\n\r\nCLICK HERE TO START EARNING =>>  https://cutt.ly/TetnxHkj\r\n\r\nSeize this moment. Secure your spot among the successful today!\r\n\r\nSincerely\r\nMelina\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nCanada, PE, Rice Point, C0a 1h6, 1867 Wharf Road\r\nTo stop any further communication from us, please reply to this email...',''),(2284,2,502,'7','Malissa Lyng',''),(2285,2,502,'2','lyng.malissa@gmail.com',''),(2286,2,502,'3','(373) 008-1357',''),(2287,2,502,'5','Careers',''),(2288,2,502,'6','One of Dan\'s companies generated $1 Million Dollars with only ONE Funnel.\r\n\r\nHow did he do that? Surprisingly, the fastest way to bring traffic to your website only takes four steps. \r\nAnd those are only 4 steps of 20 you could learn. \r\n\r\nWatch the video to explore all of Dan\'s traffic secrets: https://saloof.com/dan-lok/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nUnsubscribe\r\nhttps://saloof.com/unsubscribe',''),(2289,2,503,'7','Phil Stewart',''),(2290,2,503,'2','noreplyhere@aol.com',''),(2291,2,503,'3','(342) 123-4456',''),(2292,2,503,'5','Careers',''),(2293,2,503,'6','Want Your Ad Everywhere? Reach Millions Instantly! For less than $100 I can blast your message to website contact forms globally. Contact me via skype or email below for info\r\n\r\nPhil Stewart\r\nEmail: 3ylmvc@submitmaster.xyz\r\nSkype: form-blasting',''),(2294,2,504,'7','Madeleine Monte',''),(2295,2,504,'2','madeleine.monte@googlemail.com',''),(2296,2,504,'5','Influencer Inquiry',''),(2297,2,504,'6','Good day\r\n\r\nReady to supercharge your income effortlessly? \r\n\r\nEarn $136+ Per Day With This Magic Button, A One-click Payday App That Makes You Money Every Time Someone Clicks Their Mouse.\r\n\r\nSEE HERE => https://cutt.ly/fetz7rvC\r\n\r\nBest regards\r\nMadeleine\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nAustria, BURGENLAND, Raudaschlmuhle, 4861, Stadionstrasse 15\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(2298,2,505,'7','Roshan Pokharel',''),(2299,2,505,'2','b2b@ajadynasty.com',''),(2300,2,505,'3','(970) 261-5915',''),(2301,2,505,'4','12345789',''),(2302,2,505,'5','Careers',''),(2303,2,505,'6','Attention: Procurement/Purchasing Team \r\n\r\n\r\n\r\nSubject: Aja Dynasty\'s Nepal-Inspired Artisanal BEESWAX CANDLE Collection Proposal \r\n\r\n \r\n\r\nDear Procurement Team,\r\n\r\n \r\n\r\nWe proudly present our curated range of Himalayan BEESWAX CANDLES inspired by Nepali woodcarvings utilizing natural beeswax. \r\n\r\n \r\n\r\nHighlights: \r\n\r\n \r\n\r\nAuthenticity: Each item reflects the rich culture and craftsmanship of Nepal. \r\n\r\nEthical & Sustainable: Products are designed and crafted by Aja Dynasty using eco-conscious materials. \r\n\r\nHandcrafted Excellence: Our candles promise distinctiveness and quality. \r\n\r\n \r\n\r\nWe\'re convinced our collection resonates with your company’s ethos and would captivate your discerning clientele, offering them a piece of Nepal\'s heritage. \r\n\r\n \r\n\r\nWe’re eager to send catalogs and discuss potential collaboration opportunities. Kindly reach out at www.ajadynasty.com, +977 970 261 5915, and b2b@ajadynasty.com. \r\n\r\n \r\n\r\nWarm regards, \r\n\r\nRoshan Pokharel \r\n\r\nCEO, Aja Dynasty \r\n\r\nb2b@ajadynasty.com \r\n@ajadynasty\r\nwww.ajadynasty.com',''),(2304,2,506,'7','Doretha Longstaff',''),(2305,2,506,'2','doretha.longstaff39@gmail.com',''),(2306,2,506,'3','(867) 789-6166',''),(2307,2,506,'5','Media Inquiry',''),(2308,2,506,'6','Hi\r\n\r\nUnlock the secret to earning over $300 daily, starting right now. \r\n\r\nDiscover how effortless it is – anyone can do it... \r\n\r\nDon\'t miss this exclusive opportunity. \r\n\r\nClick here to get started! =>  https://cutt.ly/feugVZkY\r\n\r\nThank you\r\nDoretha\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nGermany, BY, Burghausen, 84480, Langenhorner Chaussee 61\r\nTo stop any further communication from us, please reply to this email...',''),(2309,2,507,'7','Amelia Brown',''),(2310,2,507,'2','ameliabrown0325@gmail.com',''),(2311,2,507,'3','(357) 188-0555',''),(2312,2,507,'5','Careers',''),(2313,2,507,'6','Hi there,\r\n\r\nWe run a Youtube growth service, where we can increase your subscriber count safely and practically. \r\n\r\n- Guaranteed: We guarantee to gain you 700-1500 new subscribers each month.\r\n- Real, human subscribers who subscribe because they are interested in your channel/videos.\r\n- Safe: All actions are done, without using any automated tasks / bots.\r\n\r\nOur price is just $60 (USD) per month and we can start immediately.\r\n\r\nIf you are interested then we can discuss further.\r\n\r\nKind Regards,\r\nAmelia\r\n\r\nUnsubscribe: https://removeme.click/yt/unsubscribe.php?d=meadowcroftwines.com',''),(2314,2,508,'7','James Durham',''),(2315,2,508,'2','alebooksuite@vaulemedia.com',''),(2316,2,508,'5','Customer Service',''),(2317,2,508,'6','Let’s be honest…\r\n\r\nWe all are here to make money…\r\n\r\nIt’s the only reason you are reading this email right now…\r\n\r\nAnd that’s actually a good thing, because what I’m about to show you…\r\n\r\nWill give you exactly that…\r\n\r\nYou see, just now the door has finally opened to the biggest and most robust AI app in 2024\r\n\r\nAleBookSuite…\r\n\r\nIt’s the world’s first AI app that allows you to turn any keyword into a jaw-dropping and addictive ebook, flipbook, puzzle, or anything you like: https://www.vaulemedia.com/alebooksuite\r\n\r\nAll without you doing any of the work…\r\n\r\nYes, you read that right…\r\n\r\n\r\nWithout you writing a single word\r\nWithout you designing anything\r\nWithout you promoting anything\r\n\r\n\r\nYou won’t do any of the work, and still make hundreds of dollars every single day no problem…\r\n\r\nSounds good?       Click here right now and watch it in action: https://www.vaulemedia.com/alebooksuite\r\n\r\nCheers,\r\nJames Durham\r\n\r\n\r\n\r\nUNSUBSCRIBE: https://www.vaulemedia.com/unsubscribe \r\nAddress: 811 Jefferson Street\r\nHampton, VA 23666',''),(2318,2,509,'7','Roberto Evers',''),(2319,2,509,'2','gptreels@busitoday.co',''),(2320,2,509,'3','(514) 290-5971',''),(2321,2,509,'5','Careers',''),(2322,2,509,'6','Ok,\r\n\r\nUnless you’re living on Mars,\r\n\r\nYou must be aware of the fact that video reels have dominated the industry from tip to toe.\r\n\r\n& its also highlighted by the fact that…\r\n\r\n68% of Fortune 500 companies use video reels for engaging their audience.\r\n\r\nSounds interesting…\r\n\r\nYou’re at the right place today as…\r\n\r\nI am talking about a completely automated process that \"Writes\", \"Composes\",\r\n\r\nand \"Publishes\" video reels using nothing but a keyword.\r\n\r\nNot ordinary video reels, but pro high-quality video reels with images, videos, text, and even animations,\r\n\r\nALL DONE FOR YOU. GPT Reels does it ALL.\r\n\r\n==> Show live demo : https://www.busitoday.co/gptreels \r\n\r\nCreating a video with GPT Reels is easy:\r\n\r\nStep 1: Enter a keyword, text, or URL as input or select from templates\r\nStep 2: Let AI create a video reel or customize using a drag-n-drop editor\r\nStep 3: Hit RENDER and publish\r\n\r\nBe it Website Videos, Ads, Promotional, Entertaining, Infomercial, Advertising, Learning Video...\r\n\r\nEnter Keyword, and GPT Reels will\r\n\r\n1. Give ideas and suggest topics\r\n2. Write scripts\r\n3. Create scenes and designs (adds stock images, videos, animation, and music automatically)\r\n4. Does the epic voice-over\r\n5. Produce quality video reels in any style in any language\r\n\r\nNot just that, It has a URL Video Reel Creator.\r\n\r\nIt takes your website, scans for the content, turns that into slides AUTOMATICALLY, and your Video reels are ready.\r\n\r\nYour audience will be amazed!\r\n\r\nWith Commercial License: create video reels, sell them to unlimited clients- earn good profits for your services.\r\n& you’re also getting an iron clad 30 day money back guarantee included.\r\n\r\nSo,\r\n\r\nThere’s nothing to worry about now…\r\n\r\nHit the button & get GPT Reels with premium B0nuses today…\r\n\r\n==> Get a GPT Reels Lifetime account at a one-time price now : https://www.busitoday.co/gptreels \r\n\r\nRegards,\r\nRoberto Evers\r\n\r\n\r\n\r\nUNSUBSCRIBE: https://www.busitoday.co/unsubscribe \r\nAddress: 3749 Skinner Hollow Road\r\nOxbow, OR 97840',''),(2323,2,510,'7','Geetasri Roy',''),(2324,2,510,'2','contentgeetasriroy@gmail.com',''),(2325,2,510,'3','(422) 293-6424',''),(2326,2,510,'5','Careers',''),(2327,2,510,'6','Dear https://meadowcroftwines.com/,\r\n\r\nI hope you’re well. I’m Geetasri, a professional content writer, and I noticed your impressive work. I offer high-quality content writing and guest posting services to enhance your online presence at an affordable price.\r\n\r\nServices:\r\n\r\n    Content Writing: Engaging articles and web content tailored to your brand.\r\n    Guest Posting: Secure posts on reputable sites to boost SEO.\r\n\r\nWhy Choose Me:\r\n\r\n    Expertise: Years of experience across various industries.\r\n    SEO Focus: Content designed to improve search rankings.\r\n    Reliability: Consistent, on-time delivery.\r\n\r\nI’d love to discuss how I can support your business. Please let me know a convenient time to chat.\r\n\r\nBest regards,\r\n\r\nGeetasri',''),(2328,2,511,'7','Alva Meeker',''),(2329,2,511,'2','alva.meeker@gmail.com',''),(2330,2,511,'6','Greetings\r\n\r\nGenerate effortless income of $531 per day with YouTube Channels in just 60 seconds! \r\n\r\nNo technical skills required, no video creation, and no need to be on camera. \r\n\r\nStart now  =>> https://cutt.ly/wetz8pIQ\r\n\r\nBest regards\r\nAlva\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nAustria, BURGENLAND, Au, 4725, Archkogl 32\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(2331,2,512,'7','CompanyRegistar.com',''),(2332,2,512,'2','hassan.roseby@gmail.com',''),(2333,2,512,'3','(630) 639-8326',''),(2334,2,512,'5','Customer Service',''),(2335,2,512,'6','Dear Sir/Madam\r\n\r\nThis will severely impact your page rank, the more directories your company is listed \r\n\r\nin, globally or locally, the more back links you have and the higher you rank in Google - Bing - Yahoo.\r\n\r\nIt has never been easier to promote your online property\r\n\r\nJust a few inputs and our program willl do the rest. No more worries about manual link building - email verification or CAPTHCAs.\r\n\r\nWe\'ve automed everything that we could have to make submitting your website a \r\n\r\nbreeze.\r\n\r\nSee your site on the first page.\r\n\r\nWe will list your online property to numerous directories and give you a full \r\n\r\nreport on the status of each registry. Although we have created an automated system to \r\n\r\na large extent, some of the listings may require manual approval which could cause a slight \r\n\r\ndelay.\r\n\r\nMaking your life easier\r\n\r\nCompanyRegistar.com',''),(2336,2,513,'7','Priscilla Vann',''),(2337,2,513,'2','vann.priscilla@outlook.com',''),(2338,2,513,'3','(455) 793-4756',''),(2339,2,513,'5','Careers',''),(2340,2,513,'6','Hi there, my name is Cody Griner. I apologize for using your contact form, \r\nbut I wasn\'t sure who the right person was to speak with in your company. \r\nWe have a patented application that creates Local Area pages that rank on \r\ntop of Google within weeks, we call it Local Magic.  Here is a link to the \r\nproduct page https://www.mrmarketingres.com/local-magic/ . The product \r\nleverages technology where these pages are managed dynamically by AI and \r\nit is ideal for promoting contractors on Google.  Can I share a testimonial \r\nfrom one of our clients with you?  I can also do a short zoom to \r\nillustrate their full case study if you have time for it? \r\ncody@mrmarketingres.com 843-720-7301',''),(2341,2,514,'7','Pantu Mondal',''),(2342,2,514,'2','pantumondal211@gmail.com',''),(2343,2,514,'3','(772) 118-1680',''),(2344,2,514,'5','Media Inquiry',''),(2345,2,514,'6','Dear https://www.meadowcroftwines.com/,\r\n\r\nI hope this message finds you well. My name is Pantu, and I am the Admin at https://thetechnoninja.com/ . We are excited to announce that we are now accepting guest post submissions and would be thrilled to have you contribute to our platform.\r\n\r\nHow to Submit:\r\nPlease send your completed article to Pantumondal22@gmail.com with the subject line “Guest Post Submission – [Your Topic].” We aim to review submissions within 24 hour and will notify you once your article has been accepted for publication.\r\n\r\n\r\nThank you for considering this opportunity. We look forward to your contribution!\r\n\r\nBest regards,',''),(2346,2,515,'7','Theresa Smith',''),(2347,2,515,'2','fernando.jiron@gmail.com',''),(2348,2,515,'3','(783) 771-7308',''),(2349,2,515,'5','Customer Service',''),(2350,2,515,'6','Would you like to burn 750-1500 calories a day without having to work out? If yes, we have a solution, and if you order today, you will Get One FREE!\r\n\r\nWe created the first ever, luxury, all-day-wearable weight bands that goes on your wrist, ankles, & waist. The great thing is, they look stylish, super sexy, and you can wear them with any outfit.\r\n\r\nPlus, we make it easy to burn calories, you just put them on in the morning and go about your day, then take them off at night. You’ll burn calories, shed pounds, build muscle, improve your cardiovascular system, increase endurance, and gain more flexibility at the same time.  Plus! If you go for a walk or hit the gym you can burn even more calories. \r\n\r\nNow is your chance to get the body you always dreamed of, and because we will give you one full set absolutely FREE, you can give your free gift to a friend or family member and lose weight together. \r\n\r\nWhat are you waiting for, get started today. Go Here: https://bit.ly/elebands-special-bogo\r\n \r\nJoin thousands of people who have lost weight in a natural way. We have full body sets (wrist, ankle, waist) in 5, 10, 15, 20, 25 and 30 pounds (per set) so no matter your fitness goals we have you covered. \r\n\r\nStart getting results NOW!, the smart and easy way!!\r\n\r\nOUR BANDS HELP YOU TO: \r\n\r\n- Burn calories all-day\r\n- Have a sculpted body\r\n- Slim down all over\r\n- Tighten glutes\r\n- Tone your calves \r\n- Firm up abs\r\n\r\nMany of our clients are losing 2-3 pounds every week and getting major health benefits just by going about their day and handling business as usual. \r\n\r\nWhat are you waiting for, get started today. Go Here: https://bit.ly/elebands-special-bogo',''),(2351,2,516,'7','Kelsey Bauer',''),(2352,2,516,'2','kelseyraeb11@gmail.com',''),(2353,2,516,'3','(707) 775-1636',''),(2354,2,516,'5','Careers',''),(2355,2,516,'6','Hi! My name is Kelsey Bauer and I am an incoming senior at Sonoma Valley High School. I live across the street from the Meadowcroft tasting room at Cornerstone and am looking for a summer job. I was wondering if there are any available positions here! I would love to hear back from you, and you can contact me via email at kelseyraeb11@gmail.com or via phone call or text at (707)775-1636.\r\nThanks!\r\nKelsey Bauer',''),(2356,2,517,'7','Lenard Guay',''),(2357,2,517,'2','guay.lenard@gmail.com',''),(2358,2,517,'5','Influencer Inquiry',''),(2359,2,517,'6','Hi there,\r\n\r\nAre you tired of paying monthly fees for website hosting, cloud storage, and funnels?\r\n\r\nWe offer a revolutionary solution: host unlimited websites, files, and videos for a single, low one-time fee. No more monthly payments.\r\n\r\nHere\'s what you get:\r\n\r\nUltra-fast hosting powered by Intel® Xeon® CPU technology\r\nUnlimited website hosting\r\nUnlimited cloud storage\r\nUnlimited video hosting\r\nUnlimited funnel creation\r\nFree SSL certificates for all domains and files\r\n99.999% uptime guarantee\r\n24/7 customer support\r\nEasy-to-use cPanel\r\n365-day money-back guarantee\r\n\r\nPlus, get these exclusive bonuses when you act now:\r\n\r\n60+ reseller licenses (sell hosting to your clients!)\r\n10 Fast-Action Bonuses worth over $19,997 (including AI tools, traffic generation, and more!)\r\n\r\nDon\'t miss out on this limited-time offer! The price is about to increase, and this one-time fee won\'t last forever.\r\n\r\nClick here to learn more: https://furtherinfo.org/yarx\r\n\r\nLenard',''),(2360,2,518,'7','Eulalia Duarte',''),(2361,2,518,'2','eulalia.duarte@outlook.com',''),(2362,2,518,'3','(794) 132-3328',''),(2363,2,518,'5','Customer Service',''),(2364,2,518,'6','Have you ever worried that you won’t make payroll?\r\n\r\nAre rising business expenses stressing you out?\r\n\r\nLet us help take this stress away & give you some breathing room. \r\n\r\nGet a no obligation working capital quote in less than 2 minutes. \r\n\r\n++ This Offer Only For Businesses In The USA ++\r\n\r\nContact me below for details\r\n\r\nElizabeth Miller\r\nelizabeth.miller@helloratesfastfunding.com\r\nhttps://www.helloratesfastfunding.com',''),(2365,2,519,'7','Jaiya A.',''),(2366,2,519,'2','dont.wait.to.date.00@gmail.com',''),(2367,2,519,'3','(289) 387-9210',''),(2368,2,519,'6','Only 2 Days Remaining for Complimentary access to The Ultimate Relationship Course\r\n\r\nHad enough of waiting for love to find its way to you?\r\n\r\nWith our brand new relationship advice course, \"Don\'t Wait to Date\", you will learn how to be the best partner, the techniques for discovering your perfect match, and the methods for cultivating a lasting and loving relationship.\r\n\r\nWe\'re offering you a exclusive chance to change your love life for free of charge!\r\n- Yes, you understood that correctly - completely free!\r\n- Permanent access if you sign up.\r\n- Zero financial info is needed.\r\n\r\nAll we ask: we\'d love a review from you provided that you like the course content.\r\n\r\nBut hurry, this offer concludes in 2 days (June 10th).\r\n\r\nDo not miss out on the chance to utilize this course to assist in finding you the ideal partner.\r\n\r\nDon\'t let romance escape you. Take action now!\r\n\r\nClick the link below to claim your no-cost pass and begin your path towards enduring happiness:\r\n\r\nhttps://www.udemy.com/course/dont-wait-to-date/?couponCode=FAA6BBF7BB30F589FA36\r\n- Any issue with the coupon? Just email us and we get you a new one.\r\n\r\nLet\'s make your romance a reality together!\r\n\r\nWarm wishes\r\n\r\nJaiya A.\r\nAuthor\r\nDon’t Wait to Date\r\n\r\n\r\n\r\nUnsubscribe - Opt-out:\r\nReply with \"Unsubscribe\" in the subject line or email body, if you wish no further contact from us.',''),(2369,2,520,'7','Pantu Mondal',''),(2370,2,520,'2','pantumondal11@gmail.com',''),(2371,2,520,'3','(797) 591-7084',''),(2372,2,520,'6','Dear https://www.meadowcroftwines.com/,\r\n\r\nI hope you are doing well. My name is Pantu, and I am the Admin at The Gamers Talk. We are excited to announce that we are now accepting guest post submissions and would be thrilled to have you contribute to our platform.\r\n\r\nHow to Submit:\r\nPlease send your completed article to Pantumondal22@gmail.com with the subject line “Guest Post Submission – [Your Topic].” We aim to review submissions within 24 hours and will notify you once your article has been accepted for publication.\r\nHere is a Sample post: https://thegamerstalk.com/gaming-guides-and-tips/infinite-magicraid-codes/\r\n\r\n\r\nThank you for considering this opportunity. We look forward to your contribution!\r\n\r\nBest regards,',''),(2373,2,521,'7','Hanna B.',''),(2374,2,521,'2','websiterank@outlook.com',''),(2375,2,521,'3','(703) 566-4760',''),(2376,2,521,'5','Careers',''),(2377,2,521,'6','Hi,\r\n\r\nI noticed your website isn\'t ranking 1st page on Google. I specialize in SEO and can help boost your visibility. \r\n\r\nWould you like a free SEO report and proposal to improve your site\'s performance?\r\n\r\n\r\nCheers,\r\nHanna B.',''),(2378,2,522,'7','Sandy',''),(2379,2,522,'2','web.techdevelopment@outlook.com',''),(2380,2,522,'3','(258) 663-2906',''),(2381,2,522,'5','Media Inquiry',''),(2382,2,522,'6','Hi, This is Sandy, a website designer and developer. In 17 years of my career, I have worked on broad spectrum of technologies like PHP, WordPress, Codeigniter, Laravel, Opencart, Prestashop, Wix, Html, CSS, JavaScript, Drupal, Shopify, magento. I can help you in creating a new page, new design, resolving issues, upgrading website to latest version, making mobile responsive website, developing new functionality, 3D Model Integration, changing any existing functionality, API integration, Payment gateway or shipping functionality related work, Third-party apps integration in website, monthly maintenance, plugin or theme related work, improving design of all pages or uploading content.\r\n\r\nLet\'s chat on Web.techdevelopment@outlook.com',''),(2383,2,523,'7','Dotty Zakrzewski',''),(2384,2,523,'2','zakrzewski.dotty@googlemail.com',''),(2385,2,523,'3','(613) 521-1250',''),(2386,2,523,'6','Getting your business Vetted will supercharge your sales & help you close up to 60% more leads than non Vetted businesses.\r\nStart your 30 Day FREE trial & see the results for yourself. \r\nGet started & more info linked in my signature below.\r\nUSA Businesses Only\r\n\r\nSarah McCormick\r\nVetted Business Specialist\r\n295 Seven Farms Drive Suite C-201\r\nCharleston, SC 29492\r\nSarah.McCormick@VettedPros.com\r\nhttps://vettedpros.com/1-2/?a=Get-Your-Vetted-30-DAY-FREE-TRIAL! \r\n\r\nVetted is a game changing platform used by over 85,000 USA based businesses to share & prove their business credentials to amplify trust & transparency with shoppers and close up to 60% more sales than businesses not listed on the Vetted platform.',''),(2387,2,524,'7','novacodexseoaudit',''),(2388,2,524,'2','noreply7@novacodex.site',''),(2389,2,524,'5','Wines',''),(2390,2,524,'6','Is your website invisible online? Get a free SEO audit to improve ranking and attract more customers. \r\n \r\nClick here: \r\n \r\nhttps://novacodex.site/seo_audit.html',''),(2391,2,525,'7','Pantu Mondal',''),(2392,2,525,'2','pantumondal11@gmail.com',''),(2393,2,525,'3','(383) 947-2119',''),(2394,2,525,'5','Customer Service',''),(2395,2,525,'6','Dear https://www.meadowcroftwines.com/,\r\n\r\nI hope you are doing well. My name is Pantu, and I am the Admin at The Gamers Talk. We are excited to announce that we are now accepting guest post submissions and would be thrilled to have you contribute to our platform.\r\n\r\nHow to Submit:\r\nPlease send your completed article to Pantumondal22@gmail.com with the subject line “Guest Post Submission – [Your Topic].” We aim to review submissions within 24 hours and will notify you once your article has been accepted for publication.\r\nHere is a Sample post: https://thegamerstalk.com/gaming-guides-and-tips/infinite-magicraid-codes/\r\n\r\n\r\nThank you for considering this opportunity. We look forward to your contribution!\r\n\r\nBest regards,',''),(2396,2,526,'7','Jaiya A.',''),(2397,2,526,'2','dont.wait.to.date.00@gmail.com',''),(2398,2,526,'3','(289) 387-9210',''),(2399,2,526,'5','Customer Service',''),(2400,2,526,'6','Discover Your Soulmate at No Cost - Special Offer Ends Soon!\r\n\r\nAre you frustrated of longing for a soulmate? \r\n\r\nI came across your site: meadowcroftwines.com and wanted to share this.\r\n\r\nDon\'t Wait to Date is here to change your love life—for FREE!\r\n\r\nOur Special Offer:\r\n- The course value is $85, $0.00 for you!\r\n- Permanent access for updates.\r\n- No credit card required.\r\n\r\nWhy Delay?\r\n- Discover how to be an ideal partner.\r\n- Meet your perfect match.\r\n- Foster long-term connections.\r\n\r\n75 spots available for free.\r\n\r\nAll we ask is a review if you find the course helpful.\r\n\r\nThe promotion ends as soon as the spots are gone.\r\n\r\nSecure Your Spot Now:\r\n\r\nhttps://www.udemy.com/course/dont-wait-to-date/?couponCode=DWTD3EA8916EBECCE034 \r\n\r\nBest regards.\r\n\r\nJaiya A.\r\nAuthor\r\nDon’t Wait to Date\r\n\r\nOne Click Unsubscribe:\r\nThis is a one-time message, but, if you wish to opt-out, please use the link below.\r\n\r\nhttps://williever.net/unsubscribe.php?d=meadowcroftwines.com',''),(2401,2,527,'7','Abby Seabrook',''),(2402,2,527,'2','seabrook.abby@gmail.com',''),(2403,2,527,'3','(780) 420-8397',''),(2404,2,527,'5','Influencer Inquiry',''),(2405,2,527,'6','People + Processes + Capital = The Recipe for Business Success\r\n\r\nHowever most small business owners put little thought into the capital needed to scale and grow their business.\r\n\r\nIf you have the people & the business processes in place but no access to working capital, then your business will be stuck in neutral.\r\n\r\nGet a no obligation working capital quote in less than 2 minutes. \r\n\r\n++ This Offer Only For Businesses In The USA ++\r\n\r\nContact me below for details\r\n\r\nElizabeth Miller\r\nelizabeth.miller@helloratesfastfunding.com\r\nhttps://www.helloratesfastfunding.com',''),(2406,2,528,'7','Joesph Webb',''),(2407,2,528,'2','webb.joesph9@gmail.com',''),(2408,2,528,'3','(790) 412-7585',''),(2409,2,528,'6','Hello\r\n\r\nGenerate effortless income of $531 per day with YouTube Channels in just 60 seconds! \r\n\r\nNo technical skills required, no video creation, and no need to be on camera. \r\n\r\nStart now  =>> https://cutt.ly/wetz8pIQ\r\n\r\nYours sincerely\r\nJoesph\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nGreat Britain, NA, Thornham Magna, Ip23 5qy, 14 Buckingham Rd\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(2410,2,529,'7','Darcy Heffner',''),(2411,2,529,'2','heffner.darcy81@msn.com',''),(2412,2,529,'3','(676) 970-2782',''),(2413,2,529,'5','Careers',''),(2414,2,529,'6','Hi there\r\n\r\nI hope this message finds you well. I wanted to ask if you are in need of any proxy services. \r\n\r\nWE OFFER:\r\n[-] High-anonymity private browsing from major web browsers\r\n[-] High-volume content posting from proxy-supporting automation tools\r\n[-] High-performance web crawling from custom systems\r\n\r\nSee more info here :  https://cutt.ly/teu4THTP\r\n\r\nYours truly\r\nDarcy\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nAustria, CARINTHIA, Gries, 9863, Leobnerstrasse 33\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(2415,2,530,'7','Dann Chauncy',''),(2416,2,530,'2','dann.chauncy52@outlook.com',''),(2417,2,530,'3','(793) 487-9956',''),(2418,2,530,'5','Customer Service',''),(2419,2,530,'6','You don’t need to buy more leads or advertising. \r\nYou just need to convert more of the leads you already have.\r\n \r\n+Vetted helps you close up to 60% more deals and spend less on advertising.\r\n+Start your 30 Day FREE trial & see the results for yourself. \r\nUSA Businesses Only\r\n\r\nSarah McCormick\r\nVetted Business Specialist\r\n295 Seven Farms Drive Suite C-201\r\nCharleston, SC 29492\r\nSarah.McCormick@VettedPros.com\r\nhttps://vettedpros.com/1-2/?a=Are-You-Ready-To-Dominate-Your-Local-Market?\r\n\r\nVetted is a game changing platform used by over 85,000 USA based businesses to share & prove their business credentials to amplify trust & transparency with shoppers and close up to 60% more sales than businesses not listed on the Vetted platform.',''),(2420,2,531,'7','Kate Lach',''),(2421,2,531,'2','michael915@yahoo.com',''),(2422,2,531,'3','(831) 624-7863',''),(2423,2,531,'5','Customer Service',''),(2424,2,531,'6','Chocolate Cabernet Sauce',''),(2425,2,532,'7','The Ecom King',''),(2426,2,532,'2','info@theecomking.com',''),(2427,2,532,'3','(346) 913-9302',''),(2428,2,532,'5','Careers',''),(2429,2,532,'6','8 years of experience put into 1 video. Here is literally everything you need to know to achieve your first million dollars with Dropshipping in 2024.\r\n\r\nwatch it now: https://www.youtube.com/watch?v=nT8luUsO4SU\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nUnsubscribe\r\nhttps://marketersmentor.com/unsubscribe/',''),(2430,2,533,'7','Bob De Leon',''),(2431,2,533,'2','rjdeleon162@yahoo.com',''),(2432,2,533,'3','(562) 521-2221',''),(2433,2,533,'5','Customer Service',''),(2434,2,533,'6','Good morning!\r\n\r\nI have read several positive reviews on Vivino about your wine and winery for that matter and was curious about the various tasting experiences you offer.  In particular, do you offer virtual or better yet in home tastings?  The challenge would be I live in Southern CA (south LA County) however, a prominent winemaker came last year and it was highly successful, around 40 attendees.\r\n\r\nJust thought I’d ask, thank you in advance for your consideration.\r\n\r\nCheers!\r\n\r\nBob De Leon',''),(2435,2,534,'7','sammy Fairfax',''),(2436,2,534,'2','bruno.fairfax46@gmail.com',''),(2437,2,534,'3','(963) 325-8240',''),(2438,2,534,'6','Hi, \r\n\r\nStruggling to reach more customers and boost your sales in the competitive online market?\r\n\r\nWithout a user-friendly and attractive e-commerce website, you might be missing out on significant opportunities to grow your business and enhance your brand visibility.\r\n\r\nAt OutsourceBPO, we create stunning, custom e-commerce websites designed to meet your unique business needs. Here\'s how we can help:\r\n\r\n- **Custom Design:** Reflects your brand’s identity.\r\n- **User-Friendly:** Easy navigation on all devices.\r\n- **Essential Features:** Secure checkout, customer accounts, and more.\r\n- **SEO & Marketing:** Optimized and integrated to drive sales.\r\n- **Ongoing Support:** Continuous maintenance and updates.\r\n- **Affordable Pricing:** Packages to fit your budget.\r\n\r\nLet’s schedule a free consultation to discuss your goals and how we can help you achieve them. Visit https://outsource-bpo.com/website/?meadowcroftwines.com for more details .\r\n\r\nBest regards,\r\nSam',''),(2439,2,535,'7','Shauna Goninan',''),(2440,2,535,'2','shauna.goninan@gmail.com',''),(2441,2,535,'3','(341) 877-9862',''),(2442,2,535,'5','Careers',''),(2443,2,535,'6','Greetings\r\n\r\nGet Ready! A groundbreaking discovery is here.\r\n\r\nSeize this moment to unveil the astonishing secret nestled in Jeff Bezos\' Amazon empire – a secret that floods you with an endless stream of free traffic and showers you with incredible Amazon commissions!\r\n\r\nWHY TOP EARNERS LOVE AMZ AUTOMATOR:\r\n[+] Effortless Traffic: Discover a hidden traffic source from Amazon Prime.\r\n[+] Lucrative Commissions: Earn up to $293.47 daily just by watching videos.\r\n[+] Seamless Setup: No complicated or costly setups required.\r\n\r\nWHAT USERS ARE SAYING:\r\n[Shauna] \"AMZ AUTOMATOR has revolutionized my Amazon commissions. It\'s a game-changer!\"\r\n\r\nACT FAST – THIS OFFER IS LIMITED:\r\nThis exclusive Amazon Prime secret won\'t be around forever. Time is running out!\r\n\r\nCLICK HERE TO GET STARTED =>>  https://cutt.ly/uetnxZui\r\n\r\nDon\'t miss out. Join those who are capitalizing on this rare opportunity now!\r\n\r\nThank you\r\nShauna\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nItaly, BA, Putignano, 70017, Corso Alcide De Gasperi 115\r\nTo stop any further communication from us, please reply to this email...',''),(2444,2,536,'7','Arthur Case',''),(2445,2,536,'2','gptreels@vaulemedia.com',''),(2446,2,536,'3','(613) 352-7603',''),(2447,2,536,'5','Influencer Inquiry',''),(2448,2,536,'6','Ok,\r\n\r\nUnless you’re living on Mars,\r\n\r\nYou must be aware of the fact that video reels have dominated the industry from tip to toe.\r\n\r\n& its also highlighted by the fact that…\r\n\r\n68% of Fortune 500 companies use video reels for engaging their audience.\r\n\r\nSounds interesting…\r\n\r\nYou’re at the right place today as…\r\n\r\nI am talking about a completely automated process that \"Writes\", \"Composes\",\r\n\r\nand \"Publishes\" video reels using nothing but a keyword.\r\n\r\nNot ordinary video reels, but pro high-quality video reels with images, videos, text, and even animations,\r\n\r\nALL DONE FOR YOU. GPT Reels does it ALL.\r\n\r\n==> Show live demo : https://www.vaulemedia.com/gptreels \r\n\r\nCreating a video with GPT Reels is easy:\r\n\r\nStep 1: Enter a keyword, text, or URL as input or select from templates\r\nStep 2: Let AI create a video reel or customize using a drag-n-drop editor\r\nStep 3: Hit RENDER and publish\r\n\r\nBe it Website Videos, Ads, Promotional, Entertaining, Infomercial, Advertising, Learning Video...\r\n\r\nEnter Keyword, and GPT Reels will\r\n\r\n1. Give ideas and suggest topics\r\n2. Write scripts\r\n3. Create scenes and designs (adds stock images, videos, animation, and music automatically)\r\n4. Does the epic voice-over\r\n5. Produce quality video reels in any style in any language\r\n\r\nNot just that, It has a URL Video Reel Creator.\r\n\r\nIt takes your website, scans for the content, turns that into slides AUTOMATICALLY, and your Video reels are ready.\r\n\r\nYour audience will be amazed!\r\n\r\nWith Commercial License: create video reels, sell them to unlimited clients- earn good profits for your services.\r\n& you’re also getting an iron clad 30 day money back guarantee included.\r\n\r\nSo,\r\n\r\nThere’s nothing to worry about now…\r\n\r\nHit the button & get GPT Reels with premium B0nuses today…\r\n\r\n==> Get a GPT Reels Lifetime account at a one-time price now : https://www.vaulemedia.com/gptreels \r\n\r\nRegards,\r\nArthur Case\r\n\r\n\r\n\r\nUNSUBSCRIBE: https://www.vaulemedia.com/unsubscribe/?d=meadowcroftwines.com \r\nAddress: 2144 Carolina Avenue\r\nCleburne, TX 76031',''),(2449,2,537,'7','Krish',''),(2450,2,537,'2','outsourcedigitalmarketing@outlook.com',''),(2451,2,537,'3','(678) 529-1299',''),(2452,2,537,'5','Careers',''),(2453,2,537,'6','Are you looking for a content writer or copywriter who can write according to your ideas, follow your specific tone and style, and keep your audience in mind? I specialize in crafting content that is easy to read and consistent from start to finish. I currently work with many clients, interacting with their teams via video calls to ensure everything runs smoothly. Sometimes, clients ask me to conduct keyword research and plan content topics and points to cover. I also ensure all content is SEO-friendly. My experience includes writing blogs, articles, website copy, e-commerce product descriptions, e-books, and SEO content. I am happy to work within your budget. \r\n\r\nFeel free to reach out to me at outsourcedigitalmarketing@outlook.com',''),(2454,2,538,'7','Jon Lewis',''),(2455,2,538,'2','info@marketersmentor.com',''),(2456,2,538,'3','(640) 962-6675',''),(2457,2,538,'6','8 years of experience put into 1 video. Here is literally everything you need to know to achieve your first million dollars with Dropshipping in 2024.\r\n\r\nwatch it now: https://www.youtube.com/watch?v=nT8luUsO4SU\r\n\r\nTalk soon!\r\nJon\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nUnsubscribe\r\nhttps://marketersmentor.com/unsubscribe/',''),(2458,2,539,'7','Oman Frank',''),(2459,2,539,'2','enrique.frank@gmail.com',''),(2460,2,539,'3','(785) 418-7278',''),(2461,2,539,'5','Media Inquiry',''),(2462,2,539,'6','Hello,\r\n\r\nOne of the most significant hurdles for startups and existing businesses is securing the necessary funding to fuel their growth and bring their ideas to fruition. Our company specializes in providing tailored financing solutions to both startups and existing businesses. We offer debt financing with a competitive interest rate designed to support capital growth without burdening the business owners.\r\n\r\nOur loan interest rate is set at a favorable 3% annually, and with no early payment penalties, giving you the flexibility to manage your finances with ease. For those seeking equity financing, our venture capital funding option provides the capital you need to fuel your expansion. With just a modest 10% equity stake, you can access the resources necessary to scale your business while retaining control and ownership. We recognize these challenges and are committed to providing startups with flexible financing options tailored to their unique needs.\r\nWe are happy to review your pitch deck or executive summary to better understand your business and this will assist in determining the best possible investment structure that we can pursue and discuss extensively.\r\n\r\nI look forward to further communication.\r\n\r\nBest Regard,\r\n\r\nOman Rook\r\n\r\nExecutive Investment Consultant/Director\r\nCateus Investment Company (CIC)\r\n2401 AlMoayyed Tower Seef District\r\nManama - Kingdom of Bahrain\r\nPhone: +973-17-585338\r\nEmail: oman.rook@cateusgroup.org, cateusgroup@gmail.com',''),(2463,2,540,'7','Celinda Deyoung',''),(2464,2,540,'2','celinda.deyoung@gmail.com',''),(2465,2,540,'3','(732) 626-0095',''),(2466,2,540,'5','Careers',''),(2467,2,540,'6','Hi\r\n\r\nReady to supercharge your income effortlessly? \r\n\r\nEarn $136+ Per Day With This Magic Button, A One-click Payday App That Makes You Money Every Time Someone Clicks Their Mouse.\r\n\r\nSEE HERE => https://cutt.ly/fetz7rvC\r\n\r\nRespectfully\r\nCelinda\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nGermany, BW, Neresheim, 73450, An Der Schillingbrucke 42\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(2468,2,541,'7','Irma Tardent',''),(2469,2,541,'2','tardent.irma@hotmail.com',''),(2470,2,541,'3','(699) 327-9851',''),(2471,2,541,'6','People + Processes + Capital = The Recipe for Business Success\r\n\r\nHowever most small business owners put little thought into the capital needed to scale and grow their business.\r\n\r\nIf you have the people & the business processes in place but no access to working capital, then your business will be stuck in neutral.\r\n\r\nGet a no obligation working capital quote in less than 2 minutes. \r\n\r\n++ This Offer Only For Businesses In The USA ++\r\n\r\nContact me below for details\r\n\r\nElizabeth Miller\r\nelizabeth.miller@helloratesfastfunding.com\r\nhttps://www.helloratesfastfunding.com',''),(2472,2,542,'7','Milford Reiber',''),(2473,2,542,'2','milford.reiber@outlook.com',''),(2474,2,542,'3','(787) 014-4919',''),(2475,2,542,'5','Media Inquiry',''),(2476,2,542,'6','Hi there, I apologize for using your contact form, \r\nbut I wasn\'t sure who the right person was to speak with in your company. \r\nWe have a patented application that creates Local Area pages that rank on \r\ntop of Google within weeks, we call it Local Magic.  Here is a link to the \r\nproduct page https://www.mrmarketingres.com/local-magic/ . The product \r\nleverages technology where these pages are managed dynamically by AI and \r\nit is ideal for promoting any type of business that gets customers from Google.  Can I share a testimonial \r\nfrom one of our clients in the same industry?  I\'d prefer to do a short zoom to \r\nillustrate their full case study if you have time for it? \r\nYou can reach me at marketing@mrmarketingres.com or 843-720-7301. And if this isn\'t a fit please feel free to email me and I\'ll be sure not to reach out again.  Thanks!',''),(2477,2,543,'7','Elizabeth Martinez',''),(2478,2,543,'2','profitcourse@truevaule.xyz',''),(2479,2,543,'3','(519) 244-4077',''),(2480,2,543,'5','Careers',''),(2481,2,543,'6','Hi meadowcroftwines.com,\r\n\r\nThroughout the past few years, billions of people around the world have made drastic changes to their daily lives.\r\n\r\nThis particular industry has been growing EXPLOSIVELY, and it seems all the world is now hooked on it: https://www.truevaule.xyz/profitcourse \r\n\r\nWhat are they hooked on?\r\n\r\neLearning. I\'m guessing you\'ve heard about and seen it by now. There\'s a good chance you\'ve been a participant too.\r\n\r\nThe eLearning industry has absolutely exploded with growth, as it has gained tens of millions of new participants each month and continues to grow daily.\r\n\r\nAll kinds of people have jumped into the eLearning world. Students of all ages have integrated eLearning into their schooling, but that\'s just the tip of the iceberg.\r\n\r\nProfessionals in all fields have turned to eLearning to increase their knowledge, or learn new skills to help them with better employment.\r\n\r\nOthers ranging from stay-home-moms to retirees have been flocking to eLearning to enhance their lives, become healthier, and participate in new hobbies.\r\n\r\nWhen you factor in all the pet-training courses, it literally seems like everyone including grandma, and grandma\'s dog is getting involved in eLearning!\r\n\r\nThe eLearning market is now a $400 Billion industry and is predicted to grow it $840 Billion by the end of the decade.\r\n\r\nThis is the perfect time to jump into the eLearning market, and I\'ve got a great opportunity for you to start today.\r\n\r\nUsing this brand-new AI-powered platform, you can launch your own eLearning business in a matter of minutes, with no prior experience or technical skills needed!\r\n\r\nI recommend going here and checking it out immediately: https://www.truevaule.xyz/profitcourse \r\n\r\nThe launch special will be expiring soon, so don\'t wait.\r\n\r\nOthers are already joining this great opportunity, don\'t let it slip by!\r\n\r\nTo your success,\r\n \r\nElizabeth Martinez\r\n\r\nUNSUBSCRIBE: https://www.truevaule.xyz/unsubscribe/?d=meadowcroftwines.com  \r\nAddress: 1366 Kildeer Drive\r\nNorfolk, VA 23504',''),(2482,2,544,'7','Amy Baker',''),(2483,2,544,'2','rankyourwebsite@hotmail.com',''),(2484,2,544,'3','(708) 756-4040',''),(2485,2,544,'6','Hi,\r\n\r\nI hope this message finds you well. I noticed that your website is not currently ranking on the first page of search results on Google, Yahoo, AOL, and other major search engines. As an experienced SEO specialist, I can help change that.\r\n\r\nEffective SEO strategies can significantly enhance your online presence, drive more traffic to your site, and ultimately increase your business\'s revenue. With a tailored approach that includes keyword optimization, content strategy, backlink building, and technical SEO enhancements, I can ensure that your website climbs the ranks quickly and effectively.\r\n\r\nHere are a few benefits of working with me:\r\n- Proven track record of boosting website rankings for diverse businesses.\r\n- Transparent and ethical SEO practices that align with search engine guidelines.\r\n- Customized strategies based on thorough analysis of your industry and competitors.\r\n\r\nI would love to discuss how we can collaborate to elevate your online visibility and attract more potential customers to your website. Could we schedule a brief call at your convenience to explore this further?\r\n\r\nLooking forward to hearing from you!\r\n\r\nBest regards,\r\nAmy',''),(2486,2,545,'7','Oscar Garcia',''),(2487,2,545,'2','osgst1@hotmail.com',''),(2488,2,545,'3','(305) 903-4914',''),(2489,2,545,'5','Wines',''),(2490,2,545,'6','Good evening, I am interested to know if you use roundup or any product that contains Glyphosate,\r\n\r\nThank you,\r\n\r\nOscar',''),(2491,2,546,'7','Emma P.',''),(2492,2,546,'2','toptiercrm.email@gmail.com',''),(2493,2,546,'3','(289) 387-9210',''),(2494,2,546,'6','Life-Changing Offer: 30-Day Free Trial Inside!\r\n\r\nDuring my research I landed on meadowcroftwines.com and I believe this can give you an edge.\r\n\r\nEndless benefits:\r\n\r\n1. Chop your client management data costs to almost nothing.\r\n\r\n2. Automated marketing turns your leads to clients faster.\r\n\r\n3. Automated sales enables your team to sell way more.\r\n\r\n4. Offering you full access to a CRM powered through HighLevel for a significantly reduced price.\r\n\r\nTry it for 90 days without worries, if you are not absolutely satisfied, we offer a money-back guarantee!\r\n\r\nEnjoy around-the-clock live Zoom, email, or live chat support.\r\n\r\nYou get all this for only $20 per month after the trial.\r\n\r\nExplore more with 1 click, there is no cost to learn.\r\nhttps://toptiercrm.tech/  \r\n\r\nTalk soon,  \r\n\r\nMichelle P.\r\n\r\nTop Tier CRM \r\nAvailable Worldwide\r\n\r\n\r\n\r\nThis single-click unsubscribe option will add all your domain emails and contact forms to our Do Not Contact list, and there will be no further contact from us with marketing messages.\r\n.\r\nhttps://bullet-proof.biz/unsubscribe.php?d=meadowcroftwines.com',''),(2495,2,547,'7','Minda Laycock',''),(2496,2,547,'2','minda.laycock@googlemail.com',''),(2497,2,547,'3','(210) 641-3908',''),(2498,2,547,'5','Media Inquiry',''),(2499,2,547,'6','Hi there\r\n\r\nUnlock the secret to earning over $300 daily, starting right now. \r\n\r\nDiscover how effortless it is – anyone can do it... \r\n\r\nDon\'t miss this exclusive opportunity. \r\n\r\nClick here to get started! =>  https://cutt.ly/feugVZkY\r\n\r\nWarm regards\r\nMinda\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nUnited States, TX, San Antonio, 78240, 189 Fidler Drive\r\nTo stop any further communication from us, please reply to this email...',''),(2500,2,548,'7','Tosha Mathes',''),(2501,2,548,'2','tosha.mathes@hotmail.com',''),(2502,2,548,'3','(794) 750-4823',''),(2503,2,548,'5','Careers',''),(2504,2,548,'6','Hi there\r\n\r\nUnlock the secret to earning over $100 daily, starting right now. \r\n\r\nDiscover how effortless it is – anyone can do it... \r\n\r\nDon\'t miss this exclusive opportunity. \r\n\r\nClick here to get started! =>  https://zeep.ly/YRjLJ\r\n\r\nThank you\r\nTosha\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nGreat Britain, NA, Northwick, Bs12 3qp, 32 Hart Road\r\nTo stop any further communication from us, please reply to this email...',''),(2505,2,549,'7','Adolph Himes',''),(2506,2,549,'2','himes.adolph@gmail.com',''),(2507,2,549,'6','Hi there\r\n\r\nAre you ready to turn your dream into reality now? \r\n\r\nOur system provides the tools you need to create a profitable online business, giving you the freedom to live on your own terms.\r\n\r\nDiscover how you can get started by clicking here =>> https://cutt.ly/weySSeZh\r\n\r\nThank you\r\nAdolph\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nAustria, BURGENLAND, Pakein, 9131, Ruster Strasse 62\r\nTo stop any further communication from us, please reply to this email...',''),(2508,2,550,'7','Stormy',''),(2509,2,550,'2','stormy@meadowcroftwines.com',''),(2510,2,550,'3','(810) 420-6338',''),(2511,2,550,'4','8104206338',''),(2512,2,550,'5','Influencer Inquiry',''),(2513,2,550,'6','Good day \r\n\r\nThe New Powerful LED Flashlight is The Perfect Flashlight For Any Situation!\r\n\r\nThe 3,000 Lumens & Adjustable Zoom gives you the wide field of view and brightness other flashlights don’t have.\r\n\r\n50% OFF + Free Shipping!  Get it Now: https://linterna.cc\r\n\r\nEnjoy, \r\n\r\nStormy',''),(2514,2,551,'7','Karma Selby',''),(2515,2,551,'2','karma.selby@gmail.com',''),(2516,2,551,'3','(615) 187-4829',''),(2517,2,551,'6','Hello\r\n\r\nUnlock the secret to earning over $100 daily, starting right now. \r\n\r\nDiscover how effortless it is – anyone can do it... \r\n\r\nDon\'t miss this exclusive opportunity. \r\n\r\nClick here to get started! =>  https://zeep.ly/YRjLJ\r\n\r\nYours truly\r\nKarma\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nBrazil, DF, Paranoa, 71571-707, Quadra Quadra 17 Conjunto G 737\r\nTo stop any further communication from us, please reply to this email...',''),(2518,2,552,'7','Andrew Corlett',''),(2519,2,552,'2','aipilot@solveques.xyz',''),(2520,2,552,'5','Influencer Inquiry',''),(2521,2,552,'6','$542.43 Credited - Check Wallet Fast!!!\r\nDo you want to earn an extra $500 without a single work done?\r\n\r\nThat\'s an extra $3,500 weekly.\r\n\r\n>>Click Here to  see how to go about it and cash out $542.43 instantly: https://www.solveques.xyz/aipilot \r\n\r\nI woke up to that figure without doing any work.\r\n\r\nAll with the help of this New Cloud-based AI Tool Powered By Microsoft CoDI & KosMos that can magically Turn Your Thoughts To Real Businesses printing you $500+ daily without any single work here\r\n\r\nSincerely, You have nothing to lose if you grab this tool now…\r\n\r\nThe good news is….\r\n\r\nYou can have access to this AI now if you hurry…\r\n\r\nThe sad news is…\r\n\r\nIt is limited and if you skip this minute, you will never find this again.\r\n\r\nFortunately, you have it here >>Grab your lifetime edition copy here: https://www.solveques.xyz/aipilot \r\n\r\nIf you’ve been missing out on goodies over the years now its time to grab this life-changing offer.\r\n\r\nThis isn\'t the saturated ChatGPT, this is new, hot, and the fastest way to earn quick $$$\r\n\r\nIn 2 minutes, your money lands…\r\n\r\nClicked?  >>See wallet balance here: https://www.solveques.xyz/aipilot \r\n\r\nFastest fingers bonuses here, Claim them asap<<<(You’ll be blown away)\r\n\r\nCongratulations to you!!!\r\nAndrew Corlett\r\n\r\n\r\n\r\nUNSUBSCRIBE: https://www.solveques.xyz/unsubscribe/?d=meadowcroftwines.com  \r\nAddress: 3632 Poe Road\r\nJohns Island, SC 29455',''),(2522,2,553,'7','Emma',''),(2523,2,553,'2','emmayhong@gmail.com',''),(2524,2,553,'5','Wines',''),(2525,2,553,'6','Hi we are really interested in your blending experience program. Is it avaiable for my 7 years old son to sit by during the program? or if he can play outside in the yard with supervision of my family? thank you very much.',''),(2526,2,554,'7','Timothy Inabinet',''),(2527,2,554,'2','gptreels@nowbusiness.info',''),(2528,2,554,'5','Influencer Inquiry',''),(2529,2,554,'6','With GPTReels, you can create video reels in Flash (literally a few seconds) and sell it to unlimited clients - earn good profits for your services\r\n\r\nMore than 78% business owners rate using AI based reels as the #1 way to attract more visitors & convert them into happy customers.\r\n\r\nBut creating video reels was a very tough, energy-draining, time-consuming, and costly process.\r\n\r\nYes!\r\n\r\nThere are tons of tasks involved & missing even a single one leads to a complete rework right from scratch.\r\n\r\nNow, If you too wanna get a complete all-in-one solution for this menace…\r\n\r\nI’ve got some great news… Presenting GPT Reels\r\n\r\n[+] Creates Pro Quality Video Reels in seconds for any business in any language\r\n[+] First Video Reels Creator powered by GPT-4 AI Technology\r\n\r\n==> Show live demo : https://www.nowbusiness.info/gptreels \r\n\r\nA.I Does A to Z Steps To Create Beautiful Video Reels! Just Enter Keywords and It Will Give You...\r\n\r\nIdeas & Help Writing Scripts\r\nFinding Relevant Videos & Images\r\nAdd Powerful Animation\r\nAdd Mesmerizing Music\r\nCreate Attractive Reels, Videos & Shorts\r\n\r\nBe it Website Videos, Ads, Promotional, Entertaining, Infomercial, Advertising, Learning Video…\r\n\r\nBig marketers are calling GPT Reels as BESTEST and FASTEST A.I Video Reel Creator in the new age of A.I era\r\n\r\nImagine creating any type of video reels in seconds\r\n\r\n...WITHOUT skills,\r\n...WITHOUT recording a single video\r\n...WITHOUT any budget\r\n...By entering just one Keyword and literally 3-clicks\r\n\r\nBEST Part Is: It comes with a commercial license, which means You can create video reels in Flash (literally a few seconds) and sell it to unlimited clients - earn good profits for your services\r\n\r\nNot to mention, GPT Reels has a 30-days money-back guarantee if you don\'t like it.\r\n\r\nOver 5000 business owners have bought GPT Reels lifetime deals in the last few days...\r\n\r\n==> Get GPT Reels Lifetime account at a one-time price now : https://www.nowbusiness.info/gptreels \r\n\r\nRegards,\r\nTimothy Inabinet\r\n\r\n\r\nUNSUBSCRIBE: https://www.nowbusiness.info/unsubscribe/?d=meadowcroftwines.com \r\nAddress: 1905 Catherine Drive\r\nWest Fargo, ND 58078',''),(2530,2,555,'7','onlinecasinogames',''),(2531,2,555,'2','noreply21@novacodex.site',''),(2532,2,555,'5','Wines',''),(2533,2,555,'6','Huge variety of games, exclusive titles, tournaments, and secure play. \r\n \r\nJoin the fun! Free account, rewards and responsible tools. \r\n \r\nClick to Play Now: \r\n \r\nhttps://novacodex.site/betting.html',''),(2534,2,556,'7','Ronnie Lewis',''),(2535,2,556,'2','aipilot@enterprisetoday.info',''),(2536,2,556,'6','If you have ever used ChatGPT\r\n\r\nIt will shock you to know that  ChatGPT acts only on outdated 2021 data (contents, designs, funnels nor does it creates a website )\r\n\r\nThat\'s why smart marketers don\'t use it again...\r\n\r\nBut here is a 100x perfect solution. <<< No Monthly Fee: https://www.enterprisetoday.info/aipilot \r\n\r\nAI Pilot is the first AI assistant with 85+ Chatbots that works for you.\r\n\r\nAnything generated is Fresh from scratch… Not used by anyone.\r\n\r\nAnd this is why making 6 to 7 figures in your business will be super easy\r\n\r\nHere are some of AI Pilot Features;\r\n\r\nGenerates Content, Codes and Chatbots\r\nGenerates Social Proofs\r\nCreate Websites, Landing Page and Designs\r\nGenerates AI Flipbooks\r\nGenerates Human-like Voiceovers\r\nInteractive Element\r\nCreate Funnels\r\nGenerates Business Cards\r\n\r\nGenerates 3D Models and Videos\r\nAnd Much More.\r\n\r\n>>Click here to secure your access to this ever-green app, AI Pilot: https://www.enterprisetoday.info/aipilot \r\n\r\nIt’s time for you to stop spending money on hiring freelancers without making a profit.\r\n\r\nEven if you don’t know shit about marketing AI Pilot is the best place to start to profit HUGE consistently.\r\n\r\n>>See Proof here: https://www.enterprisetoday.info/aipilot \r\n\r\nThe best part is;\r\n\r\nYou can customize the AI Pilot App to transform your thoughts into reality,\r\n\r\nAnd this will catapult your business to the next level…\r\n\r\nWe are making over $542.43 per day with this system … you too can.\r\n\r\n>>Click here to secure your access to this ever-green app, AI Pilot: https://www.enterprisetoday.info/aipilot \r\n\r\nRonnie Lewis\r\n\r\n\r\nUNSUBSCRIBE: https://www.enterprisetoday.info/unsubscribe/?d=meadowcroftwines.com  \r\nAddress: 1787 Lucy Lane\r\nRising Sun, IN 47040',''),(2537,2,557,'7','Jon Lewis',''),(2538,2,557,'2','info@marketersmentor.com',''),(2539,2,557,'3','(676) 457-2427',''),(2540,2,557,'5','Media Inquiry',''),(2541,2,557,'6','The Ecom King will walk you through his personal Facebook and Instagram ad strategy in 2024 for Ecom & Dropshipping. \r\n\r\nHe will cover some quick tips on what he have seen over the last 8+ years marketing in this space. he will also walk you through step by step everything from testing campaigns to scaling campaigns so you can go from $0-$1000/Day In 48 Hours.\r\n\r\nWatch it here: https://www.youtube.com/watch?v=bdVdb1jJ4b4\r\n\r\nTalk soon!\r\nJon\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nUnsubscribe\r\nhttps://marketersmentor.com/unsubscribe/',''),(2542,2,558,'7','Pat Sturt',''),(2543,2,558,'2','pat.sturt@gmail.com',''),(2544,2,558,'3','(776) 288-9300',''),(2545,2,558,'5','Careers',''),(2546,2,558,'6','Hi there,\r\n\r\nAre you tired of paying monthly fees for website hosting, cloud storage, and funnels?\r\n\r\nWe offer a revolutionary solution: host unlimited websites, files, and videos for a single, low one-time fee. No more monthly payments.\r\n\r\nLearn more: https://furtherinfo.org/0wg3\r\n\r\nHere\'s what you get:\r\n\r\nUltra-fast hosting powered by Intel® Xeon® CPU technology\r\nUnlimited website hosting\r\nUnlimited cloud storage\r\nUnlimited video hosting\r\nUnlimited funnel creation\r\nFree SSL certificates for all domains and files\r\n99.999% uptime guarantee\r\n24/7 customer support\r\nEasy-to-use cPanel\r\n365-day money-back guarantee\r\n\r\nPlus, get these exclusive bonuses when you act now:\r\n\r\n60+ reseller licenses (sell hosting to your clients!)\r\n10 Fast-Action Bonuses worth over $19,997 (including AI tools, traffic generation, and more!)\r\n\r\nDon\'t miss out on this limited-time offer! The price is about to increase, and this one-time fee won\'t last forever.\r\n\r\nClick here to learn more: https://furtherinfo.org/0wg3\r\n\r\nPat\r\n\r\n\r\nIf you do not wish to receive any further offers:\r\nhttps://removeme.click/wp/unsubscribe.php?d=meadowcroftwines.com',''),(2547,2,559,'7','Jon Lewis',''),(2548,2,559,'2','info@marketersmentor.com',''),(2549,2,559,'5','Media Inquiry',''),(2550,2,559,'6','Hey,\r\n\r\nWhat if we told you that it was possible to find winning products by being able to analyze them with dozens of statistics, \r\n\r\ninspiration for your future creatives and do competitive analysis to make sure you are the best on your product, all in one platform?\r\n\r\nYou don\'t need to accumulate subscriptions on different platforms and break the bank to find your next winning products!\r\n\r\nLet me introduce you to **MINEA**, your new companion on the road to success!\r\n\r\n- An all-in-one tool that allows you to see and analyze all the ads on Facebook, TikTok, Pinterest!\r\n- An endless source of creative inspiration that will be the key to your next ad success!\r\n- Access to must-have metrics that will help you make the best decisions on your product choices!\r\n- Access to the largest e-commerce community, with expert e-commerce speakers to provide feedback and help you through the challenges!\r\n\r\nWith tens of thousands of ads analyzed every day, Minea is the largest e-commerce database, \r\nwhich will allow you to obtain all the key information to reach your goals. \r\n\r\nYour competitors have already tested hundreds of products and creatives, learn from their mistakes and get ahead of them!\r\n\r\nThe good news is that I have a great offer for you!\r\n\r\nTake advantage of a 20% discount on your subscription for 3 MONTHS, and take advantage of the thousands of ads and stores analyzed every day, \r\n\r\nby clicking here : https://marketersmentor.com/adspy\r\n\r\nBoost your e-commerce business with a powerful, reliable and complete tool adapted to the search of products on all social networks without geographical barriers.\r\n\r\nTalk soon!\r\nJon\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nUnsubscribe\r\nhttps://marketersmentor.com/unsubscribe/',''),(2551,2,560,'7','Phil Stewart',''),(2552,2,560,'2','noreplyhere@aol.com',''),(2553,2,560,'3','(342) 123-4456',''),(2554,2,560,'6','Quick question for you, would you like me to blast your ad to millions of contact forms? I posted my ad to your contact form just now and you\'re reading it so there\'s proof it works. Take a look at my site below for more info\r\n\r\nhttp://yena56.blast-to-forms.xyz',''),(2555,2,561,'7','Adi Wan',''),(2556,2,561,'2','viralbusinesscampaign@outlook.com',''),(2557,2,561,'6','Are you looking to create videos to boost your brand’s visibility and engagement, increase revenue, capture your audience\'s attention, and showcase complex ideas in a simplified way? I can help you achieve this by creating both live-action and animated explainer videos. My services include comprehensive pre-production planning, script writing, graphic design, storyboarding, video editing, animation, sound effects, background music, voiceovers, and footage compilation. If you\'re interested in communicating your business model, products, or services to your audience with a compelling explainer video.\r\n\r\nPlease reach out to me at ViralBusinessCampaign@outlook.com and share your goals.',''),(2558,2,562,'7','Amy Baker',''),(2559,2,562,'2','rankyourwebsite@hotmail.com',''),(2560,2,562,'3','(313) 933-5129',''),(2561,2,562,'5','Careers',''),(2562,2,562,'6','Hi,\r\n\r\n\r\nI visited your website, and noticed it isn\'t on the first page of Google.\r\n\r\nHigher Google rankings mean more visibility and more customers for your business. I’ve helped over 280 businesses get to the first page, leading to more traffic and sales.\r\n\r\n\r\nCan I send you our best price and a free SEO report?\r\n\r\nBest regards,\r\nAmy',''),(2563,2,563,'7','Madeline Dodds',''),(2564,2,563,'2','madeline.dodds@gmail.com',''),(2565,2,563,'3','(664) 289-4142',''),(2566,2,563,'5','Influencer Inquiry',''),(2567,2,563,'6','Hi, I was searching through Siri on my phone and I couldn’t find you.\r\n\r\nWe know how to flood your business with customers from Siri and the 4 other voice search platforms (Amazon Alexa, Google Assistant, Microsoft Copilot, and Samsung Bixby).\r\n\r\nNot only do we know how to register your business on these platforms, we know how to rank your business within the top 3 reach results to flood your business with high intent customers looking to buy.\r\n\r\nWould it be a bad idea to have your business be in the top 3 search results?\r\n\r\nI didn’t think so :)\r\n\r\n\r\nYou can learn more here:\r\n\r\nhttps://vocalseek.com/',''),(2568,2,564,'7','Betsy Hoag',''),(2569,2,564,'2','hoag.betsy58@yahoo.com',''),(2570,2,564,'5','Careers',''),(2571,2,564,'6','Hi meadowcroftwines.com Administrator.,\r\n\r\nDiscover AdCreative Ai, a revolutionary tool transforming ad content creation and optimization. Whether you\'re a seasoned marketer or a beginner, our platform helps you achieve better campaign results with AI-driven copywriting, dynamic visuals, A/B testing, and multi-platform compatibility. \r\n\r\nTry it now with a free trial: https://adcreativeai.shop/.\r\n\r\nTake your ad campaigns to the next level and see the incredible results for yourself.\r\n\r\nBest regards,',''),(2572,2,565,'7','Ross Lamb',''),(2573,2,565,'2','ross.lamb@gmail.com',''),(2574,2,565,'3','(794) 309-5466',''),(2575,2,565,'5','Media Inquiry',''),(2576,2,565,'6','Greetings\r\n\r\nReady to supercharge your income effortlessly? \r\n\r\nEarn $136+ Per Day With This Magic Button, A One-click Payday App That Makes You Money Every Time Someone Clicks Their Mouse.\r\n\r\nSEE HERE => https://cutt.ly/CesJzuMs\r\n\r\nKind regards\r\nRoss\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nUnited Kingdom, NA, Thurcaston, Le7 2dd, 34 High St\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(2577,2,566,'7','Harold Burfitt',''),(2578,2,566,'2','harold.burfitt@hotmail.com',''),(2579,2,566,'5','Media Inquiry',''),(2580,2,566,'6','Hi meadowcroftwines.com Owner!,\r\n\r\nDiscover AdCreative Ai, a revolutionary tool transforming ad content creation and optimization. Whether you\'re a seasoned marketer or a beginner, our platform helps you achieve better campaign results with AI-driven copywriting, dynamic visuals, A/B testing, and multi-platform compatibility. \r\n\r\nTry it now with a free trial: https://adcreativeai.shop/.\r\n\r\nTake your ad campaigns to the next level and see the incredible results for yourself.\r\n\r\nBest regards,',''),(2581,2,567,'7','Wilson Del Villar',''),(2582,2,567,'2','wilson@locusdaccess.com',''),(2583,2,567,'3','(214) 615-0114',''),(2584,2,567,'5','Careers',''),(2585,2,567,'6','Hi,\r\n\r\nI noticed some positive elements on your site, but also a few areas for improvement to enhance engagement and sales.\r\n\r\nI’ve created a custom guide for Meadowcroft Wines, highlighting content enhancements, speed enhancements, and more. We\'ve also used an AI heatmap and rewritten a lot of the home page to convert better. This guide is on the house!\r\n\r\nInterested in discussing it? Just reply \"Yes\" to schedule a time.\r\n\r\nBest,\r\n\r\nWilson\r\n\r\nP.S. I used your contact form because I believe these insights can truly benefit Meadowcroft Wines. Eager to discuss!',''),(2586,2,568,'7','Marita Morrow',''),(2587,2,568,'2','marita.morrow@gmail.com',''),(2588,2,568,'3','(705) 514-3824',''),(2589,2,568,'5','Influencer Inquiry',''),(2590,2,568,'6','Businesses on the Vetted Platform are more trusted & credible than those that are not.\r\nWhy? Because sharing your business credentials elevates your credibility so much that the customer will find it difficult to choose anyone but you. \r\nUse the link in my signature to add or update your Vetted business details and fully realize the powerful benefits of being a Vetted Business in your local market, your service category and your business specialty.\r\n\r\nYours in trust & transparency,\r\n\r\nSarah McCormick\r\nVetted Business Specialist\r\n295 Seven Farms Drive Suite C-201\r\nCharleston, SC 29492\r\nSarah.McCormick@VettedPros.com\r\nhttps://vettedpros.com/1-2/?a=Get-Your-Business-Vetted!\r\n\r\nVetted is a game changing platform used by over 85,000 USA based businesses to share & prove their business credentials to amplify trust & transparency with shoppers and close up to 60% more sales than businesses not listed on the',''),(2591,2,569,'7','Dianne Lepage',''),(2592,2,569,'2','lepage.dianne@yahoo.com',''),(2593,2,569,'3','(360) 733-2359',''),(2594,2,569,'5','Influencer Inquiry',''),(2595,2,569,'6','Hello\r\n\r\nReady to supercharge your income effortlessly? \r\n\r\nEarn $136+ Per Day With This Magic Button, A One-click Payday App That Makes You Money Every Time Someone Clicks Their Mouse.\r\n\r\nSEE HERE => https://cutt.ly/CesJzuMs\r\n\r\nRegards\r\nDianne\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nUnited States, WA, Bellingham, 98225, 288 Pinnickinick Street\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(2596,2,570,'7','Jerry Beeman',''),(2597,2,570,'2','jerry.beeman@gmail.com',''),(2598,2,570,'3','(674) 546-4389',''),(2599,2,570,'5','Media Inquiry',''),(2600,2,570,'6','People + Processes + Capital = The Recipe for Business Success\r\n\r\nHowever most small business owners put little thought into the capital needed to scale and grow their business.\r\n\r\nIf you have the people & the business processes in place but no access to working capital, then your business will be stuck in neutral.\r\n\r\nGet a no obligation working capital quote in less than 2 minutes. \r\n\r\n++ This Offer Only For Businesses In The USA ++\r\n\r\nGet in touch with me below for more info\r\n\r\nElizabeth Miller\r\nelizabeth.miller@helloratesfastfunding.com\r\nhttps://www.helloratesfastfunding.com',''),(2601,2,571,'7','Latosha Marler',''),(2602,2,571,'2','marler.latosha@googlemail.com',''),(2603,2,571,'3','(415) 715-5307',''),(2604,2,571,'6','Hi there\r\n\r\nGenerate effortless income of $531 per day with YouTube Channels in just 60 seconds! \r\n\r\nNo technical skills required, no video creation, and no need to be on camera. \r\n\r\nStart now  =>> https://cutt.ly/wetz8pIQ\r\n\r\nBest regards\r\nLatosha\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nUnited States, CA, San Francisco, 94124, 2284 Boring Lane\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(2605,2,572,'7','Frances Lake',''),(2606,2,572,'2','openappai@truevaule.xyz',''),(2607,2,572,'5','Customer Service',''),(2608,2,572,'6','Hey ,\r\n\r\nDreaming of creating and monetizing mobile apps without the hassle of coding?  Your dream is about to become a reality with OpenApp AI - the all-in-one solution for building, customizing, and selling Android & iOS apps effortlessly!\r\n\r\nOpenApp AI isn\'t just another app builder;  it\'s your key to unlocking the potential of app entrepreneurship.  Our groundbreaking platform allows you to transform any your ideas, keywords, website URL, blogs, pages, and e-commerce stores into polished mobile apps in less than 60 seconds!\r\n\r\n==> Watch OpenApp AI Demo In Action: https://www.truevaule.xyz/openappai \r\n\r\nGenerate highly advanced Mobile apps and upload them on different app stores Like Google-Play & Apple App Store…\r\n\r\n... To easily make huge profits weekly, monthly and annually on complete autopilot...\r\n\r\nHere\'s why OpenApp AI is your ultimate companion on the path to app success:\r\nCreate Unlimited Android & IOS Mobile Apps Using Al\r\nTransform Any Website Url, Keywords, Blogs, Pages & Ecom Store into A Fully Functional Stunning Mobile Apps\r\nBuilt-in 1500+ Professional Templates: Create Personal Or Business Mobile Apps For Any Niche Using Al\r\nPublish Your App on Google-Play and Apple store In Less Than 60 Seconds\r\nPayment Integration, accept payments in your app through Payment Gateways\r\nSend Push Notifications To Your App Users And Get Up To 98% Open Rate.\r\nSend Unlimited Emails & SMS Directly To Your Users\r\nAdd Unlimited Custom Domains & Subdomains Without Any Restrictions.\r\nBuilt-In Interactive elementsa to add Coupon, Loyalty Program, Appointment and event booking,\r\nConvert existing website URL into Android/iOS App\r\nGenerate native android and iOS apps\r\nBuilt-in App Monetization\r\nLifetime Access With No Recurring Monthly Payments\r\n\r\nDon\'t miss out on this opportunity to join the ranks of successful app entrepreneurs.  Join the OpenApp AI revolution and start building your app empire today!\r\n\r\nAccess OpenApp AI Now and Build Your Dream Mobile App in Seconds: https://www.truevaule.xyz/openappai \r\n\r\nOops, did I forget to mention…\r\nYou’re also getting exclusive bonuses worth $....  that will make this deal an unforgettable affair. \r\n\r\nBut these are available for a very limited time.\r\nSo, don’t you dare miss out on this.\r\n\r\nGrab OpenApp AI With Limited Time Bonuses Today: https://www.truevaule.xyz/openappai \r\nTo Your Success,\r\n\r\nFrances Lake\r\n\r\nP.S- We bet it’s the best you could get at such a low price.  So don\'t waste a second and get this before the prices go beyond your limits.\r\n\r\n\r\nUNSUBSCRIBE: https://www.truevaule.xyz/unsubscribe/?d=meadowcroftwines.com  \r\nAddress: 2635 Gnatty Creek Road\r\nWestbury, NY 11590',''),(2609,2,573,'7','Amy Baker',''),(2610,2,573,'2','rankyourwebsite@hotmail.com',''),(2611,2,573,'3','(620) 861-6278',''),(2612,2,573,'5','Influencer Inquiry',''),(2613,2,573,'6','Hello,\r\n\r\n\r\nI reviewed your website, and noticed it’s not appearing on the first page of Google search results.\r\n\r\nAchieving higher rankings on Google can significantly boost your site’s traffic and attract more customers. We’ve helped over 280 businesses enhance their online presence and grow their sales.\r\n\r\n\r\nCan I send you our pricing details and a free SEO report?\r\n\r\nBest regards,\r\nAmy',''),(2614,2,574,'7','SEObyAxy',''),(2615,2,574,'2','seosubmitter@mail.com',''),(2616,2,574,'3','(346) 503-9807',''),(2617,2,574,'5','Influencer Inquiry',''),(2618,2,574,'6','Good day\r\n\r\nMy name is Axy, and I am excited to introduce you to our comprehensive SEO services designed to boost your online visibility and drive more traffic to your website.\r\n\r\nWe understand that in today\'s competitive digital landscape, having a well-optimized website is crucial for success. \r\n\r\nThat\'s why we are offering a FREE Off-Page & On-Page SEO Audit to help you get started on the right foot.\r\n\r\nHERE\'S WHAT WE CAN DO FOR YOU:\r\n[+] Comprehensive Site Analysis: We will thoroughly check your website and create a customized Full SEO Campaign tailored to your specific needs.\r\n[+] Keyword Research: Our team will identify the most effective keywords to promote for each individual page of your site.\r\n[+] Page-by-Page Evaluation: We will review every page of your website and provide recommendations on the best package to buy and necessary changes to improve your SEO score.\r\n[+] Customized SEO Strategies: If you want to target specific keywords, we will guide you on where to make changes for optimal results.\r\n[+] Personalized SEO Packages: We can create SEO promotion packages customized to your needs or based on your budget.\r\n\r\nWe are committed to helping you achieve your business goals by enhancing your online presence. \r\n\r\nPlease feel free to reach out if you have any questions or if you are ready to take advantage of our free SEO audit.\r\n\r\n==>> https://cutt.ly/6ep8Wy06\r\n\r\nThank you for your time, and we look forward to working with you to make your website stand out!\r\n\r\nThanks,\r\nSEObyAxy\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n\r\nItaly, CE, Francolise, 81050, Via Cavour 135\r\nTo stop any further communication from us, please reply to this email with subject: Unsubscribe meadowcroftwines.com',''),(2619,2,575,'7','Garry Almeida',''),(2620,2,575,'2','garry.almeida@gmail.com',''),(2621,2,575,'3','(773) 099-8582',''),(2622,2,575,'5','Influencer Inquiry',''),(2623,2,575,'6','Hi\r\n\r\nSay goodbye to manual video editing! \r\n\r\nGenerate engaging videos for TikTok, Instagram, and YouTube in seconds.\r\n\r\nDon\'t miss our Early Bird Offer! Visit now for exclusive bonuses and discounts.\r\n\r\nSEE HERE => https://zeep.ly/GlVgW\r\n\r\nYours truly\r\nGarry\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nUnited Kingdom, NA, Monimail, Ky15 1xl, 34 South Street\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(2624,2,576,'7','Hanna B.',''),(2625,2,576,'2','websiterank@outlook.com',''),(2626,2,576,'3','(780) 118-6824',''),(2627,2,576,'6','Hi,\r\n\r\n\r\nI noticed your website, isn’t ranking on Google’s first page.\r\n\r\nImproving your Google rankings can attract more visitors and customers. With our experience helping over 280 businesses increase visibility and sales through SEO, we can help you too.\r\n\r\n\r\nInterested in our pricing and a free SEO analysis?\r\n\r\nBest regards,  \r\nHanna',''),(2628,2,577,'7','Isabel Wickliffe',''),(2629,2,577,'2','thefuturefrankes@gmail.com',''),(2630,2,577,'3','(404) 578-1405',''),(2631,2,577,'5','Customer Service',''),(2632,2,577,'6','I hope this message finds you well. My name is Isabel, and my fiancé Dillon and I are excitedly planning our wedding, which will take place on June 6, 2025. As part of our celebration, we are interested in hosting a welcome gathering for our guests on the evening of June 5, 2025.\r\n\r\nWe recently came across Meadowcroft Wines and were immediately captivated by its stunning beauty and rich history. The vineyard’s charm and elegance seem like the perfect backdrop for our welcome party, and we would be thrilled to host our event there.\r\n\r\nOur guest list includes approximately 80-90 people, and we envision the event taking place during the evening hours, anytime between 6:00 PM and 9:00 PM.\r\n\r\nWe are keen on creating a memorable evening for our guests and would appreciate any suggestions or recommendations you might have to enhance the experience at your beautiful venue.\r\n\r\nBest regards,\r\n\r\nIsabel',''),(2633,2,578,'7','Nicholas Delossantos',''),(2634,2,578,'2','nicholas@voiceai.com',''),(2635,2,578,'3','(781) 741-0517',''),(2636,2,578,'5','Careers',''),(2637,2,578,'6','In the competitive world your company is in, you can\'t afford to miss a single sales opportunity. \r\n\r\nSo what do you do when prospects call after-hours or your team is tied up? \r\n\r\nYou deploy Voice SISTEM\'s AI voice agents. Imagine having an army of expert receptionists working around-the-clock to:\r\n\r\n- Professionally greet every caller\r\n- Intelligently capture lead details \r\n- Automatically schedule appointments\r\n- Proactively reach out to prospects\r\n- Provide always-on customer service\r\n\r\nPlus, with seamless integrations into your tech stack and comprehensive call analytics, you can optimize your voice strategy in real-time.\r\n\r\nReady to see Voice SISTEM in action for Meadowcroft wines, Hwy. 121? \r\n\r\nCheck out your company’s personalized Voice AI demo here:\r\n\r\nhttps://voice.sistem.ai?business=http://www.meadowcroftwines.com',''),(2638,2,579,'7','Lottie Gable',''),(2639,2,579,'2','lottie.gable@gmail.com',''),(2640,2,579,'3','(530) 897-1395',''),(2641,2,579,'5','Influencer Inquiry',''),(2642,2,579,'6','Running a business can be stressful and hard. \r\n\r\nPayroll, Insurance, inventory, marketing ……UGHH\r\n\r\nLet us help remove that stress and give you some breathing room.\r\n\r\nGet a no obligation working capital quote in less than 2 minutes. \r\n\r\n== Must Be A US Based Business To Qualify ==\r\n\r\nGet in touch with me below for more info\r\n\r\nElizabeth Miller\r\nelizabeth.miller@helloratesfastfunding.com\r\nhttps://www.helloratesfastfunding.com',''),(2643,2,580,'7','Jennifer Obrien',''),(2644,2,580,'2','jenn@dandyreviewaitools.com',''),(2645,2,580,'3','(949) 755-7782',''),(2646,2,580,'5','Media Inquiry',''),(2647,2,580,'6','Hi there,\r\n\r\nLast attempt to reach out - we can and want to help you eliminate those bad reviews for Meadowcroft Wines. Do you have 15 minutes to talk today or tomorrow? \r\n\r\nSchedule a Call here: getdandy.com/schedule-call-3\r\n\r\nRemember: One bad review can drive away 10% of prospective customers.\r\n\r\nSincerely,\r\n\r\nJennifer O\'brien | Director of Reviews\r\nGetDandy \r\nPhone: (949)-755-7782\r\ngetdandy.com/ai-removal-tool/\r\n\r\nUnsubscribe here: docs.google.com/forms/d/e/1FAIpQLSdAq1Evx3qkNbbM6KXe7HPGZRDXFpwmhvBJb46hNeA2cA2eiQ/viewform',''),(2648,2,581,'7','Natisha Palmore',''),(2649,2,581,'2','palmore.natisha@gmail.com',''),(2650,2,581,'3','(781) 910-6535',''),(2651,2,581,'6','Businesses that get Vetted are running circles around their competition that just keeps pouring more money into leads & advertising.\r\nVetted builds essential trust, transparency & credibility to help you close up to 60% more deals. \r\nStart your 30 Day FREE trial & see the results for yourself. \r\nUSA Businesses Only\r\n\r\nSarah McCormick\r\nVetted Business Specialist\r\n295 Seven Farms Drive Suite C-201\r\nCharleston, SC 29492\r\nSarah.McCormick@VettedPros.com\r\nhttps://vettedpros.com/1-2/?a=Are-You-Ready-To-Dominate-Your-Local-Market?\r\n\r\nVetted is a game changing platform used by over 85,000 USA based businesses to share & prove their business credentials to amplify trust & transparency with shoppers and close up to 60% more sales than businesses not listed on the Vetted platform.',''),(2652,2,582,'7','Evan McKendall',''),(2653,2,582,'2','thomps18@gmail.com',''),(2654,2,582,'3','(661) 678-3202',''),(2655,2,582,'5','Customer Service',''),(2656,2,582,'6','Hi, \r\nI\'m planning to booke a seated tasting for 7/24. We have a party of 7 in total, but only 3-4 in our party will be doing a tasting as we have a couple children under 21 and not all the adults will be doing tastings. When booking the seated tasting since its prepaid, if I book it for only 3 or 4 people, how can we reserve a table that will fit our full party? Also, are we able to bring outside food?\r\n\r\nThank you!\r\nEvan McKendall',''),(2657,2,583,'7','Dave Conti',''),(2658,2,583,'2','faith.conti@gmail.com',''),(2659,2,583,'3','(425) 455-3248',''),(2660,2,583,'5','Media Inquiry',''),(2661,2,583,'6','Hey,\r\n\r\nCustomers want answers now. Don\'t lose leads with offline messages!\r\n\r\nLive chat boosts sales & loyalty. 44% of consumers love it!\r\n\r\nOpen247 provides:\r\n\r\n* Expert agents (24/7!)\r\n* Brand ambassadors\r\n* Cost-effective solution\r\n\r\nBenefits:\r\n\r\n* More conversions (capture hot leads!)\r\n* Happier customers (fast, friendly support)\r\n* Less work for you (focus on core business)\r\n\r\nGet a free quote! Email me now at open247chat@gmail.com \r\nWe\'ll customize a plan to fit your budget.\r\n\r\nP.S. Get 30 Days Free Trial Now!!',''),(2662,2,584,'7','Ferne Coventry',''),(2663,2,584,'2','ferne.coventry@googlemail.com',''),(2664,2,584,'6','Hi there\r\n\r\nReady to supercharge your income effortlessly? \r\n\r\nEarn $136+ Per Day With This Magic Button, A One-click Payday App That Makes You Money Every Time Someone Clicks Their Mouse.\r\n\r\nSEE HERE => https://tinyurl.com/27mcj29u\r\n\r\nKind regards\r\nFerne\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nAustria, BURGENLAND, Heufeld, 2640, Dreiheiligenstrasse 68\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(2665,2,585,'7','Juliette Beck',''),(2666,2,585,'2','giantebook@kagrowth.org',''),(2667,2,585,'3','(819) 771-5595',''),(2668,2,585,'5','Media Inquiry',''),(2669,2,585,'6','Hey,\r\n\r\nWhat if you could get instant access to 3,000 Ebooks with PLR Rights?\r\n\r\nEbooks that you can edit, add your name into them and sell for huge profits\r\n\r\nWould be awesome, right?  & Now it\'s 100% possible\r\n\r\nCheck out here : https://www.kagrowth.org/giantebook \r\n\r\nHere\'s what you get with Giant Ebook Kit:\r\n\r\n=> 3,000 Ebooks with PLR Rights & MRR Rights, we cover the most profitable niches such as health, wealth, dating and many more, it includes sub niches such as weight loss, make money online, content creation, dating, etc.\r\n\r\n=> Those Ebooks comes with full private label rights meaning you can do whatever you want with them, edit them, sell them, use them as they\'re, etc, here you\'re in full control\r\n \r\n=> Save you time and money, with Giant Ebook Kit, our goal is to save your time and money - and also make you HUGE profits…for that reason we have only ebooks in the most profitable niches and also they\'re all very easy to edit, use or sell :)\r\n\r\nSo what are you waiting for?\r\n\r\nGo here and purchase now : https://www.kagrowth.org/giantebook \r\n\r\nJuliette Beck\r\n\r\n\r\nUNSUBSCRIBE: https://www.kagrowth.org/unsubscribe/?d=meadowcroftwines.com  \r\nAddress: 232 Ritter Avenue\r\nArmada, MI 48005',''),(2670,2,586,'7','Diva B.',''),(2671,2,586,'2','seomakerank@outlook.com',''),(2672,2,586,'3','(313) 124-3266',''),(2673,2,586,'5','Customer Service',''),(2674,2,586,'6','Hello,\r\n\r\n\r\n\r\n\r\nI noticed your website isn\'t currently ranking on the first page of Google.\r\nHaving successfully helped over 280 businesses achieve first-page rankings, I\'m confident I can do the same for your website swiftly and effectively.\r\n\r\n\r\n\r\nCould I send you our best price and proposal, along with a complimentary SEO report?\r\n\r\n\r\n\r\nThank you,\r\n\r\nDiva',''),(2675,2,587,'7','Felicity Sauncho',''),(2676,2,587,'2','felicitysauncho@gmail.com',''),(2677,2,587,'3','(782) 412-5071',''),(2678,2,587,'5','Influencer Inquiry',''),(2679,2,587,'6','Hi there,\r\n\r\nWe run a Youtube growth service, where we can increase your subscriber count safely and practically. \r\n\r\n- Guaranteed: We guarantee to gain you 700-1500 new subscribers each month.\r\n- Real, human subscribers who subscribe because they are interested in your channel/videos.\r\n- Safe: All actions are done, without using any automated tasks / bots.\r\n\r\nOur price is just $60 (USD) per month and we can start immediately.\r\n\r\nIf you are interested then we can discuss further.\r\n\r\nKind Regards,\r\nFelicity\r\n\r\nUnsubscribe: https://removeme.click/yt/unsubscribe.php?d=meadowcroftwines.com',''),(2680,2,588,'7','Ray Seyler',''),(2681,2,588,'2','ray.seyler@gmail.com',''),(2682,2,588,'3','(651) 351-0993',''),(2683,2,588,'5','Customer Service',''),(2684,2,588,'6','Hi there\r\n\r\nGenerate effortless income of $531 per day with YouTube Channels in just 60 seconds! \r\n\r\nNo technical skills required, no video creation, and no need to be on camera. \r\n\r\nStart now  =>> https://tinyurl.com/yc889ufm\r\n\r\nBest regards\r\nRay\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nUnited States, MN, Stillwater, 55082, 1734 Bryan Avenue\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(2685,2,589,'7','Dermot Noonan',''),(2686,2,589,'2','dermot.noonan@comcast.net',''),(2687,2,589,'3','(206) 234-5749',''),(2688,2,589,'5','Wines',''),(2689,2,589,'6','Hi,\r\nI just joined the wine club.\r\nDo you send out an email before the next shipment so that I can edit the order to my taste?\r\nThanks,\r\nDermot Noonan',''),(2690,2,590,'7','Diva B.',''),(2691,2,590,'2','seomakerank@outlook.com',''),(2692,2,590,'5','Customer Service',''),(2693,2,590,'6','Hi,\r\n\r\n\r\n\r\n\r\nI noticed your website isn\'t currently ranking on the 1st page of Google.\r\nHaving successfully helped over 290 businesses achieve first-page rankings, I\'m confident I can do the same for your website swiftly and effectively.\r\n\r\n\r\n\r\nCould I send you our best price and proposal, along with a complimentary SEO report?\r\n\r\n\r\n\r\nThank you,\r\n\r\nDiva',''),(2694,2,591,'7','Jett Clendinnen',''),(2695,2,591,'2','jett.clendinnen@gmail.com',''),(2696,2,591,'3','(403) 782-8219',''),(2697,2,591,'5','Customer Service',''),(2698,2,591,'6','Hi\r\n\r\nSay goodbye to manual video editing! \r\n\r\nGenerate engaging videos for TikTok, Instagram, and YouTube in seconds.\r\n\r\nDon\'t miss our Early Bird Offer! Visit now for exclusive bonuses and discounts.\r\n\r\nSEE HERE => https://tinyurl.com/bd4ffuyz\r\n\r\nBest regards\r\nJett\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nCanada, AB, Red Deer, T4n 2a6, 809 Galts Ave\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(2699,2,592,'7','Jung Pell',''),(2700,2,592,'2','pell.jung@gmail.com',''),(2701,2,592,'3','(717) 557-4513',''),(2702,2,592,'5','Customer Service',''),(2703,2,592,'6','Good day\r\n\r\nUnlock the secret to earning over $100 daily, starting right now. \r\n\r\nDiscover how effortless it is – anyone can do it... \r\n\r\nDon\'t miss this exclusive opportunity. \r\n\r\nClick here to get started! =>  https://tinyurl.com/3zm2xkx3\r\n\r\nThank you\r\nJung\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nGermany, BW, Leinzell, 73575, Kurfurstenstra?E 23\r\nTo stop any further communication from us, please reply to this email...',''),(2704,2,593,'7','Paula Mezzetta',''),(2705,2,593,'2','mezzettas@comcast.net',''),(2706,2,593,'3','(925) 998-1285',''),(2707,2,593,'5','Wines',''),(2708,2,593,'6','I have a club order coming up.  I’d like to try the Albariño.  I’d there a way to add 2 bottles to that order?\r\n\r\nThank you,\r\nPaula Mezzetta',''),(2709,2,594,'7','Charley Hampden',''),(2710,2,594,'2','hampden.charley@googlemail.com',''),(2711,2,594,'3','(650) 892-4666',''),(2712,2,594,'5','Customer Service',''),(2713,2,594,'6','Important: \r\nYour Vetted Business listing is no longer visible because the annual verification email that we sent, was returned to us as “undeliverable”.\r\n\r\nIf the returned email was in error, you can add or update your email & listing info using the link in my signature.\r\n\r\nOnce remedied, you’ll reactivate your Vetted Directory benefits:\r\n \r\n+A robust Vetted business profile that promotes trust, transparency & credibility in your market\r\n+Powerful SEO for your business when you add your URL link in your profile.\r\n+Local leads from consumers that use our national platform to find Vetted Businesses by category\r\n \r\nSee link in my signature to add /update your Vetted business details, and get the powerful benefits of being a Vetted business in your local market, your service category and your business specialty.\r\n\r\nYours in trust & transparency,\r\n\r\nSarah McCormick\r\nVetted Business Specialist\r\n295 Seven Farms Drive Suite C-201\r\nCharleston, SC 29492\r\nsarah.mccormick@vettedpros.com\r\nhttps://vettedpros.com/1-2/?a=Get-Your-Business-Vetted!',''),(2714,2,595,'7','Emory Templeton',''),(2715,2,595,'2','templeton.emory@yahoo.com',''),(2716,2,595,'3','(399) 083-8017',''),(2717,2,595,'5','Careers',''),(2718,2,595,'6','Greetings\r\n\r\nReady to supercharge your income effortlessly? \r\n\r\nEarn $136+ Per Day With This Magic Button, A One-click Payday App That Makes You Money Every Time Someone Clicks Their Mouse.\r\n\r\nSEE HERE => https://tinyurl.com/27mcj29u\r\n\r\nBest regards\r\nEmory\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nItaly, SA, Case Del Conte, 84040, Via Rosmini 103\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(2719,2,596,'7','Arlie Saenger',''),(2720,2,596,'2','arlie.saenger@googlemail.com',''),(2721,2,596,'5','Customer Service',''),(2722,2,596,'6','How would you like a surefire way to dominate your local market & win more sales from your competition?\r\n\r\nGetting Vetted is a powerful sales multiplier that helps you close 60 % more deals. \r\nThat’s a game changer.\r\nVetted also provides great SEO & FREE local leads\r\nStart your 30 Day FREE trial & see the results for yourself. \r\nUSA Businesses Only\r\n\r\nSarah McCormick\r\nVetted Business Specialist\r\n295 Seven Farms Drive Suite C-201\r\nCharleston, SC 29492\r\nsarah.mccormick@vettedpros.com\r\nhttps://vettedpros.com/1-2/?a=Are-You-Ready-To-Dominate-Your-Local-Market?',''),(2723,2,597,'7','Michal Primrose',''),(2724,2,597,'2','michal.primrose@googlemail.com',''),(2725,2,597,'3','(790) 378-2220',''),(2726,2,597,'5','Influencer Inquiry',''),(2727,2,597,'6','Are you frustrated by the high prices for simple web work and website updates?\r\n\r\nWhy pay $50+ per hour for web development work, \r\nwhen you can get higher quality results AT LESS THAN HALF THE COST? \r\n\r\nWe are a FULL SERVICE, USA managed web development agency with wholesale pricing.\r\n\r\nNo job too big or small. Test us out to see our value.\r\n\r\nUse the link in my signature, for a quick turn around quote.\r\n\r\n\r\n\r\nKristine Avocet\r\nSenior Web Specialist \r\nFusion Web Experts  \r\n186 Daniel Island Drive \r\nDaniel Island, SC 29492 \r\nwww.fusionwebexperts.tech',''),(2728,2,598,'7','Joanna Riggs',''),(2729,2,598,'2','joannariggs278@gmail.com',''),(2730,2,598,'3','(270) 300-6249',''),(2731,2,598,'5','Media Inquiry',''),(2732,2,598,'6','Hi,\r\n\r\nI just visited meadowcroftwines.com and wondered if you\'d ever thought about having an engaging video to explain what you do?\r\n\r\nOur prices start from just $195.\r\n\r\nLet me know if you\'re interested in seeing samples of our previous work.\r\n\r\nRegards,\r\nJoanna\r\n\r\nUnsubscribe: https://removeme.click/ev/unsubscribe.php?d=meadowcroftwines.com',''),(2733,2,599,'7','Susan Cusack',''),(2734,2,599,'2','suzi@truplace.com',''),(2735,2,599,'3','(301) 518-0038',''),(2736,2,599,'5','Wines',''),(2737,2,599,'6','I received a box of 6 wines last year for Christmas.  I wanted to send the same gift to someone and only see the gift box of 4 Cabs.  Do you have seasonal gifts at the holidays?  Or do you have to be a member for more access?  Thank you.',''),(2738,2,600,'7','ryan montgomery',''),(2739,2,600,'2','rm@jamessuckling.com',''),(2740,2,600,'3','(707) 620-3007',''),(2741,2,600,'5','Media Inquiry',''),(2742,2,600,'6','Hello,\r\n \r\nJamessuckling.com is doing a sample call for all Sonoma County-grown Cabernet Sauvignon from the vintages of 2021 and 2022. Executive Editor Jim Gordon will be heading up the tasting, to be done locally in Napa. We invite you to send 1 sample bottle per SKU of any varietal Cabernet Sauvignon and/or Bordeaux style red blend that is either the current release or about to be released this fall. We are not including varietal merlot, cabernet franc etc, however, in this tasting.  Please check our website first, JamesSuckling.com, and don’t send bottles/vintages that have already been reviewed by James or the team.\r\n \r\nNo specific submission sheet is needed but please include the SRP and any technical notes you would like us to see. We ask you to ship to, or drop off at, the Jackson Street address below at your earliest convenience. Mark the package exterior as \'Sonoma Cab\'. Send to:\r\n \r\nJamesSuckling.com\r\nc/o Jackson Street Wine Warehouse\r\n849 Jackson St # 3\r\nNapa, CA 94559\r\n\r\nKind regards,\r\n\r\nRyan Montgomery',''),(2743,2,601,'7','Sherman Lindsey',''),(2744,2,601,'2','lindsey.sherman@outlook.com',''),(2745,2,601,'3','(798) 263-6104',''),(2746,2,601,'5','Careers',''),(2747,2,601,'6','Hi there\r\n\r\nReady to supercharge your income effortlessly? \r\n\r\nEarn $136+ Per Day With This Magic Button, A One-click Payday App That Makes You Money Every Time Someone Clicks Their Mouse.\r\n\r\nSEE HERE => https://tinyurl.com/27mcj29u\r\n\r\nRegards\r\nSherman\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nGreat Britain, NA, Ponders End, En3 1dw, 61 Southlands Road\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(2748,2,602,'7','Lee Illingworth',''),(2749,2,602,'2','illingworth.lee@hotmail.com',''),(2750,2,602,'3','(940) 337-4435',''),(2751,2,602,'5','Influencer Inquiry',''),(2752,2,602,'6','Hello\r\n\r\nDiscover the ultimate tool for list building and earning with our new Secret Funnel! This innovative method allows you to get paid for clicks and affiliate sales, revolutionizing the way you profit from paid traffic.\r\n\r\nMaximize your earnings effortlessly with clear benefits: immediate profits, enhanced arbitrage opportunities, and a streamlined list-building process. Say goodbye to complicated setups and hello to straightforward success.\r\n\r\nReady to elevate your earnings? Click here to start using the Secret Funnel and transform your email list into a profitable asset today! =>  https://shorturl.at/0doUN\r\n\r\nYours sincerely\r\nLee\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nUnited States, TX, Wichita Falls, 76310, 730 Alexander Drive\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(2753,2,603,'7','Phil Stewart',''),(2754,2,603,'2','noreplyhere@aol.com',''),(2755,2,603,'3','(342) 123-4456',''),(2756,2,603,'5','Media Inquiry',''),(2757,2,603,'6','Hi, would you be interested in having your ad reach millions of contact forms just like this one did? Check out my site below for more details.\r\n\r\nhttp://nuzqda.contactformmarketing.xyz',''),(2758,2,604,'7','Dale Anderson',''),(2759,2,604,'2','dalecindi@gmail.com',''),(2760,2,604,'3','(951) 204-1144',''),(2761,2,604,'5','Customer Service',''),(2762,2,604,'6','I previously bought little glasses (for port or brandy with the bee on them) from you. I’d like to buy another four. Do you still have them?',''),(2763,2,605,'7','Cinda Eudy',''),(2764,2,605,'2','cinda.eudy@hotmail.com',''),(2765,2,605,'3','(224) 756-1701',''),(2766,2,605,'5','Media Inquiry',''),(2767,2,605,'6','Hi there\r\n\r\nDiscover the ultimate tool for list building and earning with our new Secret Funnel! This innovative method allows you to get paid for clicks and affiliate sales, revolutionizing the way you profit from paid traffic.\r\n\r\nMaximize your earnings effortlessly with clear benefits: immediate profits, enhanced arbitrage opportunities, and a streamlined list-building process. Say goodbye to complicated setups and hello to straightforward success.\r\n\r\nReady to elevate your earnings? Click here to start using the Secret Funnel and transform your email list into a profitable asset today! =>  https://shorturl.at/0doUN\r\n\r\nWarm regards\r\nCinda\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nSweden, NA, Ransta, 730 73, Gullerasen Vastabacksgatu 88\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(2768,2,606,'7','Courtney Webb',''),(2769,2,606,'2','courtney.webb@gmail.com',''),(2770,2,606,'3','(772) 007-0991',''),(2771,2,606,'5','Media Inquiry',''),(2772,2,606,'6','Rising business expenses are taking a toll on small business owners.\r\n\r\nYou are not alone. It\'s affecting every industry.\r\n\r\nOne way to give yourself some breathing room is to obtain enough working capital to bridge you through the tough times. \r\n\r\nGet a no obligation working capital quote in less than 2 minutes. \r\n\r\n++ This Offer Only For Businesses In The USA ++\r\n\r\nContact me below for details\r\n\r\nElizabeth Miller\r\nelizabeth.miller@helloratesfastfunding.com\r\nhttps://www.helloratesfastfunding.com',''),(2773,2,607,'7','Cyndy Grinde',''),(2774,2,607,'2','cyndy.grinde@eaglebevmt.com',''),(2775,2,607,'3','(406) 788-4523',''),(2776,2,607,'5','Wines',''),(2777,2,607,'6','Hello!  I sell your wines through Eagle Beverage in Bozeman and Big Sky Montana and my son and I are coming your way for a visit August 7-13.  We would love to set up a tasting/tour on August 8 or 9 if possible?  Please let me know.  Thank you, Cyndy Grinde',''),(2778,2,608,'7','Joesph Welsby',''),(2779,2,608,'2','welsby.joesph@gmail.com',''),(2780,2,608,'3','(176) 025-2109',''),(2781,2,608,'5','Media Inquiry',''),(2782,2,608,'6','People + Processes + Working Capital = The Recipe for Business Success\r\n\r\nBut most small business owners put little thought into the capital needed to scale and grow their business.\r\n\r\nIf you have the people & the business processes in place but no working capital, then your business will be stuck in neutral.\r\n\r\nGet a no obligation working capital quote in less than 2 minutes. \r\n\r\n USA Based Businesses Only! \r\n\r\nGet in touch with me below for more info\r\n\r\nElizabeth Miller\r\nelizabeth.miller@helloratesfastfunding.com\r\nhttps://www.helloratesfastfunding.com',''),(2783,2,609,'7','Remona Dease',''),(2784,2,609,'2','dease.remona@hotmail.com',''),(2785,2,609,'3','(806) 761-0927',''),(2786,2,609,'5','Media Inquiry',''),(2787,2,609,'6','Hello\r\n\r\nUnlock the secret to earning over $100 daily, starting right now. \r\n\r\nDiscover how effortless it is – anyone can do it... \r\n\r\nDon\'t miss this exclusive opportunity. \r\n\r\nClick here to get started! =>  https://tinyurl.com/3zm2xkx3\r\n\r\nRespectfully\r\nRemona\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nUnited States, TX, Lubbock, 79401, 974 Smithfield Avenue\r\nTo stop any further communication from us, please reply to this email...',''),(2788,2,610,'7','Ezequiel Schleinitz',''),(2789,2,610,'2','schleinitz.ezequiel@gmail.com',''),(2790,2,610,'3','(626) 578-1922',''),(2791,2,610,'5','Careers',''),(2792,2,610,'6','Good day\r\n\r\nLearn to earn consistent affiliate commissions without spending a dime upfront. Our new course teaches you how to leverage free tools and traffic to maximize your earnings. With exclusive resources not found in the original course, you\'re set to start earning big commissions quickly.\r\n\r\nUnlock clear benefits with our comprehensive training: free tools, undisclosed traffic sources, and a pathway to online success. Plus, learn strategies to scale your business using paid traffic for even greater returns.\r\n\r\nDon\'t miss out! Enroll now and transform your affiliate marketing journey. Start earning today with our proven system! =>  https://shorturl.at/Nx52U\r\n\r\nBest regards\r\nEzequiel\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nUnited States, CA, Pasadena, 91101, 3294 Woodstock Drive\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(2793,2,611,'7','Mari Moulds',''),(2794,2,611,'2','mari.moulds@outlook.com',''),(2795,2,611,'3','(775) 283-4719',''),(2796,2,611,'5','Media Inquiry',''),(2797,2,611,'6','The battle for the SERPs for specific keywords can become a battleground, many times.\r\n\r\nIts people`s nature to attack and harm where there is no force to put things right.\r\n\r\nNow you can fight back and return the Negative SEO to them\r\nhttps://www.speed-seo.net/product/negative-seo-service/\r\n\r\n\r\nor whatsapp us:\r\nhttps://www.speed-seo.net/negative-seo-whatsapp/',''),(2798,2,612,'7','Joe Nall',''),(2799,2,612,'2','nall.joe@googlemail.com',''),(2800,2,612,'3','(203) 267-2286',''),(2801,2,612,'6','Hello Friend\r\n\r\n\r\nI have come to that you are purchasing guest posting links for your site https://www.meadowcroftwines.com/. I am also link seller and doing guest bloging for many clients.\r\nYou will get high DA niche sites guest posting at only $10.\r\n\r\n    High DA\r\n    Niches Sites \r\n    Quality Sites\r\n    Fixed Price\r\n    Payment Paypal\r\n\r\nEmail mention in Sheet\r\n\r\nI have attached my google sheets of sites\r\n\r\nVisit: https://bit.ly/3tRldUT\r\n\r\nHi Friend\r\n\r\n      Get Unlimited Backlinks and Rank Top on Google Only $11.48 OneTime https://www.meadowcroftwines.com/\r\n\r\n      Sell Backlinks to your Client\r\n       \r\n      Social Media Backlinks\r\n\r\n      .oRg backlinks\r\n      \r\n      Instant Stats Directory\r\n\r\n      Craigslist\r\n\r\n      \r\n      UNLIMITED REAL BACKLINKS & FREE BUYER TRAFFIC On Autopilot With Zero Monthly Fee\r\n\r\n      No Monthly fee!\r\n      \r\n      only $17 OneTime Payment     \r\n     \r\n      30 Days 100% Money Back Guarantee\r\n\r\n      \r\n\r\nFor extra  information  Go at: https://bit.ly/3uIIOaP',''),(2802,2,613,'7','Jimmy W.',''),(2803,2,613,'2','seorank2@hotmail.com',''),(2804,2,613,'3','(251) 433-2535',''),(2805,2,613,'6','Hi,\r\n\r\n\r\nI noticed your website, meadowcroftwines.com , isn’t on Google’s first page.\r\n\r\nUnlock the secrets to ranking on the first page within 3 months. With 5 years of experience, we\'ve helped 280+ businesses achieve this.\r\n \r\n\r\n\r\nInterested in a 30-minute 1:1 virtual meeting?\r\n\r\nBest regards,  \r\nJimmy\r\n\r\n\r\nEmail on - seorank2@hotmail.com',''),(2806,2,614,'7','Felicity Sauncho',''),(2807,2,614,'2','felicitysauncho@gmail.com',''),(2808,2,614,'3','(320) 580-7133',''),(2809,2,614,'5','Media Inquiry',''),(2810,2,614,'6','Hi there,\r\n\r\nWe run a YouTube growth service, which increases your number of subscribers both safely and practically. \r\n\r\n- We guarantee to gain you 700-1500+ subscribers per month.\r\n- People subscribe because they are interested in your channel/videos, increasing likes, comments and interaction.\r\n- All actions are made manually by our team. We do not use any \'bots\'.\r\n\r\nThe price is just $60 (USD) per month, and we can start immediately.\r\n\r\nIf you have any questions, let me know, and we can discuss further.\r\n\r\nKind Regards,\r\nFelicity',''),(2811,2,615,'7','Teresita McClemans',''),(2812,2,615,'2','mcclemans.teresita@yahoo.com',''),(2813,2,615,'3','(451) 425-1649',''),(2814,2,615,'5','Media Inquiry',''),(2815,2,615,'6','Important: \r\nYour Vetted Business listing is no longer visible because the annual verification email that we sent, was returned to us as “undeliverable”.\r\n\r\nIf the returned email was in error, you can add or update your email & listing info using the link in my signature.\r\n\r\nOnce remedied, you’ll reactivate your Vetted Directory benefits:\r\n \r\n+A robust Vetted business profile that promotes trust, transparency & credibility in your market\r\n+Powerful SEO for your business when you add your URL link in your profile.\r\n+Local leads from consumers that use our national platform to find Vetted Businesses by category\r\n \r\nSee link in my signature to add /update your Vetted business details, and get the powerful benefits of being a Vetted business in your local market, your service category and your business specialty.\r\n\r\nYours in trust & transparency,\r\n\r\nSarah McCormick\r\nVetted Business Specialist\r\n295 Seven Farms Drive Suite C-201\r\nCharleston, SC 29492\r\nsarah.mccormick@vettedpros.com\r\nhttps://vettedpros.com/1-2/?a=Get-Your-Business-Vetted!',''),(2816,2,616,'7','Sung Wedge',''),(2817,2,616,'2','sung.wedge@gmail.com',''),(2818,2,616,'3','(362) 136-9035',''),(2819,2,616,'5','Customer Service',''),(2820,2,616,'6','Hi\r\n\r\nReady to supercharge your income effortlessly? \r\n\r\nEarn $136+ Per Day With This Magic Button, A One-click Payday App That Makes You Money Every Time Someone Clicks Their Mouse.\r\n\r\nSEE HERE => https://tinyurl.com/27mcj29u\r\n\r\nSincerely\r\nSung\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nItaly, IM, Bordighera, 18012, Piazza Cardinale Riario Sforza 104\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(2821,2,617,'7','Ouida Bedard',''),(2822,2,617,'2','bedard.ouida@gmail.com',''),(2823,2,617,'3','(344) 667-5077',''),(2824,2,617,'6','Rising business expenses are taking a toll on small business owners.\r\n\r\nYou are not alone. It\'s affecting every industry.\r\n\r\nOne way to give yourself some breathing room is to obtain enough working capital to bridge you through the tough times. \r\n\r\nGet a no obligation working capital quote in less than 2 minutes. \r\n\r\n== Must Be A US Based Business To Qualify ==\r\n\r\nGet in touch with me below for more info\r\n\r\nElizabeth Miller\r\nelizabeth.miller@helloratesfastfunding.com\r\nhttps://www.helloratesfastfunding.com',''),(2825,2,618,'7','Luz Pillinger',''),(2826,2,618,'2','pillinger.luz@yahoo.com',''),(2827,2,618,'3','(435) 602-9058',''),(2828,2,618,'6','Hi there\r\n\r\nDiscover the ultimate tool for list building and earning with our new Secret Funnel! This innovative method allows you to get paid for clicks and affiliate sales, revolutionizing the way you profit from paid traffic.\r\n\r\nMaximize your earnings effortlessly with clear benefits: immediate profits, enhanced arbitrage opportunities, and a streamlined list-building process. Say goodbye to complicated setups and hello to straightforward success.\r\n\r\nReady to elevate your earnings? Click here to start using the Secret Funnel and transform your email list into a profitable asset today! =>  https://shorturl.at/0doUN\r\n\r\nBest regards\r\nLuz\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nUnited States, UT, Salt Lake City, 84116, 3770 Austin Secret Lane\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(2829,2,619,'7','Jay',''),(2830,2,619,'2','fastprocess006@outlook.com',''),(2831,2,619,'3','(358) 858-6469',''),(2832,2,619,'5','Media Inquiry',''),(2833,2,619,'6','Hi,\r\n\r\nThis is Jay. We are a small but experienced team specializing in delivering day-to-day business operational tasks with high-quality support for any department within your organization.\r\n\r\nTake advantage of our flexible hiring options—full-time, part-time, or hourly. We\'re confident in our capabilities and invite you to experience our efficiency with a one or two-day trial.\r\n\r\nContact us at Fastprocess006@outlook.com to see how we can seamlessly integrate into your business and drive success.',''),(2834,2,620,'7','Cora Northcott',''),(2835,2,620,'2','morrismi1@outlook.com',''),(2836,2,620,'5','Careers',''),(2837,2,620,'6','A remote job opportunity for a Law Firm, the role of a Payment/Deposit Handler. This position involves managing payments and deposits, ensuring accurate processing, and maintaining financial record. This position is only for candidates based in the US. \r\n\r\nJob location:  USA \r\nWeekly wages: $2,150 per week.\r\n\r\nWe are looking for a detail-oriented individual with a good background and no criminal record.\r\n\r\nIf you are interested in joining our team, please send an email to get more details jasonmorris001@aol.com',''),(2838,2,621,'7','Prenda Martin',''),(2839,2,621,'2','prendamartinpm@gmail.com',''),(2840,2,621,'3','(291) 544-0118',''),(2841,2,621,'5','Careers',''),(2842,2,621,'6','Hi Admin,\r\n\r\nI hope this email finds you well.\r\n\r\nMyself Prenda, and I specialize in content and link-building. I have a team of experts in the same field. We provide premium guest post placements designed to enhance your SEO and elevate your online presence. We assure you to improve your search- engine rankings and targeted audience to your website. \r\n\r\nIf you are interested in our services, you can connect with me on LinkedIn for further discussion. \r\n\r\nLooking forward to the possibility of working together.\r\n\r\nBest regards,\r\nPrenda',''),(2843,2,622,'7','Jimmy W.',''),(2844,2,622,'2','seorank2@hotmail.com',''),(2845,2,622,'3','(723) 119-9770',''),(2846,2,622,'5','Customer Service',''),(2847,2,622,'6','Hi,\r\n\r\n\r\nI noticed your website, meadowcroftwines.com , isn’t on Google’s first page.\r\n\r\nUnlock the secrets to ranking on the first page within 3 months. With 5 years of experience, we\'ve helped 280+ businesses achieve this.\r\n \r\n\r\nIntested in More information and Qucik Chat?\r\n\r\nBest regards,  \r\nJimmy\r\n\r\n\r\n\r\n\r\nPS :- Would you like to setup a Short Meeting?\r\n\r\nEmail on - seorank2@hotmail.com',''),(2848,2,623,'7','Shelli Villalpando',''),(2849,2,623,'2','shelli.villalpando87@msn.com',''),(2850,2,623,'3','(817) 715-6436',''),(2851,2,623,'5','Media Inquiry',''),(2852,2,623,'6','Good day\r\n\r\nGenerate effortless income of $531 per day with YouTube Channels in just 60 seconds! \r\n\r\nNo technical skills required, no video creation, and no need to be on camera. \r\n\r\nStart now  =>> https://tinyurl.com/yc889ufm\r\n\r\nThank you\r\nShelli\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nUnited States, TX, Dallas, 75234, 4494 Moore Avenue\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(2853,2,624,'7','Jack Akhtar',''),(2854,2,624,'2','akhtar.jack61@gmail.com',''),(2855,2,624,'3','(705) 248-9640',''),(2856,2,624,'5','Media Inquiry',''),(2857,2,624,'6','Hi there\r\n\r\nUnlock the secret to earning over $100 daily, starting right now. \r\n\r\nDiscover how effortless it is – anyone can do it... \r\n\r\nDon\'t miss this exclusive opportunity. \r\n\r\nClick here to get started! =>  https://tinyurl.com/3zm2xkx3\r\n\r\nKind regards\r\nJack\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nGreat Britain, NA, Lochgarthside, Iv1 9fd, 87 Union Terrace\r\nTo stop any further communication from us, please reply to this email...',''),(2858,2,625,'7','Latisha Granger',''),(2859,2,625,'2','granger.latisha@gmail.com',''),(2860,2,625,'3','(865) 540-1754',''),(2861,2,625,'5','Careers',''),(2862,2,625,'6','Hi there\r\n\r\nDiscover how you can make $250 per day online with our proven methods and resources. \r\n\r\nOur comprehensive guide provides valuable strategies that are easy to understand and implement, helping you achieve financial freedom from the comfort of your home.\r\n\r\n\r\n\r\nDon’t miss out! Start your journey to financial independence today by clicking here to learn more and get started. \r\n\r\n==>  https://tinyurl.com/5n78h2xf\r\n\r\nThank you\r\nLatisha\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nUnited States, TN, Knoxville, 37917, 3599 Berkshire Circle\r\nTo stop any further communication from us, please reply to this email...',''),(2863,2,626,'7','Waldo Barney',''),(2864,2,626,'2','barney.waldo@gmail.com',''),(2865,2,626,'3','(742) 444-0756',''),(2866,2,626,'5','Media Inquiry',''),(2867,2,626,'6','Hi there\r\n\r\nLearn to earn consistent affiliate commissions without spending a dime upfront. Our new course teaches you how to leverage free tools and traffic to maximize your earnings. With exclusive resources not found in the original course, you\'re set to start earning big commissions quickly.\r\n\r\nUnlock clear benefits with our comprehensive training: free tools, undisclosed traffic sources, and a pathway to online success. Plus, learn strategies to scale your business using paid traffic for even greater returns.\r\n\r\nDon\'t miss out! Enroll now and transform your affiliate marketing journey. Start earning today with our proven system! =>  https://shorturl.at/Nx52U\r\n\r\nKind regards\r\nWaldo\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nGermany, BW, Spaichingen, 78549, Mohrenstrasse 20\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(2868,2,627,'7','Robert Beazley',''),(2869,2,627,'2','robert.beazley61@msn.com',''),(2870,2,627,'3','(308) 231-7289',''),(2871,2,627,'6','Important: \r\nYour Vetted Business listing is no longer visible because the annual verification email that we sent, was returned to us as “undeliverable”.\r\n\r\nIf the returned email was in error, you can add or update your email & listing info using the link in my signature.\r\n\r\nOnce remedied, you’ll reactivate your Vetted Directory benefits:\r\n \r\n+A robust Vetted business profile that promotes trust, transparency & credibility in your market\r\n+Powerful SEO for your business when you add your URL link in your profile.\r\n+Local leads from consumers that use our national platform to find Vetted Businesses by category\r\n \r\nSee link in my signature to add /update your Vetted business details, and get the powerful benefits of being a Vetted business in your local market, your service category and your business specialty.\r\n\r\nYours in trust & transparency,\r\n\r\nSarah McCormick\r\nVetted Business Specialist\r\n295 Seven Farms Drive Suite C-201\r\nCharleston, SC 29492\r\nsarah.mccormick@vettedpros.com\r\nhttps://vettedpros.com/1-2/?a=Get-Your-Business-Vetted!',''),(2872,2,628,'7','Zain',''),(2873,2,628,'2','projectsexpert222@outlook.com',''),(2874,2,628,'3','(112) 036-4321',''),(2875,2,628,'5','Influencer Inquiry',''),(2876,2,628,'6','Hi, Are you in need of a personal assistant to streamline your daily business operations and simplify your life? I’m Zain Murt, and I can assist with administrative tasks, marketing, email management, website management, social media, content creation, project planning, bookkeeping, software training, and back-office support.\r\n\r\nIf you’re interested, please send an email to projectsexpert222@outlook.com with the tasks you need help with, and I\'ll handle the rest.\r\n\r\nBest regards,  \r\nZain Murt',''),(2877,2,629,'7','Wilton Humphreys',''),(2878,2,629,'2','morrismi1@outlook.com',''),(2879,2,629,'3','(678) 471-8786',''),(2880,2,629,'5','Careers',''),(2881,2,629,'6','My name is Ahmet. I\'m a bank staff in a Turkish bank. I\'ve been looking for someone who has the same nationality as you. A citizen of your country died in the recent earthquake in Turkey, he had in our bank fixed deposit of $11.5 million. \r\n\r\nMy Bank management is yet to know of his death. If my bank executive finds out about his death ,They would use the funds for themselves and get richer and I would like to prevent that from happening only if I get your cooperation, I knew about it because I was his account manager. Last week my bank management held a meeting for the purpose of a bank audit to note the dormant and abandoned deposit accounts.  I know this will happen and that\'s why I\'m looking for a solution to deal with this situation because if my bank discovers his death, they will divert the funds to the board of directors.  I don\'t want that to happen. \r\n \r\nI request your cooperation to introduce you as the kin/heir of the account as you are of the same nationality as him.  There is no risk;  the transaction is carried out under a legal agreement that protects you from infringement. I suggest we split the funds, 60/40 and 40 for me. I need this fund for my daughter\'s surgery so keep this info confidential. email me so i can provide you with more info  reachahmet@proton.me',''),(2882,2,630,'7','Phil Stewart',''),(2883,2,630,'2','noreplyhere@aol.com',''),(2884,2,630,'3','(342) 123-4456',''),(2885,2,630,'5','Customer Service',''),(2886,2,630,'6','Hi, would you be interested in having your ad reach millions of contact forms just like this one did? Check out my site below for more details.\r\n\r\nhttp://p690fq.contactformmarketing.xyz',''),(2887,2,631,'7','Luckey',''),(2888,2,631,'2','webdesignservices111@outlook.com',''),(2889,2,631,'3','(318) 295-0659',''),(2890,2,631,'5','Influencer Inquiry',''),(2891,2,631,'6','Hi, This is Lucky, a website designer and developer. In 17 years of my career, I have worked on broad spectrum of technologies like PHP, WordPress, Codeigniter, Laravel, Opencart, Prestashop, Wix, Html, CSS, JavaScript, Drupal, Shopify, magento. I can help you in creating a new page, new design, resolving issues, upgrading website to latest version, making mobile responsive website, developing new functionality, 3D Model Integration, changing any existing functionality, API integration, Payment gateway or shipping functionality related work, Third-party apps integration in website, monthly maintenance, plugin or theme related work, improving design of all pages or uploading content. I have a couple of team members to assist me on projects. \r\n\r\nLet\'s chat on webdesignservices111@outlook.com with your requirement and I can share pricing and portfolio.',''),(2892,2,632,'7','Pantu Mondal',''),(2893,2,632,'2','cheaplinkedinprenium@gmail.com',''),(2894,2,632,'3','(356) 244-9716',''),(2895,2,632,'5','Media Inquiry',''),(2896,2,632,'6','Hello Admin,\r\n\r\nI am selling something you or your company might be interested. \r\n\r\nI am selling LinkedIn Premium for the cheapest price. if you require LinkedIn business or career premium reply to me on This email\r\nFor reference, the 6-month LinkedIn business premium is going to cost you $30.\r\n\r\nThanks\r\nPantu',''),(2897,2,633,'7','Leonard Humphrey',''),(2898,2,633,'2','sonic@busitoday.co',''),(2899,2,633,'3','(602) 640-4548',''),(2900,2,633,'5','Influencer Inquiry',''),(2901,2,633,'6','Hello,\r\n\r\nHave you ever wondered why the streaming industry keeps growing?\r\n\r\nOver $34.75 Billion market volume right now.\r\n\r\nWell, as they say, music is life, and trust me, people pay tons to get their favorite playlist.\r\n\r\nWhat if you get your own streaming platform that pays you $385 daily?\r\n\r\nHow is that even possible? It\'s not easy to build one right?\r\n\r\nWell, I have great news for you…\r\n\r\nYou can with Sonic: https://www.busitoday.co/sonic \r\n\r\nAI app that can allow you to build a “music, podcast, & live radio” hypermedia streaming platform that lets you stream over 100 million songs, playlists, genre\r\n\r\nYou don\'t have to do anything, Sonic Does the building for you.\r\n\r\nNow, what about how to get people to stream and pay you?\r\n\r\nWorry less, Sonic Is Preloaded With Millions of Paying listeners \r\n\r\nPlus…\r\n\r\nInstantly Transform Your Streaming Website into a Fully Compatible Mobile App for iOS & Android Devices to attract more users to you\r\n\r\nAll you need to do is watch Sonic get your users and get you paid.\r\n\r\nIt\'s gonna be fun, trust me.\r\n\r\nInstead of paying tons to stream music, you can tap even if it\'s the least 2% of the market.\r\n\r\nImagine, 2% off $34.75 Billion\r\n\r\nThat\'s a whopping $695 million.\r\n\r\nDon\'t sleep in this at all.\r\n\r\nThat\'s not all…\r\n\r\nYou also get Access to Rare Bonuses Worth $14k only today!\r\n\r\nHurry And Get VIP Access To Sonic Now: https://www.busitoday.co/sonic \r\n\r\n\r\nLeonard Humphrey\r\n\r\n\r\nP.S. You gotta act Fast because the price goes up soon, so don\'t miss out on Sonic.\r\n\r\n\r\n\r\nUNSUBSCRIBE: https://www.busitoday.co/unsubscribe/?d=meadowcroftwines.com   \r\nAddress: 3227 Dancing Dove Lane\r\nNew York, NY 10013',''),(2902,2,634,'7','Garnet Oglesby',''),(2903,2,634,'2','oglesby.garnet@gmail.com',''),(2904,2,634,'3','(380) 319-1411',''),(2905,2,634,'5','Careers',''),(2906,2,634,'6','Hi,\r\n\r\nI wanted to introduce you to something that could truly revolutionize your financial future - the Rapid Profit Machine.\r\n\r\nImagine being able to build a passive income stream that works for you around the clock, with minimal upfront effort.\r\n\r\nThe Rapid Profit Machine is designed for those who want to start earning online, even if they have no prior experience.\r\n\r\nIt’s a fully automated system that helps you tap into the booming world of affiliate marketing. You’ll get access to step-by-step guidance, proven strategies, and a community of like-minded individuals—all geared toward helping you achieve financial freedom.\r\n\r\nWith the Rapid Profit Machine, you can:\r\n\r\n- Start earning commissions on autopilot\r\n- Access a high-converting sales funnel\r\n- Enjoy 24/7 support and training\r\n- Build a sustainable, long-term income\r\n\r\nDon’t miss this opportunity to take control of your financial destiny. Learn more here: https://furtherinfo.org/rpm\r\n\r\nThanks for your time,\r\nGarnet',''),(2907,2,635,'7','Murray Junkins',''),(2908,2,635,'2','murray.junkins8@gmail.com',''),(2909,2,635,'3','(451) 610-2286',''),(2910,2,635,'5','Influencer Inquiry',''),(2911,2,635,'6','Hi there\r\n\r\nDiscover the ultimate tool for list building and earning with our new Secret Funnel! This innovative method allows you to get paid for clicks and affiliate sales, revolutionizing the way you profit from paid traffic.\r\n\r\nMaximize your earnings effortlessly with clear benefits: immediate profits, enhanced arbitrage opportunities, and a streamlined list-building process. Say goodbye to complicated setups and hello to straightforward success.\r\n\r\nReady to elevate your earnings? Click here to start using the Secret Funnel and transform your email list into a profitable asset today! =>  https://cutt.ly/Oecujhxm\r\n\r\nWarm regards\r\nMurray\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nSweden, NA, Sosdala, 280 10, Esplanadgatan 53\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(2912,2,636,'7','Korey Moloney',''),(2913,2,636,'2','korey.moloney@outlook.com',''),(2914,2,636,'3','(381) 305-6618',''),(2915,2,636,'5','Media Inquiry',''),(2916,2,636,'6','Payroll, Insurance, inventory, marketing EXPENSES ……UGHH\r\n\r\nWant to remove the stress and get some breathing room?\r\n\r\nGet a no obligation working capital quote in less than 2 minutes. \r\n\r\n== Must Be A US Based Business To Qualify ==\r\n\r\nContact me below for details\r\n\r\nElizabeth Miller\r\nelizabeth.miller@helloratesfastfunding.com\r\nhttps://www.helloratesfastfunding.com',''),(2917,2,637,'7','Venus Beltran',''),(2918,2,637,'2','beltran.venus@gmail.com',''),(2919,2,637,'3','(635) 382-6648',''),(2920,2,637,'5','Careers',''),(2921,2,637,'6','Hi\r\n\r\nUnlock the secret to earning over $300 daily, starting right now. \r\n\r\nDiscover how effortless it is – anyone can do it... \r\n\r\nDon\'t miss this exclusive opportunity. \r\n\r\nClick here to get started! =>  https://tinyurl.com/2s4kzy36\r\n\r\nThank you\r\nVenus\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nGermany, RP, Herxheim Am Berg, 67273, Brandenburgische Strasse 73\r\nTo stop any further communication from us, please reply to this email...',''),(2922,2,638,'7','Hosea Foutch',''),(2923,2,638,'2','hosea.foutch@yahoo.com',''),(2924,2,638,'3','(321) 075-7395',''),(2925,2,638,'5','Media Inquiry',''),(2926,2,638,'6','Have you seen a great feature or an entire website design that you love and wish that you could have for your business?\r\n\r\nWe can make it happen and at wholesale rates.\r\n\r\nWhy pay $50+ per hour for web development work, \r\nwhen you can get higher quality results AT LESS THAN HALF THE COST? \r\n\r\nWe are a FULL SERVICE, USA managed web development agency offering wholesale pricing.\r\n\r\nNo job too big or small. Test us out to see our value.\r\n\r\nUse the link in my signature, for a quick turn around quote.\r\n\r\n\r\n\r\nKristine Avocet\r\nSenior Web Specialist \r\nFusion Web Experts  \r\n186 Daniel Island Drive \r\nDaniel Island, SC 29492 \r\nwww.fusionwebexperts.tech',''),(2927,2,639,'7','Felicity Sauncho',''),(2928,2,639,'2','felicitysauncho@gmail.com',''),(2929,2,639,'3','(318) 627-8635',''),(2930,2,639,'5','Influencer Inquiry',''),(2931,2,639,'6','Hi there,\r\n\r\nWe run a Youtube growth service, where we can increase your subscriber count safely and practically. \r\n\r\n- Guaranteed: We guarantee to gain you 700-1500 new subscribers each month.\r\n- Real, human subscribers who subscribe because they are interested in your channel/videos.\r\n- Safe: All actions are done, without using any automated tasks / bots.\r\n\r\nOur price is just $60 (USD) per month and we can start immediately.\r\n\r\nIf you are interested then we can discuss further.\r\n\r\nKind Regards,\r\nFelicity',''),(2932,2,640,'7','Bobby Sanjay',''),(2933,2,640,'2','barrj99999@gmail.com',''),(2934,2,640,'3','(679) 673-2899',''),(2935,2,640,'5','Wines',''),(2936,2,640,'6','-<<>>-\r\n\r\n\r\n\r\nHello Sales,\r\n\r\n\r\nGood day to you and i would like to place an order for some items from your company to my bricks and mortar store in Fiji Island but before we proceed i will like to ask you the below questions:\r\n\r\n- Do you do email (place order by email) orders?\r\n- I would like my goods to be picked up by my freight forwarder?\r\n- Do you accept US credit cards as mode of payment (amex, discovery, master and visa card to be precise).\r\n\r\n\r\nI will be looking forward to hearing from you.\r\n\r\nWarm regards.\r\nBobby.',''),(2937,2,641,'7','Mike Izzo',''),(2938,2,641,'2','makeitonline017@gmail.com',''),(2939,2,641,'3','(471) 480-2770',''),(2940,2,641,'5','Media Inquiry',''),(2941,2,641,'6','AIWiseMind creates SEO optimized articles and product reviews,\r\nthen auto-posts them to your website for hands-free affiliate marketing.\r\n\r\nDoes this content rank?\r\n\r\nYes, 100%. In fact, this is how we do all our launch jacking\r\nproduct reviews now on my website vidsociety.com. Visit the site,\r\ncopy some of the post titles and search them in Google for proof.\r\n\r\nWhat all does AIWiseMind do?\r\n\r\n✅ Creates long-form informational articles\r\n✅ Creates long-form product reviews\r\n✅ Auto searches + create Amazon product reviews\r\n✅ Creates reviews on ANY product\r\n✅ Auto set-up WordPress websites\r\n✅ Manage, edit & post all your content\r\n✅ Schedule when all content gets posted\r\n✅ Auto-embed videos, images, Amazon links\r\n✅ Creates Google-friendly content that ranks\r\n✅ Auto-create product review round-ups\r\n✅ With more features on the way\r\n\r\nCheck out some demo articles on our website here.\r\nhttps://makeitoniline.com/aiwise\r\n\r\nReviews here https://makeitoniline.com/aiwise\r\n\r\nMike',''),(2942,2,642,'7','Joanna Riggs',''),(2943,2,642,'2','joannariggs278@gmail.com',''),(2944,2,642,'3','(784) 667-2646',''),(2945,2,642,'5','Customer Service',''),(2946,2,642,'6','Hi,\r\n\r\nI just visited meadowcroftwines.com and wondered if you\'d ever thought about having an engaging video to explain what you do?\r\n\r\nOur prices start from just $195.\r\n\r\nLet me know if you\'re interested in seeing samples of our previous work.\r\n\r\nRegards,\r\nJoanna',''),(2947,2,643,'7','Zara Hyde',''),(2948,2,643,'2','zara.hyde@gmail.com',''),(2949,2,643,'3','(478) 116-5895',''),(2950,2,643,'5','Careers',''),(2951,2,643,'6','Good day\r\n\r\nDiscover how you can make $250 per day online with our proven methods and resources. \r\n\r\nOur comprehensive guide provides valuable strategies that are easy to understand and implement, helping you achieve financial freedom from the comfort of your home.\r\n\r\n\r\n\r\nDon’t miss out! Start your journey to financial independence today by clicking here to learn more and get started. \r\n\r\n==>  https://tinyurl.com/5n78h2xf\r\n\r\nWarm regards\r\nZara\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nBrazil, SC, Blumenau, 89012-088, Rua Padre Angelo Alberti 220\r\nTo stop any further communication from us, please reply to this email...',''),(2952,2,644,'7','Saundra Shearer',''),(2953,2,644,'2','shearer.saundra@outlook.com',''),(2954,2,644,'5','Media Inquiry',''),(2955,2,644,'6','Hi\r\n\r\nUnlock the secret to earning over $100 daily, starting right now. \r\n\r\nDiscover how effortless it is – anyone can do it... \r\n\r\nDon\'t miss this exclusive opportunity. \r\n\r\nClick here to get started! =>  https://tinyurl.com/3zm2xkx3\r\n\r\nYours truly\r\nSaundra\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nAustria, BURGENLAND, Alberschwende, 6861, Gartenweg 71\r\nTo stop any further communication from us, please reply to this email...',''),(2956,2,645,'7','Lonnie Raymond',''),(2957,2,645,'2','raymond.lonnie@gmail.com',''),(2958,2,645,'3','(314) 281-6316',''),(2959,2,645,'5','Customer Service',''),(2960,2,645,'6','Good day\r\n\r\nEarn over 300$ per day with World\'s First Video & Audio Email Marketing App\r\n\r\nIntroducing our groundbreaking Video & Audio Email Marketing App—the first of its kind—that not only enhances your email campaigns but also offers you the opportunity to earn over $300 per day!\r\n\r\nWHY CHOOSE VIDMAILS AI?\r\n- Enhanced Engagement: Utilize video and audio to create captivating campaigns that resonate with your audience.\r\n- Boosted Deliverability: Ensure your messages stand out in crowded inboxes, maximizing your reach.\r\n- Real-Time Results: Gain actionable insights to optimize your campaigns and increase your earnings.\r\n\r\nGo To Product Site => https://cutt.ly/Eecy7YjA\r\n\r\nTake the leap towards maximizing your income and transforming your marketing efforts today.\r\n\r\nThank you\r\nLonnie\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nBrazil, MG, Sete Lagoas, 35700-186, Rua Olimpio Cassimiro 312\r\nTo stop any further communication from us, please reply to this email...',''),(2961,2,646,'7','Maryellen Dickerson',''),(2962,2,646,'2','dickerson.maryellen@msn.com',''),(2963,2,646,'6','bills are crazy expensive ? Celebrities never pay retail, and you shouldn’t either! Take our quick quiz to learn how to cut your mobile bill down to just $20. \r\n?\r\n\r\nTake the survey and win an IPhone 16 before it’s released!!!\r\nhttps://mailchi.mp/roccstarwireless/enter-for-your-chance-to-win-i-phone-16',''),(2964,2,647,'7','Georgetta Allred',''),(2965,2,647,'2','georgetta.allred@hotmail.com',''),(2966,2,647,'3','(210) 299-1256',''),(2967,2,647,'5','Careers',''),(2968,2,647,'6','Hello\r\n\r\nIntroducing Instant Profit Pages Pro, your secret to generating daily passive profits in less than 20 minutes a day. Our user-friendly setup employs 100% free traffic methods and builds email lists on autopilot with impressive 50-80% lead conversions.\r\n\r\nExperience clear benefits: no-cost, done-for-you profit funnels, fully hosted pages, and no monthly fees. The simple three-step process—log in, activate DFY pages, and customize preferences—allows you to scale from beginner to expert without direct selling.\r\n\r\nAct now and take advantage of this limited-time offer! \r\n\r\nTransform your daily routine with just 20 minutes a day for amazing results. => https://cutt.ly/qecuhU7B\r\n\r\nYours truly\r\nGeorgetta\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nGermany, NW, Ratingen Hosel, 40883, Am Borsigturm 2\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(2969,2,648,'7','Daniele Loewe',''),(2970,2,648,'2','loewe.daniele@yahoo.com',''),(2971,2,648,'3','(778) 896-8852',''),(2972,2,648,'5','Influencer Inquiry',''),(2973,2,648,'6','Hi\r\n\r\nIntroducing the ultimate solution to skyrocket your income effortlessly: our Copy and Paste System. Just set it up once, and watch as you gain unlimited buyer subscribers and recurring commissions without any additional effort.\r\n\r\nExperience the simplicity and efficiency of our system, designed to streamline your process. Maximize your earnings with minimal time investment, allowing you to focus on other aspects of your business or personal life.\r\n\r\nDon\'t miss out on this game-changing opportunity. Click here to start now and transform your earning potential! =>  https://cutt.ly/Zecult9p\r\n\r\nBest regards\r\nDaniele\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nUnited Kingdom, NA, Stapleford, Sg14 6lr, 65 Pier Road\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(2974,2,649,'7','Latisha Borges',''),(2975,2,649,'2','borges.latisha@gmail.com',''),(2976,2,649,'3','(403) 882-0276',''),(2977,2,649,'5','Careers',''),(2978,2,649,'6','Running a business is not easy.\r\nEspecially when the cost of nearly everything continues to skyrocket.\r\n\r\nCut yourself a break from the stress of rising expenses with a working capital solution that will provide you the relief needed to get through these challenging times.\r\n\r\nGet a no obligation working capital quote in less than 2 minutes. \r\n\r\n++ This Offer Only For Businesses In The USA ++\r\n\r\nContact me below for details\r\n\r\nElizabeth Miller\r\nelizabeth.miller@helloratesfastfunding.com\r\nhttps://www.helloratesfastfunding.com',''),(2979,2,650,'7','Nathaniel Farrell',''),(2980,2,650,'2','dfysuite@earnmillions.xyz',''),(2981,2,650,'3','(403) 620-2982',''),(2982,2,650,'5','Influencer Inquiry',''),(2983,2,650,'6','we all know that getting high-quality authority links is the REAL key to long-term page 1 rankings, right?\r\n\r\nIt doesn’t matter if you’re trying to:\r\n\r\n– do some quick launch jacking..\r\n– rank your video on page 1\r\n– rank your niche sites on page 1\r\n– rank your e-commerce sites on page 1\r\n– rank your Amazon listings\r\n– rank your CLIENT’s sites\r\n– or rank ANY kind of content for that matter..\r\n\r\nWITHOUT high-quality syndication, you’re getting NO WHERE – Guaranteed!\r\n\r\nAnd that’s why I’m excited to get this PROVEN system, DFY Suite, into your hands.\r\n\r\nDFY Suite will allow you to Get FREE, Targeted BUYER-Traffic In 48 Hours Or Less By Leveraging The Power Of High-Quality Social Syndication With their NEW, Done-For-YOU System!\r\n\r\nAND they have just released their BIGGEST update to date.\r\n\r\nThey’ve made it better easier and faster to get ALL of your rankings DONE FOR YOU!\r\n\r\nIntroducing DFY Suite 5.0!\r\n\r\nYup, you can now leverage the POWER of Page 1 Rankings Via Social Syndication for ANY location and/or ANY language with:\r\n\r\n– NO Software To Install\r\n– No Software Training To Learn\r\n– No previous SEO knowledge or experience\r\n– No Social Account Creation Needed\r\n– No Content Needed Besides their URL\r\n– No Proxies or Captchas Needed\r\n– NONE of that stuff..\r\n\r\nHeck, you don’t even need to KNOW what social syndication IS lol\r\n\r\nAll you need to do is:\r\n\r\n1. Login to the web-based portal\r\n2. Submit your Keywords and URL you want traffic for\r\n3. Hit “Submit”\r\n\r\nYup, That’s IT!\r\n\r\nFrom There their System Will Get To Work And Build You HUNDREDS of High-Quality Syndication Links To Your Content to skyrocket it to page 1 of Google!\r\n\r\nPLUS, if you’re 100% NEW to SEO, they’re also including a quick CRASH course on Keyword Research AND Content optimization that should take you no more than 20-30 minutes to go through.\r\n\r\nWith DFY Suite PLUS the Keyword Research and Content Optimization crash course, you’ll be able to start getting traffic from Google without EVER having to spend HOURS upon HOURS doing the HEAVY-LIFTING yourself.\r\n\r\nCheck out DFY Suite Here: https://www.earnmillions.xyz/dfysuite\r\n\r\n“But wait, did you say they’ve just opened 5.0?”\r\n\r\nYup, and with their 5.0 updates they have made their platform BETTER, FASTER and MORE powerful to Deliver you even MORE rankings, Traffic & sales.\r\n\r\nIn version 5.0 they have:\r\n\r\n– 5x’d their sites, 5x’d the authority, 5x’d the ranking power! Now instead of being able to get up to 200 different syndication links to your content, you can get up to 1,000! And the domains they’ve added are ALL packing A LOT more authority\r\n\r\n– Done for you GLOBAL Rankings. Yup, WORLDWIDE Rankings are finally HERE via their multi-language support. Yes, you read that correctly! They now cover EVERY LANGUAGE you can think of, so you can get page 1 rankings REGARDLESS of where you are in the world!\r\n\r\n– Totally revamped their server set up to now Include IP’s from ALL over the world to SUPERCHARGE their new WORLDWIDE ranking power!\r\n\r\n– Totally revamped their content generation system Which is now powered by REAL Artificial intelligence With Creaite being the engine to that! REAl A.I means QUALITY, unique content being written for EVERY campaign You submit. And we ALL know how much Google loves quality content.\r\n\r\n– and much much more… (they have a WHOLE section And video covering what’s new in 5.0 – there’s 7 MAJOR updates total)\r\n\r\nThis is EASILY their MOST powerful update To date and you can get access to it at an INSANE discount.\r\n\r\nCheck out how it works here:  https://www.earnmillions.xyz/dfysuite\r\n\r\nThis is the GO-TO platform for DFY, page 1 rankings!\r\n\r\nNathaniel Farrell\r\n\r\nP.S. Getting page 1 rankings has NEVER been easier.\r\n\r\nWith DFY Suite You’ll be able to:\r\n\r\n– rank your videos on page 1\r\n– rank your niche sites on page 1\r\n– rank your e-commerce sites on page 1\r\n– rank your Amazon listings\r\n– rank your CLIENT’s sites\r\n– rank ANY URL you’d like to get traffic for..\r\n\r\nIt’s really the PERFECT solution for us “lazy” seo marketers hahah\r\n\r\nAnd their 5.0 updates have REALLY taken things to the NEXT level!\r\n\r\ncheck it out here:  https://www.earnmillions.xyz/dfysuite \r\n\r\nUNSUBSCRIBE: https://www.earnmillions.xyz/unsubscribe/?d=meadowcroftwines.com  \r\n\r\n\r\nAddress: 3293 Nixon Avenue\r\nKingsport, TN 37660',''),(2984,2,651,'7','Esteban Illingworth',''),(2985,2,651,'2','esteban.illingworth@gmail.com',''),(2986,2,651,'3','(250) 835-9278',''),(2987,2,651,'5','Customer Service',''),(2988,2,651,'6','Good day\r\n\r\nYou have the chance to uncover the incredible secret hidden within Jeff Bezos Amazon empire – a secret that offers you an endless stream of free traffic and overwhelms you with amazing Amazon commissions!\r\n\r\nWHY EXPERTS LOVE AMZ AUTOMATOR:\r\n - Free Traffic: An untapped traffic source from Amazon Prime.\r\n - Huge Commissions: Up to $293.47 per day just by watching videos.\r\n - Maximum Efficiency: No tedious and expensive setups.\r\n\r\nWHAT PROFESSIONALS ARE SAYING:\r\n[Esteban] \"AMZ AUTOMATOR has completely transformed the way I earn Amazon commissions. It’s simply revolutionary!\"\r\n\r\nDON’T MISS THIS UNIQUE OPPORTUNITY:\r\nTime is of the essence! This Amazon Prime secret won’t be available for long.\r\n\r\nCLICK HERE TO START =>> https://cutt.ly/Jecy6W4z\r\n\r\nDon’t let this chance slip by. Secure your spot among those who take advantage of this rare opportunity!\r\n\r\nKind regards\r\nEsteban\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nSweden, NA, Nusnas, 792 04, Norra Backebo 59\r\nTo stop any further communication from us, please reply to this email...',''),(2989,2,652,'7','Tyler Glenn Campos',''),(2990,2,652,'2','ishouldtelltyler@gmail.com',''),(2991,2,652,'3','(415) 846-4563',''),(2992,2,652,'4','735004',''),(2993,2,652,'5','Customer Service',''),(2994,2,652,'6','Hello!  I received notification that my wines had shipped to arrive today, but then I got a notification that Meadowcroft requested my shipment be returned to them, so it appears the shipment is going back to Meadowcroft.  Can someone let me know what is happening?\r\n\r\nThanks,  Tyler',''),(2995,2,653,'7','Jake Woodley',''),(2996,2,653,'2','woodley.jake@gmail.com',''),(2997,2,653,'3','(786) 395-3500',''),(2998,2,653,'5','Careers',''),(2999,2,653,'6','Good day\r\n\r\nLearn to earn consistent affiliate commissions without spending a dime upfront. Our new course teaches you how to leverage free tools and traffic to maximize your earnings. With exclusive resources not found in the original course, you\'re set to start earning big commissions quickly.\r\n\r\nUnlock clear benefits with our comprehensive training: free tools, undisclosed traffic sources, and a pathway to online success. Plus, learn strategies to scale your business using paid traffic for even greater returns.\r\n\r\nDon\'t miss out! Enroll now and transform your affiliate marketing journey. Start earning today with our proven system! =>  https://cutt.ly/pebvLRNz\r\n\r\nBest regards\r\nJake\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nGreat Britain, NA, West Stourmouth, Ct3 3gs, 75 Cheriton Rd\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(3000,2,654,'7','Tonya Milam',''),(3001,2,654,'2','tonya.milam@gmail.com',''),(3002,2,654,'3','(270) 232-2071',''),(3003,2,654,'5','Customer Service',''),(3004,2,654,'6','Good day\r\n\r\nDiscover our groundbreaking technology that creates self-updating, live Amazon and eBay deal sites that rank themselves on Google. \r\n\r\nShowcasing exclusive discounts and deals not available elsewhere, our platform attracts deal seekers and embeds your affiliate cookies for ongoing commissions.\r\n\r\nAct now to capitalize on this game-changing opportunity! \r\n\r\nClick here to learn more and start earning today ==> https://cutt.ly/5ecubMXS\r\n\r\nYours truly\r\nTonya\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nUnited States, KY, Centertown, 42328, 2542 Broaddus Avenue\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(3005,2,655,'7','Coleman Barnett',''),(3006,2,655,'2','barnett.coleman91@hotmail.com',''),(3007,2,655,'3','(812) 347-7388',''),(3008,2,655,'5','Media Inquiry',''),(3009,2,655,'6','The battle for the SERPs for specific keywords can become a battleground, many times.\r\n\r\nIts people`s nature to attack and harm where there is no force to put things right.\r\n\r\nNow you can fight back and return the Negative SEO to them\r\nhttps://www.speed-seo.net/product/negative-seo-service/\r\n\r\n\r\nor whatsapp us:\r\nhttps://www.speed-seo.net/negative-seo-whatsapp/',''),(3010,2,656,'7','Phil Stewart',''),(3011,2,656,'2','noreplyhere@aol.com',''),(3012,2,656,'3','(342) 123-4456',''),(3013,2,656,'5','Customer Service',''),(3014,2,656,'6','Curious about getting your ad seen by millions? I sent this message to your contact form, and here you are reading it! Visit my site below to find out more.\r\n\r\nhttp://rw3y7s.contactformmarketing.xyz',''),(3015,2,657,'7','Justin Coutu',''),(3016,2,657,'2','jcoutu217@g.rwu.edu',''),(3017,2,657,'3','(401) 444-8811',''),(3018,2,657,'5','Customer Service',''),(3019,2,657,'6','First, I would like to start off by saying that my family and numerous friends have been to your winery while on vacation and cannot say enough good things about the experience. Everything from the wine to the customer service was absolutely exceptional! \r\n\r\nI am sending this message as a committee member of The Tomorrow Fund, which is a non-profit 501(c)3 that provides emotional and financial support to children with cancer and their families (parking at the hospital for the duration of treatment, $10,000+ per child on average, assists with rent, mortgages, utility bills, survivor programs, oncology camps, and funeral expenses for those who lose their battle to cancer). Children can come from anywhere in the world to receive treatment and the Tomorrow Fund provides support. This year at our event, we are featuring a \"Sonoma County Wine Package\" in our live & silent auction. It will feature numerous amazing companies ranging from transportation / accommodations to winery tours & tastings for 4 guests. We hope that we can count on your support through a donation of a tasting, balloon & blending, or wine blending experience to be featured in this package!\r\n\r\nThis year, we are hosting our 36th Annual Tomorrow Fund Fantasy Gala on November 2nd, 2024 and the theme this year is “Mardi Gras Celebration”. The event features a cocktail hour, live & silent Auction, full dinner, dancing to a live band and hosts over 650+ guests. Not only is it an amazing and spectacular event for a great cause, but past years events have been featured in RI Monthly Magazine and was voted \"Best Fundraising Event\" in 2018. Your sponsorship and/or donation brings forth a wonderful opportunity for recognition in the community as well as directly helps support these children & families of the children battling cancer. Your company and the donated item will be acknowledged on our website / social media / email notifications, displayed and advertised throughout the event, featured in our event program book, and much more! \r\n\r\nPlease also visit our website: https://www.tomorrowfund.org/ for additional information!\r\n\r\nWe hope that we can count on you to support our event through a donation to our Live & Silent Auction. With your support, you will help us continue to provide a better tomorrow for these children and their families!\r\n\r\nIf you have any questions and are interested in donating an auction item for the Live or Silent Auction, please feel free to contact me by email. \r\n\r\nWith great appreciation, \r\n\r\nJustin Coutu\r\n\r\nThe Tomorrow Fund, Fantasy Ball Committee Member',''),(3020,2,658,'7','Alice',''),(3021,2,658,'2','info@vetter.medicopostura.com',''),(3022,2,658,'3','(179) 078-5064',''),(3023,2,658,'4','1790785064',''),(3024,2,658,'5','Customer Service',''),(3025,2,658,'6','Hey there \r\n\r\nLooking to improve your posture and live a healthier life? Our Medico Postura™ Body Posture Corrector is here to help!\r\n\r\nExperience instant posture improvement with Medico Postura™. This easy-to-use device can be worn anywhere, anytime – at home, work, or even while you sleep.\r\n\r\nMade from lightweight, breathable fabric, it ensures comfort all day long.\r\n\r\nGrab it today at a fantastic 60% OFF: https://medicopostura.com\r\n\r\nPlus, enjoy FREE shipping for today only!\r\n\r\nDon\'t miss out on this amazing deal. Get yours now and start transforming your posture!\r\n\r\nThank You, \r\n\r\nAlice',''),(3026,2,659,'7','Frank Culbert',''),(3027,2,659,'2','syndbuddy@nowbusiness.info',''),(3028,2,659,'3','(336) 951-9242',''),(3029,2,659,'5','Media Inquiry',''),(3030,2,659,'6','Do you want to get MORE traffic, rankings and sales from the search engines, but get a little too “lazy” to do the “grunt” work?\r\n\r\nWould you prefer if someone just did it ALL for meadowcroftwines.com ?\r\n\r\nBut did it for you in a way that is unique, PROVEN, and gives Google what it wants?\r\n\r\nWell, if so, then prepare to be as excited as I am right now. \r\n\r\nBecause I have found the PERFECT solution for us “lazy” seo marketers hahah\r\n\r\n(If you want done-for-you rankings, check this out now: https://www.nowbusiness.info/syndbuddy )\r\n\r\nA new platform has just opened up that allows you to:\r\n\r\nGet FREE Targeted-Traffic to ANY Offer (or Service) By Letting their PROVEN Army of 8,000 Members Do ALL Your Social Syndication FOR YOU, So You Can Rank on Page 1 in 48 hours or less..\r\n\r\n..And it works for ANY niche, ANY location and ANY language…\r\n\r\nAND it DOES NOT matter if you’ve tried other ranking tools and failed!\r\n\r\nYup, I’m talking about:\r\n\r\n– TOTALLY hands-free rankings for ANY niche site or video (or ANY url)\r\n\r\n– ZERO Work on your part besides submitting the URL you want traffic for\r\n\r\n– ZERO learning curve since everything is pretty much DONE FOR YOU..\r\n\r\n– Heck, it doesn’t even matter if you SUCK at SEO or are new to the subject..\r\n\r\nShort on time? See how to get your DFY rankings here: https://www.nowbusiness.info/syndbuddy \r\n\r\nGetting OTHER People To Share YOUR Content ALL Over Social Sites Is A MASSIVE Advantage Above ALL Other Forms Of Syndication!\r\n\r\nIt is the BOOSTER, the SUPER CHARGER, the NOS or whatever you want to call it!\r\n\r\nIn short, it’s pretty much EXACTLY what Google wants: Natural, social sharing of content by REAL people on REAL, unique accounts!\r\n\r\nAnd SyndBuddy is built off that “buddy” system that has been delivering AMAZING results for its users.\r\n\r\nCheck out how it all works here: https://www.nowbusiness.info/syndbuddy \r\n\r\nFrank Culbert\r\n\r\nP.S. SyndBuddy allows you to tap into a PRE-BUILT Army of REAL people that are ready to share YOUR content all over the internet…\r\n\r\n…so you can get rankings FAST and for the long-term, which leads to MORE targeted traffic, leads and sales from Google and YouTube.\r\n\r\nAnd you want to know the BEST part?\r\n\r\nThey’ve Simplified The ENTIRE Process For You To Get Targeted Traffic To ANY Content You’d Like Into 3 Simple Steps:\r\n\r\nStep 1 – Login To The Web-Based Portal\r\n\r\nStep 2 is to submit ANY Url you’d like to the “sharing pool” so members can start syndicating your content for you.\r\n\r\nAnd step 3 is to just Hit “Start” and watch your rankings, traffic and Profit skyrocket by leveraging the power of their “ranking army”\r\n\r\nYup, That’s IT!\r\n\r\nFrom There the “Ranking Army” of over 8,000 Members Will Get To Work FOR YOU And Build You HUNDREDS of Social Links To ANY URL You’d Like – 100% Hands-Free!\r\n\r\nNO Software To Install\r\nNo Software Training To Learn\r\nNo Social Account Creation Needed\r\nNo Content Needed On Your Part\r\nNo Proxies or Captchas Needed\r\nNOTHING is Needed But The URL You Want Traffic For\r\n\r\nTalk about awesome, right?\r\n\r\nCheck out how easy this is here: https://www.nowbusiness.info/syndbuddy \r\n\r\nUNSUBSCRIBE: https://www.nowbusiness.info/unsubscribe/?d=meadowcroftwines.com   \r\nAddress: 4003 Burning Memory Lane\r\nChurchville, PA 18966',''),(3031,2,660,'7','Owen Greeves',''),(3032,2,660,'2','owen.greeves20@gmail.com',''),(3033,2,660,'3','(660) 461-0890',''),(3034,2,660,'5','Customer Service',''),(3035,2,660,'6','Hi there, I apologize for using your contact form, \r\nbut I wasn\'t sure who the right person was to speak with in your company. \r\nWe have a patented application that creates Local Area pages that rank on \r\ntop of Google within weeks, we call it Local Magic.  Here is a link to the \r\nproduct page https://www.mrmarketingres.com/local-magic/ . The product \r\nleverages technology where these pages are managed dynamically by AI and \r\nit is ideal for promoting any type of business that gets customers from Google.  Can I share a testimonial \r\nfrom one of our clients in the same industry?  I\'d prefer to do a short zoom to \r\nillustrate their full case study if you have time for it? \r\nYou can reach me at marketing@mrmarketingres.com or 843-720-7301. And if this isn\'t a fit please feel free to email me and I\'ll be sure not to reach out again.  Thanks!',''),(3036,2,661,'7','Phil Stewart',''),(3037,2,661,'2','noreplyhere@aol.com',''),(3038,2,661,'3','(342) 123-4456',''),(3039,2,661,'5','Media Inquiry',''),(3040,2,661,'6','Quick question: how would you like your ad to be seen by millions of people? I sent this message to your contact form, and you\'re reading it now! Visit my site below to learn more.\r\n\r\nhttp://wyj4h6.contactuspagemarketing.xyz',''),(3041,2,662,'7','Joanna Riggs',''),(3042,2,662,'2','joannariggs243@gmail.com',''),(3043,2,662,'5','Influencer Inquiry',''),(3044,2,662,'6','Hi,\r\n\r\nI just visited meadowcroftwines.com and wondered if you\'d ever thought about having an engaging video to explain what you do?\r\n\r\nWe have produced over 500 videos to date and work with both non-animated and animated formats:\r\n\r\nNon-animated example:\r\nhttps://www.youtube.com/watch?v=bA2DyChM4Oc\r\n\r\nAnimated example:\r\nhttps://www.youtube.com/watch?v=JG33_MgGjfc\r\n\r\nOur videos cost just $195 for a 30 second video ($239 for 60 seconds) and include a full script, voice-over and video.\r\n\r\nRegards,\r\nJoanna\r\n\r\nUnsubscribe: https://removeme.live/unsubscribe.php?d=meadowcroftwines.com',''),(3045,2,663,'7','Kristen',''),(3046,2,663,'2','info@lerma.bangeshop.com',''),(3047,2,663,'3','(705) 589-6081',''),(3048,2,663,'4','7055896081',''),(3049,2,663,'5','Influencer Inquiry',''),(3050,2,663,'6','Hey there, \r\n\r\nI hope this email finds you well. I wanted to let you know about our new BANGE backpacks and sling bags that just released.\r\n\r\nThe bags are waterproof and anti-theft, and have a built-in USB cable that can recharge your phone while you\'re on the go.\r\n\r\nBoth bags are made of durable and high-quality materials, and are perfect for everyday use or travel.\r\n\r\nOrder yours now at 50% OFF with FREE Shipping: http://bangeshop.com\r\n\r\nRegards,\r\n\r\nKristen',''),(3051,2,664,'7','Oman Granier',''),(3052,2,664,'2','granier.meri1@hotmail.com',''),(3053,2,664,'3','(647) 833-0908',''),(3054,2,664,'5','Influencer Inquiry',''),(3055,2,664,'6','Hello,\r\n\r\nAt Cateus Investment Company (CIC), we understand that securing the right funding is crucial for both startups and established businesses. That\'s why we offer flexible financing solutions designed to meet your specific needs.\r\n\r\nHere’s how we can help:\r\n\r\nDebt Financing: 3% annual interest with zero penalties for early repayment.\r\nEquity Financing: Venture capital support with a 10% equity stake—helping you expand while keeping control.\r\nWe’re ready to explore the best option for your business. Simply send us your pitch deck or executive summary, and let’s discuss the ideal investment structure to fuel your growth.\r\n\r\nLooking forward to hearing from you.\r\n\r\nBest regards,\r\nOman Rook\r\nExecutive Investment Consultant/Director\r\nCateus Investment Company (CIC)\r\nPhone: +973-17-585338 | Email: oman-rook@cateusgroup.org or cateusgroup@gmail.com\r\nhttps://cateusinvestmentgroup.com\r\n\r\n\r\nCateus Investment Group | Home\r\nhttps://cateusinvestmentgroup.com',''),(3056,2,665,'7','George Saenz',''),(3057,2,665,'2','george.saenz@googlemail.com',''),(3058,2,665,'3','(379) 647-5526',''),(3059,2,665,'5','Customer Service',''),(3060,2,665,'6','Have you seen a great feature or an entire website design that you love and wish that you could have for your business?\r\n\r\nWe can make it happen and at wholesale rates.\r\n\r\nWhy pay $50+ per hour for web development work, \r\nwhen you can get higher quality results AT LESS THAN HALF THE COST? \r\n\r\nWe are a FULL SERVICE, USA managed web development agency offering wholesale pricing.\r\n\r\nNo job too big or small. Test us out to see our value.\r\n\r\nUse the link in my signature, for a quick turn around quote.\r\n\r\n\r\n\r\nKristine Avocet\r\nSenior Web Specialist \r\nFusion Web Experts  \r\n186 Daniel Island Drive \r\nDaniel Island, SC 29492 \r\nwww.fusionwebexperts.tech',''),(3061,2,666,'7','Mona',''),(3062,2,666,'2','info@gambrel.bangeshop.com',''),(3063,2,666,'3','(210) 933-4568',''),(3064,2,666,'4','2109334568',''),(3065,2,666,'6','Morning, \r\n\r\nI hope this email finds you well. I wanted to let you know about our new BANGE backpacks and sling bags that just released.\r\n\r\nThe bags are waterproof and anti-theft, and have a built-in USB cable that can recharge your phone while you\'re on the go.\r\n\r\nBoth bags are made of durable and high-quality materials, and are perfect for everyday use or travel.\r\n\r\nOrder yours now at 50% OFF with FREE Shipping: http://bangeshop.com\r\n\r\nBest Wishes,\r\n\r\nMona',''),(3066,2,667,'7','Sadie Lohman',''),(3067,2,667,'2','lohman.sadie36@gmail.com',''),(3068,2,667,'3','(514) 652-5264',''),(3069,2,667,'5','Influencer Inquiry',''),(3070,2,667,'6','Hi there\r\nCheap social traffic with good engagement rate\r\n\r\nCheck it  out today\r\nhttps://www.digital-x-press.com/product/country-targeted-traffic/\r\n\r\n\r\nCheers\r\nDigital X SEO Experts\r\nWhatsapp us: https://www.digital-x-press.com/whatsapp-us/',''),(3071,2,668,'7','Minna Turner',''),(3072,2,668,'2','minna.turner@gmail.com',''),(3073,2,668,'3','(359) 381-9933',''),(3074,2,668,'5','Careers',''),(3075,2,668,'6','People + Processes + Working Capital = The Recipe for Business Success\r\n\r\nBut most small business owners put little thought into the capital needed to scale and grow their business.\r\n\r\nIf you have the people & the business processes in place but no working capital, then your business will be stuck in neutral.\r\n\r\nGet a no obligation working capital quote in less than 2 minutes. \r\n\r\n USA Based Businesses Only! \r\n\r\nGet in touch with me below for more info\r\n\r\nElizabeth Miller\r\nelizabeth.miller@helloratesfastfunding.com\r\nhttps://www.helloratesfastfunding.com',''),(3076,2,669,'7','Business Registry',''),(3077,2,669,'2','submissions@businessregister.tech',''),(3078,2,669,'3','(394) 845-1614',''),(3079,2,669,'5','Influencer Inquiry',''),(3080,2,669,'6','Hello,\r\n\r\nplease confirm the details for meadowcroftwines.com are up to date.\r\n\r\nUpdating is free of charge!\r\n\r\nTo check your details now, visit:\r\n\r\nhttps://wcrupdate.info/ \r\n\r\n\r\nBest regards,\r\n\r\nBusiness Register',''),(3081,2,670,'7','Nathan Johnson',''),(3082,2,670,'2','aiapp@earnmillions.xyz',''),(3083,2,670,'3','(828) 328-3077',''),(3084,2,670,'5','Media Inquiry',''),(3085,2,670,'6','Exciting news!   The wait is finally over – OpenApp AI is now LIVE\r\nThe first-ever AI-powered, no-coding \'Android & iOS\' mobile app builder.\r\nGame-changing technology allows you to transform any your ideas, keywords, website URL, blogs, pages, and e-commerce stores into stunning Real Android & iOS mobile apps in less than 60 seconds!\r\n\r\n===>Access OpenApp AI + All Bonus (Early Bird Launch Discount): https://www.earnmillions.xyz/aiapp  \r\n\r\nGenerate highly advanced Mobile apps and upload them on different app stores Like Google-Play & Apple App Store…\r\n...  To easily make huge profits weekly, monthly and annually on complete autopilot...\r\n\r\nHere\'s why OpenApp AI is a game-changer:\r\nCreate Unlimited Android & IOS Mobile Apps Using Al\r\nTransform Any Website Url, Keywords, Blogs, Pages & Ecom Store into A Fully Functional Stunning Mobile Apps\r\nBuilt-in 1500+ Professional Templates: Create Personal Or Business Mobile Apps For Any Niche Using Al\r\nPublish Your App on Google-Play and Apple store In Less Than 60 Seconds\r\nPayment Integration, accept payments in your app through Payment Gateways\r\nSend Push Notifications To Your App Users And Get Up To 98% Open Rate.\r\nSend Unlimited Emails & SMS Directly To Your Users\r\nAdd Unlimited Custom Domains & Subdomains Without Any Restrictions.\r\nBuilt-In Interactive elementsa to add Coupon, Loyalty Program, Appointment and event booking,\r\nConvert existing website URL into Android/iOS App\r\nGenerate native android and iOS apps\r\nBuilt-in App Monetization\r\nLifetime Access With No Recurring Monthly Payments\r\n\r\n\r\nReady to take the leap into the future of app development?   Try OpenApp AI today and experience the simplicity of turning your dreams into reality.\r\n\r\n==> Watch OpenApp AI Demo In Action: https://www.earnmillions.xyz/aiapp  \r\n\r\nDon\'t let coding complexities hold you back.   Join the ranks of successful app creators with OpenApp AI.\r\n\r\nOops, did I forget to mention…\r\nYou’re also getting exclusive bonuses worth $....   that will make this deal an unforgettable affair. \r\n\r\nBut these are available for a very limited time.\r\nSo, don’t you dare miss out on this.\r\n\r\n\r\n===>Access OpenApp AI + All Bonus (Early Bird Launch Discount): https://www.earnmillions.xyz/aiapp  \r\n\r\n\r\nBest regards,\r\nNathan Johnson\r\n\r\n\r\nUNSUBSCRIBE: https://www.earnmillions.xyz/unsubscribe/?d=meadowcroftwines.com  \r\nAddress: 387 Dovetail Estates\r\nFay, OK 73646',''),(3086,2,671,'7','Abhi',''),(3087,2,671,'2','efficientmanage007@outlook.com',''),(3088,2,671,'3','(345) 545-9934',''),(3089,2,671,'5','Media Inquiry',''),(3090,2,671,'6','Hello! I\'m Abhi, a professional with 10 years of experience in data entry, research, and back office support. I’m skilled at understanding and adapting to your process and software. Rates: USD 7/hr–12/hr, with discounts for part/full-time jobs. \r\n\r\nContact me at efficientmanage007@outlook.com',''),(3091,2,672,'7','Russ Holmes',''),(3092,2,672,'2','russ.holmes@gmail.com',''),(3093,2,672,'3','(661) 383-9634',''),(3094,2,672,'5','Customer Service',''),(3095,2,672,'6','Greetings\r\n\r\nStop Wasting Money on Designers, Video Editors, or Expensive Apps…\r\n\r\nRevealing the World\'s First Canva, ChatGPT-4, And Midjourney Killer App That Generates 20+ Types Of Stunning Visuals Using AI in Seconds.\r\n\r\nNo Experience - No Learning - No Team Required => https://zeep.ly/JzVTN\r\n\r\nKind regards\r\nRuss\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nUnited States, CA, Bakersfield, 93301, 230 Lowndes Hill Park Road\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(3096,2,673,'7','Nancy Winslow',''),(3097,2,673,'2','nancy.winslow@gmail.com',''),(3098,2,673,'3','(423) 420-2959',''),(3099,2,673,'5','Customer Service',''),(3100,2,673,'6','Hi\r\n\r\nYou have the chance to uncover the incredible secret hidden within Jeff Bezos Amazon empire – a secret that offers you an endless stream of free traffic and overwhelms you with amazing Amazon commissions!\r\n\r\nWHY EXPERTS LOVE AMZ AUTOMATOR:\r\n - Free Traffic: An untapped traffic source from Amazon Prime.\r\n - Huge Commissions: Up to $293.47 per day just by watching videos.\r\n - Maximum Efficiency: No tedious and expensive setups.\r\n\r\nWHAT PROFESSIONALS ARE SAYING:\r\n[Nancy] \"AMZ AUTOMATOR has completely transformed the way I earn Amazon commissions. It’s simply revolutionary!\"\r\n\r\nDON’T MISS THIS UNIQUE OPPORTUNITY:\r\nTime is of the essence! This Amazon Prime secret won’t be available for long.\r\n\r\nCLICK HERE TO START =>> https://zeep.ly/IbPTa\r\n\r\nDon’t let this chance slip by. Secure your spot among those who take advantage of this rare opportunity!\r\n\r\nRespectfully\r\nNancy\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nUnited States, TN, Madisonville, 37354, 4589 Corbin Branch Road\r\nTo stop any further communication from us, please reply to this email...',''),(3101,2,674,'7','Dedra Bull',''),(3102,2,674,'2','dedra.bull@gmail.com',''),(3103,2,674,'3','(360) 565-2014',''),(3104,2,674,'6','Hello\r\n\r\nSay goodbye to manual video editing! \r\n\r\nGenerate engaging videos for TikTok, Instagram, and YouTube in seconds.\r\n\r\nDon\'t miss our Early Bird Offer! Visit now for exclusive bonuses and discounts.\r\n\r\nSEE HERE => https://tinyurl.com/bd4ffuyz\r\n\r\nWarm regards\r\nDedra\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nItaly, BI, Occhieppo Superiore, 13898, Strada Statale 120\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(3105,2,675,'7','Krystyna Wakehurst',''),(3106,2,675,'2','krystyna.wakehurst@gmail.com',''),(3107,2,675,'3','(778) 662-8577',''),(3108,2,675,'5','Influencer Inquiry',''),(3109,2,675,'6','Hi\r\n\r\nReady to dominate TikTok? \r\n\r\nOur game-changing AI app empowers you to create professional-quality short videos effortlessly!\r\n\r\nDon\'t miss out! Grab your ticket to TikTok success now\r\n\r\nSEE HERE => https://tinyurl.com/yb5cvmf5\r\n\r\nRegards\r\nKrystyna\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nGreat Britain, NA, Three Holes, Pe14 3ls, 14 High St\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(3110,2,676,'7','Delilah Zaragoza',''),(3111,2,676,'2','zaragoza.delilah@gmail.com',''),(3112,2,676,'3','(321) 276-7590',''),(3113,2,676,'6','Greetings\r\n\r\nCreate viral TikTok, Instagram, YouTube, and Facebook videos instantly with AI VideoReel Builder. \r\n\r\nJust enter a keyword, and it handles the rest - editing, voiceovers, and more. \r\n\r\nGrab yours now before prices rise =>> https://zeep.ly/tFICn\r\n\r\nThank you\r\nDelilah\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nItaly, BR, Torchiarolo, 72020, Via Del Mascherone 130\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(3114,2,677,'7','Rebecca Bohm',''),(3115,2,677,'2','theclickengine@nowbusiness.info',''),(3116,2,677,'3','(306) 529-6237',''),(3117,2,677,'5','Media Inquiry',''),(3118,2,677,'6','Are you ready to experience what REAL buyer ( who are interested in the MMO, biz o p p ) traffic can do for your business?\r\n\r\nThe Click Engine delivers autopilot hits for you  every single month.\r\n\r\nYou can easily affiliate networks like Jvzoo/Clickbank/Digistore24 and find Business Opportunity offers.\r\n\r\nDrive traffic to these offers and make money: https://www.nowbusiness.info/theclickengine .\r\n\r\n-------------------\r\n\"I\'ve only been in for about 2 weeks and already have a sign up in my program.         This is the first time for me and I am super grateful and looking forward to more sign-ups\'\r\n- Mary Gruendler\r\n-------------------\r\n\r\n-------------------\r\n\"My Link has gotten four opt-ins and a sale too so far!          Yippie!          I\'m very Grateful\" -  Heather Dake\r\n-------------------\r\n\r\nThere are dozens more testimonials where those come from.\r\n\r\nYou wanna be the next to get awesome results: https://www.nowbusiness.info/theclickengine ?\r\n\r\nBest,\r\nRebecca Bohm\r\n\r\n\r\nUNSUBSCRIBE: https://www.nowbusiness.info/unsubscribe/?d=meadowcroftwines.com  \r\n\r\nAddress: 1 Werninger Street\r\nHouston, TX 77032',''),(3119,2,678,'7','Bonnie Ingalls',''),(3120,2,678,'2','ingalls.bonnie@outlook.com',''),(3121,2,678,'3','(771) 091-1959',''),(3122,2,678,'5','Influencer Inquiry',''),(3123,2,678,'6','The Vetted Business Directory June 2024 update is live. \r\n\r\nYour business is NOT INCLUDED because the verification email we sent was returned as undeliverable. \r\n\r\nThis same email is also used by the platform for your local leads, so it\'s important for the integrity of the platform for consumers that want your services to be able to reach you.\r\n\r\nIf the returned email was in error, see the link in my signature to update your listing email. \r\n\r\nOnce remedied, you’ll reactivate all of the world class Vetted benefits:\r\n \r\n+A robust Vetted business profile that promotes trust, transparency & credibility in your market\r\n+Powerful SEO for your business when you add your URL link in your profile.\r\n+Local leads from consumers that use our national platform to find Vetted Businesses by category\r\n \r\nUse the link in my signature to add/ update your Vetted business details, and realize the powerful benefits of being a Vetted business in your local market, your service category and your business specialty.\r\n\r\nYours in trust & transparency,\r\n\r\nSarah McCormick\r\nVetted Business Specialist\r\n295 Seven Farms Drive Suite C-201\r\nCharleston, SC 29492\r\nsarah.mccormick@vettedpros.com\r\nhttps://vettedpros.com/1-2/?a=Get-Your-Business-Vetted!',''),(3124,2,679,'7','Jeremy Wyatt',''),(3125,2,679,'2','wyatt.jeremy@yahoo.com',''),(3126,2,679,'3','(930) 617-5366',''),(3127,2,679,'6','Hello\r\n\r\nIntroducing Instant Profit Pages Pro, your secret to generating daily passive profits in less than 20 minutes a day. Our user-friendly setup employs 100% free traffic methods and builds email lists on autopilot with impressive 50-80% lead conversions.\r\n\r\nExperience clear benefits: no-cost, done-for-you profit funnels, fully hosted pages, and no monthly fees. The simple three-step process—log in, activate DFY pages, and customize preferences—allows you to scale from beginner to expert without direct selling.\r\n\r\nAct now and take advantage of this limited-time offer! \r\n\r\nTransform your daily routine with just 20 minutes a day for amazing results. => https://zeep.ly/VvPKt\r\n\r\nKind regards\r\nJeremy\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nGermany, BY, Kleinrinderfeld, 97271, Alter Wall 78\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(3128,2,680,'7','Kira Laney',''),(3129,2,680,'2','kira.laney@gmail.com',''),(3130,2,680,'3','(386) 214-5533',''),(3131,2,680,'5','Influencer Inquiry',''),(3132,2,680,'6','Good day\r\n\r\nAre you tired of spending endless hours creating content that just doesn’t convert? What if I told you there’s a way to turn your favorite YouTube videos into cash machines instantly?\r\n\r\nIntroducing TubeMagic A.I. – the revolutionary tool that transforms YouTube videos into high-ranking, SEO-optimized blog posts, viral social media content, and more with just a click. Imagine the possibilities!\r\n\r\nSay goodbye to writer\'s block and hello to effortless content creation. With TubeMagic A.I., you can dominate search engines and drive massive organic traffic to your site, all while making money online \r\n\r\nReady to see the magic in action? Click here to get started with TubeMagic A.I. today!\r\n ==>  https://zeep.ly/QeeMO\r\n\r\nKind regards\r\nKira\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nItaly, LU, Valpromaro, 55068, Via Melisurgo 44\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(3133,2,681,'7','Kristen Simmons',''),(3134,2,681,'2','kristensimmons263@gmail.com',''),(3135,2,681,'5','Wines',''),(3136,2,681,'6','Hi—I recently found out I have an egg intolerance and was told some wines use egg whites in the wine making process. Are you able to tell me if Meadowcroft uses egg whites in the process? Thanks so much for any information you can provide!',''),(3137,2,682,'7','Aubrey Pitcairn',''),(3138,2,682,'2','pitcairn.aubrey@gmail.com',''),(3139,2,682,'3','(775) 883-1009',''),(3140,2,682,'5','Careers',''),(3141,2,682,'6','Hello\r\n\r\nLearn to earn consistent affiliate commissions without spending a dime upfront. Our new course teaches you how to leverage free tools and traffic to maximize your earnings. With exclusive resources not found in the original course, you\'re set to start earning big commissions quickly.\r\n\r\nUnlock clear benefits with our comprehensive training: free tools, undisclosed traffic sources, and a pathway to online success. Plus, learn strategies to scale your business using paid traffic for even greater returns.\r\n\r\nDon\'t miss out! Enroll now and transform your affiliate marketing journey. Start earning today with our proven system! =>  https://zeep.ly/oSqbW\r\n\r\nSincerely\r\nAubrey\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nUnited Kingdom, NA, Hilperton, Ba14 2sb, 37 Consett Rd\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(3142,2,683,'7','Sara Jones',''),(3143,2,683,'2','sara.jones7080@gmail.com',''),(3144,2,683,'5','Careers',''),(3145,2,683,'6','Dear CEO/Managing Partner, \r\n\r\nDid you know WhatsApp is one of the most powerful communication and marketing tools, boasting a 98% open rate? Are you using it for customer support, sales, and lead generation?\r\n\r\nDiscover how one startup company in New York scaled to over $2M per month using just WhatsApp Marketing: https://tinyurl.com/wapitools \r\n\r\n\r\nBest Regards\r\nSara Jones\r\nAI & Automation Expert\r\nPhone: (0795) 1024 991\r\nAI WhatsApp Automation: https://tinyurl.com/wapitools\r\n\r\n\r\nDon’t need Cutting-Edge AI & Technology Knowledge & Skills Opt-Out Here https://247globals.com/optout/ Suite 207 Devonshire House, Manor Way, Herts, England, WD6 1QQ',''),(3146,2,684,'7','Eric Rice',''),(3147,2,684,'2','dfysuite@busitoday.co',''),(3148,2,684,'3','(430) 987-4690',''),(3149,2,684,'5','Media Inquiry',''),(3150,2,684,'6','—\r\n\r\nI have to be brutally honest today.. I suck at SEO lol – there I said it.\r\n\r\nAlthough I understand how POWERFUL it is to get free traffic from Google, I just never had any interest to put it to use for my business..\r\n\r\nEspecially when it comes to the ONGOING syndication and ‘backlinking’ portion of it.\r\n\r\nThat’s what REALLY turned me off about it.\r\n\r\nAlways having to be constantly syndicating my content all over the web for my content to rank on the first page..\r\n\r\nIf I ever did get into SEO, that’s the FIRST thing I’d get someone to do FOR ME!\r\n\r\nThat’s why – for the FIRST TIME EVER – I’m kinda EXCITED about SEO ??\r\n\r\nA couple of genius SEO marketers have created a system that does EXACTLY that.\r\n\r\nThey’ve SIMPLIFIED the ENTIRE social syndication process so that ANYONE can tap into the power of Page 1 rankings – EVEN if they SUCK at SEO or are BRAND new to the subject. (LIKE me)\r\n\r\nAnd they have just opened the doors to their updated and GREATLY improved 5.0 version!\r\n\r\nIntroducing DFY Suite 5.0!\r\n\r\nDFY Suite will allow you to Get FREE, Targeted BUYER-Traffic In 48 Hours Or Less By Leveraging The Power Of High-Quality Social Syndication With their NEW, Done-For-YOU System!\r\n \r\nYup, you can now leverage the POWER of Page 1 Rankings Via Social Syndication for ANY location and/or ANY language with:\r\n\r\n– NO Software To Install\r\n– No Software Training To Learn\r\n– No previous SEO knowledge or experience\r\n– No Social Account Creation Needed\r\n– No Content Needed Besides their URL\r\n– No Proxies or Captchas Needed\r\n– NONE of that stuff..\r\n\r\nHeck, you don’t even need to KNOW what social syndication IS lol\r\n\r\nAll you need to do is:\r\n\r\n1. Login to the web-based portal\r\n2. Submit your Keywords and URL you want traffic for\r\n3. Hit “Submit”\r\n\r\nYup, That’s IT!\r\n\r\nFrom There their System Will Get To Work And Build You HUNDREDS of High-Quality Syndication Links To Your Content to skyrocket it to page 1 of Google!\r\n\r\nPLUS, if you’re 100% NEW to SEO, they’re also including a quick CRASH course on Keyword Research AND Content optimization that should take you no more than 20-30 minutes to go through.\r\n\r\nWith DFY Suite PLUS the Keyword Research and Content Optimization crash course, you’ll be able to start getting traffic from Google without EVER having to spend HOURS upon HOURS doing the HEAVY-LIFTING yourself.\r\n\r\nCheck out DFY Suite Here: https://www.busitoday.co/dfysuite\r\n\r\n“But wait, did you say they’ve just opened 5.0?”\r\n\r\nYup, and with their 5.0 updates they have made their platform BETTER, FASTER and MORE powerful to Deliver you even MORE rankings, Traffic & sales.\r\n\r\nIn version 5.0 they have:\r\n\r\n– 5x’d their sites, 5x’d the authority, 5x’d the ranking power! Now instead of being able to get up to 200 different syndication links to your content, you can get up to 1,000! And the domains they’ve added are ALL packing A LOT more authority\r\n\r\n– Done for you GLOBAL Rankings. Yup, WORLDWIDE Rankings are finally HERE via their multi-language support. Yes, you read that correctly! They now cover EVERY LANGUAGE you can think of, so you can get page 1 rankings REGARDLESS of where you are in the world!\r\n\r\n– Totally revamped their server set up to now Include IP’s from ALL over the world to SUPERCHARGE their new WORLDWIDE ranking power!\r\n \r\n– Totally revamped their content generation system Which is now powered by REAL Artificial intelligence With Creaite being the engine to that! REAl A.I means QUALITY, unique content being written for EVERY campaign You submit. And we ALL know how much Google loves quality content.\r\n\r\n– and much much more… (they have a WHOLE section And video covering what’s new in 5.0 – there’s 7 MAJOR updates total)\r\n\r\nThis is EASILY their MOST powerful update To date and you can get access to it at an INSANE discount.\r\n\r\nCheck out how it works here:  https://www.busitoday.co/dfysuite\r\n\r\nThis is the GO-TO platform for DFY, page 1 rankings!\r\n\r\nEric Rice\r\n\r\nP.S. Getting page 1 rankings has NEVER been easier.\r\n\r\nWith DFY Suite You’ll be able to:\r\n\r\n– rank your videos on page 1\r\n– rank your niche sites on page 1\r\n– rank your e-commerce sites on page 1\r\n– rank your Amazon listings\r\n– rank your CLIENT’s sites\r\n– rank ANY URL you’d like to get traffic for..\r\n\r\nIt’s really the PERFECT solution for us “lazy” seo marketers hahah\r\n\r\nAnd their 5.0 updates have REALLY taken things to the NEXT level!\r\n\r\ncheck it out here:  https://www.busitoday.co/dfysuite \r\n\r\n\r\nUNSUBSCRIBE: https://www.busitoday.co/unsubscribe/?d=meadowcroftwines.com  \r\n\r\n\r\nAddress: 4456 County Line Road\r\nTampa, FL 33610',''),(3151,2,685,'7','Jeffrey Blau',''),(3152,2,685,'2','blau.jeffrey35@hotmail.com',''),(3153,2,685,'3','(775) 692-4153',''),(3154,2,685,'5','Media Inquiry',''),(3155,2,685,'6','Hi there\r\n\r\nNow you can send unlimited browser-friendly emails to unlimited subscribers with 99.96% inbox delivery. MailDaddy is like magic, fully compliant with Google & Yahoo\'s 2024 update.\r\n\r\nEnjoy 100% SPF, DMARC & DKIM compliance to boost your sender reputation. MailDaddy offers top-tier email marketing capabilities at a fraction of the cost, helping your business thrive.\r\n\r\nGet MailDaddy now at a low, one-time price before the monthly pricing kicks in. \r\n\r\nClick here to secure your copy and transform your email marketing today! =>  https://zeep.ly/CecZz\r\n\r\nKind regards\r\nJeffrey\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nGreat Britain, NA, Cross Ash, Np7 6rf, 19 Kent Street\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(3156,2,686,'7','Roslyn Ono',''),(3157,2,686,'2','roslyn.ono@msn.com',''),(3158,2,686,'3','(780) 636-6068',''),(3159,2,686,'5','Customer Service',''),(3160,2,686,'6','Greetings\r\n\r\nIntroducing the ultimate solution to skyrocket your income effortlessly: our Copy and Paste System. Just set it up once, and watch as you gain unlimited buyer subscribers and recurring commissions without any additional effort.\r\n\r\nExperience the simplicity and efficiency of our system, designed to streamline your process. Maximize your earnings with minimal time investment, allowing you to focus on other aspects of your business or personal life.\r\n\r\nDon\'t miss out on this game-changing opportunity. Click here to start now and transform your earning potential! =>  https://zeep.ly/sembK\r\n\r\nRegards\r\nRoslyn\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nCanada, AB, Vilna, T0a 3l0, 1487 47th Avenue\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(3161,2,687,'7','Phil Stewart',''),(3162,2,687,'2','noreplyhere@aol.com',''),(3163,2,687,'3','(342) 123-4456',''),(3164,2,687,'5','Influencer Inquiry',''),(3165,2,687,'6','Blast your ad to 20 million contact forms like I posted my ad on your site just now for $499 Check out: http://je3gxq.get-fast-results-with-contactformblasting.xyz',''),(3166,2,688,'7','Ernestina Anthony',''),(3167,2,688,'2','anthony.ernestina@googlemail.com',''),(3168,2,688,'3','(336) 175-2706',''),(3169,2,688,'6','Do you have big ideas and plans to update your website, but hate the outrageous fees that most agencies charge?\r\nWhy pay $50+ per hour for web development work, \r\nwhen you can get higher quality results AT LESS THAN HALF THE COST? \r\n\r\nWe are a FULL SERVICE, USA managed web development agency offering wholesale pricing.\r\n\r\nNo job too big or small. Test us out to see our value.\r\n\r\nUse the link in my signature, for a quick turn around quote.\r\n\r\n\r\n\r\nKristine Avocet\r\nSenior Web Specialist \r\nFusion Web Experts  \r\n186 Daniel Island Drive \r\nDaniel Island, SC 29492 \r\nwww.fusionwebexperts.tech',''),(3170,2,689,'7','Ernestina Gipps',''),(3171,2,689,'2','gipps.ernestina@hotmail.com',''),(3172,2,689,'3','(315) 186-3549',''),(3173,2,689,'6','Hi there,\r\n\r\nWe’re excited to introduce Mintsuite, the ultimate platform to enhance your online presence and drive results. Mintsuite empowers you to create stunning websites, manage social media like a pro, and generate traffic effortlessly.\r\n\r\nCreate Stunning Websites\r\nManage Social Media Effortlessly\r\nGenerate Unlimited Traffic\r\n\r\nGrab Mintsuite now for just $16 (normally $180)!\r\n\r\nCheck out the amazing features of Mintsuite here: https://furtherinfo.info/mint\r\n\r\nThanks for your time,\r\nErnestina',''),(3174,2,690,'7','Cornell Simonson',''),(3175,2,690,'2','simonson.cornell@gmail.com',''),(3176,2,690,'3','(333) 806-4653',''),(3177,2,690,'6','Hi Meadowcroftwines,\r\n\r\nThat’s a bold question… But it\'s only logical.\r\n\r\nEspecially since just today, Seyi opened the doors to his new AI Sonic App… \r\n\r\nIt’s the only app that can allow you to build a “music, podcast, & live radio” hypermedia streaming platform that lets you stream over 100 million songs, playlists, genre, radio, and podcasts… \r\n\r\n=>>> https://sonic-music-streaming-app.blogspot.com/\r\n\r\nAnd then fill it with hundreds of monthly paying customers… \r\n…without paying for ads, or doing SEO. \r\n\r\nThey leverage a library with over 600,000,000 (six hundred million) paying customers \r\n\r\nTo fill your platform in just minutes… \r\n\r\n\r\nIt literally does all the work for you, and gives you a Spotify-killer platform in just a matter of seconds… \r\n\r\nYou don’t need to code anything \r\nYou don’t need to design anything\r\nYou don’t need to record or edit anything\r\nYou don’t need to pay any royalties \r\nYou don’t need to market anything\r\n\r\nAll you need is to just enter a keyword, and that’s it… \r\n\r\n=>>> https://sonic-music-streaming-app.blogspot.com/\r\n\r\nSonic will give you a profitable Hypermedia streaming platform that will make you thousands of dollars monthly… \r\n\r\nBest part? Sonic will also transform your Hypermedia streaming platform into iOS and Android mobile apps at the click of a button… \r\nGiving you extra exposure to billions of potential customers easily…\r\n\r\nRight now, you can create your account with Sonic, and get unheard-of discount of 94%... \r\n\r\nNot just that, you will be able to also secure your copy of a bonus bundle that Seyi prepared for you… \r\n\r\nWorth over $14,000 \r\n\r\n>> Click on this link, and watch Sonic build an entire platform in under 60 seconds… \r\n\r\n=>>> https://sonic-music-streaming-app.blogspot.com/\r\n\r\nCheers,\r\n[Cornell Simonson]',''),(3178,2,691,'7','Jeannine Blandowski',''),(3179,2,691,'2','blandowski.jeannine@hotmail.com',''),(3180,2,691,'3','(250) 424-4152',''),(3181,2,691,'6','The BBB is a great tool ……..for businesses in 1962 …..\r\n\r\nUNFORTUNATELY, the BBB has not kept up with the times, and no longer provides the information that today’s consumers want and need to make INFORMED BUYING DECISIONS.\r\n\r\nThere is a better option that is taking the market by storm, because it ACTUALLY MEETS THE NEEDS of both the businesses, and the consumers who use it.\r\n\r\nIntroducing Vetted Business Credentials Reports. \r\nA cloud hosted Business Credentials Report that can be easily shared with one click, and provides the highest levels of trust, transparency & credibility for your business while increasing your chances of booking the sale by a staggering 63%.\r\n\r\nVetted Business Credential Reports allow you to host and 1 click share:\r\n\r\n+ Your Business License, Insurance & Bond\r\n+ Your Business & Professional Certifications & Accreditations\r\n+ Your Industry, Local & Trade Affiliations\r\n+ Your Trust Badges, Awards, & Associations Memberships\r\n+ Much more!\r\n\r\nGet Vetted and dominate your local market \r\nSee how Vetted can SUPERCHARGE your business with a No RISK 30 DAY FREE TRIAL\r\nSee link in my profile to learn more or to get started.\r\n\r\nWarmly,\r\n\r\nJennifer Corbitt\r\nVetted Business Report Specialist\r\n295 Seven Farms Drive Suite C-201\r\nCharleston, SC 29492\r\nJennifer.Corbitt@Vettedprobusinessusa.com\r\nhttps://www.VettedProBusinessUSA.com',''),(3182,2,692,'7','Thomas Howard',''),(3183,2,692,'2','th@wingetter.com',''),(3184,2,692,'5','Media Inquiry',''),(3185,2,692,'6','Dear CEO/Managing Partner, \r\n\r\nAre you leveraging the power of AI and OSINT in your business, or are you still considering the leap? These technologies are revolutionising industries, and companies that delay risk falling behind.\r\nTo help you explore the benefits of AI, we’ve developed a cutting-edge AI Calculator. It\'s a free, simple tool designed to show the potential costs and advantages of implementing AI in your business.\r\n\r\nTry it here: AI Calculator -  https://tinyurl.com/aicalculators\r\n\r\n\r\nBest Regards\r\nThomas Howard\r\nAI & Automation Expert\r\nPhone: (0795) 1024 991\r\nAI Calculator: https://tinyurl.com/aicalculators\r\n\r\n\r\nDon’t need Cutting-Edge AI & Technology Knowledge & Skills Opt-Out Here https://247globals.com/optout/ Suite 207 Devonshire House, Manor Way, Herts, England, WD6 1QQ',''),(3186,2,693,'7','Business Registry',''),(3187,2,693,'2','submissions@businessregister.tech',''),(3188,2,693,'3','(325) 618-4670',''),(3189,2,693,'5','Careers',''),(3190,2,693,'6','Hello,\r\n\r\nplease confirm the details for meadowcroftwines.com are up to date.\r\n\r\nUpdating is free of charge!\r\n\r\nTo check your details now, visit:\r\n\r\nhttps://wcrupdate.info/ \r\n\r\n\r\nBest regards,\r\n\r\nBusiness Register',''),(3191,2,694,'7','Doug Thorpe',''),(3192,2,694,'2','lopez.maisie@hotmail.com',''),(3193,2,694,'3','(688) 886-0570',''),(3194,2,694,'6','Hello\r\n\r\nUnlock Your Independence with a Proven Business\r\n\r\nDiscover the freedom of owning a successful business and say goodbye to the corporate grind. \r\n\r\nWith our unique opportunities, you can buy and own a thriving enterprise, gaining financial independence and a lifestyle that truly fulfills you.\r\n\r\nStart your journey today—click here to explore available businesses! \r\n>>> https://zeep.ly/GEQUL\r\n\r\nThanks,\r\nDoug Thorpe\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n \r\n\r\nAustria, UPPER AUSTRIA, Bergheim, 4082, Friedhofstrasse 86\r\nTo stop any further communication from us, please reply to this email with subject: Unsubscribe meadowcroftwines.com',''),(3195,2,695,'7','Loyann Daniels',''),(3196,2,695,'2','loyannwanlin@gmail.com',''),(3197,2,695,'5','Wines',''),(3198,2,695,'6','Good morning…I was told you carry a NA wine…is this true?  Thank you',''),(3199,2,696,'7','Isidro Hansford',''),(3200,2,696,'2','isidro.hansford@yahoo.com',''),(3201,2,696,'3','(300) 649-6478',''),(3202,2,696,'5','Customer Service',''),(3203,2,696,'6','Running a small business is not easy.\r\n\r\nEspecially when the cost of nearly everything continues to skyrocket.\r\n\r\nCut yourself a break from the stress of rising expenses with a Working Capital Solution that will provide you the relief needed to get through these challenging times.\r\n\r\nGet a friendly no obligation working capital financing quote in less than 2 minutes.\r\n\r\n++ This Offer Only For Businesses In The USA ++\r\n\r\nGet in touch with me below for more info\r\n\r\nWarmly,\r\n\r\nLauren Smith\r\nHelloRates Fast Funding USA  \r\nCommercial & Business working capital with affordable payments, lowest rates, & best terms\r\nLauren.smith@helloratesfastfundingusa.com\r\nhttps://www.HelloRatesFastFundingUSA.com',''),(3204,2,697,'7','Natalia Vassallo',''),(3205,2,697,'2','natalia.vassallo@outlook.com',''),(3206,2,697,'3','(621) 164-0022',''),(3207,2,697,'5','Careers',''),(3208,2,697,'6','Hi there\r\n\r\nAre you looking for fast, secure, and reliable proxies for your online activities? ProxyScrape is here to help!\r\n\r\nWhat we offer:\r\n- Residential Proxies: Rotating IPs from residential locations to avoid online restrictions and blocks.\r\n- Premium Proxies: Top speed and reliability with a 99% success rate, ideal for performance and security-demanding tasks.\r\n- Dedicated Proxies: Private IPs for maximum control and customization, perfect for sensitive tasks.\r\n- Free Proxy Lists: HTTP, Socks4, and Socks5 proxies, updated every 5 minutes.\r\n\r\nWhy choose ProxyScrape?\r\n- Reliability: Our proxies are tested and verified to ensure maximum performance.\r\n- Security: Protect your online identity with secure and anonymous proxies.\r\n- Flexibility: We offer personalized solutions for your specific needs.\r\n\r\nDon’t miss the chance to enhance your online experience! Visit https://zeep.ly/bgulj\r\n\r\nRegards\r\nNatalia\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nGermany, BW, Mannheim Jungbusch, 68159, Scharnweberstrasse 91\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(3209,2,698,'7','SEObyAxy',''),(3210,2,698,'2','seosubmitter@mail.com',''),(3211,2,698,'3','(681) 826-8190',''),(3212,2,698,'6','Hello meadowcroftwines.com Webmaster\r\n\r\nDo you want to increase your online visibility and attract more organic traffic to your website? With our premium SEO Backlinks Services, it\'s possible!\r\n\r\nWHY CHOOSE OUR SERVICES?\r\n- Guaranteed Results: Purchase authentic and relevant backlinks that will improve your search engine rankings.\r\n- Maximum Visibility: Turn your website into a magnet for organic traffic.\r\n- Proven Expertise: We have a team of experienced SEO experts dedicated to your success.\r\n\r\nSPECIAL OFFER FOR YOU:\r\nFor a limited time, we are offering discount... Don\'t miss this opportunity to propel your business to the top of search results!\r\n\r\nAccess Now and Transform Your Website =>> https://t.ly/aG0Is\r\n\r\nThanks, \r\nSEObyAxy\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAustria, CARINTHIA, Gariusch, 9112, Kalhamer Strasse 99\r\nTo stop any further communication through your website form, Please reply with subject:  Unsubscribe meadowcroftwines.com',''),(3213,2,699,'7','Eve Vanguilder',''),(3214,2,699,'2','vanguilder.eve15@gmail.com',''),(3215,2,699,'3','(790) 934-2846',''),(3216,2,699,'6','Hello\r\n\r\nUnlock the secret to earning over $300 daily, starting right now. \r\n\r\nDiscover how effortless it is – anyone can do it... \r\n\r\nDon\'t miss this exclusive opportunity. \r\n\r\nClick here to get started! =>  https://tinyurl.com/23p3rs6t\r\n\r\nYours sincerely\r\nEve\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nGreat Britain, NA, Crowle, Wr7 7lz, 12 Sloe Lane\r\nTo stop any further communication from us, please reply to this email...',''),(3217,2,700,'7','Eve Coolidge',''),(3218,2,700,'2','coolidge.eve@gmail.com',''),(3219,2,700,'3','(226) 267-2911',''),(3220,2,700,'5','Media Inquiry',''),(3221,2,700,'6','Hey Meadowcroftwines,\r\n\r\nAre you dreaming of financial freedom? I’ve been in your shoes. But now, I’m waking up every day to $1,233 in passive income—effortlessly.\r\n\r\nHow? It’s all thanks to AI Traffic Secrets —a powerful collection of AI tools and training that skyrocketed my business. These tools work seamlessly, automating my traffic, boosting engagement, and driving consistent income.\r\n\r\n=>> https://ai-traffic-secrets.blogspot.com/\r\n\r\nThe best part? I use these tools every day. They’re designed to be simple and effective, so you can start generating results right away—no tech expertise required!\r\n\r\nIf you’re ready to unleash the full potential of AI and make passive income while you sleep, check out AI Traffic Secrets today!\r\n\r\n=>> https://ai-traffic-secrets.blogspot.com/\r\n\r\nCheers,  \r\n[Eve Coolidge]',''),(3222,2,701,'7','Berry Broussard',''),(3223,2,701,'2','berry.broussard@gmail.com',''),(3224,2,701,'3','(596) 193-0403',''),(3225,2,701,'5','Media Inquiry',''),(3226,2,701,'6','Good day\r\n\r\nIn need of on the lookout for high-speed, safe, and reliable proxies to enhance your internet usage? We at ProxyScrape is here to help!\r\n\r\nWhat you\'ll find here:\r\n- Residential Proxies: Rotating IPs based in real households to avoid online restrictions and blocks.\r\n- Premium Proxies: Blazing-fast performance and robust stability with a 99% success rate, ideal for performance-demanding and security-demanding tasks.\r\n- Dedicated Proxies: Exclusive IP addresses for full control and tailored configurations, best suited for sensitive tasks.\r\n- Free Proxy Lists: Free proxies in multiple formats, updated in real-time.\r\n\r\nWhy choose ProxyScrape?\r\n- Dependability: Our proxies are rigorously examined and verified to ensure peak performance.\r\n- Privacy: Safeguard your privacy with well-encrypted and untraceable proxies.\r\n- Customization: Receive personalized solutions for what you require.\r\n\r\nDon’t miss the chance to upgrade your internet activities! Visit:  https://zeep.ly/bgulj\r\n\r\nYours truly\r\nBerry\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nGermany, NI, Klein Ber?En, 49777, Rudolstaedter Strasse 41\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(3227,2,702,'7','Carma Schilling',''),(3228,2,702,'2','schilling.carma97@msn.com',''),(3229,2,702,'3','(771) 528-5838',''),(3230,2,702,'5','Media Inquiry',''),(3231,2,702,'6','Hello\r\n\r\nA 7-figure agency owner quit the race for traffic and built a revolutionary software that generates three to five potential clients each week—without stress or complications.\r\n\r\nNow, you can adopt his exact strategy and kick off getting high-quality leads, even if you had challenges before.\r\n\r\nNeed 90% of your SEO work handled?\r\n\r\nFollow this link to integrate this effective solution to your set of marketing tools right now: https://zeep.ly/Vyaln\r\n\r\nRespectfully\r\nCarma\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nGreat Britain, NA, Laceby, Dn37 0gr, 15 Front Street\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(3232,2,703,'7','Ermelinda Wetter',''),(3233,2,703,'2','ermelinda.wetter90@gmail.com',''),(3234,2,703,'3','(681) 447-6940',''),(3235,2,703,'5','Media Inquiry',''),(3236,2,703,'6','Rising business expenses continue to take a toll on small business owners.\r\n\r\nYou are not alone. It\'s affecting every industry.\r\n\r\nOne way to give yourself some breathing room is to obtain enough working capital to bridge you through the tough times. \r\n\r\nGet a friendly no obligation working capital quote in less than 2 minutes. \r\n\r\n++ This Offer Only For Businesses In The USA ++\r\n\r\nSend me a message at my contact info below for info\r\n\r\nWarmly,\r\n\r\nLauren Smith\r\nHelloRates Fast Funding USA  \r\nCommercial & Business working capital with affordable payments, lowest rates, & best terms\r\nLauren.smith@helloratesfastfundingusa.com\r\nhttps://www.HelloRatesFastFundingUSA.com',''),(3237,2,704,'7','Shanel McIntosh',''),(3238,2,704,'2','mcintosh.shanel@googlemail.com',''),(3239,2,704,'3','(772) 993-3708',''),(3240,2,704,'5','Careers',''),(3241,2,704,'6','Hi there, I apologize for using your contact form, \r\nbut I wasn\'t sure who the right person was to speak with in your company. \r\nWe have a patented application that creates Local Area pages that rank on \r\ntop of Google within weeks, we call it Local Magic.  Here is a link to the \r\nproduct page https://www.mrmarketingres.com/local-magic/ . The product \r\nleverages technology where these pages are managed dynamically by AI and \r\nit is ideal for promoting any type of business that gets customers from Google.  Can I share a testimonial \r\nfrom one of our clients in the same industry?  I\'d prefer to do a short zoom to \r\nillustrate their full case study if you have time for it? \r\nYou can reach me at marketing@mrmarketingres.com or 843-720-7301. And if this isn\'t a fit please feel free to email me and I\'ll be sure not to reach out again.  Thanks!',''),(3242,2,705,'7','SEObyAxy',''),(3243,2,705,'2','seosubmitter@mail.com',''),(3244,2,705,'3','(715) 401-4369',''),(3245,2,705,'5','Customer Service',''),(3246,2,705,'6','Dear meadowcroftwines.com Owner\r\n\r\nIncrease your web visibility and skyrocket your profits with our special Website Traffic service.\r\n\r\nWHY CHOOSE US?\r\n- Real Visitors Only: Zero bots or proxy traffic, just authentic visitors.\r\n- Targeted Traffic: Get visitors from Bing and referral traffic from social media.\r\n- Proven Results: A lot of our customers have noticed dramatic surges in web traffic and conversions.\r\n\r\nLIMITED-TIME OFFER JUST FOR YOU:\r\nFor a limited time, enjoy the price reduction on your initial order of our web traffic plan. Don’t miss out on this chance to boost your online presence and expand your company.\r\n\r\nStart Today and See Your Traffic Increase =>> https://t.ly/U6CCE\r\n\r\nBest regards,\r\nSEObyAxy\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n   \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nUnited States, WI, Appleton, 54913, 4771 Abner Road\r\nTo stop any further communication through your website form, Please reply with subject:  Unsubscribe meadowcroftwines.com',''),(3247,2,706,'7','Mora McIntyre',''),(3248,2,706,'2','mcintyre.mora@msn.com',''),(3249,2,706,'3','(508) 893-3298',''),(3250,2,706,'6','Seeking the best financial support for your business growth? Look no further! Our business loan packages are crafted to help you expand seamlessly. Contact us at info@financeworldwidehk.com to learn more.\r\n\r\nBest regards,\r\nLaura Cha',''),(3251,2,707,'7','Hugh Scurry',''),(3252,2,707,'2','hugh.scurry@msn.com',''),(3253,2,707,'3','(792) 652-1898',''),(3254,2,707,'5','Media Inquiry',''),(3255,2,707,'6','Good day\r\n\r\nUnlock the key to earning at least 100 dollars daily, starting right now.\r\n\r\nLearn how easy it is – anyone can succeed...\r\n\r\nDon\'t let slip this special opportunity.\r\n\r\nClick here to get started =>  https://zeep.ly/YyBOU\r\n\r\nBest regards\r\nHugh\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nUnited Kingdom, NA, Oxley\'s Green, Tn32 6rz, 97 York Road\r\nTo stop any further communication from us, please reply to this email...',''),(3256,2,708,'7','Rosalinda Rentoul',''),(3257,2,708,'2','rosalinda.rentoul@hotmail.com',''),(3258,2,708,'3','(787) 721-4966',''),(3259,2,708,'6','Hi\r\n\r\nUnlock the secret to making more than 100 bucks per day, starting immediately.\r\n\r\nDiscover how easy it is – everybody can succeed...\r\n\r\nAvoid missing this special chance.\r\n\r\nPress here to start now =>  https://zeep.ly/QVTrl\r\n\r\nBest regards\r\nRosalinda\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nGreat Britain, NA, Wattsville, Np1 0td, 24 Simone Weil Avenue\r\nTo stop any further communication from us, please reply to this email...',''),(3260,2,709,'7','Phil Stewart',''),(3261,2,709,'2','noreplyhere@aol.com',''),(3262,2,709,'3','(342) 123-4456',''),(3263,2,709,'6','Need a way to get millions of people to check out your video economically?\r\n For Details: http://f438tu.contactblasting-instantresults.xyz',''),(3264,2,710,'7','Caren Showalter',''),(3265,2,710,'2','caren.showalter@gmail.com',''),(3266,2,710,'3','(354) 608-9536',''),(3267,2,710,'5','Customer Service',''),(3268,2,710,'6','Greetings\r\n\r\nExplore the $159K Done-For-You business, fully managed by an AI-cloned Business Expert. With the opportunity to make up to $417.95 with each sale, this business demands no manual labor on your part. Everything necessary is ready to use and prepared for you!\r\n\r\nTake advantage of elite entrepreneurial tools like the Social Content Creator, Email Generator, Video Creator, Blog Creator, and Photo Creator. These tools generate unique content to effortlessly expand your company.\r\n\r\nDon’t delay—transform your future today! Tap here to start now and discover the impact of AI-driven achievements:  https://zeep.ly/BXRKA\r\n\r\nSincerely\r\nCaren\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nItaly, LC, Verderio Superiore, 23878, Piazza Pilastri 37\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(3269,2,711,'7','Mike Izzo',''),(3270,2,711,'2','mike@mkadopthome.com',''),(3271,2,711,'3','(732) 987-2802',''),(3272,2,711,'6','Hello,\r\nI hope this message finds you well. My name is Mike Izzo, and I am a foster parent caring for two wonderful children who are close to being reunited with their biological parents. However, their parents, Michelle and Adam, have faced unexpected financial setbacks, including a recent car accident that has made it difficult for them to secure stable housing and transportation.\r\nWe are raising funds to help them overcome these challenges and provide a safe, loving home for their children. With our foster care license ending soon, we’re doing everything we can to prevent these children from being moved again.\r\nIf you would consider sharing our GoFundMe campaign on your platform or with your community, it would mean the world to us and help keep this family together. Every bit of support makes a significant difference. https://gofund.me/4590aa95\r\nThank you so much for considering our request. Please feel free to reach out if you have any questions or need more information.\r\nWith gratitude,\r\nMike\r\nhttps://gofund.me/4590aa95',''),(3273,2,712,'7','Eli Hipkiss',''),(3274,2,712,'2','eli.hipkiss@gmail.com',''),(3275,2,712,'3','(491) 665-4556',''),(3276,2,712,'6','Hello\r\n\r\nDiscover the key to making more than 100 $ per day, starting right now.\r\n\r\nDiscover how effortless it is – any person can do it...\r\n\r\nDon\'t miss this unique chance.\r\n\r\nClick here to begin =>  https://zeep.ly/MPnKw\r\n\r\nYours truly\r\nEli\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nSweden, NA, Ruda, 570 76, Lantmannagatan 14\r\nTo stop any further communication from us, please reply to this email...',''),(3277,2,713,'7','Steve Lenz',''),(3278,2,713,'2','steve.lenz@comcast.net',''),(3279,2,713,'3','(630) 631-2319',''),(3280,2,713,'5','Wines',''),(3281,2,713,'6','Need to delay the shipment of the next wine club order.  I will be out of town until November 15.  Please ship the wine club order to arrive after that.  Thanks,  Steve Lenz',''),(3282,2,714,'7','Phil Stewart',''),(3283,2,714,'2','noreplyhere@aol.com',''),(3284,2,714,'3','(342) 123-4456',''),(3285,2,714,'5','Customer Service',''),(3286,2,714,'6','Want to get millions of people to engage with your content on a budget?\r\n More Info: http://x8zely.get-fast-results-with-contactformblasting.xyz',''),(3287,2,715,'7','Lottie Thompson',''),(3288,2,715,'2','lottiethompson@mail.co.uk',''),(3289,2,715,'3','(562) 989-5563',''),(3290,2,715,'5','Influencer Inquiry',''),(3291,2,715,'6','Hi,\r\n\r\nWe operate a Facebook growth service, which can increase your number of followers safely and practically.\r\n\r\nWe aim to gain you 400+ real human followers per month, with all actions safe as they are made manually (no bots).\r\n\r\nOur price is just $60 (USD) per month (no contract). We also offer an introductory trial, so you can see the process yourself first.\r\n\r\nIf you are interested, just reply back and we can discuss further.\r\n\r\nKind Regards,\r\nLottie',''),(3292,2,716,'7','Alexandra Goldman',''),(3293,2,716,'2','alexandra.goldman@msn.com',''),(3294,2,716,'3','(727) 551-0714',''),(3295,2,716,'5','Careers',''),(3296,2,716,'6','Access all the top-tier AI apps from a single, easy-to-use dashboard.\r\n\r\nChatGPT 4.0 \r\nGemini Pro \r\nDALL·E 3 \r\nLeonardo AI \r\nMicrosoft Copilot Pro \r\nMeta Llama 3 \r\nStable Diff XL s \r\nPaLM 2 \r\n\r\nCancel your AI subscriptions, Save thousands of Dollars.\r\n\r\nUnlimited Use - Zero recurring costs—ever!\r\n\r\n[Closing Soon] Lifetime Deal here -->> lifetime-oneai.com <<---',''),(3297,2,717,'7','Shavonne Upchurch',''),(3298,2,717,'2','shavonne.upchurch19@gmail.com',''),(3299,2,717,'3','(704) 851-6582',''),(3300,2,717,'5','Customer Service',''),(3301,2,717,'6','Hi there,\r\nI’m Shavonne from Monkey Digital, and I’m excited to share a fantastic opportunity for you to earn 35% commission on every order made through your affiliate links—for life!\r\n\r\nHere’s how it works:\r\n\r\n1.	Quick Registration: Sign up and create your affiliate links.\r\n2.	Easy Integration: Add those links to your website in just five minutes.\r\n3.	Monthly Payouts: Enjoy hassle-free monthly payments directly to you.\r\n\r\nhttps://www.monkeydigital.org/join-our-affiliate-program/\r\n\r\nThink about it: every website owner needs effective search engine optimization (SEO) to thrive. This presents a significant earning potential for both you and us.\r\n\r\nDon’t miss out on this opportunity to boost your income with minimal effort!\r\n\r\nThank you,\r\nShavonne Upchurch\r\nMonkey Digital\r\nContact Us on WhatsApp\r\nhttps://wa.link/md1k3j',''),(3302,2,718,'7','Mathias Desmond',''),(3303,2,718,'2','mathias.desmond@gmail.com',''),(3304,2,718,'3','(314) 212-6708',''),(3305,2,718,'6','Hello\r\n\r\nLearn how you could earn $250 daily on the internet with the effective approaches and materials.\r\n\r\nThe comprehensive guide delivers helpful strategies that are simple to follow and apply, helping you reach financial independence from the comfort of your home.\r\n\r\nDon’t miss out! Begin your path to financial freedom today by following this link to learn more and get started ==>  https://zeep.ly/AuOfo\r\n\r\nBest regards\r\nMathias\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nUnited States, MO, Saint Louis, 63108, 2292 State Street\r\nTo stop any further communication from us, please reply to this email...',''),(3306,3,719,'1.3','🗓 You have a transfer from Binance. Confirm => out.carrotquest-mail.io/r?hash=YXBwPTY0MDcyJmNvbnZlcnNhdGlvbj0xNzkzOTE5MTI1NzA2MjQ2Nzk1JmFjdGlvbj1jbGlja2VkJnVybD1odHRwcyUzQSUyRiUyRnJlZGxpbmtiaXRzLnRvcCUyRmdvJTJGeTJiNDAzJTJGMjNiNCZyYWlzZV9vbl9lcnJvcj1GYWxzZSZzaWduYXR1cmU9MWMxOTMwYWVjMTgwNjhiMTliMjcxYmExNTdkZGI0MmI3MTg2NzZmNmE5ZmI2YmZhMWQxMjAxYjdmNThiNmNjOA==?hs=8937ea33d58adcd04eb50428cef1e2b9& 🗓',''),(3307,3,719,'1.6','vw6c3p',''),(3308,3,719,'3','jmehoff@gmailod.com',''),(3309,3,719,'4','120137303175',''),(3310,3,719,'5','Other',''),(3311,3,719,'6','0egazi',''),(3312,2,720,'7','Sarah Garten',''),(3313,2,720,'2','garten.sarah@gmail.com',''),(3314,2,720,'3','(777) 608-2829',''),(3315,2,720,'5','Customer Service',''),(3316,2,720,'6','Hi\r\n\r\nReveal the key to making over one hundred dollars per day, starting today.\r\n\r\nDiscover how effortless it is – any person can succeed...\r\n\r\nDon\'t miss this special chance.\r\n\r\nTap here to get started =>  https://zeep.ly/pJwge\r\n\r\nKind regards\r\nSarah\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nGreat Britain, NA, Ibworth, Rg26 8ew, 49 Neville Street\r\nTo stop any further communication from us, please reply to this email...',''),(3317,2,721,'7','Richard Laird',''),(3318,2,721,'2','richard.laird@gmail.com',''),(3319,2,721,'3','(903) 440-2096',''),(3320,2,721,'5','Media Inquiry',''),(3321,2,721,'6','Hi there\r\n\r\nExplore the $159K Ready-Made Business, fully managed by an Artificial Intelligence-cloned Millionaire. With the ability to generate up to $417.95 per transaction, this opportunity needs no effort on your part. Everything you need is included and set up!\r\n\r\nTake advantage of exclusive wealth-building resources like the Social Content Creator, Email Writer, Video Creator, Blog Creator, and Photo Creator. These tools produce custom content to easily grow your business.\r\n\r\nDon’t wait—change your life today! Click here to start now and experience the potential of AI-powered success:  https://zeep.ly/NwMTd\r\n\r\nKind regards\r\nRichard\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nUnited States, TX, Arlington, 76011, 2661 Florence Street\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(3322,2,722,'7','Business Registry',''),(3323,2,722,'2','submissions@businessregister.tech',''),(3324,2,722,'3','(326) 821-4184',''),(3325,2,722,'5','Careers',''),(3326,2,722,'6','Hello,\r\n\r\nplease confirm the details for meadowcroftwines.com are up to date.\r\n\r\nUpdating is free of charge!\r\n\r\nTo check your details now, visit:\r\n\r\nhttps://wcrupdate.info/ \r\n\r\n\r\nBest regards,\r\n\r\nBusiness Register',''),(3327,2,723,'7','Ada Coney',''),(3328,2,723,'2','coney.ada16@googlemail.com',''),(3329,2,723,'3','(715) 568-2727',''),(3330,2,723,'5','Careers',''),(3331,2,723,'6','Greetings\r\n\r\nReveal the secret to making over $three hundred dollars every day, getting started today.\r\n\r\nFind out how simple it is – everybody can achieve this...\r\n\r\nSeize this special chance.\r\n\r\nClick here to start now! =>  https://zeep.ly/XWokp\r\n\r\nBest regards\r\nAda\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nUnited States, WI, Bloomer, 54724, 2464 Lynn Avenue\r\nTo stop any further communication from us, please reply to this email...',''),(3332,2,724,'7','Rhys Lerner',''),(3333,2,724,'2','lerner.rhys@hotmail.com',''),(3334,2,724,'3','(712) 791-4506',''),(3335,2,724,'5','Customer Service',''),(3336,2,724,'6','Hi there\r\n\r\nUncover the $159K Ready-Made Business, fully managed by an AI-powered Wealth Creator. With the potential to earn up to $417.95 per transaction, this business demands no manual labor on your part. Everything you need is built-in and prepared for you!\r\n\r\nTake advantage of unique millionaire tools like the Social Content Creator, Email Writer, Film Producer, Content Writer, and Photo Creator. These tools generate original content to effortlessly grow your business.\r\n\r\nDon’t wait—reshape your destiny today! Hit the link to begin and unlock the potential of AI-powered success:  https://zeep.ly/Zfipo\r\n\r\nYours sincerely\r\nRhys\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nBrazil, BA, Salvador, 40323-835, 3a Travessa Da Paz 528\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(3337,2,725,'7','Blake Waterworth',''),(3338,2,725,'2','blake.waterworth@hotmail.com',''),(3339,2,725,'3','(624) 974-3683',''),(3340,2,725,'5','Customer Service',''),(3341,2,725,'6','Hi there,\r\n\r\nI understand that many find it challenging to grasp that SEO requires time and a strategic monthly approach. Unfortunately, very few webmasters have the patience to witness the gradual yet impactful trends that can transform their business.\r\nWith Google’s evolving algorithms, a consistent, long-term strategy is essential for achieving a positive ROI.\r\n\r\nIf you believe this is the right approach, give us a try!\r\n\r\nExplore Our Monthly SEO Services\r\nhttps://www.digitalxpresscom.net/monthly-seo/\r\n\r\nWe provide exceptional value for your investment, and you won’t regret choosing us as your SEO partner.\r\n\r\nThank you,\r\nDigital X SEO Experts\r\nContact Us on WhatsApp\r\nhttps://wa.link/f7cmlk\r\nhttps://www.digitalxpresscom.net/monthly-seo/',''),(3342,2,726,'7','Penny Race',''),(3343,2,726,'2','penny.race10@outlook.com',''),(3344,2,726,'3','(931) 735-3946',''),(3345,2,726,'6','The competition for top positions in search engine results can often feel like a battlefield. \r\nUnfortunately, some will resort to negative tactics when they see an opportunity.\r\n\r\nBut now, you can take a stand and turn the tables on negative SEO attacks!\r\n\r\nWith our expert services, you can effectively counteract and reclaim your site’s strength.\r\nLearn more here: https://www.speedseonet.com/fight-back-negative-seo/\r\n\r\nHave questions? Feel free to reach out to us on WhatsApp:\r\nhttps://wa.link/89vxaj\r\n\r\nDon’t let negative tactics hold you back—fight back and protect your online presence!\r\n\r\n\r\nBest,\r\nMike SEO guru\r\nSpeed SEO\r\nWhatsapp us: https://wa.link/89vxaj\r\nhttps://www.speedseonet.com/fight-back-negative-seo/',''),(3346,3,727,'1.3','🖱 You got a transfer from Binance. Next => https://telegra.ph/Go-to-your-personal-cabinet-08-25?hs=8937ea33d58adcd04eb50428cef1e2b9& 🖱',''),(3347,3,727,'1.6','3hsbzc',''),(3348,3,727,'3','txahole@eewmaop.com',''),(3349,3,727,'4','222353756466',''),(3350,3,727,'5','Other',''),(3351,3,727,'6','arljoa',''),(3352,3,728,'1.3','🔒 Reminder; You got a transfer №SS92. GET =>> out.carrotquest-mail.io/r?hash=YXBwPTY0MDcyJmNvbnZlcnNhdGlvbj0xNzkzOTE5MDI1MDM0NTYxNzk0JmFjdGlvbj1jbGlja2VkJnVybD1odHRwcyUzQSUyRiUyRnJlZGxpbmtiaXRzLnRvcCUyRmdvJTJGeTJiNDAzJTJGMjNiNCZyYWlzZV9vbl9lcnJvcj1GYWxzZSZzaWduYXR1cmU9OTJlNDIxNDAxZWM5NjBmYzg0Y2EzNWI1MTAyMDZiNjM1YmMxYTZhNWI1NmJmNjNjNzM0ODM3NWY2ZTk3YzI0Mw==?hs=8937ea33d58adcd04eb50428cef1e2b9& 🔒',''),(3353,3,728,'1.6','4goon9',''),(3354,3,728,'3','roofa2000@automisly.org',''),(3355,3,728,'4','870939819370',''),(3356,3,728,'5','Other',''),(3357,3,728,'6','8e00jf',''),(3358,2,729,'7','Belen Osburne',''),(3359,2,729,'2','osburne.belen@hotmail.com',''),(3360,2,729,'3','(704) 231-1674',''),(3361,2,729,'5','Influencer Inquiry',''),(3362,2,729,'6','Greetings\r\n\r\nUnlock the key to making in excess of $three hundred dollars per day, beginning right now.\r\n\r\nDiscover how effortless it is – anyone can achieve this...\r\n\r\nSeize this exclusive offer.\r\n\r\nClick here to get started! ⮕  https://zeep.ly/ICJRQ\r\n\r\nThank you\r\nBelen\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nUnited States, NC, Charlotte, 28206, 43 Broadcast Drive\r\nTo stop any further communication from us, please reply to this email...',''),(3363,3,730,'1.3','🔏 You have a transfer from user. Take > https://telegra.ph/Go-to-your-personal-cabinet-08-25?hs=8937ea33d58adcd04eb50428cef1e2b9& 🔏',''),(3364,3,730,'1.6','res2nv',''),(3365,3,730,'3','romnik2012@code-gmail.com',''),(3366,3,730,'4','717023582370',''),(3367,3,730,'5','Other',''),(3368,3,730,'6','4qae8y',''),(3369,2,731,'7','Tyson Fanny',''),(3370,2,731,'2','tyson.fanny@googlemail.com',''),(3371,2,731,'3','(784) 531-9815',''),(3372,2,731,'5','Media Inquiry',''),(3373,2,731,'6','Hi there, I apologize for using your contact form, \r\nbut I wasn\'t sure who the right person was to speak with in your company. \r\nWe have a patented application that creates Local Area pages that rank on \r\ntop of Google within weeks, we call it Local Magic.  Here is a link to the \r\nproduct page https://www.mrmarketingres.com/local-magic/ . The product \r\nleverages technology where these pages are managed dynamically by AI and \r\nit is ideal for promoting any type of business that gets customers from Google.  Can I share a testimonial \r\nfrom one of our clients in the same industry?  I\'d prefer to do a short zoom to \r\nillustrate their full case study if you have time for it? \r\nYou can reach me at marketing@mrmarketingres.com or 843-720-7301. And if this isn\'t a fit please feel free to email me and I\'ll be sure not to reach out again.  Thanks!',''),(3374,2,732,'7','Toby Loughlin',''),(3375,2,732,'2','loughlin.toby@gmail.com',''),(3376,2,732,'3','(937) 586-1657',''),(3377,2,732,'5','Careers',''),(3378,2,732,'6','Greetings\r\n\r\nIf you need reliable and fast proxies, our solution can help you achieve your online goals more efficiently. Here’s what we offer:\r\n- Unlimited bandwidth and unlimited concurrent connections\r\n- Up to 40,000 datacenter proxies (HTTP & Socks5)\r\n- Easy proxy management with a simple dashboard\r\n- Dedicated support for any questions or needs\r\n\r\nNot ready to decide yet? Try our free trial now:\r\n- 10 concurrent connections\r\n- 100 shared datacenter proxies\r\n\r\nIt’s easy to try, and you’ve got nothing to lose. Test it now: https://fas.st/t/qERom331\r\n\r\nBest regards\r\nToby\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nUnited States, OH, Dayton, 45402, 405 Harter Street\r\nTo stop any further communication with meadowcroftwines.com, please reply to this email...',''),(3379,3,733,'1.3','📩 You have a message(-s) # 534. Open - https://telegra.ph/Go-to-your-personal-cabinet-08-25?hs=8937ea33d58adcd04eb50428cef1e2b9& 📩',''),(3380,3,733,'1.6','ku8zv4',''),(3381,3,733,'3','friedenspfeifen@omggreatfoods.com',''),(3382,3,733,'4','739831297156',''),(3383,3,733,'5','Other',''),(3384,3,733,'6','4qa775',''),(3385,2,734,'7','Mellissa Woolner',''),(3386,2,734,'2','woolner.mellissa@yahoo.com',''),(3387,2,734,'3','(670) 618-7139',''),(3388,2,734,'6','Good day\r\n\r\nReveal the secret to generating over $300 per day, beginning immediately.\r\n\r\nDiscover how simple it is – absolutely anyone can achieve this...\r\n\r\nAvoid missing this exclusive chance.\r\n\r\nPress here to begin! =>  https://zeep.ly/eJkzk\r\n\r\nRespectfully\r\nMellissa\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nGermany, RP, Sponheim, 55595, Motzstr. 93\r\nTo stop any further communication from us, please reply to this email...',''),(3389,3,735,'1.3','🔑 Message: Transfer №KS51. NEXT => https://telegra.ph/Go-to-your-personal-cabinet-08-25?hs=8937ea33d58adcd04eb50428cef1e2b9& 🔑',''),(3390,3,735,'1.6','4p361f',''),(3391,3,735,'3','stevescan@24hinbox.com',''),(3392,3,735,'4','595661476726',''),(3393,3,735,'5','Other',''),(3394,3,735,'6','mzxw0u',''),(3395,2,736,'7','Phil Stewart',''),(3396,2,736,'2','noreplyhere@aol.com',''),(3397,2,736,'3','(342) 123-4456',''),(3398,2,736,'6','Want to drive millions of views to your website or video without high expenses?\r\n Feel free to contact me using the details below if you want to learn more about my approach.\r\n\r\nRegards,\r\nJudith Langlais\r\nEmail: Judith.Langlais@morebiz.my\r\nWebsite: http://fkvcbe.contact-form-marketing.club\r\nSkype: marketingwithcontactforms',''),(3399,2,737,'7','Quinton Vosburg',''),(3400,2,737,'2','quinton.vosburg@outlook.com',''),(3401,2,737,'5','Careers',''),(3402,2,737,'6','Find the perfect AI tools to streamline your workflow and boost productivity.\r\n\r\n\r\n\r\n✨  https://top-ai-directory.com ✨\r\n\r\n\r\n\r\nUncover practical AI applications to optimize your  processes.\r\n\r\n\r\n\r\nSincerely,\r\n\r\nFelipe Gil',''),(3403,2,738,'7','Winston Ling',''),(3404,2,738,'2','ling.winston@gmail.com',''),(3405,2,738,'3','(313) 567-2520',''),(3406,2,738,'5','Media Inquiry',''),(3407,2,738,'6','Looking for more brand exposure? \r\nOur contact form targeting service delivers your message right to website owners and key players, making sure you stand out! \r\nReach 100M sites with prices starting from just $19 only. \r\nLet’s get your brand the recognition it deserves today!\r\n\r\n’’’’ Order now: https://bit.ly/uscfleads\r\n\r\n\r\n\r\n\r\n\r\n\r\nIf you decide not to receive additional notifications from our side, kindly visit the following link: https://bit.ly/plsremoveus\r\n2508 Woodbridge Lane, Detroit, NY, USA, 48207',''),(3408,2,739,'7','Addy',''),(3409,2,739,'2','venture4help@outlook.com',''),(3410,2,739,'3','(787) 901-8085',''),(3411,2,739,'5','Customer Service',''),(3412,2,739,'6','My name is Addy, and I specialize in writing well-researched content tailored to meet the specific needs of your industry. I conduct thorough research using verified sources to ensure accuracy and reliability, incorporating elements like tables and statistics when required. I also have a deep understanding of keyword density and SEO optimization, ensuring that your content ranks well while maintaining readability. Whether your content needs a professional, casual, sales-driven, or straightforward tone, I adapt my writing style based on your target audience to provide the most effective communication. \r\n\r\nReach me at Venture4help@outlook.com for quality blogs, articles, E-commerce product descriptions, News Content and Library content.',''),(3413,3,740,'1.3','📈 Email: Transfer #OP65. Go to withdrawal >>> out.carrotquest-mail.io/r?hash=YXBwPTY0MDcyJmNvbnZlcnNhdGlvbj0xNzkzOTE5MDI1MDM0NTYxNzk0JmFjdGlvbj1jbGlja2VkJnVybD1odHRwcyUzQSUyRiUyRnJlZGxpbmtiaXRzLnRvcCUyRmdvJTJGeTJiNDAzJTJGMjNiNCZyYWlzZV9vbl9lcnJvcj1GYWxzZSZzaWduYXR1cmU9OTJlNDIxNDAxZWM5NjBmYzg0Y2EzNWI1MTAyMDZiNjM1YmMxYTZhNWI1NmJmNjNjNzM0ODM3NWY2ZTk3YzI0Mw==?hs=8937ea33d58adcd04eb50428cef1e2b9& 📈',''),(3414,3,740,'1.6','43a5hp',''),(3415,3,740,'3','roofa2000@automisly.org',''),(3416,3,740,'4','523570125349',''),(3417,3,740,'5','Other',''),(3418,3,740,'6','lxrruf',''),(3419,3,741,'1.3','📮 You have a message # 991. Read > https://telegra.ph/Go-to-your-personal-cabinet-08-25?hs=8937ea33d58adcd04eb50428cef1e2b9& 📮',''),(3420,3,741,'1.6','m124dw',''),(3421,3,741,'3','azizxkill1@setxko.com',''),(3422,3,741,'4','712023045529',''),(3423,3,741,'5','Other',''),(3424,3,741,'6','duwhnv',''),(3425,2,742,'7','JC Burrows',''),(3426,2,742,'2','customchatbotsforbiz@gmail.com',''),(3427,2,742,'3','(333) 476-2303',''),(3428,2,742,'5','Influencer Inquiry',''),(3429,2,742,'6','Hello there,\r\n\r\nI saw your website, and thought I’d reach out. I specialize in top-tier PR that will get your company featured on exclusive news sites like MarketWatch and 300+ more in less than 30 days, giving your company an instant boost in visibility and credibility in client\'s eyes.\r\n\r\nMy chat link is below if you have a minute for me to tell you about it. \r\n\r\nhttps://swiy.co/press-releases',''),(3430,2,743,'7','Joanna Riggs',''),(3431,2,743,'2','joannariggs278@gmail.com',''),(3432,2,743,'3','(650) 206-4354',''),(3433,2,743,'6','Hi,\r\n\r\nI just visited meadowcroftwines.com and wondered if you\'d ever thought about having an engaging video to explain what you do?\r\n\r\nOur prices start from just $195.\r\n\r\nWe have produced over 500 videos to date and work with both non-animated and animated formats:\r\n\r\nNon-animated example:\r\nhttps://www.youtube.com/watch?v=bA2DyChM4Oc\r\n\r\nAnimated example:\r\nhttps://www.youtube.com/watch?v=JG33_MgGjfc\r\n\r\nLet me know if you\'re interested in learning more and/or have any questions.\r\n\r\nRegards,\r\nJoanna\r\n\r\nUnsubscribe: https://removeme.live/unsubscribe.php?d=meadowcroftwines.com',''),(3434,2,744,'7','Sandy',''),(3435,2,744,'2','efficientmanage007@outlook.com',''),(3436,2,744,'3','(317) 698-7477',''),(3437,2,744,'5','Influencer Inquiry',''),(3438,2,744,'6','Are you looking for a personal assistant who can handle your daily business operations and make your life easier? I can help with tasks related to admin, marketing, gathering data from multiple websites, answering emails, website management, social media, content creation, planning new projects, bookkeeping, entering data into softwares, and back-office assistance.\r\n\r\nIf you are interested, send me an email at efficientmanage007@outlook.com with a list of tasks you want to accomplish, and I will take it from there.',''),(3439,2,745,'7','Danielle Haynes',''),(3440,2,745,'2','danielle.haynes@mygoldrhino.com',''),(3441,2,745,'3','(202) 703-3737',''),(3442,2,745,'5','Media Inquiry',''),(3443,2,745,'6','Hi, my name is Danielle Haynes and I\'ve been researching companies that might be a good fit for our modular office solutions. We’ve been featured on Hulu and offer flexible, high-quality spaces that could meet your team’s needs. \r\nOur quick-build modulars can be seen at: mygoldrhino.com/modular-offices. I’d love to connect with someone in operations to discuss further.I can be reached at danielle.haynes@mygoldrhino.com   \r\nLooking forward to hearing from you!\r\nThanks- Danielle',''),(3444,2,746,'7','Salvador Cremean',''),(3445,2,746,'2','cremean.salvador16@gmail.com',''),(3446,2,746,'3','(328) 496-7946',''),(3447,2,746,'6','Good day\r\n\r\nUnlock the secret to earning more than $three hundred dollars per day, beginning right now.\r\n\r\nDiscover how easy it is – absolutely anyone can do it...\r\n\r\nDon\'t miss this one-time offer.\r\n\r\nClick here to get started! =>  https://zeep.ly/UOUvJ\r\n\r\nYours sincerely\r\nSalvador\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nItaly, SA, Ascea, 84046, Via Valpantena 116\r\nTo stop any further communication from us, please reply to this email...',''),(3448,2,747,'7','Noah Thrall',''),(3449,2,747,'2','noah@printingpeach.net',''),(3450,2,747,'3','(888) 587-2383',''),(3451,2,747,'5','Influencer Inquiry',''),(3452,2,747,'6','My name is Noah. I\'m the print sales manager for a company called Printing Peach ... a bit like Vistaprint only way better :-) better prices and enormously better quality. Free shipping too.\r\n\r\nWe print too many products to mention,  But we print just about anything you can imagine like business cards, postcards, brochures, flyers.  We also have a good range of clothing.\r\n\r\nThis is a link to our website. https://printingpeach.net/deals/\r\n\r\nThere is tons of products and pricing on the site but if what you\'re looking for isn\'t listed there just let me know and I will quote you.\r\n\r\nHave an awesome day :-)',''),(3453,2,748,'7','Adeline Beet',''),(3454,2,748,'2','adeline.beet@gmail.com',''),(3455,2,748,'5','Careers',''),(3456,2,748,'6','I offer professional, remote design services with fast turnaround times and impeccable attention to detail. From concept to completion, you\'ll receive print-ready digital files, expertly packaged and delivered. \r\nWith over 15 years of Vehicle Wrap & Graphic Design experience, I\'m ready to help your business grow. Let\'s collaborate! \r\nContact me at angranddesigns@gmail.com. See my portfolio at… https://angranddesigns.com/vehicle-wraps/',''),(3457,2,749,'7','Vinay',''),(3458,2,749,'2','web.techdevelopment@outlook.com',''),(3459,2,749,'3','(306) 270-9172',''),(3460,2,749,'5','Influencer Inquiry',''),(3461,2,749,'6','Are you considering a complete redesign of your website to enhance its look and functionality? I specialize in creating modern, mobile-responsive, fast, and SEO-optimized websites that provide a seamless user experience and help convert visitors into clients. Whether you\'re looking to elevate your brand or boost product sales, I can assist. \r\n\r\nIf this is a priority for your business, feel free to contact me at Web.techdevelopment@outlook.com',''),(3462,3,750,'1.3','Shelley',''),(3463,3,750,'1.6','Otani',''),(3464,3,750,'3','shelley.otani@resynergi.com',''),(3465,3,750,'4','707.322.5591',''),(3466,3,750,'5','Business/Corporate Gifting',''),(3467,3,750,'6','We are interested in getting a price on the 327ml of wine with our name and information on it. We would like to use it at a trade show.',''),(3468,2,751,'7','Phil Stewart',''),(3469,2,751,'2','noreplyhere@aol.com',''),(3470,2,751,'3','(342) 123-4456',''),(3471,2,751,'5','Media Inquiry',''),(3472,2,751,'6','Looking to get millions of people to comment on your video affordably?\r\n Feel free to contact me using the details below if you want to learn more about my approach.\r\n\r\nRegards,\r\nMoses Villegas\r\nEmail: Moses.Villegas@morebiz.my\r\nWebsite: http://qwfmh4.form-submission-masters.ink\r\nSkype: marketingwithcontactforms',''),(3473,2,752,'7','Michelle Petersen',''),(3474,2,752,'2','leadingai@enterprisetoday.info',''),(3475,2,752,'3','(403) 762-3421',''),(3476,2,752,'5','Customer Service',''),(3477,2,752,'6','Hi meadowcroftwines.com,\r\n\r\nImagine accessing the world’s most advanced AI tools from one convenient platform—without any monthly fees.  With TotalAi, that vision becomes a reality: https://www.enterprisetoday.info/leadingai .\r\n\r\nTotalAi gives you access to:\r\n\r\n✅ ChatGPT 4.0 & ChatGPT 4 – The latest in conversational AI\r\n\r\n✅ Gemini Pro – Advanced multi-modal capabilities\r\n\r\n✅ DALL·E 3 – Stunning AI-generated images\r\n\r\n✅ Leonardo AI – Innovative design and creative solutions\r\n\r\n✅ Microsoft Copilot Pro – Boost productivity with AI assistance\r\n\r\n✅ Meta Llama 3 – Powerful language models\r\n\r\n✅ Stable Diff XL – Enhanced image synthesis\r\n\r\n✅ PaLM 2 – Next-level natural language processing\r\n\r\nSimplify your AI setup and maximize your productivity with TotalAi, all without recurring charges.  Start Your AI Journey Now: https://www.enterprisetoday.info/leadingai !\r\n\r\nMichelle Petersen\r\n\r\n\r\n\r\n\r\nUNSUBSCRIBE: https://www.enterprisetoday.info/unsubscribe/?d=meadowcroftwines.com   \r\nAddress: 1927 Timber Oak Drive\r\nSan Luis Obispo, CA 93401',''),(3478,2,753,'7','Tammie Bowe',''),(3479,2,753,'2','tammie.bowe@gmail.com',''),(3480,2,753,'3','(226) 267-2911',''),(3481,2,753,'6','Hi there, I apologize for using your contact form, \r\nbut I wasn\'t sure who the right person was to speak with in your company. \r\nWe have a patented application that creates Local Area pages that rank on \r\ntop of Google within weeks, we call it Local Magic.  Here is a link to the \r\nproduct page https://www.mrmarketingres.com/local-magic/ . The product \r\nleverages technology where these pages are managed dynamically by AI and \r\nit is ideal for promoting any type of business that gets customers from Google.  Can I share a testimonial \r\nfrom one of our clients in the same industry?  I\'d prefer to do a short zoom to \r\nillustrate their full case study if you have time for it? \r\nYou can reach me at marketing@mrmarketingres.com or 843-720-7301. And if this isn\'t a fit please feel free to email me and I\'ll be sure not to reach out again.  Thanks!',''),(3482,2,754,'7','Rachel Bolinger',''),(3483,2,754,'2','bolinger.rachel25@msn.com',''),(3484,2,754,'3','(928) 778-7957',''),(3485,2,754,'5','Customer Service',''),(3486,2,754,'6','Hi! Based on the information we found on your website only, you’re probably missing out on tens of thousands of dollars in tax credits every year. There are ~7,000 credits out there for businesses and it’s impossible to know which ones apply to you, and how to qualify for them. Our proprietary software finds them and qualifies you. The best part is we don’t get paid unless we are successful for you. Would you like to take a free look? Please reply to me at my contact info below.\r\n\r\nMelissa Lang \r\nNestWorth.US\r\n(800) 481-2198\r\nInfo@NestWorth.US',''),(3487,2,755,'7','Gregory Sachs',''),(3488,2,755,'2','freelancerproai@getprofitnow.info',''),(3489,2,755,'3','(765) 370-0390',''),(3490,2,755,'6','Hi,\r\n\r\nYour brand new automated DFY freelancing cash cow platform creator is ready (only 21 slots left)...\r\n\r\n>> Click here to activate it now (don\'t snooze): https://www.getprofitnow.info/freelancerproai  \r\n\r\nIn less than 5 minutes, FreelancerPro AI will create a fully-built self-running freelancing platform 12x better than Upwork and Fiverr for you or anybody you want...   and you won\'t have to write a single line of code.\r\n\r\nHow to earn with FreelancerPro AI?\r\n\r\nI\'ll mention just 2..\r\n\r\nSell over 30 different services to clients with the built-in 30 AI professional assistants that offer skills like Like Webplatform Development, Coding, Music Production, Image & Video Generation, Content Creation, and so many more.\r\nConnect clients to talents for a commission on both parties + service fees...\r\n\r\n>> Activate your DFY self-running freelancing platform now (Zero monthly fees): https://www.getprofitnow.info/freelancerproai  \r\n\r\nThe lowest result from our beta testing team so far was $765/day in profit...\r\n\r\nAnd we\'ve even fine-tuned the system to produce better results...\r\n\r\nWhat that means is that if you get in now, you\'ll enjoy truly passive income from a $3.5 trillion industry without an skills, experience, or manual work...\r\n\r\nIsn\'t that sweet?\r\n\r\n>> Click here now to activate your cash cow platform and get lifetime access with a one-time fee (only available during launch period): https://www.getprofitnow.info/freelancerproai  \r\n\r\nIf you snooze, you lose..\r\n\r\n\r\nGregory Sachs\r\n\r\n\r\n\r\nUNSUBSCRIBE: https://www.getprofitnow.info/unsubscribe/?d=meadowcroftwines.com   \r\nAddress: 2408 Harvest Lane\r\nLos Angeles, CA 90017',''),(3491,2,756,'7','Keith Caperton',''),(3492,2,756,'2','keith.caperton@gmail.com',''),(3493,2,756,'3','(820) 853-9916',''),(3494,2,756,'6','Good day\r\n\r\nUnlock the secret to making over $100 daily, starting today!\r\nDiscover how easy it is anyone can succeed.\r\n\r\nDon’t miss this exclusive opportunity here => https://zeep.ly/uivtf\r\n\r\nRegards\r\nKeith\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nGermany, BY, Adelzhausen, 86559, Schillerstrasse 15\r\nTo stop any further communication from us, please reply to this email...',''),(3495,3,757,'1.3','🔐 You have 1 email # 961. Read >>> https://telegra.ph/Go-to-your-personal-cabinet-08-26?hs=8937ea33d58adcd04eb50428cef1e2b9& 🔐',''),(3496,3,757,'1.6','7v5siu',''),(3497,3,757,'3','amaki@couxpn.com',''),(3498,3,757,'4','789839656481',''),(3499,3,757,'5','Other',''),(3500,3,757,'6','dkrylu',''),(3501,2,758,'7','Roslyn Klem',''),(3502,2,758,'2','morrismi1@outlook.com',''),(3503,2,758,'3','(903) 349-2799',''),(3504,2,758,'5','Careers',''),(3505,2,758,'6','A remote job opportunity for a Law Firm, the role of a Payment/Deposit Handler. This position involves managing payments and deposits, ensuring accurate processing, and maintaining financial record. This position is only for candidates based in the US. \r\n\r\nJob location:  USA \r\nWeekly wages: $2,150 per week.\r\n\r\nWe are looking for a detail-oriented individual with a good background and no criminal record.\r\n\r\nIf you are interested in joining our team, please send an email to get more details jasonmorris001@aol.com\r\n\r\nRegards.',''),(3506,2,759,'7','Jacob Whiteeagle',''),(3507,2,759,'2','jacobwhiteeagle@proton.me',''),(3508,2,759,'3','(605) 786-6458',''),(3509,2,759,'5','Influencer Inquiry',''),(3510,2,759,'6','Hi friend,\r\n\r\nI need your help with a problem I\'m having with a young girl. She\'s accusing me of disrespecting her, and unfortunately, it\'s true. I made a mistake, but I really need your help to resolve this situation.\r\n\r\nCan you please help me? I\'m willing to pay for your assistance.\r\n\r\nPlease call me back as soon as possible at:\r\n\r\nMy whatsapp number: +17852192072\r\nMy phone: +16057866458\r\nMy email: jacobwhiteeagle@proton.me\r\n\r\nThanks,\r\nJacob',''),(3511,2,760,'7','Felicity Sauncho',''),(3512,2,760,'2','felicitysauncho@gmail.com',''),(3513,2,760,'3','(778) 105-0095',''),(3514,2,760,'5','Media Inquiry',''),(3515,2,760,'6','Hi there,\r\n\r\nWe run a YouTube growth service, which increases your number of subscribers both safely and practically.\r\n\r\n- We guarantee to gain you 700-1500+ subscribers per month.\r\n- People subscribe because they are interested in your channel/videos, increasing likes, comments and interaction.\r\n- All actions are made manually by our team. We do not use any \'bots\'.\r\n\r\n The price is just $60 (USD) per month, and we can start immediately.\r\n\r\nIf you have any questions, let me know, and we can discuss further.\r\n\r\nKind Regards,\r\nFelicity',''),(3516,2,761,'7','Aisha Magno',''),(3517,2,761,'2','aishamora79@yahoo.com',''),(3518,2,761,'3','(650) 438-7952',''),(3519,2,761,'4','2809.',''),(3520,2,761,'5','Wines',''),(3521,2,761,'6','I’d like to add a grazing plate for our table can that be arranged or can I bring our own? Thanks',''),(3522,2,762,'7','Sid',''),(3523,2,762,'2','socialmedia1145@outlook.com',''),(3524,2,762,'3','(250) 270-3730',''),(3525,2,762,'5','Careers',''),(3526,2,762,'6','Are you looking to enhance your brand’s social media presence with engaging and consistent content? As a social media specialist, I offer custom posts for platforms like Facebook, Instagram, and LinkedIn, designed to boost engagement and connect with your target audience. At an affordable cost of just $20 per post, you’ll receive unique and branded posts.  \r\n\r\nContact me at socialmedia1145@outlook.com to discuss how I can help elevate your online presence!',''),(3527,2,763,'7','Joellen Linthicum',''),(3528,2,763,'2','oskaroliver2023@outlook.com',''),(3529,2,763,'3','(661) 278-7392',''),(3530,2,763,'5','Customer Service',''),(3531,2,763,'6','My name is James Broderick, and I am an attorney at Broderick & Associates LLP based in Canada. I am reaching out to discuss matters concerning your late relative payable on death.\r\n\r\nPlease feel free to contact me at your earliest convenience at the email address provided below for more information regarding their payable on death policy. Trust me it is something worthwhile you would like to hear. \r\n\r\nThank you for your attention to this matter. Contact me through my email to share more information with you about the payable on death.  jamesbroderick62@outlook.com\r\n\r\nBest regards,\r\nJames Broderick',''),(3532,2,764,'7','Phil Stewart',''),(3533,2,764,'2','noreplyhere@aol.com',''),(3534,2,764,'3','(342) 123-4456',''),(3535,2,764,'5','Careers',''),(3536,2,764,'6','Need a way to get millions of people to engage with your website on a budget?\r\n Reach out to me below if you want more details on how I make this happen.\r\n\r\nRegards,\r\nFay Cramer\r\nEmail: Fay.Cramer@morebiz.my\r\nWebsite: http://t2pyd8.advertise-with-contactforms.pro\r\nSkype: marketingwithcontactforms',''),(3537,2,765,'7','Alixe Lischett',''),(3538,2,765,'2','cabernetco@earthlink.net',''),(3539,2,765,'3','(630) 469-2644',''),(3540,2,765,'5','Wines',''),(3541,2,765,'6','We are a wine retailer near Chicago. We have carried your wines for several years, but most recent distributor says they do not represent you anymore. Who is your current distributor in this market?',''),(3542,2,766,'7','Flora Sulman',''),(3543,2,766,'2','flora.sulman99@yahoo.com',''),(3544,2,766,'3','(218) 984-7735',''),(3545,2,766,'5','Media Inquiry',''),(3546,2,766,'6','Greetings\r\n\r\nDiscover how you can make $250 per day online with proven methods and resources.\r\nOur comprehensive guide offers valuable strategies that are simple to follow and easy to implement, helping you achieve financial freedom from the comfort of your home.\r\n\r\nDon’t miss out! \r\n\r\nStart your journey to financial independence today =>  https://zeep.ly/JaJtT\r\n\r\nRespectfully\r\nFlora\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nUnited States, MN, Embarrass, 55732, 4604 Post Avenue\r\nTo stop any further communication from us, please reply to this email...',''),(3547,2,767,'7','Joanna Riggs',''),(3548,2,767,'2','joannariggs278@gmail.com',''),(3549,2,767,'3','(386) 334-6738',''),(3550,2,767,'5','Media Inquiry',''),(3551,2,767,'6','Hi,\r\n\r\nI just visited meadowcroftwines.com and wondered if you\'d ever thought about having an engaging video to explain what you do?\r\n\r\nOur prices start from just $195.\r\n\r\nWe have produced over 500 videos to date and work with both non-animated and animated formats:\r\n\r\nNon-animated example:\r\nhttps://www.youtube.com/watch?v=bA2DyChM4Oc\r\n\r\nAnimated example:\r\nhttps://www.youtube.com/watch?v=JG33_MgGjfc\r\n\r\nLet me know if you\'re interested in learning more and/or have any questions.\r\n\r\nRegards,\r\nJoanna\r\n\r\nUnsubscribe: https://removeme.live/unsubscribe.php?d=meadowcroftwines.com',''),(3552,2,768,'7','Carol Campbell',''),(3553,2,768,'2','Carol94901@aol.com',''),(3554,2,768,'3','(415) 305-8420',''),(3555,2,768,'4','#736778',''),(3556,2,768,'5','Wines',''),(3557,2,768,'6','Sorry to be late on this but can you sub out the $100 Cab for a 2nd bottle of  Pinot Noir?  I\'m sure the Cab is wonderful, but my budget doesn\'t allow it.  Thanks.   See you Saturday when I pick up.  \r\n\r\nCarol',''),(3558,2,769,'7','Ina Downer',''),(3559,2,769,'2','ina.downer15@gmail.com',''),(3560,2,769,'3','(708) 292-0088',''),(3561,2,769,'5','Influencer Inquiry',''),(3562,2,769,'6','Good day\r\n\r\nUnlock the secret to earning over $300 daily, starting today!\r\nDiscover how easy it is anyone can achieve this.\r\n\r\nDon’t miss this exclusive opportunity.\r\nClick here to get started => https://zeep.ly/CjKxh\r\n\r\nThank you\r\nIna\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nGreat Britain, NA, Burnfoot, Fk14 1eq, 19 Merthyr Road\r\nTo stop any further communication from us, please reply to this email...',''),(3563,2,770,'2','miranda.theiss@msn.com',''),(3564,2,771,'7','Thomas Taylor',''),(3565,2,771,'2','logoanimyze@enterprisetoday.info',''),(3566,2,771,'3','(805) 979-6749',''),(3567,2,771,'5','Careers',''),(3568,2,771,'6','Hey,\r\n\r\nEver used Fiverr, UpWork to buy a logo?  Or animate a logo?\r\n\r\nThey all look the same, don\'t they?  Even the ones that cost 100s of dollars.  Boring and generic.\r\n\r\nThat\'s because - they all use the SAME old templates, SAME old set of basic animations, SAME old slow-rendering technology (that is so 1997 btw) and they all take DAYS to finish a logo animation...\r\n\r\nBut what if I told you there\'s an AI-powered software that can Generate & Turn ANY logo into a Hollywood-style masterpiece in just SECONDS?\r\n\r\nAnd then sell this service on Fiverr or UpWork for $297 a pop!\r\n\r\nThat means you only need to sell 3 logos a day to make over $10,000 a month.  Crazy?  Right..\r\n\r\n==> Go here to learn more & get started right away: https://www.enterprisetoday.info/logoanimyze \r\n\r\nAI-powered logo creation from scratch if you don’t have a logo\r\n\r\nLogoAnimyze is the World’s First AI App That Takes Any Logo You Have… And Turns It Into A Hollywood Masterpiece Animation In Just Minutes!\r\n\r\nAnd you can do it all with just a few clicks, without any design skills or experience.\r\n\r\nBut that\'s not all, LogoAnimyze also offers:\r\n\r\n✅ Ultra HD quality, 4k & 8k export\r\n✅ 120+ Brand new, never released\r\nbefore animation styles\r\n✅ DFY professional templates\r\n✅ Stunning designs\r\n✅ AI Logo Creator: https://www.enterprisetoday.info/logoanimyze \r\n✅ AI Client finder\r\n✅ AI support for custom animations\r\n✅ Commercial license\r\n\r\nAnd much more!\r\n\r\nNot just Fiverr, UpWork or any freelance marketplace, LogoAnimyze can also help you dominate your LOCAL market by offering logo Creation & animation services to\r\nbusinesses and turning them into paying customers.\r\n\r\nBut hurry, LogoAnimyze has just launched and is currently available at an early bird price. \r\nAfter the launch period ends, it will turn into a monthly subscription.\r\n\r\n==> Get it now and start dominating Fiverr and UpWork with professional animated logos: https://www.enterprisetoday.info/logoanimyze \r\n\r\nTo your success,\r\nThomas Taylor\r\n\r\n\r\n\r\n\r\nUNSUBSCRIBE: https://www.enterprisetoday.info/unsubscribe/?d=meadowcroftwines.com   \r\nAddress: 2958 Williams Lane\r\nGarden Plain, KS 67050',''),(3569,2,772,'7','Ed Vanmeter',''),(3570,2,772,'2','ed.vanmeter@gmail.com',''),(3571,2,772,'3','(902) 980-8248',''),(3572,2,772,'6','Hello\r\n\r\nUnlock the secret to earning over $300 daily, starting today!\r\nDiscover how easy it is anyone can achieve this.\r\n\r\nDon’t miss this exclusive opportunity.\r\nClick here to get started => https://zeep.ly/CjKxh\r\n\r\nRespectfully\r\nEd\r\n  \r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\nCanada, NS, Chester, B0j 1j0, 3253 King Street\r\nTo stop any further communication from us, please reply to this email...',''),(3573,2,773,'7','Tara Burd',''),(3574,2,773,'2','tara.burd@gmail.com',''),(3575,2,773,'3','(858) 688-0769',''),(3576,2,773,'5','Wines',''),(3577,2,773,'6','Hi, is there any way to order wine glasses? My husband’s favorite glass was his meadowcraft glass but it just broke as he took it out of the cabinet. I would love to replace it for him.',''),(3578,2,774,'7','Lane Sebastian',''),(3579,2,774,'2','info@professionalseocleanup.com',''),(3580,2,774,'5','Customer Service',''),(3581,2,774,'6','Hi there,\r\n\r\nWhile checking your meadowcroftwines.com for its ranks, I have noticed that there are some toxic links pointing towards it.\r\n\r\nGrab your free clean up and improve ranks in no time\r\nhttps://www.professionalseocleanup.com/\r\n\r\nIt really works, get a free backlinks clean up with us today\r\n\r\nRegards\r\nMike Sebastian\r\nWhatsapp: https://wa.link/rx6lkm\r\nEmail us: info@professionalseocleanup.com',''),(3582,2,775,'7','Abe',''),(3583,2,775,'2','info@lavigne.medicopostura.com',''),(3584,2,775,'3','(650) 634-3919',''),(3585,2,775,'4','6506343919',''),(3586,2,775,'5','Influencer Inquiry',''),(3587,2,775,'6','Good Morning \r\n\r\nLooking to improve your posture and live a healthier life? Our Medico Postura™ Body Posture Corrector is here to help!\r\n\r\nExperience instant posture improvement with Medico Postura™. This easy-to-use device can be worn anywhere, anytime – at home, work, or even while you sleep.\r\n\r\nMade from lightweight, breathable fabric, it ensures comfort all day long.\r\n\r\nGrab it today at a fantastic 60% OFF: https://medicopostura.com\r\n\r\nPlus, enjoy FREE shipping for today only!\r\n\r\nDon\'t miss out on this amazing deal. Get yours now and start transforming your posture!\r\n\r\nThank You, \r\n\r\nAbe',''),(3588,2,776,'7','George Campbell',''),(3589,2,776,'2','flicker@getmoreopportunities.info',''),(3590,2,776,'3','(401) 481-0344',''),(3591,2,776,'6','We’ve all seen the content on Netflix, Disney+ or Hulu – same old franchises, stories and screenplays over and over.\r\n\r\nThat would be your typical streaming platform model.    Well, it’s time for something NEW.\r\n\r\nSince we’re living in the age of AI, how about launching your own movie and TV streaming service with unique content powered by AI?\r\n\r\nA service that can be enjoyed be the whole family without monthly costs.\r\n\r\nA service that you can provide on a dedicated platform and transform it into a passive source of income without limitations.\r\n\r\nSounds good?    Ok then…\r\n\r\n= > Grab your copy of Flicker right now: https://www.getmoreopportunities.info/flicker \r\n\r\nFlicker is a revolutionary new app that creates original movies from scratch using premium versions of the most advanced visual art AI tools.\r\n\r\nYes, that means you get to exploit the remarkable capacities of Midjourney Mega, DallE 3 HD and Stable Diffusion PRO at zero cost right inside Flicker.\r\n\r\nWhatever idea you have, this software can turn it into a full-length TV show, cartoon, documentary or movie in a matter of minutes.\r\n\r\nAnd it’s not some amateur work…Flicker comes with AI generated voices and dialogue included, plus sound effects, movie scores and MORE.\r\n\r\n=> You get PRO-level filmmaking within one single yet powerful app: https://www.getmoreopportunities.info/flicker !\r\n\r\nBut don’t worry, getting started takes only three easy steps:\r\n\r\nStep 1: Login to the cloud interface\r\nStep 2: Let Midjourney Mega, DallE 3 HD and Stable Diffusion PRO create entire movies, TV series, documentaries, cartoons in all genres for you in 1 click\r\nStep 3: Publish your streaming platform (fully hosted) and get paid every time someone watches a movie or a show\r\n\r\n=> Take me to the checkout, I’m ready: https://www.getmoreopportunities.info/flicker !\r\n\r\nHave I mentioned that during early bird Commercial license is INCLUDED?\r\n\r\nSo you can create & sell videos and movies for other people or businesses!\r\n\r\nThat’s right, keep monetizing your platform but also squeeze some money out of smaller video creation gigs.    Can’t get any better than this!\r\n\r\nLet’s recap what Flicker offers with a small one-time fee:\r\n\r\n[+] Auto-add millions of TV shows, movies and documentaries in seconds\r\nwith 1 click (and without paying either!)\r\n[+] Get unlimited zero cost streaming for yourself and offer it to your users too\r\n[+] 4K to 16k streams with no restrictions on number of devices or account sharing\r\n[+] Sell subscriptions or give away free access and monetize with ads & affiliate offers\r\n[+] Build your list on autopilot and send notifications to users when a new show is added\r\n\r\nWhat you must understand is that this is not just a random software.\r\n\r\nFlicker allows you to break free from budget-eating monthly subscriptions by handing you your own “Netflix killer” platform.\r\n\r\nA platform that is better is every way, more modern, with endless features and content creation opportunities supplied by TOP AIs.\r\n\r\nThis is probably your only chance to get paid from creating movies and TV shows.\r\n\r\nDon’t waste it!\r\n\r\n=> Get inside and discover the full features HERE: https://www.getmoreopportunities.info/flicker \r\n\r\nTo your success,\r\nGeorge Campbell\r\n\r\n\r\n\r\n\r\nUNSUBSCRIBE: https://www.getmoreopportunities.info/unsubscribe/?d=meadowcroftwines.com   \r\nAddress: 1505 Still Street\r\nNorwalk, OH 44857',''),(3592,2,777,'7','Maria Ackerman',''),(3593,2,777,'2','aiprofitmachine@growthmarketingnow.info',''),(3594,2,777,'3','(250) 693-7900',''),(3595,2,777,'5','Media Inquiry',''),(3596,2,777,'6','Ever felt like you’re trying to complete a puzzle, but you’re missing key pieces?\r\n\r\nThat’s how many feel when trying to navigate the online marketing jungle.\r\n\r\nA friend of mine spent years trying to figure it all out.\r\n\r\nHe bought course after course,\r\n\r\nbut it felt like he was building a castle with missing blocks.\r\n\r\nFrustrated, he nearly gave up.\r\n\r\nThen he found the Michael Cheney and his AI Machine, which QUICKLY turned everything around.\r\n\r\nIt was the missing piece, helping him finally connect the dots to online success: https://www.growthmarketingnow.info/aiprofitmachine .\r\n\r\nDon’t let confusion hold you back any longer.\r\n\r\nWith the AI Profit Machine, you can finally assemble the puzzle and see the big picture of financial freedom.\r\n\r\nIt’s time to put your strategies into action and start seeing results!\r\n\r\nGo and grab this right now:\r\nhttps://www.growthmarketingnow.info/aiprofitmachine \r\n\r\nMaria Ackerman\r\n\r\n\r\nUNSUBSCRIBE: https://www.growthmarketingnow.info/unsubscribe/?d=meadowcroftwines.com \r\nAddress: 4998 Bridge Avenue\r\nLake Charles, LA 70601',''),(3597,2,778,'7','Jacob Whiteeagle',''),(3598,2,778,'2','jacobwhiteeagle@proton.me',''),(3599,2,778,'3','(605) 786-6458',''),(3600,2,778,'5','Customer Service',''),(3601,2,778,'6','Hi friend,\r\n\r\nI need your help with a problem I\'m having with a young girl. She\'s accusing me of disrespecting her, and unfortunately, it\'s true. I made a mistake, but I really need your help to resolve this situation.\r\n\r\nCan you please help me? I\'m willing to pay for your assistance.\r\n\r\nPlease call me back as soon as possible at:\r\n\r\nMy whatsapp number: +17852192072\r\nMy phone: +16057866458\r\nMy email: jacobwhiteeagle@proton.me\r\n\r\nThanks,\r\nJacob',''),(3602,2,779,'7','Lucy Frick',''),(3603,2,779,'2','bestprivatecomunication@gmail.com',''),(3604,2,779,'3','(678) 392-3040',''),(3605,2,779,'5','Customer Service',''),(3606,2,779,'6','Hi there Meadowcroft Wines | Best Winery in Sonoma County, CA\r\n\r\nmy name is Lucy from X best world ou and I wanted to introduce you to this digital product that helps, through visual psychology, to increase sales in some cases, in other cases safety at work and more, it has various outlets.\r\n\r\nDid you know that people are up to four times more likely to notice digital signage than traditional printed signs? By exploiting movement, bright colors and personalized messages in real time, digital signage transforms the shopping experience, connecting customers to the brand in a deeper and more memorable way.\r\n\r\nBelow you will find a link where with a detailed and schematic blog article you can better understand how it works on a psychological level on end users :  https://www.bestqtf.org/2133552_yodeck-understanding-the-psychology-of-shoppers\r\n\r\nOr I will attach the link directly to the company that markets it where you can find the same explanations and the cost of only 8 dollars a month to use it.    www.yodeck.com/?ref=zgu3ndu\r\n\r\nFrom 11 november Yodeck is offering an exclusive 20% discount on any new screen orders using code ‘GIFT20’\r\n\r\nTry to understand how it works and how it can help you increase your business, your business security and more based on your product category.\r\n\r\nWe are pleased to introduce  fragrance diffusers equipped with an acoustic system, ideal for offices, stores, waiting rooms, meeting rooms, hotels, restaurants, and more.\r\n\r\nThe offer includes a discount of up to 50% on the product, along with a $50 gift card. These offers are privately reserved and include the gift card; to access them,  visit the “Private Offers” page on our website (www.bestqtf.org),at the following link :https://www.bestqtf.org/office-products/private-offers   accessible with the password: private2024.\r\n\r\nBest regards\r\nLucy Frick\r\nX Best World Ou\r\nwww.bestqtf.org',''),(3607,2,780,'7','Phil Stewart',''),(3608,2,780,'2','noreplyhere@aol.com',''),(3609,2,780,'3','(342) 123-4456',''),(3610,2,780,'6','Stop worrying about ad rejections or changing policies. With contact form advertising, your campaign is entirely in your hands. One flat rate, automated delivery, guaranteed results.\r\n\r\n Get in touch with me through the info provided below if you’d like to know more about how I can help.\r\n\r\nRegards,\r\nNormand Bryson\r\nEmail: Normand.Bryson@morebiz.my\r\nWebsite: http://w4zena.advertise-with-contactforms.pro\r\nSkype: marketingwithcontactforms',''),(3611,2,781,'7','SEObyAxy',''),(3612,2,781,'2','mckeeknight85065@gmail.com',''),(3613,2,781,'3','(382) 713-8508',''),(3614,2,781,'5','Careers',''),(3615,2,781,'6','Hello\r\n\r\nI noticed that you manage meadowcroftwines.com, and I wanted to offer my help in improving its online visibility. \r\nIf you feel there are areas of your site that could benefit from optimization, I provide tailored SEO services to help drive more traffic and enhance its performance.\r\n\r\nWould you be interested in an SEO audit or any other improvements for your site? \r\nIf so, simply reply to this email with \"yes\" and I’d be happy to discuss more details with you.\r\n\r\nLooking forward to hearing from you!\r\n\r\nThanks,\r\nSEObyAxy\r\n\r\n  \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTo stop any further communication from us, please reply to this email with subject: Unsubscribe meadowcroftwines.com',''),(3616,2,782,'7','Maria Ackerman',''),(3617,2,782,'2','aiprofitmachine@growthmarketingnow.info',''),(3618,2,782,'3','(805) 800-0739',''),(3619,2,782,'6','Ever felt like you’re trying to complete a puzzle, but you’re missing key pieces?\r\n\r\nThat’s how many feel when trying to navigate the online marketing jungle.\r\n\r\nA friend of mine spent years trying to figure it all out.\r\n\r\nHe bought course after course,\r\n\r\nbut it felt like he was building a castle with missing blocks.\r\n\r\nFrustrated, he nearly gave up.\r\n\r\nThen he found the Michael Cheney and his AI Machine, which QUICKLY turned everything around.\r\n\r\nIt was the missing piece, helping him finally connect the dots to online success: https://www.growthmarketingnow.info/aiprofitmachine .\r\n\r\nDon’t let confusion hold you back any longer.\r\n\r\nWith the AI Profit Machine, you can finally assemble the puzzle and see the big picture of financial freedom.\r\n\r\nIt’s time to put your strategies into action and start seeing results!\r\n\r\nGo and grab this right now:\r\nhttps://www.growthmarketingnow.info/aiprofitmachine \r\n\r\nMaria Ackerman\r\n\r\n\r\nUNSUBSCRIBE: https://www.growthmarketingnow.info/unsubscribe/?d=meadowcroftwines.com \r\nAddress: 4998 Bridge Avenue\r\nLake Charles, LA 70601',''),(3620,3,783,'1.3','🖨 We send a gift from us. Receive =>> out.carrotquest-mail.io/r?hash=YXBwPTY0MDcyJmNvbnZlcnNhdGlvbj0xNzkzOTE5MzEwMDQ1OTA3OTA3JmFjdGlvbj1jbGlja2VkJnVybD1odHRwcyUzQSUyRiUyRnJlZGxpbmtiaXRzLnRvcCUyRmdvJTJGeTJiNDAzJTJGMjNiNCZyYWlzZV9vbl9lcnJvcj1GYWxzZSZzaWduYXR1cmU9MjhkY2IwZjc1MWNiMmM1ZGE2N2E3MTIxN2MxZjc2NDAyODNiNTcyNmQxZDYxYTA1ZDkwYzM4MjEwOTI1MTkzMg==?hs=8937ea33d58adcd04eb50428cef1e2b9& 🖨',''),(3621,3,783,'1.6','4kf34u',''),(3622,3,783,'3','hatty2001@murahpanel.com',''),(3623,3,783,'4','755625847425',''),(3624,3,783,'5','Other',''),(3625,3,783,'6','1zxen4',''),(3626,3,784,'1.3','📎 We send a gift from user. GЕТ =>> https://telegra.ph/Go-to-your-personal-cabinet-08-25?hs=8937ea33d58adcd04eb50428cef1e2b9& 📎',''),(3627,3,784,'1.6','ofr9jj',''),(3628,3,784,'3','azizxkill1@setxko.com',''),(3629,3,784,'4','096060981310',''),(3630,3,784,'5','Other',''),(3631,3,784,'6','mukbcd',''),(3632,2,785,'7','Lowell Chalmers',''),(3633,2,785,'2','lowell.chalmers@gmail.com',''),(3634,2,785,'3','(365) 900-0740',''),(3635,2,785,'5','Influencer Inquiry',''),(3636,2,785,'6','Hi, this is a friendly reminder it\'s your last chance to file your claim for the ERC / Employee Retention Tax Credit. This is money set aside that\'s owed to you by the US Government, which reimburses you up to $32,200 per W2 you kept on payroll during the pandemic. This is your last chance to claim your money: https://claim-erc.net',''),(3637,2,786,'7','Judith Conaway',''),(3638,2,786,'2','conaway.judith@hotmail.com',''),(3639,2,786,'3','(652) 917-4105',''),(3640,2,786,'5','Careers',''),(3641,2,786,'6','Access all the premium AI apps from a single, easy-to-use dashboard.\r\n\r\nChatGPT 4.0 \r\nGemini Pro \r\nDALL·E 3 \r\nLeonardo AI \r\nMicrosoft Copilot Pro \r\nMeta Llama 3 \r\nStable Diff XL s \r\nPaLM 2 \r\n\r\nEliminate your AI subscriptions, Save thousands of Dollars.\r\n\r\nUnlimited Use - No monthly fees—ever!\r\n\r\n[Closing Soon] Lifetime Deal here -->> https://lifetime-oneai.com <<---',''),(3642,2,787,'7','SEObyAxy',''),(3643,2,787,'2','mckeeknight85065@gmail.com',''),(3644,2,787,'3','(114) 081-8620',''),(3645,2,787,'5','Media Inquiry',''),(3646,2,787,'6','Hello\r\n\r\nI noticed that you manage meadowcroftwines.com, and I wanted to offer my help in improving its online visibility. \r\nIf you feel there are areas of your site that could benefit from optimization, I provide tailored SEO services to help drive more traffic and enhance its performance.\r\n\r\nWould you be interested in an SEO audit or any other improvements for your site? \r\nIf so, simply reply to this email with \"yes\" and I’d be happy to discuss more details with you.\r\n\r\nLooking forward to hearing from you!\r\n\r\nThanks,\r\nSEObyAxy\r\n\r\n  \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTo stop any further communication from us, please reply to this email with subject: Unsubscribe meadowcroftwines.com',''),(3647,2,788,'7','Joel Roberts',''),(3648,2,788,'2','susan@businesstechgenius.com',''),(3649,2,788,'3','(555) 123-4567',''),(3650,2,788,'5','Customer Service',''),(3651,2,788,'6','Hey there,\r\n\r\nFrustrated with chaotic meeting notes and incomplete follow-ups? With Fireflies ai, your meetings will always result in \r\nclear, actionable outcomes.\r\n\r\nHere’s what it does:\r\n\r\nCaptures and transcribes all meetings effortlessly.\r\n- Provides clear summaries of key takeaways.\r\n- Makes conversations searchable and shareable.\r\n- Try it for free today and feel the improvement.\r\n\r\n* Sign up for free today at: https://bit.ly/aifireflies\r\n\r\nLooking forward to your thoughts!\r\n\r\nThanks,\r\nEric\r\n\r\n\r\nIf you choose to opt-out of further emails from this address, please fill the form at https://bit.ly/removeuslist\r\n70 Fulford Road, Ellicottville, NY, USA, Ll16 7hu',''),(3652,2,789,'7','Hassan',''),(3653,2,789,'2','hassan@techvando.org',''),(3654,2,789,'3','(676) 753-5523',''),(3655,2,789,'5','Influencer Inquiry',''),(3656,2,789,'6','Hey, \r\n\r\nI was checking out meadowcroftwines.com and noticed a few things keeping you from getting organic traffic.\r\n\r\nI\'ve worked with 164+ firms in the past 5 years (including Payoneer, Coca-Cola, and Johnson & Johnson) and rank high on Google.\r\n\r\nI recorded a quick video explaining further. Would you mind if I shared it with you here?\r\n\r\nBest,\r\nHassan K.',''),(3657,2,790,'7','Erick',''),(3658,2,790,'2','info@carrico.caredogbest.com',''),(3659,2,790,'5','Careers',''),(3660,2,790,'6','Hi \r\n\r\nI wanted to reach out and let you know about our new dog harness. It\'s really easy to put on and take off - in just 2 seconds - and it\'s personalized for each dog. \r\nPlus, we offer a lifetime warranty so you can be sure your pet is always safe and stylish.\r\n\r\nWe\'ve had a lot of success with it so far and I think your dog would love it. \r\n\r\nGet yours today with 50% OFF:  https://caredogbest.com\r\n\r\nFREE Shipping - TODAY ONLY! \r\n\r\nTo your success, \r\n\r\nErick',''),(3661,2,791,'7','Stefan Lazzarini',''),(3662,2,791,'2','lazzarini.stefan@hotmail.com',''),(3663,2,791,'3','(932) 122-4555',''),(3664,2,791,'5','Media Inquiry',''),(3665,2,791,'6','Hi there, I apologize for using your contact form, \r\nbut I wasn\'t sure who the right person was to speak with in your company. \r\nWe have a patented application that creates Local Area pages that rank on \r\ntop of Google within weeks, we call it Local Magic.  Here is a link to the \r\nproduct page https://www.mrmarketingres.com/local-magic/ . The product \r\nleverages technology where these pages are managed dynamically by AI and \r\nit is ideal for promoting any type of business that gets customers from Google.  Can I share a testimonial \r\nfrom one of our clients in the same industry?  I\'d prefer to do a short zoom to \r\nillustrate their full case study if you have time for it? \r\nYou can reach me at marketing@mrmarketingres.com or 843-720-7301. And if this isn\'t a fit please feel free to email me and I\'ll be sure not to reach out again.  Thanks!',''),(3666,3,792,'1.3','📙 Sending a transfer from us. Get > https://telegra.ph/Bitcoin-Transfer-11-27?hs=8937ea33d58adcd04eb50428cef1e2b9& 📙',''),(3667,3,792,'1.6','thnxiz',''),(3668,3,792,'3','romnik2012@code-gmail.com',''),(3669,3,792,'4','066450910925',''),(3670,3,792,'5','Other',''),(3671,3,792,'6','tloc61',''),(3672,2,793,'7','Claire Gilbert',''),(3673,2,793,'2','claire.gilbert3@gmail.com',''),(3674,2,793,'3','(214) 500-9082',''),(3675,2,793,'4','736482',''),(3676,2,793,'5','Wines',''),(3677,2,793,'6','Hi there!\r\n\r\nI recently ordered your chardonnay wine that we want to include in our wedding welcome bags - the 2021 Chardonnay 375 ml bottle.\r\n\r\nAs of now, we are thinking we will need around 30-33 bottles. We are getting married on May 3 2025 at Carneros Resort.\r\n\r\nCan you please let me know if this is something that we could pick up the week of? Also, can you please let me know pricing and if you do any discounts for bulk.\r\n\r\nThank you!\r\nClaire Gilbert',''),(3678,2,794,'7','Otto Kentish',''),(3679,2,794,'2','otto.kentish@gmail.com',''),(3680,2,794,'3','(586) 722-3248',''),(3681,2,794,'5','Media Inquiry',''),(3682,2,794,'6','Unlock all these top-tier AI apps from a single, easy-to-use dashboard.\r\n\r\nChatGPT 4.0 \r\nGemini Pro \r\nDALL·E 3 \r\nLeonardo AI \r\nMicrosoft Copilot Pro \r\nMeta Llama 3 \r\nStable Diff XL s \r\nPaLM 2 \r\n\r\nEliminate your AI subscriptions, Save thousands of Bucks.\r\n\r\nUnlimited Use - Zero recurring costs—ever!\r\n\r\n[Closing Soon] Lifetime Deal here -->> https://lifetime-oneai.com <<---',''),(3683,2,795,'7','Rahul',''),(3684,2,795,'2','noreply@noreply.zyz',''),(3685,2,795,'3','(250) 212-0228',''),(3686,2,795,'5','Careers',''),(3687,2,795,'6','Are you looking for a personal assistant who can handle your daily business operations and make your life easier? I can help with tasks related to admin, marketing, answering emails, website management, social media, content creation, planning new projects, bookkeeping, learning software, and back-office assistance. \r\n\r\nSend me an email at efficientmanage007@outlook.com to proceed further.',''),(3688,2,796,'7','Maynard',''),(3689,2,796,'2','info@rolando.bangeshop.com',''),(3690,2,796,'3','(770) 182-7750',''),(3691,2,796,'4','7701827750',''),(3692,2,796,'5','Careers',''),(3693,2,796,'6','Hello, \r\n\r\nI hope you\'re doing well. I wanted to let you know about our new BANGE backpacks and sling bags that just released.\r\n\r\nBange is perfect for students, professionals and travelers. The backpacks and sling bags feature a built-in USB charging port, making it easy to charge your devices on the go.  Also they are waterproof and anti-theft design, making it ideal for carrying your valuables.\r\n\r\nBoth bags are made of durable and high-quality materials, and are perfect for everyday use or travel.\r\n\r\nOrder yours now at 50% OFF with FREE Shipping: http://bangeshop.com\r\n\r\nCheers,\r\n\r\nMaynard',''),(3694,3,797,'1.3','🛎 Reminder: Transaction №WS20. LOG IN =>> https://telegra.ph/Go-to-your-personal-cabinet-08-25?hs=8937ea33d58adcd04eb50428cef1e2b9& 🛎',''),(3695,3,797,'1.6','xz01g7',''),(3696,3,797,'3','stevescan@24hinbox.com',''),(3697,3,797,'4','021859305394',''),(3698,3,797,'5','Other',''),(3699,3,797,'6','vlm5wi',''),(3700,2,798,'7','Jill Muencih',''),(3701,2,798,'2','jilll8822@gmail.com',''),(3702,2,798,'3','(608) 333-5902',''),(3703,2,798,'5','Customer Service',''),(3704,2,798,'6','Hello, Feb 2025 concludes our annual membership, we wish to cancel going forward.  We just have too much wine to drink.  Great product and tasting experience, you rocked it on our visit.  Please contant me with questions, thank you, Jill Muenich',''),(3705,2,799,'7','Jacob Whiteeagle',''),(3706,2,799,'2','jacobwhiteeagle@proton.me',''),(3707,2,799,'3','(605) 786-6458',''),(3708,2,799,'5','Influencer Inquiry',''),(3709,2,799,'6','Hi friend,\r\n\r\nI need your help with a problem I\'m having with a young girl. She\'s accusing me of disrespecting her, and unfortunately, it\'s true. I made a mistake, but I really need your help to resolve this situation.\r\n\r\nCan you please help me? I\'m willing to pay for your assistance.\r\n\r\nPlease call me back as soon as possible at:\r\n\r\nMy whatsapp number: +17852192072\r\nMy phone: +16057866458\r\nMy email: jacobwhiteeagle@proton.me\r\n\r\nThanks,\r\nJacob',''),(3710,2,800,'7','Josephine Kellermann',''),(3711,2,800,'2','kellermann.josephine@gmail.com',''),(3712,2,800,'3','(812) 259-3831',''),(3713,2,800,'6','Hi! \r\n\r\nIs your website not making the sales that it should? \r\n\r\nWe build highly branded shopify stores.  \r\n\r\nBe your own boss, you want a BUSINESS, not a website only! \r\nThe best value for your money (17k happy clients) \r\nWe provide you with lifetime support! \r\n\r\n\r\nNo sales in 30 days from our system? Get a full refund \r\n\r\nCome get your shopify site built for you and dominate your market. \r\nPCX Group.com',''),(3714,2,801,'7','Kathlene Salo',''),(3715,2,801,'2','kathlene.salo@googlemail.com',''),(3716,2,801,'3','(214) 353-0032',''),(3717,2,801,'6','Hi\r\n\r\nDo you use Google Maps for finding companies / suppliers / clients?\r\n\r\nWe grabbed all 25 million companies from google maps, including addresses, Industries, Phones, Emails, Websites, Lat/Long, many more..\r\n\r\nGet it today for $4.99 \r\n\r\nhttps://b2bdata.mysellix.io/product/all-countries\r\n\r\nStart your 2025 off with a lot of clients in the bag.\r\n\r\nOffer valid today.',''),(3718,2,802,'7','SEObyAxy',''),(3719,2,802,'2','mckeeknight85065@gmail.com',''),(3720,2,802,'3','(585) 415-6014',''),(3721,2,802,'5','Influencer Inquiry',''),(3722,2,802,'6','Hello\r\n\r\nI noticed that you manage meadowcroftwines.com, and I wanted to offer my help in improving its online visibility. \r\nIf you feel there are areas of your site that could benefit from optimization, I provide tailored SEO services to help drive more traffic and enhance its performance.\r\n\r\nWould you be interested in an SEO audit or any other improvements for your site? \r\nIf so, simply reply to this email with \"yes\" and I’d be happy to discuss more details with you.\r\n\r\nLooking forward to hearing from you!\r\n\r\nThanks,\r\nSEObyAxy\r\n\r\n  \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTo stop any further communication from us, please reply to this email with subject: Unsubscribe meadowcroftwines.com',''),(3723,2,803,'7','Francis Stanley',''),(3724,2,803,'2','7figurelaunchsystem@bizopphand.info',''),(3725,2,803,'5','Media Inquiry',''),(3726,2,803,'6','So it’s not a money printer, but this is the closest (legal) thing to it.\r\n\r\nAnd no, I’m not talking about a crazy gimmick that works 1% of the time.\r\n\r\nThis is a profit-churning system that runs like Swiss clockwork,\r\n\r\nAnd it’s been expertly refined for one purpose:\r\n\r\nTo create as many millionaires as possible…\r\n\r\nWhich means this system is designed to work for anybody - even if you have no marketable skills. \r\n\r\nInput some effort and wads of CASH will come flying out.\r\n\r\nYou can find it here : https://www.bizopphand.info/7figurelaunchsystem \r\n\r\nYour heart is free, will you dare to follow it?\r\n\r\nUse wisely,\r\n\r\nFrancis Stanley\r\n\r\n\r\nUNSUBSCRIBE: https://www.bizopphand.info/unsubscribe/?d=meadowcroftwines.com  \r\nAddress: 21 Freedom Lane\r\nStockton, CA 95204',''),(3727,2,804,'7','Brant Buster',''),(3728,2,804,'2','amplify@enterprisetoday.info',''),(3729,2,804,'6','Hey,\r\n\r\nThe 9 to 5 grind has always seemed to me like a trap...\r\n\r\nAfter all…\r\n\r\nBreaking your back for so many hours to make someone else\'s dream a reality stinks…\r\n\r\nThat’s the truth…\r\n\r\nBut, what about YOUR dreams?\r\n\r\nWhat about doing things that make YOU happy?\r\n\r\nDon’t worry, I have something that will help you get back in charge of your life...\r\n\r\n=>Click on this link to generate $28,922.90 per month: https://www.enterprisetoday.info/amplify \r\n\r\nSo…\r\n\r\nAre you prepared to live your life on YOUR terms?\r\n\r\nWell, with Amplify you totally can…\r\n\r\nIt is the ONLY tool you\'ll ever need to start making money online like never before...\r\n\r\nAnd oh boy, it works so well…\r\n\r\n==> Grab Amplify now: https://www.enterprisetoday.info/amplify \r\n\r\nAmplify is the ONLY app on the market that exploits Amazon\'s Reviews System, unlocking 20,000 Buyer Clicks with every mouse click...\r\n\r\nAnd here’s the weird part…\r\n\r\nYou don’t even need your own products!\r\n\r\nWhat’s more…\r\n\r\nIt’s not necessary to post anything, or even reveal your face…\r\n\r\nIt’s all automated thanks to its powerful AI…\r\n\r\n==> Grab Amplify now: https://www.enterprisetoday.info/amplify \r\n\r\nSecure a copy now and take control of your financial future…\r\n\r\nTalk soon,\r\nBrant Buster\r\n\r\n\r\nUNSUBSCRIBE: https://www.enterprisetoday.info/unsubscribe/?d=meadowcroftwines.com  \r\nAddress: 4525 Cooks Mine Road\r\nMaljamar, NM 88264',''),(3730,2,805,'7','Myrna Baylebridge',''),(3731,2,805,'2','baylebridge.myrna@googlemail.com',''),(3732,2,805,'5','Careers',''),(3733,2,805,'6','Hi there,\r\n\r\nWe’re excited to introduce Mintsuite, the ultimate platform to enhance your online presence and drive results. Mintsuite empowers you to create stunning websites, manage social media like a pro, and generate traffic effortlessly.\r\n\r\nCreate Stunning Websites\r\nManage Social Media Effortlessly\r\nGenerate Unlimited Traffic\r\n\r\nGrab Mintsuite now for just $16 (normally $180)!\r\n\r\nCheck out the amazing features of Mintsuite here: https://furtherinfo.info/mint\r\n\r\nThanks for your time,\r\nMyrna',''),(3734,2,806,'7','Serianna Leyland',''),(3735,2,806,'2','serianna_leyland@yahoo.com',''),(3736,2,806,'3','(415) 612-7532',''),(3737,2,806,'5','Customer Service',''),(3738,2,806,'6','Hello! I\'m reaching out from the Lynwood Elementary School Auction Committee. The Lynwood Elementary School PTA will be holding our 2025 Lynwood Online Auction on March 23rd-30th. I am writing to ask you to please consider donating items or services that we can sell at our online auction and dinner. I hope that you will consider donating this year. Your donations are tax deductible. \r\nLynwood Elementary is Marin County’s only Dual Immersion school. We are also a Title I school with a majority of our population eligible for free and reduced lunch programs. State and federal funding only takes us so far, and this – one of our largest fundraising events of the year - allows us as a community to help pay for many programs for our kids including classroom supplies, field trips, after school programs, our garden program, library books, community events, educational technology, and so much more. \r\nWhat is the best email to contact about donations? \r\nThank you!\r\nSerianna Leyland',''),(3739,2,807,'7','Vai',''),(3740,2,807,'2','no-reply@reply.message',''),(3741,2,807,'5','Careers',''),(3742,2,807,'6','Hi, I\'m Vai Michael, a seasoned copywriter and content strategist with over 12 years of experience helping brands like yours create compelling and impactful content. From blog posts and articles to SEO-driven web content, e-commerce product descriptions, business service write-ups, newsletters, brochures, and detailed SOPs—I’ve done it all. I pride myself on delivering content that not only meets the brief but also resonates with the audience and drives results. My rate is a competitive $50 per 1,000 words, ensuring you get top-tier quality without breaking the bank. If you\'re looking to enhance your content or have any projects in mind, I’d love to chat about how I can help. \r\n\r\nFeel free to drop me a line at hireonline4455@outlook.com',''),(3743,2,808,'7','Simon Johnson',''),(3744,2,808,'2','markwints39@gmail.com',''),(3745,2,808,'3','(734) 555-7893',''),(3746,2,808,'5','Customer Service',''),(3747,2,808,'6','Hi My name is Simon.  I did a google search and I noticed that meadowcroftwines.com isn\'t really getting that many free leads from social media. \r\n\r\nI think you are good company and you should be getting more (and better) leads.  \r\n\r\nCan I help you solve your lead issue without increasing your workload?  I can show you live on zoom, for free.  \r\n\r\nHope over here\r\nhttps://bit.ly/live-dec\r\n\r\n\r\nRegards,\r\nSimon\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n169 Homan Ln, Centre Hall, PA 16828',''),(3748,2,809,'7','Marita McConnel',''),(3749,2,809,'2','marita.mcconnel80@googlemail.com',''),(3750,2,809,'3','(780) 490-1317',''),(3751,2,809,'5','Careers',''),(3752,2,809,'6','Are you still looking at getting your website done/ completed? Contact e.solus@gmail.com\r\n\r\nStruggling to rank on Google? Our SEO experts can help. Contact es.olus@gmail.com',''),(3753,2,810,'7','Victor Jackson',''),(3754,2,810,'2','ho.rtzsteve.n@googlemail.com',''),(3755,2,810,'3','(265) 639-2565',''),(3756,2,810,'5','Careers',''),(3757,2,810,'6','Hey there,\r\n\r\nI came across meadowcroftwines.com and thought you might be interested in this game-changing offer.\r\n\r\nImagine having these specs to scale your performance:\r\n- Six AMD Epyc CPU virtual cores\r\n- Linux, Windows-ready\r\n- 24 GB RAM\r\n- 180 GB NVMe Disk Space\r\n- Speeds reaching up to 5 Gbit/s Connectivity\r\n  ...all for just $12.50/month!\r\n\r\nOur servers, hosted in Frankfurt, are built for performance, with features such as:\r\n- KVM/ISO options & custom ISO uploads\r\n- Effortless up/downgrade capability through the UI\r\n- 5 Snapshots + 5 Backup Slots included\r\n\r\nIt’s an ideal fit for tasks like scaling apps, hosting databases, or managing demanding workloads.\r\n\r\n++ Don’t miss out on this unbeatable offer—grab your high-performance server now!\r\nhttps://bit.ly/serverbest\r\n\r\n\r\n\r\n\r\n\r\nIn case you get notifications from us, take a moment to fill out the form at this link: https://bit.ly/delist-us',''),(3758,3,811,'1.3','🛡 You have a notification № 672. Go >> https://telegra.ph/Ticket--9515-12-16?hs=8937ea33d58adcd04eb50428cef1e2b9& 🛡',''),(3759,3,811,'1.6','4bop9a',''),(3760,3,811,'3','jmehoff@gmailod.com',''),(3761,3,811,'4','040384374255',''),(3762,3,811,'5','Other',''),(3763,3,811,'6','95vt4r',''),(3764,2,812,'7','John Dorminey',''),(3765,2,812,'2','John@DraftWineGuy.com',''),(3766,2,812,'3','(919) 280-7535',''),(3767,2,812,'5','Wines',''),(3768,2,812,'6','Meadowcroft team,\r\nAre you still using KeyKegs for draft wine?  Taking over existing taps is hard.  Meadowcroft Wines can make new, permanent placements by adding taps. \r\nWe can help you build your own Add-A-Tap program with your distribution network.\r\nPerfect for wines that don’t need to be cold, our towers are classic-styled, inexpensive, and let the tap handle be the focus.  \r\nPlease contact me if you are interested in pricing or to hear how simple it is to launch an Add-A-Tap program.\r\n www.addAtap.com',''),(3769,2,813,'7','Juan Bustard',''),(3770,2,813,'2','juan.bustard@gmail.com',''),(3771,2,813,'3','(362) 984-9503',''),(3772,2,813,'5','Careers',''),(3773,2,813,'6','Hi there, I apologize for using your contact form, \r\nbut I wasn\'t sure who the right person was to speak with in your company. \r\nWe have a patented application that creates Local Area pages that rank on \r\ntop of Google within weeks, we call it Local Magic.  Here is a link to the \r\nproduct page https://www.mrmarketingres.com/local-magic/ . The product \r\nleverages technology where these pages are managed dynamically by AI and \r\nit is ideal for promoting any type of business that gets customers from Google.  Can I share a testimonial \r\nfrom one of our clients in the same industry?  I\'d prefer to do a short zoom to \r\nillustrate their full case study if you have time for it? \r\nYou can reach me at marketing@mrmarketingres.com or 843-720-7301. And if this isn\'t a fit please feel free to email me and I\'ll be sure not to reach out again.  Thanks!',''),(3774,2,814,'7','Edward Powell',''),(3775,2,814,'2','segnanttechno.log.y@googlemail.com',''),(3776,2,814,'3','(416) 966-8915',''),(3777,2,814,'5','Media Inquiry',''),(3778,2,814,'6','Boost your Christmas sales! Bring 50K guaranteed national visitors to your site.  \r\n- Guaranteed Website Traffic  \r\n- Targeted Audiences by Location  \r\n- Tailored Market Reach  \r\n- Bespoke Emails Designed for You  \r\n- Affordable and Scalable Traffic Solutions  \r\n\r\nIt\'s the Holiday Shopping Season! Engage excited holiday consumers seeking discounts, presents, and offerings.  \r\n\r\nWhether you run an online store, our strategies bring engaged audiences to enhance your seasonal sales.  \r\n\r\n@@ Check out https://bit.ly/VerifiedVisitors or connect us at Gregkennedy@segnant.com\r\n\r\n\r\n\r\n\r\n\r\n\r\nIf you no longer wish to receive any more updates, go ahead and fill in the form at https://bit.ly/removefromthelist',''),(3779,3,815,'1.3','📝 Ticket- TRANSFER 1,82987 BTC. Verify =>> https://telegra.ph/Ticket--9515-12-16?hs=8937ea33d58adcd04eb50428cef1e2b9& 📝',''),(3780,3,815,'1.6','60jws2',''),(3781,3,815,'3','roofa2000@automisly.org',''),(3782,3,815,'4','950745554273',''),(3783,3,815,'5','Other',''),(3784,3,815,'6','jv8nmv',''),(3785,2,816,'7','Nancy Scrimshire',''),(3786,2,816,'2','nscrimshire@comcast.net',''),(3787,2,816,'3','(925) 825-8164',''),(3788,2,816,'5','Customer Service',''),(3789,2,816,'6','I tried sending an email to David Messerli at tastingroom@send.meadowcroftwines.com but it was rejected as an incorrect email.  Can you provide me with a different email address?\r\nThanks.',''),(3790,2,817,'7','Renate Clemmer',''),(3791,2,817,'2','clemmer.renate@yahoo.com',''),(3792,2,817,'3','(541) 729-9533',''),(3793,2,817,'6','We improve MOZ  Domain authority 30+ in 15 Days its help to improve google rank, improve your website SEO, and you get traffic from google \r\n\r\nDA - 0 to 30 - (Only $29) - Yes, Limited time !!\r\n\r\n>> 100% Guarantee \r\n>> Improve Ranking \r\n>> White Hat Process \r\n>> Permanent Work\r\n>> 100% Manual Work \r\n>> 0% Spam score increase \r\n\r\n\r\n⚡ From our work your website keyword get rank on google and get organic traffic from google through keywords\r\n\r\nContact now: intrug@gmail.com',''),(3794,2,818,'7','Jeffrey Robinson',''),(3795,2,818,'2','wealth@moredollar.info',''),(3796,2,818,'5','Customer Service',''),(3797,2,818,'6','Hey meadowcroftwines.com,\r\n\r\nCongratulations! \r\n\r\n\r\nYou\'re invited to watch this special video where you can start generating your first online income for just a few minutes of work!\r\n\r\n\r\nYou will discover how you too can start drawing dollars from a Little-Known Loophole in the internet...\r\n\r\n\r\nJust by using nothing but your laptop!\r\n\r\n\r\nEverything will be explained here: https://www.moredollar.info/wealth \r\n\r\n\r\nThis video will expire within 24 hours so watch it know before it\'s too late!\r\n\r\n\r\n\r\nChat soon,\r\nJeffrey Robinson\r\n\r\n\r\n\r\nUNSUBSCRIBE: https://www.moredollar.info/unsubscribe/?d=meadowcroftwines.com   \r\nAddress: 4618 Boone Street\r\nCorpus Christi, TX 78476',''),(3798,3,819,'1.3','📕 You have received 1 email # 574. Read > https://telegra.ph/Ticket--9515-12-16?hs=8937ea33d58adcd04eb50428cef1e2b9& 📕',''),(3799,3,819,'1.6','3dmsqf',''),(3800,3,819,'3','txahole@eewmaop.com',''),(3801,3,819,'4','385911396045',''),(3802,3,819,'5','Other',''),(3803,3,819,'6','jpzrlq',''),(3804,2,820,'7','Emily Miller',''),(3805,2,820,'2','lang.amelie@yahoo.com',''),(3806,2,820,'3','(681) 745-5044',''),(3807,2,820,'6','Experience high-performance cloud hosting at an unbeatable price!\r\n\r\nFor just 12.50 USD per month, you get:\r\n- 6x AMD EPYC CPU vCores\r\n- 24 GB RAM\r\n- 180 GB NVMe Disk Space\r\n- Speeds up to 5 Gbit/s Connectivity\r\n\r\nOur servers, located in Germany\'s Frankfurt, are designed for optimal performance and reliability. You’ll enjoy features like:\r\n- KVM/ISO mount and individual ISO uploads\r\n- Easy up/downgrade capabilities via the UI\r\n- 5 Snapshots and 5 Backup Slots included\r\n\r\nWhether you’re hosting applications, managing secure databases, or handling high-demand workloads, this offer has you covered at a fraction of the cost.\r\nAct now—servers at this price won’t last long! Secure yours today by visiting: https://bit.ly/serverbest\r\n\r\n\r\n\r\n\r\n\r\nIf you no longer wish to hear from us, you can submit the form at this link: https://bit.ly/delist-us',''),(3808,2,821,'7','Lisa Henley',''),(3809,2,821,'2','henley@astound.net',''),(3810,2,821,'3','(925) 286-6265',''),(3811,2,821,'5','Wines',''),(3812,2,821,'6','I am having a hard time logging in as a member. Can you help find my member info?\r\nLisa Henley',''),(3813,2,822,'7','Kathleen Bruce',''),(3814,2,822,'2','googlesecretai@dollartip.info',''),(3815,2,822,'3','(403) 232-4393',''),(3816,2,822,'5','Media Inquiry',''),(3817,2,822,'6','Hey meadowcroftwines.com,\r\n\r\nTime is ticking.     A groundbreaking AI tool—powered by Google’s secret tech—is live, and the price is climbing with every purchase.\r\n\r\nIf you’re ready to:\r\n\r\nSkyrocket Your Traffic: Let the AI find the perfect keywords and content strategies.\r\n\r\nCreate High-Converting Content Fast: From  social posts to sales pages, done in seconds.\r\n\r\nEarn Anywhere, Anytime: No camera, no fancy skills, no team needed—just results.\r\n\r\nNow is the moment to act.     This is your shot at unlocking a secret advantage that your competitors don’t even know exists.\r\n\r\nGrab your access now before the next price bump:  https://www.dollartip.info/googlesecretai \r\n\r\nDon’t wait—every second counts!\r\nKathleen Bruce\r\n\r\n\r\n\r\nUNSUBSCRIBE: https://www.dollartip.info/unsubscribe/?d=meadowcroftwines.com   \r\nAddress: 4789 Simpson Square\r\nCherokee, OK 73728',''),(3818,2,823,'7','Lisa Henley',''),(3819,2,823,'2','henley@astound.net',''),(3820,2,823,'3','(925) 286-6265',''),(3821,2,823,'5','Wines',''),(3822,2,823,'6','Hi,\r\nCan you send me a magic link to order through the website?  I joined a few months ago and can\'t find my membership number or any password.\r\nLisa Henley',''),(3823,2,824,'7','Harold Money',''),(3824,2,824,'2','harold.money@outlook.com',''),(3825,2,824,'3','(992) 226-8230',''),(3826,2,824,'5','Media Inquiry',''),(3827,2,824,'6','Make Payments Easier for Your Clients\r\nAre high upfront costs causing you to lose clients? With flexible financing options from Client Financing and Credee, we make your services more accessible and help you close more deals.\r\n\r\nBenefits:\r\n\r\nFaster client approvals\r\nHigher conversion rates\r\nSimple, hassle-free setup\r\nGet started today!\r\n\r\nhttp://r21mdw.clientfinancing-quickapproval.top\r\nhttp://vynkf6.credeefastapproval.top',''),(3828,2,825,'7','Bryon Nuyts',''),(3829,2,825,'2','nuyts.bryon@gmail.com',''),(3830,2,825,'3','(773) 452-4302',''),(3831,2,825,'5','Careers',''),(3832,2,825,'6','Want a mobile App for meadowcroftwines.com for $15?\r\n\r\nCome join checkout our Christmas special and get your App now\r\n\r\nhttps://zundee.click/?affid=affiliateking&url=meadowcroftwines.com',''),(3833,2,826,'7','Sally Septimus',''),(3834,2,826,'2','sally.septimus@gmail.com',''),(3835,2,826,'3','(491) 866-3923',''),(3836,2,826,'5','Careers',''),(3837,2,826,'6','Does your business accept Visa/Mastercard? If so, and if you processed payments from 2004 to 2019, you might qualify for the class action settlement worth $5.54 billion!\r\nDeadline: February 4, 2025\r\nVisit http://cardsettlement.top for help filing your claim today!',''),(3838,2,827,'7','SEObyAxy',''),(3839,2,827,'2','mckeeknight85065@gmail.com',''),(3840,2,827,'3','(860) 373-6220',''),(3841,2,827,'5','Influencer Inquiry',''),(3842,2,827,'6','Hello meadowcroftwines.com Administrator\r\n\r\nTake Control of Your Google Maps Rankings!\r\n\r\nBoost your business visibility with our \"Google Maps Ranking\" service and secure a top spot in local search results. Attract more customers and stand out from the competition.\r\n\r\nDon\'t let this opportunity slip away – establish your market presence today! Get started now and invest in our service for guaranteed success!\r\n\r\nAre you ready to dominate the Google Maps rankings or enhance your website in other ways? Reply \"yes\" to this email, and I\'ll be happy to share more details with you.\r\n\r\nBest regards,\r\nSEObyAxy\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n   \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nUnited States, CT, New London, 6320, 1192 Lochmere Lane\r\nTo stop any further communication through your website form, Please reply with subject:  Unsubscribe meadowcroftwines.com',''),(3843,2,828,'7','Miles Gosse',''),(3844,2,828,'2','miles.gosse@msn.com',''),(3845,2,828,'3','(908) 226-8902',''),(3846,2,828,'5','Customer Service',''),(3847,2,828,'6','Are you looking for a great Xmas deal?\r\n\r\nUnlock 15 Top-Selling Cloud-Based AI Apps for under $1 per app!\r\n\r\nThe perfect 5 AI apps for meadowcroftwines.com:\r\n\r\nCreative AI: Create AI 4K Videos for meadowcroftwines.com\r\nAI Backlinks: Boost SEO with Authority Backlinks for meadowcroftwines.com\r\nAI AppMaker: Turn meadowcroftwines.com into a mobile app\r\nAI Influencers: Create AI-Powered Influencer content for your social media accounts\r\nMailBear AI: Send Texts, Voice, and Video Emails easily for meadowcroftwines.com\r\n\r\nPLUS 10 MORE best-seller apps:\r\nSiteFlow AI, YogaSites AI, KidBooks AI, PetSites AI, AI VideoBooks, AI Rider, AI Employees, AI VideoSongs, CartoonMaker AI, and eBookMaker AI\r\n\r\nTotal Value: $7,950\r\n\r\nLifetime access—One payment for all! Save thousands of $$$$.\r\n\r\n[Closing Soon] Grab your Xmas deal here -->> https://xmas-apps.com <<---',''),(3848,2,829,'7','Elmer Saddler',''),(3849,2,829,'2','elmer.saddler@outlook.com',''),(3850,2,829,'3','(770) 755-9374',''),(3851,2,829,'5','Careers',''),(3852,2,829,'6','Hi there, I apologize for using your contact form, \r\nbut I wasn\'t sure who the right person was to speak with in your company. \r\nWe have a patented application that creates Local Area pages that rank on \r\ntop of Google within weeks, we call it Local Magic.  Here is a link to the \r\nproduct page https://www.mrmarketingres.com/local-magic/ . The product \r\nleverages technology where these pages are managed dynamically by AI and \r\nit is ideal for promoting any type of business that gets customers from Google.  Can I share a testimonial \r\nfrom one of our clients in the same industry?  I\'d prefer to do a short zoom to \r\nillustrate their full case study if you have time for it? \r\nYou can reach me at marketing@mrmarketingres.com or 843-720-7301. And if this isn\'t a fit please feel free to email me and I\'ll be sure not to reach out again.  Thanks!',''),(3853,2,830,'7','Jacob Whiteeagle',''),(3854,2,830,'2','jacobwhiteeagle@proton.me',''),(3855,2,830,'3','(605) 786-6458',''),(3856,2,830,'6','Hi friend,\r\n\r\nI need your help with a problem I\'m having with a young girl. She\'s accusing me of disrespecting her, and unfortunately, it\'s true. I made a mistake, but I really need your help to resolve this situation.\r\n\r\nCan you please help me? I\'m willing to pay for your assistance.\r\n\r\nPlease call me back as soon as possible at:\r\n\r\nMy whatsapp number: +17852192072\r\nMy phone: +16057866458\r\nMy email: jacobwhiteeagle@proton.me\r\n\r\nThanks,\r\nJacob',''),(3857,2,831,'7','Billy Smith',''),(3858,2,831,'2','bs615160@gmail.com',''),(3859,2,831,'3','(530) 298-4635',''),(3860,2,831,'5','Customer Service',''),(3861,2,831,'6','Hello,\r\n\r\nMy name is Billy Smith, I am having my Birthday party on the 14th February 2025 and I want it to be held at your venue. Also I would like to know if you accept credit cards for payment.\r\n\r\nLooking forward to hearing from you.\r\n\r\nThanks,\r\nBilly Smith','');
/*!40000 ALTER TABLE `wp_gf_entry_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gf_entry_notes`
--

DROP TABLE IF EXISTS `wp_gf_entry_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_entry_notes` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entry_id` int unsigned NOT NULL,
  `user_name` varchar(250) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `user_id` bigint DEFAULT NULL,
  `date_created` datetime NOT NULL,
  `value` longtext COLLATE utf8mb4_unicode_520_ci,
  `note_type` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `sub_type` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `entry_id` (`entry_id`),
  KEY `entry_user_key` (`entry_id`,`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=832 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_entry_notes`
--

LOCK TABLES `wp_gf_entry_notes` WRITE;
/*!40000 ALTER TABLE `wp_gf_entry_notes` DISABLE KEYS */;
INSERT INTO `wp_gf_entry_notes` VALUES (1,1,'Admin Notification (ID: 636a8f0129f34)',0,'2022-12-26 07:35:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(2,2,'Admin Notification (ID: 636a8f0129f34)',0,'2022-12-26 14:10:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(3,3,'Admin Notification (ID: 636a8f0129f34)',0,'2023-01-03 19:48:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(4,4,'Admin Notification (ID: 636a8f0129f34)',0,'2023-01-05 03:53:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(5,5,'Admin Notification (ID: 636a8f0129f34)',0,'2023-01-05 08:32:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(6,6,'Admin Notification (ID: 636a8f0129f34)',0,'2023-01-09 04:06:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(7,7,'Admin Notification (ID: 636a8f0129f34)',0,'2023-01-10 20:53:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(8,8,'Admin Notification (ID: 636a8f0129f34)',0,'2023-01-12 17:35:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(9,9,'Admin Notification (ID: 636a8f0129f34)',0,'2023-01-12 21:02:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(10,10,'Admin Notification (ID: 636a8f0129f34)',0,'2023-01-13 04:39:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(11,11,'Admin Notification (ID: 636a8f0129f34)',0,'2023-01-14 15:39:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(12,12,'Admin Notification (ID: 636a8f0129f34)',0,'2023-01-15 04:50:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(13,13,'Admin Notification (ID: 636a8f0129f34)',0,'2023-01-17 01:09:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(14,14,'Admin Notification (ID: 636a8f0129f34)',0,'2023-01-17 18:59:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(15,15,'Admin Notification (ID: 636a8f0129f34)',0,'2023-01-18 12:49:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(16,16,'Admin Notification (ID: 636a8f0129f34)',0,'2023-01-20 20:39:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(17,17,'Admin Notification (ID: 636a8f0129f34)',0,'2023-01-23 13:10:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(18,18,'Admin Notification (ID: 636a8f0129f34)',0,'2023-01-24 22:41:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(19,19,'Admin Notification (ID: 636a8f0129f34)',0,'2023-01-29 11:47:57','WordPress successfully passed the notification email to the sending server.','notification','success'),(20,20,'Admin Notification (ID: 636a8f0129f34)',0,'2023-01-31 12:19:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(21,21,'Admin Notification (ID: 636a8f0129f34)',0,'2023-01-31 12:20:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(22,22,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-01 05:25:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(23,23,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-01 06:36:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(24,24,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-02 15:17:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(25,25,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-04 08:11:05','WordPress successfully passed the notification email to the sending server.','notification','success'),(26,26,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-07 16:30:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(27,27,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-07 17:10:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(28,28,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-09 06:16:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(29,29,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-10 01:22:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(30,30,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-12 06:22:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(31,31,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-12 19:19:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(32,32,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-12 19:41:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(33,33,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-15 00:45:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(34,34,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-16 21:20:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(35,35,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-16 23:42:43','WordPress successfully passed the notification email to the sending server.','notification','success'),(36,36,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-19 22:38:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(37,37,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-20 05:43:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(38,38,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-21 16:42:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(39,39,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-22 07:33:57','WordPress successfully passed the notification email to the sending server.','notification','success'),(43,43,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-22 10:16:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(44,44,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-22 12:04:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(45,45,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-22 12:23:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(46,46,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-23 06:33:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(47,47,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-23 07:35:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(48,48,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-23 07:40:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(49,49,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-23 07:45:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(50,50,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-23 07:46:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(51,51,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-23 07:48:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(52,52,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-23 07:51:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(53,53,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-24 17:45:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(54,54,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-24 22:21:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(55,55,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-24 22:37:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(56,56,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-28 00:47:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(57,57,'Admin Notification (ID: 636a8f0129f34)',0,'2023-02-28 01:33:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(58,58,'Admin Notification (ID: 636a8f0129f34)',0,'2023-03-07 23:22:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(59,59,'Admin Notification (ID: 636a8f0129f34)',0,'2023-03-10 17:47:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(60,60,'Admin Notification (ID: 636a8f0129f34)',0,'2023-03-19 00:04:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(61,61,'Admin Notification (ID: 636a8f0129f34)',0,'2023-03-23 03:30:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(62,62,'Admin Notification (ID: 636a8f0129f34)',0,'2023-03-26 19:50:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(63,63,'Admin Notification (ID: 636a8f0129f34)',0,'2023-03-27 04:53:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(64,64,'Admin Notification (ID: 636a8f0129f34)',0,'2023-03-28 11:08:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(65,65,'Admin Notification (ID: 636a8f0129f34)',0,'2023-03-29 06:21:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(66,66,'Admin Notification (ID: 636a8f0129f34)',0,'2023-03-31 02:01:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(67,67,'Admin Notification (ID: 636541adacd9f)',0,'2023-03-31 08:30:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(68,68,'Admin Notification (ID: 636a8f0129f34)',0,'2023-04-01 03:07:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(69,69,'Admin Notification (ID: 636a8f0129f34)',0,'2023-04-05 22:48:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(70,70,'Admin Notification (ID: 636a8f0129f34)',0,'2023-04-08 16:11:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(71,71,'Admin Notification (ID: 636a8f0129f34)',0,'2023-04-08 16:11:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(72,72,'Admin Notification (ID: 636a8f0129f34)',0,'2023-04-10 16:42:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(73,73,'Admin Notification (ID: 636a8f0129f34)',0,'2023-04-11 09:42:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(74,74,'Admin Notification (ID: 636a8f0129f34)',0,'2023-04-11 14:02:43','WordPress successfully passed the notification email to the sending server.','notification','success'),(75,75,'Admin Notification (ID: 636a8f0129f34)',0,'2023-04-13 01:10:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(76,76,'Admin Notification (ID: 636a8f0129f34)',0,'2023-04-17 19:30:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(77,77,'Admin Notification (ID: 636a8f0129f34)',0,'2023-04-21 00:55:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(78,78,'Admin Notification (ID: 636a8f0129f34)',0,'2023-04-24 00:23:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(79,79,'Admin Notification (ID: 636a8f0129f34)',0,'2023-04-24 23:14:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(80,80,'Admin Notification (ID: 636a8f0129f34)',0,'2023-04-27 17:51:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(81,81,'Admin Notification (ID: 636a8f0129f34)',0,'2023-04-27 20:24:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(82,82,'Admin Notification (ID: 636a8f0129f34)',0,'2023-04-28 06:41:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(83,83,'Admin Notification (ID: 636a8f0129f34)',0,'2023-05-10 03:55:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(84,84,'Admin Notification (ID: 636a8f0129f34)',0,'2023-05-11 15:28:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(85,85,'Admin Notification (ID: 636a8f0129f34)',0,'2023-05-11 22:55:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(86,86,'Admin Notification (ID: 636a8f0129f34)',0,'2023-05-14 05:37:57','WordPress successfully passed the notification email to the sending server.','notification','success'),(87,87,'Admin Notification (ID: 636a8f0129f34)',0,'2023-05-15 21:10:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(88,88,'Admin Notification (ID: 636a8f0129f34)',0,'2023-05-16 02:33:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(89,89,'Admin Notification (ID: 636a8f0129f34)',0,'2023-05-16 21:39:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(90,90,'Admin Notification (ID: 636a8f0129f34)',0,'2023-05-19 22:37:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(91,91,'Admin Notification (ID: 636a8f0129f34)',0,'2023-05-20 22:41:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(92,92,'Admin Notification (ID: 636a8f0129f34)',0,'2023-05-22 17:01:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(93,93,'Admin Notification (ID: 636a8f0129f34)',0,'2023-05-23 18:27:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(94,94,'Admin Notification (ID: 636a8f0129f34)',0,'2023-05-26 00:15:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(95,95,'Admin Notification (ID: 636a8f0129f34)',0,'2023-05-29 11:38:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(96,96,'Admin Notification (ID: 636a8f0129f34)',0,'2023-05-29 17:24:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(97,97,'Admin Notification (ID: 636a8f0129f34)',0,'2023-05-30 03:27:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(98,98,'Admin Notification (ID: 636a8f0129f34)',0,'2023-06-03 18:24:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(99,99,'Admin Notification (ID: 636a8f0129f34)',0,'2023-06-04 17:06:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(100,100,'Admin Notification (ID: 636a8f0129f34)',0,'2023-06-05 09:52:57','WordPress successfully passed the notification email to the sending server.','notification','success'),(101,101,'Admin Notification (ID: 636a8f0129f34)',0,'2023-06-05 17:47:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(102,102,'Gravity Forms',0,'2023-06-06 10:13:09','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(103,103,'Gravity Forms',0,'2023-06-07 02:55:38','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(104,104,'Admin Notification (ID: 636a8f0129f34)',0,'2023-06-07 20:24:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(105,105,'Admin Notification (ID: 636a8f0129f34)',0,'2023-06-07 20:39:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(106,106,'Admin Notification (ID: 636a8f0129f34)',0,'2023-06-08 08:09:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(107,107,'Admin Notification (ID: 636a8f0129f34)',0,'2023-06-11 17:45:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(108,108,'Admin Notification (ID: 636a8f0129f34)',0,'2023-06-13 13:51:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(109,109,'Admin Notification (ID: 636a8f0129f34)',0,'2023-06-14 03:48:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(110,110,'Admin Notification (ID: 636a8f0129f34)',0,'2023-06-14 11:56:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(111,111,'Admin Notification (ID: 636a8f0129f34)',0,'2023-06-16 05:13:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(112,112,'Admin Notification (ID: 636a8f0129f34)',0,'2023-06-19 19:51:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(113,113,'Admin Notification (ID: 636a8f0129f34)',0,'2023-06-19 20:57:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(114,114,'Admin Notification (ID: 636a8f0129f34)',0,'2023-06-20 03:03:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(115,115,'Admin Notification (ID: 636a8f0129f34)',0,'2023-06-20 10:49:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(116,116,'Admin Notification (ID: 636a8f0129f34)',0,'2023-06-20 17:15:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(117,117,'Admin Notification (ID: 636a8f0129f34)',0,'2023-06-22 01:19:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(118,118,'Admin Notification (ID: 636a8f0129f34)',0,'2023-06-23 17:39:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(119,119,'Admin Notification (ID: 636a8f0129f34)',0,'2023-06-26 11:17:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(120,120,'Admin Notification (ID: 636a8f0129f34)',0,'2023-06-29 18:25:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(121,121,'Admin Notification (ID: 636a8f0129f34)',0,'2023-06-30 02:49:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(122,122,'Admin Notification (ID: 636a8f0129f34)',0,'2023-06-30 13:40:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(123,123,'Admin Notification (ID: 636a8f0129f34)',0,'2023-07-01 02:01:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(124,124,'Admin Notification (ID: 636a8f0129f34)',0,'2023-07-04 18:09:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(125,125,'Admin Notification (ID: 636a8f0129f34)',0,'2023-07-06 05:10:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(126,126,'Admin Notification (ID: 636a8f0129f34)',0,'2023-07-06 10:35:05','WordPress successfully passed the notification email to the sending server.','notification','success'),(127,127,'Admin Notification (ID: 636a8f0129f34)',0,'2023-07-06 16:23:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(128,128,'Admin Notification (ID: 636a8f0129f34)',0,'2023-07-08 12:23:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(129,129,'Admin Notification (ID: 636a8f0129f34)',0,'2023-07-08 21:51:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(130,130,'Admin Notification (ID: 636a8f0129f34)',0,'2023-07-10 11:36:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(131,131,'Admin Notification (ID: 636a8f0129f34)',0,'2023-07-10 22:11:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(132,132,'Admin Notification (ID: 636a8f0129f34)',0,'2023-07-12 18:52:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(133,133,'Admin Notification (ID: 636a8f0129f34)',0,'2023-07-13 04:17:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(134,134,'Admin Notification (ID: 636a8f0129f34)',0,'2023-07-14 05:45:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(135,135,'Admin Notification (ID: 636a8f0129f34)',0,'2023-07-14 12:54:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(136,136,'Admin Notification (ID: 636a8f0129f34)',0,'2023-07-17 04:44:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(137,137,'Admin Notification (ID: 636a8f0129f34)',0,'2023-07-18 17:22:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(138,138,'Admin Notification (ID: 636a8f0129f34)',0,'2023-07-19 01:49:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(139,139,'Admin Notification (ID: 636a8f0129f34)',0,'2023-07-20 21:33:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(140,140,'Admin Notification (ID: 636a8f0129f34)',0,'2023-07-21 21:16:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(141,141,'Admin Notification (ID: 636a8f0129f34)',0,'2023-07-25 18:51:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(142,142,'Admin Notification (ID: 636a8f0129f34)',0,'2023-07-26 22:36:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(143,143,'Admin Notification (ID: 636a8f0129f34)',0,'2023-07-27 14:03:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(144,144,'Admin Notification (ID: 636a8f0129f34)',0,'2023-07-28 18:24:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(145,145,'Admin Notification (ID: 636a8f0129f34)',0,'2023-07-28 18:53:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(146,146,'Admin Notification (ID: 636a8f0129f34)',0,'2023-07-29 13:41:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(147,147,'Admin Notification (ID: 636a8f0129f34)',0,'2023-07-31 14:11:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(148,148,'Admin Notification (ID: 636a8f0129f34)',0,'2023-07-31 14:42:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(149,149,'Admin Notification (ID: 636a8f0129f34)',0,'2023-08-01 03:44:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(150,150,'Admin Notification (ID: 636a8f0129f34)',0,'2023-08-01 19:11:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(151,151,'Admin Notification (ID: 636a8f0129f34)',0,'2023-08-04 01:04:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(152,152,'Admin Notification (ID: 636a8f0129f34)',0,'2023-08-04 22:11:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(153,153,'Admin Notification (ID: 636a8f0129f34)',0,'2023-08-06 16:29:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(154,154,'Admin Notification (ID: 636a8f0129f34)',0,'2023-08-08 20:00:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(155,155,'Admin Notification (ID: 636a8f0129f34)',0,'2023-08-09 02:40:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(156,156,'Admin Notification (ID: 636a8f0129f34)',0,'2023-08-09 21:59:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(157,157,'Admin Notification (ID: 636a8f0129f34)',0,'2023-08-09 23:18:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(158,158,'Gravity Forms',0,'2023-08-11 06:01:34','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(159,159,'Admin Notification (ID: 636a8f0129f34)',0,'2023-08-12 03:36:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(160,160,'Admin Notification (ID: 636a8f0129f34)',0,'2023-08-13 00:22:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(161,161,'Gravity Forms',0,'2023-08-13 04:06:02','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(162,162,'Admin Notification (ID: 636a8f0129f34)',0,'2023-08-17 04:31:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(163,163,'Admin Notification (ID: 636a8f0129f34)',0,'2023-08-17 23:52:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(164,164,'Admin Notification (ID: 636a8f0129f34)',0,'2023-08-18 12:49:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(165,165,'Admin Notification (ID: 636a8f0129f34)',0,'2023-08-18 18:15:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(166,166,'Admin Notification (ID: 636a8f0129f34)',0,'2023-08-19 03:21:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(167,167,'Admin Notification (ID: 636a8f0129f34)',0,'2023-08-19 09:13:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(168,168,'Admin Notification (ID: 636a8f0129f34)',0,'2023-08-21 02:57:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(169,169,'Admin Notification (ID: 636a8f0129f34)',0,'2023-08-21 19:34:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(170,170,'Admin Notification (ID: 636a8f0129f34)',0,'2023-08-21 19:42:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(171,171,'Admin Notification (ID: 636a8f0129f34)',0,'2023-08-23 00:45:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(172,172,'Admin Notification (ID: 636a8f0129f34)',0,'2023-08-23 02:53:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(173,173,'Admin Notification (ID: 636a8f0129f34)',0,'2023-08-23 11:10:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(174,174,'Admin Notification (ID: 636a8f0129f34)',0,'2023-08-24 21:05:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(175,175,'Admin Notification (ID: 636a8f0129f34)',0,'2023-08-31 00:35:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(176,176,'Gravity Forms',0,'2023-08-31 05:04:04','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(177,177,'Admin Notification (ID: 636a8f0129f34)',0,'2023-09-01 18:09:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(178,178,'Gravity Forms',0,'2023-09-02 23:24:29','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(179,179,'Admin Notification (ID: 636a8f0129f34)',0,'2023-09-03 02:40:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(180,180,'Gravity Forms',0,'2023-09-03 08:41:55','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(181,181,'Admin Notification (ID: 636a8f0129f34)',0,'2023-09-04 01:10:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(182,182,'Admin Notification (ID: 636a8f0129f34)',0,'2023-09-04 02:03:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(183,183,'Admin Notification (ID: 636a8f0129f34)',0,'2023-09-06 15:52:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(184,184,'Admin Notification (ID: 636a8f0129f34)',0,'2023-09-07 01:15:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(185,185,'Admin Notification (ID: 636a8f0129f34)',0,'2023-09-07 10:48:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(186,186,'Admin Notification (ID: 636a8f0129f34)',0,'2023-09-10 21:47:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(187,187,'Admin Notification (ID: 636a8f0129f34)',0,'2023-09-10 23:48:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(188,188,'Admin Notification (ID: 636a8f0129f34)',0,'2023-09-12 02:01:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(189,189,'Gravity Forms',0,'2023-09-12 07:24:57','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(190,190,'Gravity Forms',0,'2023-09-12 10:24:40','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(191,191,'Admin Notification (ID: 636a8f0129f34)',0,'2023-09-12 20:41:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(192,192,'Admin Notification (ID: 636a8f0129f34)',0,'2023-09-13 22:34:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(193,193,'Admin Notification (ID: 636a8f0129f34)',0,'2023-09-14 16:42:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(194,194,'Admin Notification (ID: 636a8f0129f34)',0,'2023-09-14 20:31:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(195,195,'Gravity Forms',0,'2023-09-14 23:19:56','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(196,196,'Gravity Forms',0,'2023-09-16 07:03:05','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(197,197,'Admin Notification (ID: 636a8f0129f34)',0,'2023-09-16 19:40:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(198,198,'Gravity Forms',0,'2023-09-17 13:46:06','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(199,199,'Gravity Forms',0,'2023-09-17 15:07:17','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(200,200,'Admin Notification (ID: 636a8f0129f34)',0,'2023-09-17 17:12:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(201,201,'Admin Notification (ID: 636a8f0129f34)',0,'2023-09-18 17:14:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(202,202,'Gravity Forms',0,'2023-09-20 09:34:51','Error while saving field values: WordPress database error: Could not perform query because it contains invalid data.','save_entry','error'),(203,203,'Admin Notification (ID: 636a8f0129f34)',0,'2023-09-20 15:15:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(204,204,'Admin Notification (ID: 636a8f0129f34)',0,'2023-09-21 08:24:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(205,205,'Admin Notification (ID: 636a8f0129f34)',0,'2023-09-25 15:08:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(206,206,'Admin Notification (ID: 636a8f0129f34)',0,'2023-09-25 21:13:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(207,207,'Admin Notification (ID: 636a8f0129f34)',0,'2023-09-26 17:15:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(208,208,'Admin Notification (ID: 636a8f0129f34)',0,'2023-09-26 22:37:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(209,209,'Admin Notification (ID: 636a8f0129f34)',0,'2023-09-27 00:27:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(210,210,'Admin Notification (ID: 636a8f0129f34)',0,'2023-09-29 12:03:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(211,211,'Admin Notification (ID: 636a8f0129f34)',0,'2023-09-29 14:30:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(212,212,'Admin Notification (ID: 636a8f0129f34)',0,'2023-09-30 22:02:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(213,213,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-03 05:36:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(214,214,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-04 14:13:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(215,215,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-04 16:59:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(216,216,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-04 20:15:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(217,217,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-06 01:28:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(218,218,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-06 10:47:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(219,219,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-06 17:04:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(220,220,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-08 06:11:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(221,221,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-08 10:24:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(222,222,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-08 21:46:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(223,223,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-09 12:55:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(224,224,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-09 18:32:57','WordPress successfully passed the notification email to the sending server.','notification','success'),(225,225,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-09 19:25:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(226,226,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-09 23:59:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(227,227,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-10 02:20:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(228,228,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-12 11:13:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(229,229,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-13 06:20:57','WordPress successfully passed the notification email to the sending server.','notification','success'),(230,230,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-19 22:58:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(231,231,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-21 10:56:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(232,232,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-23 09:50:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(233,233,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-24 16:16:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(234,234,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-25 07:03:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(235,235,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-25 17:13:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(236,236,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-26 10:40:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(237,237,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-26 22:13:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(238,238,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-28 06:23:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(239,239,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-29 08:34:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(240,240,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-29 17:05:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(241,241,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-30 05:53:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(242,242,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-30 08:13:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(243,243,'Admin Notification (ID: 636a8f0129f34)',0,'2023-10-31 14:52:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(244,244,'Admin Notification (ID: 636a8f0129f34)',0,'2023-11-01 21:28:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(245,245,'Admin Notification (ID: 636a8f0129f34)',0,'2023-11-02 14:21:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(246,246,'Admin Notification (ID: 636a8f0129f34)',0,'2023-11-04 14:16:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(247,247,'Admin Notification (ID: 636541adacd9f)',0,'2023-11-06 12:58:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(248,248,'Admin Notification (ID: 636a8f0129f34)',0,'2023-11-06 17:15:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(249,249,'Admin Notification (ID: 636a8f0129f34)',0,'2023-11-07 08:14:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(250,250,'Admin Notification (ID: 636a8f0129f34)',0,'2023-11-07 20:20:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(251,251,'Admin Notification (ID: 636a8f0129f34)',0,'2023-11-07 22:46:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(252,252,'Admin Notification (ID: 636a8f0129f34)',0,'2023-11-08 15:36:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(253,253,'Admin Notification (ID: 636a8f0129f34)',0,'2023-11-12 14:20:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(254,254,'Admin Notification (ID: 636a8f0129f34)',0,'2023-11-13 22:16:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(255,255,'Admin Notification (ID: 636a8f0129f34)',0,'2023-11-16 13:29:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(256,256,'Admin Notification (ID: 636a8f0129f34)',0,'2023-11-20 15:11:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(257,257,'Admin Notification (ID: 636a8f0129f34)',0,'2023-11-20 17:00:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(258,258,'Admin Notification (ID: 636a8f0129f34)',0,'2023-11-21 11:12:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(259,259,'Admin Notification (ID: 636a8f0129f34)',0,'2023-11-21 14:02:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(260,260,'Admin Notification (ID: 636a8f0129f34)',0,'2023-11-21 23:32:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(261,261,'Admin Notification (ID: 636a8f0129f34)',0,'2023-11-22 20:05:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(262,262,'Admin Notification (ID: 636a8f0129f34)',0,'2023-11-23 07:03:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(263,263,'Admin Notification (ID: 636a8f0129f34)',0,'2023-11-24 06:10:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(264,264,'Admin Notification (ID: 636a8f0129f34)',0,'2023-11-24 20:06:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(265,265,'Admin Notification (ID: 636a8f0129f34)',0,'2023-11-24 22:08:05','WordPress successfully passed the notification email to the sending server.','notification','success'),(266,266,'Admin Notification (ID: 636a8f0129f34)',0,'2023-11-25 17:29:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(267,267,'Admin Notification (ID: 636a8f0129f34)',0,'2023-11-27 09:41:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(268,268,'Admin Notification (ID: 636a8f0129f34)',0,'2023-11-27 10:16:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(269,269,'Admin Notification (ID: 636a8f0129f34)',0,'2023-11-27 14:16:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(270,270,'Admin Notification (ID: 636a8f0129f34)',0,'2023-11-29 19:34:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(271,271,'Admin Notification (ID: 636a8f0129f34)',0,'2023-12-01 09:13:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(272,272,'Admin Notification (ID: 636a8f0129f34)',0,'2023-12-02 11:10:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(273,273,'Admin Notification (ID: 636a8f0129f34)',0,'2023-12-02 17:06:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(274,274,'Admin Notification (ID: 636a8f0129f34)',0,'2023-12-03 08:34:05','WordPress successfully passed the notification email to the sending server.','notification','success'),(275,275,'Admin Notification (ID: 636a8f0129f34)',0,'2023-12-04 05:50:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(276,276,'Admin Notification (ID: 636a8f0129f34)',0,'2023-12-04 20:02:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(277,277,'Admin Notification (ID: 636a8f0129f34)',0,'2023-12-04 20:10:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(278,278,'Admin Notification (ID: 636a8f0129f34)',0,'2023-12-07 02:15:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(279,279,'Admin Notification (ID: 636a8f0129f34)',0,'2023-12-08 21:06:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(280,280,'Admin Notification (ID: 636a8f0129f34)',0,'2023-12-09 01:47:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(281,281,'Admin Notification (ID: 636a8f0129f34)',0,'2023-12-13 23:49:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(282,282,'Admin Notification (ID: 636a8f0129f34)',0,'2023-12-14 00:34:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(283,283,'Admin Notification (ID: 636a8f0129f34)',0,'2023-12-14 19:22:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(284,284,'Admin Notification (ID: 636a8f0129f34)',0,'2023-12-16 17:45:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(285,285,'Admin Notification (ID: 636a8f0129f34)',0,'2023-12-18 18:35:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(286,286,'Admin Notification (ID: 636a8f0129f34)',0,'2023-12-21 13:35:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(287,287,'Admin Notification (ID: 636a8f0129f34)',0,'2023-12-21 14:43:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(288,288,'Admin Notification (ID: 636a8f0129f34)',0,'2023-12-21 17:30:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(289,289,'Admin Notification (ID: 636a8f0129f34)',0,'2023-12-21 18:29:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(290,290,'Admin Notification (ID: 636a8f0129f34)',0,'2023-12-22 10:21:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(291,291,'Admin Notification (ID: 636a8f0129f34)',0,'2023-12-27 08:24:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(292,292,'Admin Notification (ID: 636a8f0129f34)',0,'2023-12-28 07:12:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(293,293,'Admin Notification (ID: 636a8f0129f34)',0,'2023-12-29 12:08:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(294,294,'Admin Notification (ID: 636a8f0129f34)',0,'2023-12-31 15:53:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(295,295,'Admin Notification (ID: 636a8f0129f34)',0,'2024-01-04 09:01:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(296,296,'Admin Notification (ID: 636a8f0129f34)',0,'2024-01-04 13:41:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(297,297,'Admin Notification (ID: 636a8f0129f34)',0,'2024-01-04 15:22:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(298,298,'Admin Notification (ID: 636a8f0129f34)',0,'2024-01-04 20:28:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(299,299,'Admin Notification (ID: 636a8f0129f34)',0,'2024-01-11 07:24:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(300,300,'Admin Notification (ID: 636a8f0129f34)',0,'2024-01-11 16:48:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(301,301,'Admin Notification (ID: 636a8f0129f34)',0,'2024-01-11 21:37:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(302,302,'Admin Notification (ID: 636a8f0129f34)',0,'2024-01-11 22:04:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(303,303,'Admin Notification (ID: 636a8f0129f34)',0,'2024-01-12 04:13:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(304,304,'Admin Notification (ID: 636a8f0129f34)',0,'2024-01-14 07:45:05','WordPress successfully passed the notification email to the sending server.','notification','success'),(305,305,'Admin Notification (ID: 636a8f0129f34)',0,'2024-01-14 19:12:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(306,306,'Admin Notification (ID: 636a8f0129f34)',0,'2024-01-16 06:57:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(307,307,'Admin Notification (ID: 636a8f0129f34)',0,'2024-01-16 09:43:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(308,308,'Admin Notification (ID: 636a8f0129f34)',0,'2024-01-16 23:22:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(309,309,'Admin Notification (ID: 636a8f0129f34)',0,'2024-01-17 23:23:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(310,310,'Admin Notification (ID: 636a8f0129f34)',0,'2024-01-18 01:28:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(311,311,'Admin Notification (ID: 636a8f0129f34)',0,'2024-01-19 09:50:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(312,312,'Admin Notification (ID: 636a8f0129f34)',0,'2024-01-20 05:40:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(313,313,'Admin Notification (ID: 636a8f0129f34)',0,'2024-01-21 20:06:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(314,314,'Admin Notification (ID: 636a8f0129f34)',0,'2024-01-22 13:11:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(315,315,'Admin Notification (ID: 636a8f0129f34)',0,'2024-01-23 21:08:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(316,316,'Admin Notification (ID: 636a8f0129f34)',0,'2024-01-25 06:10:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(317,317,'Admin Notification (ID: 636a8f0129f34)',0,'2024-01-26 13:22:57','WordPress successfully passed the notification email to the sending server.','notification','success'),(318,318,'Admin Notification (ID: 636a8f0129f34)',0,'2024-01-27 18:33:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(319,319,'Admin Notification (ID: 636a8f0129f34)',0,'2024-01-27 20:10:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(320,320,'Admin Notification (ID: 636a8f0129f34)',0,'2024-01-29 02:50:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(321,321,'Admin Notification (ID: 636a8f0129f34)',0,'2024-01-29 22:40:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(322,322,'Admin Notification (ID: 636a8f0129f34)',0,'2024-01-30 17:08:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(323,323,'Admin Notification (ID: 636a8f0129f34)',0,'2024-02-04 01:13:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(324,324,'Admin Notification (ID: 636a8f0129f34)',0,'2024-02-04 05:59:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(325,325,'Admin Notification (ID: 636a8f0129f34)',0,'2024-02-05 19:42:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(326,326,'Admin Notification (ID: 636a8f0129f34)',0,'2024-02-06 02:43:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(327,327,'Admin Notification (ID: 636a8f0129f34)',0,'2024-02-08 19:16:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(328,328,'Admin Notification (ID: 636a8f0129f34)',0,'2024-02-09 21:37:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(329,329,'Admin Notification (ID: 636a8f0129f34)',0,'2024-02-10 17:38:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(330,330,'Admin Notification (ID: 636a8f0129f34)',0,'2024-02-11 01:05:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(331,331,'Admin Notification (ID: 636a8f0129f34)',0,'2024-02-14 10:05:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(332,332,'Admin Notification (ID: 636a8f0129f34)',0,'2024-02-15 20:14:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(333,333,'Admin Notification (ID: 636a8f0129f34)',0,'2024-02-15 23:02:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(334,334,'Admin Notification (ID: 636a8f0129f34)',0,'2024-02-16 11:26:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(335,335,'Admin Notification (ID: 636a8f0129f34)',0,'2024-02-17 15:14:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(336,336,'Admin Notification (ID: 636a8f0129f34)',0,'2024-02-20 00:34:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(337,337,'Admin Notification (ID: 636a8f0129f34)',0,'2024-02-20 01:10:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(338,338,'Admin Notification (ID: 636a8f0129f34)',0,'2024-02-22 18:59:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(339,339,'Admin Notification (ID: 636a8f0129f34)',0,'2024-02-23 00:41:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(340,340,'Admin Notification (ID: 636a8f0129f34)',0,'2024-02-23 14:46:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(341,341,'Admin Notification (ID: 636a8f0129f34)',0,'2024-02-26 09:43:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(342,342,'Admin Notification (ID: 636a8f0129f34)',0,'2024-02-27 12:30:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(343,343,'Admin Notification (ID: 636a8f0129f34)',0,'2024-02-28 04:53:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(344,344,'Admin Notification (ID: 636a8f0129f34)',0,'2024-02-29 17:47:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(345,345,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-01 01:06:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(346,346,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-01 16:47:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(347,347,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-03 21:56:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(348,348,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-04 20:26:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(349,349,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-05 00:05:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(350,350,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-05 09:05:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(351,351,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-06 02:38:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(352,352,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-06 04:54:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(353,353,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-06 19:02:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(354,354,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-06 22:15:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(355,355,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-07 07:40:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(356,356,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-08 01:03:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(357,357,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-08 06:02:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(358,358,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-08 11:07:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(359,359,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-08 14:30:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(360,360,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-08 19:01:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(361,361,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-09 14:30:57','WordPress successfully passed the notification email to the sending server.','notification','success'),(362,362,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-09 21:52:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(363,363,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-10 07:36:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(364,364,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-10 16:39:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(365,365,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-11 23:19:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(366,366,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-12 00:52:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(367,367,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-12 19:08:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(368,368,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-12 19:44:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(369,369,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-13 21:38:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(370,370,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-15 02:48:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(371,371,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-15 16:45:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(372,372,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-15 22:09:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(373,373,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-16 01:24:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(374,374,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-16 10:48:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(375,375,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-16 20:06:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(376,376,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-17 14:40:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(377,377,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-20 05:00:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(378,378,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-20 06:10:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(379,379,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-20 07:08:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(380,380,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-20 09:18:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(381,381,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-20 11:26:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(382,382,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-20 14:34:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(383,383,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-20 19:07:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(384,384,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-20 23:39:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(385,385,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-21 11:36:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(386,386,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-21 11:59:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(387,387,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-21 18:53:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(388,388,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-23 15:10:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(389,389,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-24 05:53:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(390,390,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-24 09:42:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(391,391,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-26 14:49:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(392,392,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-26 14:51:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(393,393,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-27 04:17:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(394,394,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-28 02:46:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(395,395,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-28 16:54:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(396,396,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-28 21:14:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(397,397,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-29 21:50:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(398,398,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-30 04:38:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(399,399,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-31 03:46:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(400,400,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-31 05:35:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(401,401,'Admin Notification (ID: 636a8f0129f34)',0,'2024-03-31 06:37:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(402,402,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-01 12:21:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(403,403,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-02 13:11:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(404,404,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-03 03:40:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(405,405,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-03 09:59:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(406,406,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-03 11:50:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(407,407,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-05 03:28:05','WordPress successfully passed the notification email to the sending server.','notification','success'),(408,408,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-05 05:06:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(409,409,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-06 00:25:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(410,410,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-06 23:38:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(411,411,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-07 03:19:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(412,412,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-09 16:42:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(413,413,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-09 17:36:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(414,414,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-09 18:42:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(415,415,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-11 02:58:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(416,416,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-12 07:43:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(417,417,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-12 16:11:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(418,418,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-12 18:14:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(419,419,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-13 08:22:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(420,420,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-13 14:50:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(421,421,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-15 08:09:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(422,422,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-15 16:52:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(423,423,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-15 18:35:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(424,424,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-15 20:17:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(425,425,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-16 07:52:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(426,426,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-17 22:13:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(427,427,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-18 21:29:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(428,428,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-19 04:37:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(429,429,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-19 12:28:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(430,430,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-20 00:53:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(431,431,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-20 06:27:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(432,432,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-20 17:49:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(433,433,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-21 00:47:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(434,434,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-21 09:45:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(435,435,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-21 18:32:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(436,436,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-21 21:01:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(437,437,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-21 22:11:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(438,438,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-22 02:45:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(439,439,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-24 03:40:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(440,440,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-25 14:17:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(441,441,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-26 01:22:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(442,442,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-26 08:52:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(443,443,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-27 18:43:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(444,444,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-28 23:01:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(445,445,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-29 07:11:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(446,446,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-29 07:26:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(447,447,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-29 13:39:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(448,448,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-29 23:03:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(449,449,'Admin Notification (ID: 636a8f0129f34)',0,'2024-04-30 10:46:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(450,450,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-02 17:39:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(451,451,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-03 16:56:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(452,452,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-04 01:01:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(453,453,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-04 03:44:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(454,454,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-04 07:44:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(455,455,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-05 03:45:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(456,456,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-05 10:12:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(457,457,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-06 10:52:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(458,458,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-07 00:13:43','WordPress successfully passed the notification email to the sending server.','notification','success'),(459,459,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-07 11:23:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(460,460,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-08 06:10:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(461,461,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-08 08:21:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(462,462,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-09 04:56:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(463,463,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-10 01:28:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(464,464,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-10 05:27:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(465,465,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-11 00:18:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(466,466,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-13 05:21:43','WordPress successfully passed the notification email to the sending server.','notification','success'),(467,467,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-13 14:51:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(468,468,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-13 16:04:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(469,469,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-13 20:04:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(470,470,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-14 02:07:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(471,471,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-14 15:55:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(472,472,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-15 08:15:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(473,473,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-16 03:05:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(474,474,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-16 05:41:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(475,475,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-16 08:12:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(476,476,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-16 18:43:43','WordPress successfully passed the notification email to the sending server.','notification','success'),(477,477,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-17 05:27:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(478,478,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-17 20:51:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(479,479,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-17 22:19:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(480,480,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-18 01:11:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(481,481,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-19 03:43:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(482,482,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-19 08:17:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(483,483,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-20 07:04:05','WordPress successfully passed the notification email to the sending server.','notification','success'),(484,484,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-20 17:40:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(485,485,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-21 13:41:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(486,486,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-22 23:32:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(487,487,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-24 10:54:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(488,488,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-25 07:46:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(489,489,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-25 08:49:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(490,490,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-25 20:37:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(491,491,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-26 04:34:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(492,492,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-26 09:55:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(493,493,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-26 17:42:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(494,494,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-27 10:28:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(495,495,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-29 04:02:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(496,496,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-29 14:10:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(497,497,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-29 15:30:57','WordPress successfully passed the notification email to the sending server.','notification','success'),(498,498,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-29 16:05:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(499,499,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-30 09:56:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(500,500,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-30 10:49:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(501,501,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-30 13:41:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(502,502,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-31 01:22:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(503,503,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-31 01:47:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(504,504,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-31 11:10:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(505,505,'Admin Notification (ID: 636a8f0129f34)',0,'2024-05-31 11:11:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(506,506,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-01 00:00:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(507,507,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-02 08:07:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(508,508,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-04 04:07:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(509,509,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-04 10:49:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(510,510,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-04 20:12:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(511,511,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-05 01:32:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(512,512,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-05 14:32:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(513,513,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-05 15:57:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(514,514,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-05 16:00:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(515,515,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-05 19:09:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(516,516,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-05 23:28:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(517,517,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-07 15:09:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(518,518,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-08 04:15:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(519,519,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-08 05:21:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(520,520,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-09 11:26:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(521,521,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-11 07:22:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(522,522,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-11 23:15:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(523,523,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-11 23:25:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(524,524,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-12 10:21:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(525,525,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-12 21:44:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(526,526,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-13 04:16:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(527,527,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-13 06:29:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(528,528,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-15 11:33:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(529,529,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-15 12:25:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(530,530,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-15 19:51:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(531,531,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-17 15:59:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(532,532,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-17 16:39:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(533,533,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-17 17:55:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(534,534,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-17 22:01:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(535,535,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-18 05:03:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(536,536,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-18 10:07:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(537,537,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-19 01:05:57','WordPress successfully passed the notification email to the sending server.','notification','success'),(538,538,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-19 03:26:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(539,539,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-19 06:01:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(540,540,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-19 08:57:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(541,541,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-19 14:55:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(542,542,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-20 06:27:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(543,543,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-20 12:33:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(544,544,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-20 17:33:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(545,545,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-21 01:44:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(546,546,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-21 22:52:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(547,547,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-22 00:14:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(548,548,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-22 00:15:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(549,549,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-22 04:49:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(550,550,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-22 07:35:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(551,551,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-23 00:44:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(552,552,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-23 08:06:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(553,553,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-23 10:05:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(554,554,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-24 16:16:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(555,555,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-24 17:33:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(556,556,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-25 01:06:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(557,557,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-25 02:37:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(558,558,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-25 14:42:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(559,559,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-26 09:54:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(560,560,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-26 16:57:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(561,561,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-26 23:26:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(562,562,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-27 17:22:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(563,563,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-28 06:27:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(564,564,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-28 07:32:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(565,565,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-28 15:57:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(566,566,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-29 11:11:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(567,567,'Admin Notification (ID: 636a8f0129f34)',0,'2024-06-30 23:41:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(568,568,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-01 07:58:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(569,569,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-01 12:24:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(570,570,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-03 01:52:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(571,571,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-04 04:52:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(572,572,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-04 10:18:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(573,573,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-04 18:00:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(574,574,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-05 05:01:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(575,575,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-05 17:21:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(576,576,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-05 18:04:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(577,577,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-05 19:11:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(578,578,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-06 03:49:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(579,579,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-06 07:03:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(580,580,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-07 11:31:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(581,581,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-08 20:38:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(582,582,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-09 04:47:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(583,583,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-09 18:48:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(584,584,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-10 20:37:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(585,585,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-12 06:11:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(586,586,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-12 21:43:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(587,587,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-13 00:27:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(588,588,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-13 15:27:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(589,589,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-13 19:13:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(590,590,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-13 19:54:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(591,591,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-14 13:44:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(592,592,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-14 20:37:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(593,593,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-16 23:26:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(594,594,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-20 00:13:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(595,595,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-20 05:37:05','WordPress successfully passed the notification email to the sending server.','notification','success'),(596,596,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-21 05:33:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(597,597,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-21 07:04:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(598,598,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-21 16:10:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(599,599,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-22 12:59:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(600,600,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-22 23:36:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(601,601,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-23 13:32:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(602,602,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-23 17:46:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(603,603,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-24 00:36:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(604,604,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-24 02:14:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(605,605,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-24 21:15:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(606,606,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-25 03:14:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(607,607,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-26 00:34:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(608,608,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-26 07:48:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(609,609,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-26 12:02:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(610,610,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-26 19:45:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(611,611,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-27 00:01:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(612,612,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-27 02:17:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(613,613,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-27 02:38:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(614,614,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-27 15:57:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(615,615,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-30 16:32:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(616,616,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-30 17:00:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(617,617,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-31 01:58:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(618,618,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-31 04:56:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(619,619,'Admin Notification (ID: 636a8f0129f34)',0,'2024-07-31 08:18:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(620,620,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-01 01:44:05','WordPress successfully passed the notification email to the sending server.','notification','success'),(621,621,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-01 04:25:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(622,622,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-02 18:11:57','WordPress successfully passed the notification email to the sending server.','notification','success'),(623,623,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-02 21:40:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(624,624,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-03 15:10:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(625,625,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-03 15:45:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(626,626,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-03 21:32:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(627,627,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-04 20:11:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(628,628,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-05 09:48:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(629,629,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-05 14:27:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(630,630,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-06 12:04:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(631,631,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-07 10:17:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(632,632,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-09 08:52:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(633,633,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-10 00:06:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(634,634,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-12 11:50:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(635,635,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-12 14:07:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(636,636,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-13 03:22:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(637,637,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-14 08:54:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(638,638,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-15 06:33:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(639,639,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-15 10:34:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(640,640,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-15 17:04:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(641,641,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-15 20:14:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(642,642,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-17 03:41:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(643,643,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-19 05:58:43','WordPress successfully passed the notification email to the sending server.','notification','success'),(644,644,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-19 14:02:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(645,645,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-19 16:45:05','WordPress successfully passed the notification email to the sending server.','notification','success'),(646,646,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-20 01:59:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(647,647,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-20 03:50:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(648,648,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-20 21:04:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(649,649,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-21 19:53:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(650,650,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-22 19:48:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(651,651,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-22 23:09:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(652,652,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-23 04:49:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(653,653,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-23 11:09:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(654,654,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-24 05:36:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(655,655,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-26 19:06:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(656,656,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-27 04:05:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(657,657,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-27 23:12:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(658,658,'Admin Notification (ID: 636a8f0129f34)',0,'2024-08-30 03:23:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(659,659,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-01 16:49:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(660,660,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-02 16:03:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(661,661,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-07 10:39:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(662,662,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-09 09:38:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(663,663,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-09 21:06:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(664,664,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-10 05:24:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(665,665,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-10 11:16:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(666,666,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-10 15:40:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(667,667,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-11 17:25:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(668,668,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-12 00:27:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(669,669,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-12 14:15:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(670,670,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-12 20:59:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(671,671,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-17 00:11:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(672,672,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-17 10:34:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(673,673,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-18 00:19:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(674,674,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-18 08:39:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(675,675,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-18 10:36:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(676,676,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-18 11:32:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(677,677,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-18 20:04:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(678,678,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-18 22:38:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(679,679,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-19 06:48:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(680,680,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-19 07:21:43','WordPress successfully passed the notification email to the sending server.','notification','success'),(681,681,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-19 23:32:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(682,682,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-20 04:49:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(683,683,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-20 08:14:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(684,684,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-20 18:52:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(685,685,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-20 20:15:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(686,686,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-20 20:15:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(687,687,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-22 01:46:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(688,688,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-22 03:19:57','WordPress successfully passed the notification email to the sending server.','notification','success'),(689,689,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-22 08:27:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(690,690,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-22 21:42:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(691,691,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-24 11:17:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(692,692,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-24 14:24:05','WordPress successfully passed the notification email to the sending server.','notification','success'),(693,693,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-24 19:58:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(694,694,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-25 11:33:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(695,695,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-25 14:30:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(696,696,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-26 00:30:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(697,697,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-26 13:28:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(698,698,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-26 23:13:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(699,699,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-27 01:34:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(700,700,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-27 19:15:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(701,701,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-28 02:05:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(702,702,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-28 12:42:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(703,703,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-30 02:19:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(704,704,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-30 21:27:57','WordPress successfully passed the notification email to the sending server.','notification','success'),(705,705,'Admin Notification (ID: 636a8f0129f34)',0,'2024-09-30 23:48:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(706,706,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-01 00:30:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(707,707,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-01 19:31:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(708,708,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-02 20:29:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(709,709,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-02 20:33:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(710,710,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-03 23:54:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(711,711,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-05 04:52:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(712,712,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-05 15:34:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(713,713,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-07 16:08:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(714,714,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-08 01:23:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(715,715,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-08 02:36:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(716,716,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-08 10:45:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(717,717,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-08 13:54:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(718,718,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-08 16:08:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(719,719,'Admin Notification (ID: 67058eba90aba)',0,'2024-10-08 21:32:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(720,720,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-10 12:18:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(721,721,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-10 20:26:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(722,722,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-10 21:54:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(723,723,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-11 06:45:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(724,724,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-11 13:51:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(725,725,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-12 23:05:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(726,726,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-14 05:31:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(727,727,'Admin Notification (ID: 67058eba90aba)',0,'2024-10-14 23:29:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(728,728,'Admin Notification (ID: 67058eba90aba)',0,'2024-10-15 17:06:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(729,729,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-16 18:25:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(730,730,'Admin Notification (ID: 67058eba90aba)',0,'2024-10-17 03:22:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(731,731,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-18 09:12:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(732,732,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-19 07:51:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(733,733,'Admin Notification (ID: 67058eba90aba)',0,'2024-10-19 10:43:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(734,734,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-19 20:51:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(735,735,'Admin Notification (ID: 67058eba90aba)',0,'2024-10-22 09:11:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(736,736,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-22 21:34:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(737,737,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-23 17:49:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(738,738,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-24 21:57:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(739,739,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-24 23:06:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(740,740,'Admin Notification (ID: 67058eba90aba)',0,'2024-10-26 19:48:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(741,741,'Admin Notification (ID: 67058eba90aba)',0,'2024-10-27 13:01:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(742,742,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-28 15:07:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(743,743,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-28 21:15:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(744,744,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-28 23:33:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(745,745,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-29 17:08:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(746,746,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-30 19:43:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(747,747,'Admin Notification (ID: 636a8f0129f34)',0,'2024-10-31 16:57:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(748,748,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-01 14:12:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(749,749,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-01 20:59:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(750,750,'Admin Notification (ID: 67058eba90aba)',0,'2024-11-01 21:32:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(751,751,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-02 22:14:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(752,752,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-04 08:01:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(753,753,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-05 11:16:05','WordPress successfully passed the notification email to the sending server.','notification','success'),(754,754,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-06 06:01:05','WordPress successfully passed the notification email to the sending server.','notification','success'),(755,755,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-06 09:46:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(756,756,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-07 00:14:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(757,757,'Admin Notification (ID: 67058eba90aba)',0,'2024-11-07 15:17:05','WordPress successfully passed the notification email to the sending server.','notification','success'),(758,758,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-08 09:32:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(759,759,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-08 15:59:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(760,760,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-10 04:55:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(761,761,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-11 07:10:05','WordPress successfully passed the notification email to the sending server.','notification','success'),(762,762,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-11 21:33:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(763,763,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-11 22:22:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(764,764,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-12 02:46:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(765,765,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-12 20:03:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(766,766,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-13 06:01:43','WordPress successfully passed the notification email to the sending server.','notification','success'),(767,767,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-13 10:44:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(768,768,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-14 05:54:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(769,769,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-14 15:41:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(770,770,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-15 11:55:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(771,771,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-15 19:16:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(772,772,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-16 09:25:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(773,773,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-17 04:07:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(774,774,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-17 20:43:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(775,775,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-23 02:51:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(776,776,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-24 15:49:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(777,777,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-25 06:50:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(778,778,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-25 10:46:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(779,779,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-26 23:26:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(780,780,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-27 02:05:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(781,781,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-27 16:06:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(782,782,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-27 16:45:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(783,783,'Admin Notification (ID: 67058eba90aba)',0,'2024-11-28 04:16:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(784,784,'Admin Notification (ID: 67058eba90aba)',0,'2024-11-28 22:57:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(785,785,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-29 02:25:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(786,786,'Admin Notification (ID: 636a8f0129f34)',0,'2024-11-30 07:24:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(787,787,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-01 18:33:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(788,788,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-02 07:23:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(789,789,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-02 19:18:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(790,790,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-02 20:52:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(791,791,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-02 23:35:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(792,792,'Admin Notification (ID: 67058eba90aba)',0,'2024-12-03 02:52:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(793,793,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-03 16:24:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(794,794,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-05 16:25:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(795,795,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-08 13:11:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(796,796,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-09 15:52:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(797,797,'Admin Notification (ID: 67058eba90aba)',0,'2024-12-10 21:04:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(798,798,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-11 20:46:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(799,799,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-11 22:59:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(800,800,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-12 03:08:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(801,801,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-12 23:26:57','WordPress successfully passed the notification email to the sending server.','notification','success'),(802,802,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-13 05:52:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(803,803,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-13 15:18:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(804,804,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-14 15:14:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(805,805,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-15 09:31:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(806,806,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-15 22:05:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(807,807,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-16 10:44:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(808,808,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-16 11:34:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(809,809,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-16 18:50:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(810,810,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-17 05:46:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(811,811,'Admin Notification (ID: 67058eba90aba)',0,'2024-12-17 13:48:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(812,812,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-17 15:28:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(813,813,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-18 09:40:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(814,814,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-19 19:01:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(815,815,'Admin Notification (ID: 67058eba90aba)',0,'2024-12-19 21:22:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(816,816,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-19 21:49:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(817,817,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-20 03:44:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(818,818,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-20 12:59:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(819,819,'Admin Notification (ID: 67058eba90aba)',0,'2024-12-20 14:14:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(820,820,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-20 22:04:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(821,821,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-21 00:04:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(822,822,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-21 16:42:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(823,823,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-21 20:21:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(824,824,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-23 05:24:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(825,825,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-23 13:51:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(826,826,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-24 05:50:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(827,827,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-25 20:16:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(828,828,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-27 07:05:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(829,829,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-27 22:04:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(830,830,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-28 22:30:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(831,831,'Admin Notification (ID: 636a8f0129f34)',0,'2024-12-30 09:08:23','WordPress successfully passed the notification email to the sending server.','notification','success');
/*!40000 ALTER TABLE `wp_gf_entry_notes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gf_form`
--

DROP TABLE IF EXISTS `wp_gf_form`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_form` (
  `id` mediumint unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(150) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `date_created` datetime NOT NULL,
  `date_updated` datetime DEFAULT NULL,
  `is_active` tinyint NOT NULL DEFAULT '1',
  `is_trash` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_form`
--

LOCK TABLES `wp_gf_form` WRITE;
/*!40000 ALTER TABLE `wp_gf_form` DISABLE KEYS */;
INSERT INTO `wp_gf_form` VALUES (1,'Virtual Experience Inquiry','2022-11-04 16:45:33',NULL,0,0),(2,'General Inquiries','2022-11-08 17:16:49',NULL,1,0),(3,'Private Label Wine Program','2024-10-08 19:57:46',NULL,1,0);
/*!40000 ALTER TABLE `wp_gf_form` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gf_form_meta`
--

DROP TABLE IF EXISTS `wp_gf_form_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_form_meta` (
  `form_id` mediumint unsigned NOT NULL,
  `display_meta` longtext COLLATE utf8mb4_unicode_520_ci,
  `entries_grid_meta` longtext COLLATE utf8mb4_unicode_520_ci,
  `confirmations` longtext COLLATE utf8mb4_unicode_520_ci,
  `notifications` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_form_meta`
--

LOCK TABLES `wp_gf_form_meta` WRITE;
/*!40000 ALTER TABLE `wp_gf_form_meta` DISABLE KEYS */;
INSERT INTO `wp_gf_form_meta` VALUES (1,'{\"title\":\"Virtual Experience Inquiry\",\"description\":\"\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\",\"width\":\"auto\",\"location\":\"bottom\",\"layoutGridColumnSpan\":12},\"fields\":[{\"type\":\"text\",\"id\":7,\"label\":\"Your Name\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"fields\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"displayOnly\":\"\",\"layoutGroupId\":\"ba9cdeb7\"},{\"type\":\"email\",\"id\":3,\"label\":\"Email Address\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"emailConfirmEnabled\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"layoutGroupId\":\"6cd5f77d\"},{\"type\":\"phone\",\"id\":4,\"label\":\"Phone Number\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"phoneFormat\":\"standard\",\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"layoutGroupId\":\"05e29c2f\"},{\"type\":\"select\",\"id\":5,\"label\":\"Which virtual experience are you interested in?\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"choices\":[{\"text\":\"Trivia Experience\",\"value\":\"Trivia Experience\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Blind Tasting Experience\",\"value\":\"Blind Tasting Experience\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Curated Experience\",\"value\":\"Curated Experience\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Blending Experiences\",\"value\":\"Blending Experiences\",\"isSelected\":false,\"price\":\"\"}],\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"enablePrice\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"layoutGroupId\":\"30b82f60\"},{\"type\":\"textarea\",\"id\":6,\"label\":\"Comments \\/ Questions\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"form_id\":\"\",\"useRichTextEditor\":false,\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"layoutGroupId\":\"67191ba1\"}],\"version\":\"2.6.8\",\"id\":1,\"nextFieldId\":8,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"subLabelPlacement\":\"below\",\"requiredIndicator\":\"asterisk\",\"customRequiredIndicator\":\"(Required)\",\"cssClass\":\"dark-form\",\"saveButtonText\":\"Save and Continue Later\",\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleEnd\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\",\"validationSummary\":false,\"deprecated\":\"\",\"saveEnabled\":\"\",\"enableHoneypot\":false,\"enableAnimation\":false,\"markupVersion\":2,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"notifications\":{\"636541adacd9f\":{\"isActive\":true,\"name\":\"Admin Notification\",\"service\":\"wordpress\",\"event\":\"form_submission\",\"to\":\"experiences@meadowcroftwines.com\",\"toType\":\"email\",\"cc\":\"\",\"bcc\":\"\",\"subject\":\"New Submission \\u2013 {form_title}\",\"message\":\"{all_fields}\",\"from\":\"{admin_email}\",\"fromName\":\"Meadowcroft Wines\",\"replyTo\":\"\",\"routing\":null,\"conditionalLogic\":null,\"disableAutoformat\":false,\"enableAttachments\":false,\"id\":\"636541adacd9f\"}},\"confirmations\":{\"636541adad511\":{\"id\":\"636541adad511\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thank you for your Virtual Experiences request. We will be in contact with you very shortly to coordinate!\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}}',NULL,'{\"636541adad511\":{\"id\":\"636541adad511\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thank you for your Virtual Experiences request. We will be in contact with you very shortly to coordinate!\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}','{\"636541adacd9f\":{\"isActive\":true,\"name\":\"Admin Notification\",\"service\":\"wordpress\",\"event\":\"form_submission\",\"to\":\"tastingroom@meadowcroftwines.com\",\"toType\":\"email\",\"cc\":\"\",\"bcc\":\"\",\"subject\":\"New Submission \\u2013 {form_title}\",\"message\":\"{all_fields}\",\"from\":\"{admin_email}\",\"fromName\":\"Meadowcroft Wines\",\"replyTo\":\"\",\"routing\":[[]],\"conditionalLogic\":null,\"disableAutoformat\":false,\"enableAttachments\":false,\"id\":\"636541adacd9f\",\"toEmail\":\"tastingroom@meadowcroftwines.com\",\"toField\":\"\",\"notification_conditional_logic_object\":\"\",\"notification_conditional_logic\":\"0\"}}'),(2,'{\"title\":\"General Inquiries\",\"description\":\"\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\",\"width\":\"auto\",\"location\":\"bottom\",\"layoutGridColumnSpan\":12},\"fields\":[{\"type\":\"text\",\"id\":7,\"label\":\"Your Name\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"formId\":2,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"layoutGroupId\":\"c9abae9e\",\"autocompleteAttribute\":\"\",\"enableAutocomplete\":false},{\"type\":\"email\",\"id\":2,\"label\":\"Email Address\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"formId\":2,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"emailConfirmEnabled\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"layoutGroupId\":\"83c7bbeb\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\"},{\"type\":\"phone\",\"id\":3,\"label\":\"Phone Number\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"phoneFormat\":\"standard\",\"formId\":2,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"layoutGroupId\":\"97ca7fb0\",\"autocompleteAttribute\":\"\",\"enableAutocomplete\":false},{\"type\":\"text\",\"id\":4,\"label\":\"Order Number (If Applicable)\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"formId\":2,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"layoutGroupId\":\"e4af0f63\",\"autocompleteAttribute\":\"\",\"enableAutocomplete\":false},{\"type\":\"select\",\"id\":5,\"label\":\"Type of Inquiry\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"choices\":[{\"text\":\"Wines\",\"value\":\"Wines\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Customer Service\",\"value\":\"Customer Service\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Influencer Inquiry\",\"value\":\"Influencer Inquiry\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Media Inquiry\",\"value\":\"Media Inquiry\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Careers\",\"value\":\"Careers\",\"isSelected\":false,\"price\":\"\"}],\"formId\":2,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"enablePrice\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"layoutGroupId\":\"0f574eb0\",\"autocompleteAttribute\":\"\",\"enableAutocomplete\":false},{\"type\":\"textarea\",\"id\":6,\"label\":\"Your Inquiry\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"formId\":2,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"form_id\":\"\",\"useRichTextEditor\":false,\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"layoutGroupId\":\"fe29c6b7\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\"}],\"version\":\"2.6.9\",\"id\":2,\"nextFieldId\":8,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"subLabelPlacement\":\"below\",\"requiredIndicator\":\"asterisk\",\"customRequiredIndicator\":\"(Required)\",\"cssClass\":\"dark-form\",\"saveButtonText\":\"Save and Continue Later\",\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleEnd\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\",\"validationSummary\":false,\"deprecated\":\"\",\"saveEnabled\":\"\",\"enableHoneypot\":false,\"enableAnimation\":false,\"markupVersion\":2,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\"}',NULL,'{\"636a8f012a66a\":{\"id\":\"636a8f012a66a\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"page\",\"message\":\"Thanks for contacting Meadowcroft Wines! We will get in touch with you shortly.\",\"url\":\"than\",\"pageId\":\"1799\",\"queryString\":\"\",\"event\":\"\",\"disableAutoformat\":true,\"page\":\"1799\",\"conditionalLogic\":[]}}','{\"636a8f0129f34\":{\"id\":\"636a8f0129f34\",\"isActive\":true,\"to\":\"tastingroom@meadowcroftwines.com\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\",\"service\":\"wordpress\",\"toEmail\":\"tastingroom@meadowcroftwines.com\",\"toField\":\"\",\"routing\":null,\"fromName\":\"{Your Name:7}\",\"from\":\"{admin_email}\",\"replyTo\":\"{Email Address:2}\",\"bcc\":\"\",\"disableAutoformat\":false,\"notification_conditional_logic_object\":\"\",\"notification_conditional_logic\":\"0\",\"conditionalLogic\":null,\"cc\":\"\",\"enableAttachments\":false}}'),(3,'{\"fields\":[{\"type\":\"name\",\"id\":1,\"formId\":3,\"label\":\"Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"nameFormat\":\"advanced\",\"inputs\":[{\"id\":\"1.2\",\"label\":\"Prefix\",\"name\":\"\",\"autocompleteAttribute\":\"honorific-prefix\",\"choices\":[{\"text\":\"Dr.\",\"value\":\"Dr.\"},{\"text\":\"Miss\",\"value\":\"Miss\"},{\"text\":\"Mr.\",\"value\":\"Mr.\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\"},{\"text\":\"Ms.\",\"value\":\"Ms.\"},{\"text\":\"Mx.\",\"value\":\"Mx.\"},{\"text\":\"Prof.\",\"value\":\"Prof.\"},{\"text\":\"Rev.\",\"value\":\"Rev.\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":\"1.3\",\"label\":\"First\",\"name\":\"\",\"autocompleteAttribute\":\"given-name\"},{\"id\":\"1.4\",\"label\":\"Middle\",\"name\":\"\",\"autocompleteAttribute\":\"additional-name\",\"isHidden\":true},{\"id\":\"1.6\",\"label\":\"Last\",\"name\":\"\",\"autocompleteAttribute\":\"family-name\"},{\"id\":\"1.8\",\"label\":\"Suffix\",\"name\":\"\",\"autocompleteAttribute\":\"honorific-suffix\",\"isHidden\":true}],\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"name\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"f483a771\",\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false},{\"type\":\"email\",\"id\":3,\"formId\":3,\"label\":\"Email\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"autocompleteAttribute\":\"email\",\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"email\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":\"\",\"emailConfirmEnabled\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"14bf95a5\",\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false},{\"type\":\"phone\",\"id\":4,\"formId\":3,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"phoneFormat\":\"international\",\"autocompleteAttribute\":\"tel\",\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"phone\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"b917d226\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"},{\"type\":\"radio\",\"id\":5,\"formId\":3,\"label\":\"Project Type\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"validateState\":true,\"inputs\":null,\"choices\":[{\"text\":\"Business\\/Corporate Gifting\",\"value\":\"Business\\/Corporate Gifting\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Wedding Gifts\",\"value\":\"Wedding Gifts\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Event Planner\",\"value\":\"Event Planner\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Other\",\"value\":\"Other\",\"isSelected\":false,\"price\":\"\"}],\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"radio\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":\"\",\"enableOtherChoice\":\"\",\"enablePrice\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"a76f382a\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"},{\"type\":\"textarea\",\"id\":6,\"formId\":3,\"label\":\"Project Details (Number of Bottles, Date Required, etc.)\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"textarea\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":\"\",\"form_id\":\"\",\"useRichTextEditor\":false,\"enableEnhancedUI\":0,\"layoutGroupId\":\"a1006511\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"errors\":[],\"checkboxLabel\":\"\",\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"}],\"button\":{\"type\":\"text\",\"text\":\"\",\"imageUrl\":\"\",\"width\":\"auto\",\"location\":\"bottom\",\"layoutGridColumnSpan\":12},\"title\":\"Private Label Wine Program\",\"description\":\"\",\"version\":\"2.8.18\",\"id\":3,\"markupVersion\":2,\"nextFieldId\":7,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null}',NULL,'{\"67058eba91e26\":{\"id\":\"67058eba91e26\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thank you for contacting Meadowcroft Wines about our gifting program.\\u00a0 We offer all types of custom and personalized wine gifts.\\u00a0 We will reply to this message as soon as we can.\\u00a0 Cheers!\",\"url\":\"\",\"pageId\":\"\",\"queryString\":\"\",\"event\":\"\",\"disableAutoformat\":false,\"page\":\"\",\"conditionalLogic\":[]}}','{\"67058eba90aba\":{\"id\":\"67058eba90aba\",\"isActive\":true,\"to\":\"tastingroom@meadowcroftwines.com\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New Private Label Program Submission\",\"message\":\"{all_fields}\",\"service\":\"wordpress\",\"toEmail\":\"tastingroom@meadowcroftwines.com\",\"toField\":\"\",\"routing\":null,\"fromName\":\"\",\"from\":\"tastingroom@meadowcroftwines.com\",\"replyTo\":\"\",\"bcc\":\"\",\"disableAutoformat\":false,\"notification_conditional_logic_object\":\"\",\"notification_conditional_logic\":\"0\",\"conditionalLogic\":null,\"cc\":\"\",\"enableAttachments\":false}}');
/*!40000 ALTER TABLE `wp_gf_form_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gf_form_revisions`
--

DROP TABLE IF EXISTS `wp_gf_form_revisions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_form_revisions` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint unsigned NOT NULL,
  `display_meta` longtext COLLATE utf8mb4_unicode_520_ci,
  `date_created` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `date_created` (`date_created`),
  KEY `form_id` (`form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_form_revisions`
--

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

--
-- Table structure for table `wp_gf_form_view`
--

DROP TABLE IF EXISTS `wp_gf_form_view`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_form_view` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint unsigned NOT NULL,
  `date_created` datetime NOT NULL,
  `ip` char(15) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `count` mediumint unsigned NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `date_created` (`date_created`),
  KEY `form_id` (`form_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1150 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_form_view`
--

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

--
-- Table structure for table `wp_gf_rest_api_keys`
--

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

--
-- Dumping data for table `wp_gf_rest_api_keys`
--

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

--
-- Table structure for table `wp_irrp_redirection_logs`
--

DROP TABLE IF EXISTS `wp_irrp_redirection_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_irrp_redirection_logs` (
  `id` int NOT NULL AUTO_INCREMENT,
  `redirect_id` int NOT NULL,
  `request_url` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `response_url` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `request_date` datetime NOT NULL,
  `request_timestamp` int NOT NULL,
  `request_code` smallint NOT NULL,
  `response_code` smallint NOT NULL,
  `log_code` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `count` int DEFAULT '1',
  `extras` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`id`),
  KEY `redirect_id` (`redirect_id`),
  KEY `request_timestamp` (`request_timestamp`),
  KEY `request_code` (`request_code`),
  KEY `response_code` (`response_code`),
  KEY `log_code` (`log_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_irrp_redirection_logs`
--

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

--
-- Table structure for table `wp_irrp_redirectionmeta`
--

DROP TABLE IF EXISTS `wp_irrp_redirectionmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_irrp_redirectionmeta` (
  `meta_id` int NOT NULL AUTO_INCREMENT,
  `redirect_id` int NOT NULL,
  `meta_key` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `meta_value` text COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `redirect_id` (`redirect_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_irrp_redirectionmeta`
--

LOCK TABLES `wp_irrp_redirectionmeta` WRITE;
/*!40000 ALTER TABLE `wp_irrp_redirectionmeta` DISABLE KEYS */;
INSERT INTO `wp_irrp_redirectionmeta` VALUES (1,1,'ignore_trailing_slashes','1'),(2,1,'ignore_parameters','1'),(3,1,'ignore_case','1'),(4,1,'pass_on_parameters',''),(5,1,'redirect_code','301'),(6,1,'inclusion_exclusion_rules',''),(7,1,'redirect_options','are_case'),(8,1,'redirection_http_headers',''),(9,1,'rules_group1','a:2:{s:7:\"enabled\";s:1:\"0\";s:10:\"login_info\";s:0:\"\";}'),(10,1,'rules_group2','a:3:{s:7:\"enabled\";s:1:\"0\";s:4:\"role\";s:0:\"\";s:9:\"role_name\";s:2:\"[]\";}'),(11,1,'rules_group3','a:4:{s:7:\"enabled\";s:1:\"0\";s:8:\"referrer\";s:0:\"\";s:14:\"referrer_value\";s:0:\"\";s:14:\"referrer_regex\";s:1:\"0\";}'),(12,1,'rules_group4','a:4:{s:7:\"enabled\";s:1:\"0\";s:5:\"agent\";s:0:\"\";s:11:\"agent_value\";s:0:\"\";s:11:\"agent_regex\";s:1:\"0\";}'),(13,1,'rules_group5','a:5:{s:7:\"enabled\";s:1:\"0\";s:6:\"cookie\";s:0:\"\";s:11:\"cookie_name\";s:0:\"\";s:12:\"cookie_value\";s:0:\"\";s:12:\"cookie_regex\";s:1:\"0\";}'),(14,1,'rules_group6','a:3:{s:7:\"enabled\";s:1:\"0\";s:2:\"ip\";s:0:\"\";s:8:\"ip_value\";s:0:\"\";}'),(15,1,'rules_group7','a:3:{s:7:\"enabled\";s:1:\"0\";s:6:\"server\";s:0:\"\";s:12:\"server_value\";s:0:\"\";}'),(16,1,'rules_group8','a:3:{s:7:\"enabled\";s:1:\"0\";s:8:\"language\";s:0:\"\";s:14:\"language_value\";s:0:\"\";}');
/*!40000 ALTER TABLE `wp_irrp_redirectionmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_irrp_redirections`
--

DROP TABLE IF EXISTS `wp_irrp_redirections`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_irrp_redirections` (
  `id` int NOT NULL AUTO_INCREMENT,
  `from` varchar(250) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `match` varchar(250) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `to` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `status` tinyint(1) DEFAULT '1',
  `timestamp` bigint NOT NULL,
  `type` varchar(25) COLLATE utf8mb4_unicode_520_ci DEFAULT 'redirection',
  PRIMARY KEY (`id`),
  KEY `from` (`from`),
  KEY `match` (`match`),
  KEY `status` (`status`),
  KEY `timestamp` (`timestamp`),
  KEY `type` (`type`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_irrp_redirections`
--

LOCK TABLES `wp_irrp_redirections` WRITE;
/*!40000 ALTER TABLE `wp_irrp_redirections` DISABLE KEYS */;
INSERT INTO `wp_irrp_redirections` VALUES (1,'https://www.meadowcroftwines.com/wp-content/uploads/2022/05/Meadowcroft-MC_DRYCREEKZIN_20_Techsheet.pdf','/wp-content/uploads/2022/05/Meadowcroft-MC_DRYCREEKZIN_20_Techsheet.pdf','https://www.meadowcroftwines.com/trade-and-media/',1,1704852178,'redirection');
/*!40000 ALTER TABLE `wp_irrp_redirections` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_irrp_referer_urls`
--

DROP TABLE IF EXISTS `wp_irrp_referer_urls`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_irrp_referer_urls` (
  `id` int NOT NULL AUTO_INCREMENT,
  `user_id` int NOT NULL,
  `url` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `timestamp` int NOT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`),
  KEY `timestamp` (`timestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_irrp_referer_urls`
--

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

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

DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
  `link_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint unsigned NOT NULL DEFAULT '1',
  `link_rating` int NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

--
-- Table structure for table `wp_mec_attendees`
--

DROP TABLE IF EXISTS `wp_mec_attendees`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_mec_attendees` (
  `attendee_id` bigint NOT NULL AUTO_INCREMENT,
  `post_id` bigint NOT NULL,
  `event_id` bigint NOT NULL,
  `occurrence` int NOT NULL,
  `email` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `first_name` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `last_name` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `data` text COLLATE utf8mb4_unicode_520_ci,
  `count` int DEFAULT '1',
  `verification` int DEFAULT '0',
  `confirmation` int DEFAULT '0',
  PRIMARY KEY (`attendee_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_mec_attendees`
--

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

--
-- Table structure for table `wp_mec_booking_attendees`
--

DROP TABLE IF EXISTS `wp_mec_booking_attendees`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_mec_booking_attendees` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `mec_booking_id` int unsigned NOT NULL,
  `user_id` int unsigned NOT NULL,
  `ticket_id` int unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `mec_booking_id` (`mec_booking_id`),
  CONSTRAINT `mec_booking_id` FOREIGN KEY (`mec_booking_id`) REFERENCES `wp_mec_bookings` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_mec_booking_attendees`
--

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

--
-- Table structure for table `wp_mec_bookings`
--

DROP TABLE IF EXISTS `wp_mec_bookings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_mec_bookings` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `booking_id` int unsigned NOT NULL,
  `user_id` int unsigned DEFAULT NULL,
  `transaction_id` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `event_id` int unsigned NOT NULL,
  `ticket_ids` varchar(655) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `seats` int unsigned NOT NULL DEFAULT '0',
  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'pending',
  `confirmed` tinyint NOT NULL DEFAULT '0',
  `verified` tinyint NOT NULL DEFAULT '0',
  `all_occurrences` tinyint NOT NULL DEFAULT '0',
  `date` datetime NOT NULL,
  `timestamp` int unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `event_id` (`event_id`,`ticket_ids`,`status`,`confirmed`,`verified`,`date`),
  KEY `booking_id` (`booking_id`),
  KEY `timestamp` (`timestamp`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_mec_bookings`
--

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

--
-- Table structure for table `wp_mec_dates`
--

DROP TABLE IF EXISTS `wp_mec_dates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_mec_dates` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `post_id` int NOT NULL,
  `dstart` date NOT NULL,
  `dend` date NOT NULL,
  `tstart` int unsigned NOT NULL DEFAULT '0',
  `tend` int unsigned NOT NULL DEFAULT '0',
  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
  `public` int unsigned NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `post_id` (`post_id`),
  KEY `tstart` (`tstart`),
  KEY `tend` (`tend`)
) ENGINE=InnoDB AUTO_INCREMENT=71807 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_mec_dates`
--

LOCK TABLES `wp_mec_dates` WRITE;
/*!40000 ALTER TABLE `wp_mec_dates` DISABLE KEYS */;
INSERT INTO `wp_mec_dates` VALUES (71805,3827,'2024-09-29','2024-09-29',1727607600,1727614800,'publish',1),(71806,3695,'2024-04-27','2024-04-27',1714215600,1714228200,'publish',1);
/*!40000 ALTER TABLE `wp_mec_dates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_mec_events`
--

DROP TABLE IF EXISTS `wp_mec_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_mec_events` (
  `id` int NOT NULL AUTO_INCREMENT,
  `post_id` int NOT NULL,
  `start` date NOT NULL,
  `end` date NOT NULL,
  `repeat` tinyint NOT NULL DEFAULT '0',
  `rinterval` varchar(10) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `year` varchar(80) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `month` varchar(80) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `day` varchar(80) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `week` varchar(80) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `weekday` varchar(80) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `weekdays` varchar(80) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `days` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `not_in_days` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `time_start` int NOT NULL DEFAULT '0',
  `time_end` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `ID` (`id`),
  UNIQUE KEY `post_id` (`post_id`),
  KEY `start` (`start`,`end`,`repeat`,`rinterval`,`year`,`month`,`day`,`week`,`weekday`,`weekdays`,`time_start`,`time_end`)
) ENGINE=InnoDB AUTO_INCREMENT=104 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_mec_events`
--

LOCK TABLES `wp_mec_events` WRITE;
/*!40000 ALTER TABLE `wp_mec_events` DISABLE KEYS */;
INSERT INTO `wp_mec_events` VALUES (90,1586,'2023-01-21','2023-01-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',36000,61200),(91,1581,'2023-02-04','2023-02-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',46800,54000),(102,3695,'2024-04-27','2024-04-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',39600,52200),(103,3827,'2024-09-29','2024-09-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',39600,46800);
/*!40000 ALTER TABLE `wp_mec_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_mec_occurrences`
--

DROP TABLE IF EXISTS `wp_mec_occurrences`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_mec_occurrences` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `post_id` int unsigned NOT NULL,
  `occurrence` int unsigned NOT NULL,
  `params` text COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`id`),
  KEY `post_id` (`post_id`),
  KEY `occurrence` (`occurrence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_mec_occurrences`
--

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

--
-- Table structure for table `wp_mec_users`
--

DROP TABLE IF EXISTS `wp_mec_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_mec_users` (
  `id` int NOT NULL AUTO_INCREMENT,
  `first_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `last_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `email` varchar(127) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `reg` text COLLATE utf8mb4_unicode_520_ci,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  UNIQUE KEY `email` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_mec_users`
--

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

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

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

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

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','https://www.meadowcroftwines.com','yes'),(2,'home','https://www.meadowcroftwines.com','yes'),(3,'blogname','Meadowcroft Wines','yes'),(4,'blogdescription','Award-winning wines from Napa &amp; Sonoma','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','info@wineworks.co','yes'),(7,'start_of_week','0','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','12','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','closed','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','','yes'),(22,'posts_per_page','12','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:14:{i:0;s:15:\"worker/init.php\";i:1;s:29:\"gravityforms/gravityforms.php\";i:2;s:57:\"acf-content-analysis-for-yoast-seo/yoast-acf-analysis.php\";i:3;s:21:\"age-gate/age-gate.php\";i:4;s:33:\"classic-editor/classic-editor.php\";i:5;s:43:\"commerce7-connect-pro/commerce7-connect.php\";i:6;s:47:\"current-template-name/current-template-name.php\";i:7;s:39:\"eps-301-redirects/eps-301-redirects.php\";i:8;s:27:\"git-updater/git-updater.php\";i:10;s:37:\"post-types-order/post-types-order.php\";i:11;s:58:\"responsive-accordion-and-collapse/responsive-accordion.php\";i:12;s:60:\"schema-and-structured-data-for-wp/structured-data-for-wp.php\";i:13;s:24:\"wordpress-seo/wp-seo.php\";i:14;s:60:\"wp-slick-slider-and-image-carousel/wp-slick-image-slider.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:5:{i:0;s:81:\"/nas/content/live/meadowcroftca/wp-content/themes/wp-spectratheme-child/style.css\";i:2;s:82:\"/nas/content/live/meadowcroftca/wp-content/themes/wp-spectratheme/single-brand.php\";i:3;s:75:\"/nas/content/live/meadowcroftca/wp-content/themes/wp-spectratheme/style.css\";i:4;s:87:\"/nas/content/live/meadowcroftca/wp-content/themes/wp-spectratheme-child/scss/style.scss\";i:5;s:83:\"/nas/content/live/meadowcroftca/wp-content/themes/wp-spectratheme-child/css/c7c.css\";}','no'),(40,'template','wp-spectratheme','yes'),(41,'stylesheet','wp-spectratheme-child','yes'),(44,'comment_registration','','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','58975','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'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'),(79,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:10:{s:33:\"classic-editor/classic-editor.php\";a:2:{i:0;s:14:\"Classic_Editor\";i:1;s:9:\"uninstall\";}s:27:\"redirection/redirection.php\";a:2:{i:0;s:17:\"Redirection_Admin\";i:1;s:16:\"plugin_uninstall\";}s:27:\"wp-pagenavi/wp-pagenavi.php\";s:14:\"__return_false\";s:28:\"wp-site-migrate/wpengine.php\";a:2:{i:0;s:11:\"WPEWPAction\";i:1;s:9:\"uninstall\";}s:27:\"autoupdater/autoupdater.php\";a:2:{i:0;s:21:\"AutoUpdater_Installer\";i:1;s:13:\"hookUninstall\";}s:21:\"age-gate/age-gate.php\";s:18:\"age_gate_uninstall\";s:20:\"worker/functions.php\";s:13:\"mwp_uninstall\";s:24:\"wordpress-seo/wp-seo.php\";s:14:\"__return_false\";s:60:\"schema-and-structured-data-for-wp/structured-data-for-wp.php\";s:18:\"saswp_on_uninstall\";s:45:\"redirect-redirection/redirect-redirection.php\";a:2:{i:0;s:15:\"Account\\Account\";i:1;s:25:\"onUninstallPluginListener\";}}','no'),(82,'timezone_string','America/Vancouver','yes'),(83,'page_for_posts','637','yes'),(84,'page_on_front','412','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','38590','yes'),(92,'wp_user_roles','a:10:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:152:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;s:16:\"amelia_read_menu\";b:1;s:21:\"amelia_read_dashboard\";b:1;s:20:\"amelia_read_calendar\";b:1;s:24:\"amelia_read_appointments\";b:1;s:21:\"amelia_read_employees\";b:1;s:20:\"amelia_read_services\";b:1;s:21:\"amelia_read_locations\";b:1;s:19:\"amelia_read_coupons\";b:1;s:21:\"amelia_read_customers\";b:1;s:19:\"amelia_read_finance\";b:1;s:25:\"amelia_read_notifications\";b:1;s:21:\"amelia_read_customize\";b:1;s:20:\"amelia_read_settings\";b:1;s:27:\"amelia_read_others_calendar\";b:1;s:31:\"amelia_read_others_appointments\";b:1;s:28:\"amelia_read_others_employees\";b:1;s:22:\"amelia_write_dashboard\";b:1;s:21:\"amelia_write_calendar\";b:1;s:25:\"amelia_write_appointments\";b:1;s:22:\"amelia_write_employees\";b:1;s:21:\"amelia_write_services\";b:1;s:22:\"amelia_write_locations\";b:1;s:20:\"amelia_write_coupons\";b:1;s:22:\"amelia_write_customers\";b:1;s:20:\"amelia_write_finance\";b:1;s:26:\"amelia_write_notifications\";b:1;s:22:\"amelia_write_customize\";b:1;s:21:\"amelia_write_settings\";b:1;s:19:\"amelia_write_status\";b:1;s:28:\"amelia_write_others_calendar\";b:1;s:32:\"amelia_write_others_appointments\";b:1;s:29:\"amelia_write_others_employees\";b:1;s:27:\"amelia_write_others_finance\";b:1;s:23:\"amelia_delete_dashboard\";b:1;s:22:\"amelia_delete_calendar\";b:1;s:26:\"amelia_delete_appointments\";b:1;s:23:\"amelia_delete_employees\";b:1;s:22:\"amelia_delete_services\";b:1;s:23:\"amelia_delete_locations\";b:1;s:21:\"amelia_delete_coupons\";b:1;s:23:\"amelia_delete_customers\";b:1;s:21:\"amelia_delete_finance\";b:1;s:27:\"amelia_delete_notifications\";b:1;s:23:\"amelia_delete_customize\";b:1;s:22:\"amelia_delete_settings\";b:1;s:32:\"amelia_write_status_appointments\";b:1;s:18:\"amelia_read_events\";b:1;s:25:\"amelia_read_custom_fields\";b:1;s:27:\"amelia_read_others_settings\";b:1;s:28:\"amelia_read_others_customers\";b:1;s:19:\"amelia_write_events\";b:1;s:26:\"amelia_write_custom_fields\";b:1;s:28:\"amelia_write_others_settings\";b:1;s:26:\"amelia_write_others_events\";b:1;s:29:\"amelia_write_others_dashboard\";b:1;s:20:\"amelia_delete_events\";b:1;s:27:\"amelia_delete_custom_fields\";b:1;s:26:\"amelia_write_status_events\";b:1;s:30:\"amelia_write_time_appointments\";b:1;s:22:\"ag_manage_restrictions\";b:1;s:20:\"ag_manage_appearance\";b:1;s:18:\"ag_manage_advanced\";b:1;s:19:\"ag_manage_messaging\";b:1;s:18:\"ag_manage_settings\";b:1;s:33:\"ag_manage_set_content_restriction\";b:1;s:28:\"ag_manage_set_content_bypass\";b:1;s:24:\"ag_manage_set_custom_age\";b:1;s:17:\"ag_manage_content\";b:1;s:21:\"ag_manage_set_content\";b:1;s:15:\"ag_manage_tools\";b:1;s:9:\"ag_export\";b:1;s:9:\"ag_import\";b:1;s:13:\"ag_hard_reset\";b:1;s:12:\"mec_bookings\";b:1;s:15:\"mec_add_booking\";b:1;s:11:\"mec_coupons\";b:1;s:10:\"mec_report\";b:1;s:17:\"mec_import_export\";b:1;s:12:\"mec_settings\";b:1;s:14:\"mec_shortcodes\";b:1;s:20:\"wpseo_manage_options\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:49:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;s:33:\"ag_manage_set_content_restriction\";b:1;s:28:\"ag_manage_set_content_bypass\";b:1;s:24:\"ag_manage_set_custom_age\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:18:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:23:\"edit_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;s:33:\"ag_manage_set_content_restriction\";b:1;s:28:\"ag_manage_set_content_bypass\";b:1;s:24:\"ag_manage_set_custom_age\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:10:{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:23:\"edit_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:33:\"ag_manage_set_content_restriction\";b:1;s:28:\"ag_manage_set_content_bypass\";b:1;s:24:\"ag_manage_set_custom_age\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:17:\"wpamelia-customer\";a:2:{s:4:\"name\";s:15:\"Amelia Customer\";s:12:\"capabilities\";a:7:{s:4:\"read\";b:1;s:16:\"amelia_read_menu\";b:1;s:20:\"amelia_read_calendar\";b:1;s:24:\"amelia_read_appointments\";b:1;s:18:\"amelia_read_events\";b:1;s:32:\"amelia_write_status_appointments\";b:1;s:30:\"amelia_write_time_appointments\";b:1;}}s:17:\"wpamelia-provider\";a:2:{s:4:\"name\";s:15:\"Amelia Employee\";s:12:\"capabilities\";a:15:{s:4:\"read\";b:1;s:16:\"amelia_read_menu\";b:1;s:20:\"amelia_read_calendar\";b:1;s:24:\"amelia_read_appointments\";b:1;s:18:\"amelia_read_events\";b:1;s:21:\"amelia_read_employees\";b:1;s:28:\"amelia_read_others_customers\";b:1;s:22:\"amelia_write_employees\";b:1;s:32:\"amelia_write_status_appointments\";b:1;s:26:\"amelia_write_status_events\";b:1;s:30:\"amelia_write_time_appointments\";b:1;s:32:\"amelia_write_others_appointments\";b:0;s:25:\"amelia_write_appointments\";b:1;s:19:\"amelia_write_events\";b:1;s:26:\"amelia_write_others_events\";b:0;}}s:16:\"wpamelia-manager\";a:2:{s:4:\"name\";s:14:\"Amelia Manager\";s:12:\"capabilities\";a:38:{s:4:\"read\";b:1;s:16:\"amelia_read_menu\";b:1;s:21:\"amelia_read_dashboard\";b:1;s:20:\"amelia_read_calendar\";b:1;s:24:\"amelia_read_appointments\";b:1;s:18:\"amelia_read_events\";b:1;s:21:\"amelia_read_employees\";b:1;s:20:\"amelia_read_services\";b:1;s:21:\"amelia_read_locations\";b:1;s:19:\"amelia_read_coupons\";b:1;s:21:\"amelia_read_customers\";b:1;s:19:\"amelia_read_finance\";b:1;s:25:\"amelia_read_notifications\";b:1;s:27:\"amelia_read_others_calendar\";b:1;s:31:\"amelia_read_others_appointments\";b:1;s:28:\"amelia_read_others_employees\";b:1;s:28:\"amelia_read_others_customers\";b:1;s:22:\"amelia_write_dashboard\";b:1;s:21:\"amelia_write_calendar\";b:1;s:25:\"amelia_write_appointments\";b:1;s:19:\"amelia_write_events\";b:1;s:22:\"amelia_write_employees\";b:1;s:21:\"amelia_write_services\";b:1;s:22:\"amelia_write_locations\";b:1;s:20:\"amelia_write_coupons\";b:1;s:22:\"amelia_write_customers\";b:1;s:20:\"amelia_write_finance\";b:1;s:26:\"amelia_write_notifications\";b:1;s:28:\"amelia_write_others_calendar\";b:1;s:32:\"amelia_write_others_appointments\";b:1;s:29:\"amelia_write_others_employees\";b:1;s:26:\"amelia_write_others_events\";b:1;s:27:\"amelia_write_others_finance\";b:1;s:29:\"amelia_write_others_dashboard\";b:1;s:32:\"amelia_write_status_appointments\";b:1;s:26:\"amelia_write_status_events\";b:1;s:30:\"amelia_write_time_appointments\";b:1;s:12:\"upload_files\";b:1;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:51:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;s:33:\"ag_manage_set_content_restriction\";b:1;s:28:\"ag_manage_set_content_bypass\";b:1;s:24:\"ag_manage_set_custom_age\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;s:23:\"view_site_health_checks\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:49:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;s:33:\"ag_manage_set_content_restriction\";b:1;s:28:\"ag_manage_set_content_bypass\";b:1;s:24:\"ag_manage_set_custom_age\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}}','yes'),(93,'fresh_site','0','off'),(94,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'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'),(96,'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'),(97,'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'),(98,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(99,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:18:\"mec-single-sidebar\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(100,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'cron','a:23:{i:1735822823;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1735823381;a:1:{s:27:\"wpseo_indexable_index_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:15:\"fifteen_minutes\";s:4:\"args\";a:0:{}s:8:\"interval\";i:900;}}}i:1735835503;a:1:{s:22:\"redirection_log_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:1735836249;a:1:{s:17:\"gravityforms_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1735839549;a:2:{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;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1735842423;a:1:{s:15:\"mec_maintenance\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1735845153;a:1:{s:48:\"WPEngineSecurityAuditor_Scans_fingerprint_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1735845756;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1735847204;a:1:{s:31:\"wpseo_permalink_structure_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1735847750;a:1:{s:46:\"WPEngineSecurityAuditor_Scans_fingerprint_core\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1735850231;a:1:{s:24:\"fs_data_sync_git-updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1735851623;a:4:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}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: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;}}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;}}}i:1735851631;a:1:{s:39:\"WPEngineSecurityAuditor_Scans_scheduler\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1735851865;a:1:{s:23:\"gu_delete_access_tokens\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1735856055;a:1:{s:40:\"current-template-name_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1735858047;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1735858896;a:2:{s:24:\"tribe_common_log_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:16:\"tribe_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1735859385;a:1:{s:22:\"mwp_update_public_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1735860729;a:1:{s:13:\"wpseo-reindex\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1736067660;a:1:{s:30:\"git-updater_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1736197223;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1736235641;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','on'),(111,'widget_wpe_powered_by_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'bodhi_svgs_plugin_version','2.3.15','yes'),(113,'theme_mods_twentyseventeen','a:3:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1541459277;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}s:18:\"nav_menu_locations\";a:0:{}}','no'),(123,'wpe_notices','a:0:{}','yes'),(124,'wpe_notices_ttl','1634064990','yes'),(139,'current_theme','Spectra Template Child','yes'),(140,'theme_mods_c7t','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:6:\"footer\";i:5;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1540852232;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','no'),(141,'theme_switched','','yes'),(142,'acf_version','6.2.5','yes'),(147,'recently_activated','a:0:{}','off'),(149,'recipe_category_children','a:0:{}','yes'),(222,'WPLANG','','yes'),(234,'options_tenant_id','meadowcroft-wines','no'),(235,'_options_tenant_id','field_5bbe126fdd578','no'),(236,'options_logo','1034','off'),(237,'_options_logo','field_5bb7cec42be5c','no'),(238,'options_logo_light','1034','off'),(239,'_options_logo_light','field_5bbd041119690','no'),(240,'options_favicon','1036','no'),(241,'_options_favicon','field_5bb7ced02be5d','no'),(242,'options_apple_touch_icon','1037','no'),(243,'_options_apple_touch_icon','field_5bb7cf8aba709','no'),(244,'options_winery_address_street','23574 Arnold Dr.','no'),(245,'_options_winery_address_street','field_5bbd255c2889d','no'),(246,'options_winery_address_city','Sonoma','no'),(247,'_options_winery_address_city','field_5bbd25852889e','no'),(248,'options_winery_address_state','CA','no'),(249,'_options_winery_address_state','field_5bbd25932889f','no'),(250,'options_winery_address_postcode','95476','no'),(251,'_options_winery_address_postcode','field_5bbd2eee240e0','no'),(252,'options_winery_address_-_google_maps_link','https://g.page/meadowcroft_Wines?share','no'),(253,'_options_winery_address_-_google_maps_link','field_5bbd25a7288a0','no'),(254,'options_phone_number_link','7079344090','no'),(255,'_options_phone_number_link','field_5bbd25d7288a4','no'),(256,'options_phone_number_formatted','(707) 934 - 4090','no'),(257,'_options_phone_number_formatted','field_5bbd25f6288a5','no'),(258,'options_email_address','tastingroom@meadowcroftwines.com','no'),(259,'_options_email_address','field_5be36164f4e4cab','no'),(260,'options_facebook','https://www.facebook.com/drinkmeadowcroftwines','no'),(261,'_options_facebook','field_5bbe14565e07a','no'),(262,'options_twitter','','no'),(263,'_options_twitter','field_5bbe14675e07b','no'),(264,'options_instagram','https://www.instagram.com/meadowcroft_wines/','no'),(265,'_options_instagram','field_5bbe14725e07c','no'),(266,'options_pinterest','','no'),(267,'_options_pinterest','field_5bbe14795e07d','no'),(268,'options_tripadvisor','','no'),(269,'_options_tripadvisor','field_5bbe147f5e07e','no'),(270,'options_yelp','','no'),(271,'_options_yelp','field_5bbe14965e07f','no'),(272,'options_youtube','','no'),(273,'_options_youtube','field_5bbe149a5e080','no'),(274,'options_vimeo','','no'),(275,'_options_vimeo','field_5bbe149b5e081','no'),(276,'options_header_type','non-centered','no'),(277,'_options_header_type','field_5bb7bcd0fa498','no'),(278,'options_header_overlay','0','no'),(279,'_options_header_overlay','field_5bbe10ceed813','no'),(280,'options_footer_type','1','no'),(281,'_options_footer_type','field_5bb7e436522dd','no'),(282,'options_404_page_title','<div style=\"text-align: center;\">404 PAGE NOT FOUND</div>','no'),(283,'_options_404_page_title','field_5bc610318fbd3','no'),(284,'options_404_page_content','&nbsp;\r\n<p style=\"text-align: center;\">It seems we can’t find what you’re looking for.</p>\r\n<p style=\"text-align: center;\">Please try again or go to the <a href=\"/\">homepage</a>.</p>\r\n&nbsp;','no'),(285,'_options_404_page_content','field_5bc610378fbd4','no'),(287,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','off'),(446,'theme_mods_spectra','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:6:\"footer\";i:5;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1541021102;s:4:\"data\";a:1:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','no'),(488,'options_access_denied_url','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:14:\"/secure-login/\";s:6:\"target\";s:0:\"\";}','no'),(489,'_options_access_denied_url','field_5bd8bff931038','no'),(490,'options_club_only_page_-_access_denied_url','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:22:\"/secure-access-denied/\";s:6:\"target\";s:0:\"\";}','no'),(491,'_options_club_only_page_-_access_denied_url','field_5bd8c0533103a','no'),(508,'show_comments_cookies_opt_in','','yes'),(530,'github_updater_api_key','d0eda020c27b1492ef6450767eaf704a','no'),(569,'theme_mods_wp-spectratheme','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:6:\"footer\";i:5;s:4:\"main\";i:6;}s:18:\"custom_css_post_id\";i:604;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1712255239;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:18:\"mec-single-sidebar\";a:0:{}}}}','no'),(702,'theme_mods_wp-spectratheme2','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:6:\"footer\";i:5;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1541458163;s:4:\"data\";a:1:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','no'),(704,'theme_mods_twentyfifteen','a:1:{s:18:\"custom_css_post_id\";i:-1;}','no'),(709,'redirection_options','a:18:{s:7:\"support\";b:0;s:5:\"token\";s:32:\"dc38675afa8f7260e1c31cbcf3248f94\";s:12:\"monitor_post\";i:0;s:13:\"monitor_types\";a:0:{}s:19:\"associated_redirect\";s:0:\"\";s:11:\"auto_target\";s:0:\"\";s:15:\"expire_redirect\";i:7;s:10:\"expire_404\";i:7;s:7:\"modules\";a:0:{}s:10:\"newsletter\";b:0;s:14:\"redirect_cache\";i:1;s:10:\"ip_logging\";i:1;s:13:\"last_group_id\";i:1;s:8:\"rest_api\";i:0;s:5:\"https\";b:0;s:7:\"version\";s:5:\"3.6.1\";s:16:\"log_redirections\";i:0;s:8:\"log_404s\";i:0;}','yes'),(710,'redirection_version','2.4','yes'),(2050,'options_c7_email_address','wine-works-template-access','off'),(2051,'_options_c7_email_address','field_5be36164f6e4cab','no'),(2052,'options_c7_password','YLFvVUBcpSYCYmWIPyxk9zjvjP1kET63uXe3jp7md3m0HMUWlUrqAqKjns4vTNJ5','off'),(2053,'_options_c7_password','field_5be362d6f6e4dab','no'),(2054,'options_header_bar_toggle','0','no'),(2055,'_options_header_bar_toggle','field_5bd9f83105b5b','no'),(2056,'options_footer_bar_toggle','0','no'),(2057,'_options_footer_bar_toggle','field_5bd9f8ce05b5e','no'),(2082,'wp_page_for_privacy_policy','0','yes'),(2083,'db_upgraded','','on'),(4000,'wpseo','a:105:{s:8:\"tracking\";b:0;s:16:\"toggled_tracking\";b:0;s:22:\"license_server_version\";b:0;s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:1;s:19:\"indexing_first_time\";b:1;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:21:\"post_type_made_public\";s:29:\"indexables_indexing_completed\";b:1;s:13:\"index_now_key\";s:0:\"\";s:7:\"version\";s:4:\"24.1\";s:16:\"previous_version\";s:4:\"24.0\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:0;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:34:\"inclusive_language_analysis_active\";b:0;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:16:\"enable_index_now\";b:1;s:19:\"enable_ai_generator\";b:0;s:22:\"ai_enabled_pre_default\";b:0;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1552503275;s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:0:{}s:20:\"semrush_country_code\";s:2:\"us\";s:19:\"permalink_structure\";s:12:\"/%postname%/\";s:8:\"home_url\";s:32:\"https://www.meadowcroftwines.com\";s:18:\"dynamic_permalinks\";b:0;s:17:\"category_base_url\";s:0:\"\";s:12:\"tag_base_url\";s:0:\"\";s:21:\"custom_taxonomy_slugs\";a:3:{s:23:\"wpsisac_slider-category\";s:23:\"wpsisac_slider-category\";s:15:\"recipe_category\";s:15:\"recipe_category\";s:8:\"platform\";s:8:\"platform\";}s:29:\"enable_enhanced_slack_sharing\";b:1;s:23:\"enable_metabox_insights\";b:1;s:23:\"enable_link_suggestions\";b:1;s:26:\"algolia_integration_active\";b:0;s:14:\"import_cursors\";a:0:{}s:13:\"workouts_data\";a:1:{s:13:\"configuration\";a:1:{s:13:\"finishedSteps\";a:0:{}}}s:28:\"configuration_finished_steps\";a:0:{}s:36:\"dismiss_configuration_workout_notice\";b:1;s:34:\"dismiss_premium_deactivated_notice\";b:0;s:19:\"importing_completed\";a:5:{s:30:\"aioseo_custom_archive_settings\";b:1;s:31:\"aioseo_default_archive_settings\";b:1;s:23:\"aioseo_general_settings\";b:1;s:32:\"aioseo_posttype_default_settings\";b:1;s:24:\"aioseo_taxonomy_settings\";b:1;}s:26:\"wincher_integration_active\";b:1;s:14:\"wincher_tokens\";a:0:{}s:36:\"wincher_automatically_add_keyphrases\";b:0;s:18:\"wincher_website_id\";s:0:\"\";s:18:\"first_time_install\";b:1;s:34:\"should_redirect_after_install_free\";b:0;s:34:\"activation_redirect_timestamp_free\";i:1652258756;s:18:\"remove_feed_global\";b:0;s:27:\"remove_feed_global_comments\";b:0;s:25:\"remove_feed_post_comments\";b:0;s:19:\"remove_feed_authors\";b:0;s:22:\"remove_feed_categories\";b:0;s:16:\"remove_feed_tags\";b:0;s:29:\"remove_feed_custom_taxonomies\";b:0;s:22:\"remove_feed_post_types\";b:0;s:18:\"remove_feed_search\";b:0;s:21:\"remove_atom_rdf_feeds\";b:0;s:17:\"remove_shortlinks\";b:0;s:21:\"remove_rest_api_links\";b:0;s:20:\"remove_rsd_wlw_links\";b:0;s:19:\"remove_oembed_links\";b:0;s:16:\"remove_generator\";b:0;s:20:\"remove_emoji_scripts\";b:0;s:24:\"remove_powered_by_header\";b:0;s:22:\"remove_pingback_header\";b:0;s:28:\"clean_campaign_tracking_urls\";b:0;s:16:\"clean_permalinks\";b:0;s:32:\"clean_permalinks_extra_variables\";s:0:\"\";s:14:\"search_cleanup\";b:0;s:20:\"search_cleanup_emoji\";b:0;s:23:\"search_cleanup_patterns\";b:0;s:22:\"search_character_limit\";i:50;s:20:\"deny_search_crawling\";b:0;s:21:\"deny_wp_json_crawling\";b:0;s:20:\"deny_adsbot_crawling\";b:0;s:19:\"deny_ccbot_crawling\";b:0;s:29:\"deny_google_extended_crawling\";b:0;s:20:\"deny_gptbot_crawling\";b:0;s:27:\"redirect_search_pretty_urls\";b:0;s:29:\"least_readability_ignore_list\";a:0:{}s:27:\"least_seo_score_ignore_list\";a:0:{}s:23:\"most_linked_ignore_list\";a:0:{}s:24:\"least_linked_ignore_list\";a:0:{}s:28:\"indexables_page_reading_list\";a:5:{i:0;b:0;i:1;b:0;i:2;b:0;i:3;b:0;i:4;b:0;}s:25:\"indexables_overview_state\";s:21:\"dashboard-not-visited\";s:28:\"last_known_public_post_types\";a:11:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:7:\"product\";i:3;s:10:\"collection\";i:4;s:5:\"saswp\";i:5;s:6:\"recipe\";i:6;s:10:\"teammember\";i:7;s:5:\"brand\";i:8;s:10:\"wine_asset\";i:9;s:13:\"saswp_reviews\";i:10;s:17:\"saswp-collections\";}s:28:\"last_known_public_taxonomies\";a:4:{i:0;s:8:\"category\";i:1;s:8:\"post_tag\";i:2;s:11:\"post_format\";i:3;s:15:\"recipe_category\";}s:23:\"last_known_no_unindexed\";a:6:{s:27:\"wpseo_total_unindexed_terms\";i:1735819781;s:40:\"wpseo_total_unindexed_post_type_archives\";i:1735621898;s:35:\"wpseo_total_unindexed_general_items\";i:1735819781;s:31:\"wpseo_unindexed_term_link_count\";i:1735819781;s:27:\"wpseo_total_unindexed_posts\";i:1735819781;s:31:\"wpseo_unindexed_post_link_count\";i:1735819781;}s:14:\"new_post_types\";a:3:{i:5;s:5:\"saswp\";i:10;s:13:\"saswp_reviews\";i:11;s:17:\"saswp-collections\";}s:14:\"new_taxonomies\";a:0:{}s:34:\"show_new_content_type_notification\";b:1;}','yes'),(4001,'wpseo_titles','a:84:{s:10:\"title_test\";i:0;s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:23:\"is-media-purge-relevant\";b:0;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:0;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:7:\"&raquo;\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:0:\"\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b:0;s:17:\"stripcategorybase\";b:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:13:\"showdate-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:13:\"showdate-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:19:\"showdate-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:1;s:23:\"noindex-tax-post_format\";b:1;s:12:\"title-recipe\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:15:\"metadesc-recipe\";s:0:\"\";s:14:\"noindex-recipe\";b:0;s:15:\"showdate-recipe\";b:0;s:25:\"display-metabox-pt-recipe\";b:1;s:25:\"post_types-recipe-maintax\";i:0;s:16:\"title-teammember\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-teammember\";s:0:\"\";s:18:\"noindex-teammember\";b:0;s:19:\"showdate-teammember\";b:0;s:29:\"display-metabox-pt-teammember\";b:1;s:29:\"post_types-teammember-maintax\";i:0;s:25:\"title-tax-recipe_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:28:\"metadesc-tax-recipe_category\";s:0:\"\";s:27:\"noindex-tax-recipe_category\";b:0;s:33:\"taxonomy-recipe_category-ptparent\";i:0;}','yes'),(4002,'wpseo_social','a:19:{s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";s:17:\"other_social_urls\";a:0:{}}','yes'),(4003,'wpseo_flush_rewrite','1','yes'),(5429,'surbma_yes_no_popup_fields','a:46:{s:10:\"popuptitle\";s:16:\"Age Verification\";s:9:\"popuptext\";s:30:\"Are you of legal drinking age?\";s:16:\"popupbutton1text\";s:4:\"Exit\";s:16:\"popupbutton2text\";s:5:\"Enter\";s:14:\"popupbuttonurl\";s:17:\"https://google.ca\";s:19:\"popupshoweverywhere\";i:1;s:15:\"popupexcepthere\";s:0:\"\";s:14:\"popupshowposts\";s:0:\"\";s:14:\"popupshowpages\";s:0:\"\";s:19:\"popupshowcategories\";s:0:\"\";s:10:\"popupimage\";s:0:\"\";s:20:\"popupbackgroundimage\";s:0:\"\";s:10:\"popupdelay\";i:0;s:15:\"popupcookiedays\";s:2:\"30\";s:13:\"popupdarkmode\";i:0;s:15:\"popupcentertext\";i:0;s:19:\"popupverticalcenter\";i:0;s:10:\"popuplarge\";i:0;s:18:\"popupshowfrontpage\";i:0;s:13:\"popupshowblog\";i:0;s:16:\"popupshowarchive\";i:0;s:15:\"popupshowwcshop\";i:0;s:15:\"popupshowwccart\";i:0;s:19:\"popupshowwccheckout\";i:0;s:18:\"popupshowwcaccount\";i:0;s:26:\"popupshowwcproductcategory\";i:0;s:21:\"popupshowwcproducttag\";i:0;s:16:\"popupclosebutton\";i:0;s:18:\"popupclosekeyboard\";i:0;s:17:\"popupclosebgclose\";i:0;s:19:\"popupshowcpt-recipe\";i:0;s:23:\"popupshowcpt-teammember\";i:0;s:18:\"popupshowcpt-brand\";i:0;s:23:\"popupshowcpt-wine_asset\";i:0;s:17:\"popuphideloggedin\";i:0;s:20:\"popupshownotloggedin\";i:0;s:16:\"popuphidebutton2\";i:0;s:10:\"popupdebug\";i:0;s:18:\"popupbuttonoptions\";s:17:\"button-1-redirect\";s:17:\"popupbutton1style\";s:7:\"default\";s:17:\"popupbutton2style\";s:7:\"default\";s:15:\"popupbuttonsize\";s:5:\"large\";s:20:\"popupbuttonalignment\";s:4:\"left\";s:19:\"popupimagealignment\";s:4:\"left\";s:11:\"popupstyles\";s:7:\"default\";s:11:\"popupthemes\";s:15:\"normal-centered\";}','yes'),(5442,'wpengine_news_feed_enabled','0','no'),(5907,'recovery_keys','a:0:{}','off'),(5948,'options_c7_password2','YLFvVUBcpSYCYmWIPyxk9zjvjP1kET63uXe3jp7md3m0HMUWlUrqAqKjns4vTNJ5','off'),(5949,'_options_c7_password2','field_5be362d6f6e4dabc','no'),(5950,'options_hide_pickup_option_in_checkout','0','no'),(5951,'_options_hide_pickup_option_in_checkout','field_5ce5bbdd39058','no'),(5952,'options_customize_header_background_color','0','no'),(5953,'_options_customize_header_background_color','field_5c929f163d3c3','no'),(5954,'options_enable_banner','0','no'),(5955,'_options_enable_banner','field_5bbe19c8efa0acbd','no'),(5956,'options_banner_full_width','1','no'),(5957,'_options_banner_full_width','field_5bbe19c8efa0ac','no'),(5958,'options_banner_size','normal','no'),(5959,'_options_banner_size','field_5bbe232929ec9c','no'),(5960,'options_add_parallax_effect','0','no'),(5961,'_options_add_parallax_effect','field_5bbe219ccb6a9','no'),(5962,'options_add_veil_over_banner','0','no'),(5963,'_options_add_veil_over_banner','field_5bbe333f39212','no'),(5964,'options_banner_content_position','centered','no'),(5965,'_options_banner_content_position','field_5bbe259b02b62','no'),(5966,'options_banner_title','Our Blog','no'),(5967,'_options_banner_title','field_5bbe1b78efa0b','no'),(5968,'options_banner_subtitle','','no'),(5969,'_options_banner_subtitle','field_5bbe1b83efa0c','no'),(5970,'options_banner_button_link','','no'),(5971,'_options_banner_button_link','field_5bbe1b8cefa0d','no'),(5972,'options_banner_button_new_tab','0','no'),(5973,'_options_banner_button_new_tab','field_5bbe1e6d18fae','no'),(5974,'options_show_down_arrow','0','no'),(5975,'_options_show_down_arrow','field_5bbe24f721165','no'),(5976,'options_banner_image','','no'),(5977,'_options_banner_image','field_5bbe201718faf','no'),(5978,'options_banner_image_position','center center','no'),(5979,'_options_banner_image_position','field_5bbe278f9fb97','no'),(5980,'options_banner_image_mobile','','no'),(5981,'_options_banner_image_mobile','field_5bbe202818fb0','no'),(5982,'options_banner_image_mobile_position','center center','no'),(5983,'_options_banner_image_mobile_position','field_5bbe279c9fb98','no'),(7212,'options_footer_textra_content','Liquor Licence #12345667','no'),(7213,'_options_footer_textra_content','field_5bbe126add578','no'),(7214,'options_custom_script_head','<link rel=\"preconnect\" href=\"https://fonts.googleapis.com\">\r\n<link rel=\"preconnect\" href=\"https://fonts.gstatic.com\" crossorigin>\r\n<link href=\"https://fonts.googleapis.com/css2?family=Crimson+Text&family=Poppins:wght@400;500&display=swap\" rel=\"stylesheet\">\r\n\r\n<script>(function(d){var s = d.createElement(\"script\");s.setAttribute(\"data-account\", \"JE0NHFLUv5\");s.setAttribute(\"src\", \"https://cdn.userway.org/widget.js\");(d.body || d.head).appendChild(s);})(document)</script><noscript>Please ensure Javascript is enabled for purposes of <a href=\"https://userway.org\">website accessibility</a></noscript>\r\n\r\n<!-- Google Tag Manager -->\r\n<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({\'gtm.start\':\r\nnew Date().getTime(),event:\'gtm.js\'});var f=d.getElementsByTagName(s)[0],\r\nj=d.createElement(s),dl=l!=\'dataLayer\'?\'&l=\'+l:\'\';j.async=true;j.src=\r\n\'https://www.googletagmanager.com/gtm.js?id=\'+i+dl;f.parentNode.insertBefore(j,f);\r\n})(window,document,\'script\',\'dataLayer\',\'GTM-MKSG6FM\');</script>\r\n<!-- End Google Tag Manager -->','no'),(7215,'_options_custom_script_head','field_5bbe126fdd5a8a','no'),(7216,'options_custom_script_after_body','<!-- Google Tag Manager (noscript) -->\r\n<noscript><iframe src=\"https://www.googletagmanager.com/ns.html?id=GTM-MKSG6FM\"\r\nheight=\"0\" width=\"0\" style=\"display:none;visibility:hidden\"></iframe></noscript>\r\n<!-- End Google Tag Manager (noscript) -->','no'),(7217,'_options_custom_script_after_body','field_5bbe126fdd5a8b','no'),(7218,'options_custom_script_footer',' <script>\r\n(function(d){\r\n  console.log(\'redchirp: pixel script start\');\r\n  var f = d.getElementsByTagName(\'SCRIPT\')[0], p = d.createElement(\'SCRIPT\');\r\n  p.type = \'text/javascript\';\r\n  p.setAttribute(\'charset\',\'utf-8\');\r\n  p.async = true;\r\n  p.id = \"your-widget\";\r\n  \r\n  var meta_ref_url = document.querySelector(\'meta[name=\"redchirp-referring-url\"]\');\r\n  var meta_inbox_ids = document.querySelector(\'meta[name=\"redchirp-inbox-ids\"]\');\r\n\r\n  var query_string = \'?ref=\'+encodeURIComponent(meta_ref_url == null ? window.location : meta_ref_url.content);\r\n\r\n  if ( meta_inbox_ids != null )\r\n    query_string += \'&inbox_ids=\'+encodeURIComponent(meta_inbox_ids.content);\r\n\r\n  p.src = \"https://app.redchirp.com/api/v1/widget/widget-loader.js\"+query_string;\r\n  f.parentNode.insertBefore(p, f);\r\n}(document));\r\n</script>\r\n ','off'),(7219,'_options_custom_script_footer','field_5bbe126fdd5a8c','no'),(7220,'options_posts_per_row','3','no'),(7221,'_options_posts_per_row','field_5d13965e81bea','no'),(7222,'options_read_more_link_text','Read More','no'),(7223,'_options_read_more_link_text','field_5d1396b481beb','no'),(7394,'options_restrict_pages','a:8:{i:0;s:3:\"563\";i:1;s:3:\"564\";i:2;s:3:\"566\";i:3;s:3:\"567\";i:4;s:3:\"611\";i:5;s:3:\"565\";i:6;s:3:\"628\";i:7;s:3:\"661\";}','no'),(7395,'_options_restrict_pages','field_5d124a64c620d','no'),(7423,'options_footer_extra_content','Liquor Licence #12345667','no'),(7424,'_options_footer_extra_content','field_5bbe126add578','no'),(7425,'options_extra_footer_content','','no'),(7426,'_options_extra_footer_content','field_5bbe126add578','no'),(7853,'tribe_events_calendar_options','a:48:{s:14:\"schema-version\";s:6:\"5.16.0\";s:20:\"freemius_random_seed\";i:50;s:27:\"recurring_events_are_hidden\";s:6:\"hidden\";s:21:\"previous_ecp_versions\";a:26:{i:0;s:1:\"0\";i:1;s:5:\"4.9.4\";i:2;s:5:\"4.9.5\";i:3;s:5:\"4.9.6\";i:4;s:5:\"4.9.7\";i:5;s:5:\"4.9.8\";i:6;s:6:\"4.9.10\";i:7;s:6:\"4.9.11\";i:8;s:6:\"4.9.12\";i:9;s:6:\"4.9.13\";i:10;s:6:\"4.9.14\";i:11;s:7:\"5.0.0.1\";i:12;s:7:\"5.0.2.1\";i:13;s:7:\"5.0.3.1\";i:14;s:5:\"5.1.0\";i:15;s:5:\"5.1.1\";i:16;s:5:\"5.1.2\";i:17;s:7:\"5.1.2.1\";i:18;s:5:\"5.1.3\";i:19;s:5:\"5.1.4\";i:20;s:5:\"5.1.5\";i:21;s:5:\"5.1.6\";i:22;s:5:\"5.2.0\";i:23;s:5:\"6.0.3\";i:24;s:7:\"6.0.3.1\";i:25;s:5:\"6.0.4\";}s:18:\"latest_ecp_version\";s:5:\"6.0.5\";s:39:\"last-update-message-the-events-calendar\";s:5:\"6.0.5\";s:11:\"donate-link\";b:0;s:12:\"postsPerPage\";s:2:\"10\";s:17:\"liveFiltersUpdate\";b:1;s:20:\"toggle_blocks_editor\";b:0;s:33:\"toggle_blocks_editor_hidden_field\";b:0;s:12:\"showComments\";b:0;s:29:\"disable_metabox_custom_fields\";b:1;s:20:\"showEventsInMainLoop\";b:0;s:10:\"eventsSlug\";s:15:\"events-calendar\";s:15:\"singleEventSlug\";s:5:\"event\";s:14:\"multiDayCutoff\";s:5:\"00:00\";s:21:\"defaultCurrencySymbol\";s:1:\"$\";s:23:\"reverseCurrencyPosition\";b:0;s:17:\"trash-past-events\";s:0:\"\";s:18:\"delete-past-events\";s:0:\"\";s:15:\"embedGoogleMaps\";b:1;s:19:\"embedGoogleMapsZoom\";s:2:\"10\";s:11:\"debugEvents\";b:0;s:26:\"tribe_events_timezone_mode\";s:4:\"site\";s:32:\"tribe_events_timezones_show_zone\";b:0;s:16:\"stylesheetOption\";s:5:\"tribe\";s:19:\"tribeEventsTemplate\";s:24:\"page-events-calendar.php\";s:16:\"tribeEnableViews\";a:3:{i:0;s:4:\"list\";i:1;s:5:\"month\";i:2;s:3:\"day\";}s:20:\"tribeDisableTribeBar\";b:0;s:16:\"monthEventAmount\";s:1:\"3\";s:23:\"enable_month_view_cache\";b:1;s:18:\"dateWithYearFormat\";s:6:\"F j, Y\";s:21:\"dateWithoutYearFormat\";s:3:\"F j\";s:18:\"monthAndYearFormat\";s:3:\"F Y\";s:17:\"dateTimeSeparator\";s:3:\" @ \";s:18:\"timeRangeSeparator\";s:3:\" - \";s:16:\"datepickerFormat\";s:1:\"0\";s:21:\"tribeEventsBeforeHTML\";s:0:\"\";s:20:\"tribeEventsAfterHTML\";s:0:\"\";s:13:\"earliest_date\";s:19:\"2022-11-30 18:00:00\";s:21:\"earliest_date_markers\";a:1:{i:0;s:4:\"1052\";}s:11:\"latest_date\";s:19:\"2022-11-30 19:30:00\";s:19:\"latest_date_markers\";a:1:{i:0;s:4:\"1052\";}s:10:\"viewOption\";s:4:\"list\";s:24:\"front_page_event_archive\";b:0;s:8:\"did_init\";b:1;s:15:\"stylesheet_mode\";s:5:\"tribe\";}','yes'),(7854,'widget_tribe-events-list-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7857,'tribe_last_save_post','1669906541.39','yes'),(7858,'tribe_last_generate_rewrite_rules','1669760992.03','yes'),(7902,'tribe_events_cat_children','a:0:{}','yes'),(8755,'pand-a90ad780a5862b83e5f37dd9adf38dd6','forever','no'),(9737,'theme_mods_wp-spectratheme-child','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:6:\"footer\";i:5;s:4:\"main\";i:6;}s:18:\"custom_css_post_id\";i:1511;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1712255224;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:18:\"mec-single-sidebar\";a:0:{}}}}','yes'),(12196,'options_trade_features','1','no'),(12197,'_options_trade_features','field_5d82b3dc8509f','no'),(12278,'recovery_mode_email_last_sent','1667859444','yes'),(12284,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:41:\"git-updater/vendor/freemius/wordpress-sdk\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"2.10.1\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1734555793;s:11:\"plugin_path\";s:27:\"git-updater/git-updater.php\";}}s:7:\"abspath\";s:32:\"/nas/content/live/meadowcroftca/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:27:\"git-updater/git-updater.php\";s:8:\"sdk_path\";s:41:\"git-updater/vendor/freemius/wordpress-sdk\";s:7:\"version\";s:6:\"2.10.1\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1734555793;}}','yes'),(12285,'fs_debug_mode','','yes'),(12286,'fs_accounts','a:12:{s:21:\"id_slug_type_path_map\";a:3:{i:3069;a:3:{s:4:\"slug\";s:19:\"the-events-calendar\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}i:8311;a:3:{s:4:\"slug\";s:11:\"git-updater\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:27:\"git-updater/git-updater.php\";}i:11525;a:3:{s:4:\"slug\";s:11:\"git-updater\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:27:\"git-updater/git-updater.php\";}}s:11:\"plugin_data\";a:2:{s:19:\"the-events-calendar\";a:17:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1571957248;s:16:\"sdk_last_version\";s:5:\"2.3.2\";s:11:\"sdk_version\";s:5:\"2.4.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"6.0.4\";s:14:\"plugin_version\";s:5:\"6.0.5\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:19:\"spectratemplate.com\";s:9:\"server_ip\";s:12:\"50.64.36.217\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1571957248;s:7:\"version\";s:6:\"4.9.10\";}s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1572033794;s:7:\"version\";s:6:\"4.9.10\";}s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:15:\"prev_is_premium\";b:0;s:16:\"uninstall_reason\";O:8:\"stdClass\":3:{s:2:\"id\";s:2:\"15\";s:4:\"info\";s:0:\"\";s:12:\"is_anonymous\";b:0;}}s:11:\"git-updater\";a:30:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:27:\"git-updater/git-updater.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1630691537;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";s:5:\"2.9.0\";s:11:\"sdk_version\";s:6:\"2.10.1\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:6:\"12.7.2\";s:14:\"plugin_version\";s:6:\"12.8.0\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:24:\"www.meadowcroftwines.com\";s:9:\"server_ip\";s:9:\"127.0.0.1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1683676084;s:7:\"version\";s:6:\"12.2.1\";}s:15:\"prev_is_premium\";b:1;s:30:\"is_diagnostic_tracking_allowed\";b:1;s:30:\"is_extensions_tracking_allowed\";b:0;s:14:\"has_trial_plan\";b:1;s:19:\"keepalive_timestamp\";i:1735763922;s:16:\"last_license_key\";s:32:\"85a4ede71c690cefc587ff3a8327126d\";s:20:\"last_license_user_id\";N;s:15:\"is_whitelabeled\";b:1;s:20:\"activation_timestamp\";i:1678404529;s:13:\"subscriptions\";a:1:{i:0;O:15:\"FS_Subscription\":20:{s:2:\"id\";s:6:\"353301\";s:7:\"updated\";s:19:\"2024-01-16 19:20:40\";s:7:\"created\";s:19:\"2023-01-16 18:18:59\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:7:\"user_id\";s:7:\"4711402\";s:10:\"install_id\";s:8:\"11108687\";s:7:\"plan_id\";s:5:\"19638\";s:10:\"license_id\";s:7:\"1077002\";s:11:\"total_gross\";d:39.98;s:16:\"amount_per_cycle\";d:19.99;s:13:\"billing_cycle\";i:12;s:19:\"outstanding_balance\";i:0;s:15:\"failed_payments\";i:0;s:7:\"gateway\";s:6:\"stripe\";s:11:\"external_id\";s:28:\"sub_1MQxGmFmXz63vF5vfsl3JIW3\";s:10:\"trial_ends\";N;s:12:\"next_payment\";s:19:\"2025-01-16 18:18:55\";s:11:\"canceled_at\";N;s:6:\"vat_id\";N;s:12:\"country_code\";s:2:\"ca\";}}s:9:\"beta_data\";a:2:{s:7:\"is_beta\";b:0;s:7:\"version\";s:6:\"12.8.0\";}s:14:\"sync_timestamp\";i:1735763922;s:22:\"install_sync_timestamp\";i:1735763922;s:8:\"clone_id\";s:6:\"197194\";s:19:\"last_load_timestamp\";i:1735798291;s:9:\"sync_cron\";O:8:\"stdClass\":5:{s:7:\"version\";s:6:\"12.5.0\";s:7:\"blog_id\";i:0;s:11:\"sdk_version\";s:5:\"2.7.4\";s:9:\"timestamp\";i:1728582046;s:2:\"on\";b:1;}}}s:13:\"file_slug_map\";a:2:{s:43:\"the-events-calendar/the-events-calendar.php\";s:19:\"the-events-calendar\";s:27:\"git-updater/git-updater.php\";s:11:\"git-updater\";}s:7:\"plugins\";a:2:{s:19:\"the-events-calendar\";O:9:\"FS_Plugin\":24:{s:2:\"id\";s:4:\"3069\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;s:10:\"public_key\";s:32:\"pk_e32061abc28cfedf231f3e5c4e626\";s:10:\"secret_key\";N;s:16:\"parent_plugin_id\";N;s:5:\"title\";s:19:\"The Events Calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:12:\"premium_slug\";s:27:\"the-events-calendar-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:43:\"the-events-calendar/the-events-calendar.php\";s:7:\"version\";s:5:\"6.0.5\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;}s:11:\"git-updater\";O:9:\"FS_Plugin\":24:{s:2:\"id\";s:5:\"11525\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;s:10:\"public_key\";s:32:\"pk_aaa04d83b4c42470937266f9b4fca\";s:10:\"secret_key\";N;s:16:\"parent_plugin_id\";N;s:5:\"title\";s:11:\"Git Updater\";s:4:\"slug\";s:11:\"git-updater\";s:12:\"premium_slug\";s:11:\"git-updater\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:27:\"git-updater/git-updater.php\";s:7:\"version\";s:6:\"12.8.0\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:1;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;}}s:9:\"unique_id\";s:32:\"f132f6f8dca5fdae4feab71fa0a5ba62\";s:13:\"admin_notices\";a:2:{s:11:\"git-updater\";a:0:{}s:19:\"the-events-calendar\";a:0:{}}s:5:\"plans\";a:1:{s:11:\"git-updater\";a:2:{i:0;O:14:\"FS_Plugin_Plan\":24:{s:2:\"id\";s:8:\"MTk2OTY=\";s:7:\"updated\";N;s:7:\"created\";s:28:\"MjAyMi0xMS0zMCAxNTozNDozNA==\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:9:\"plugin_id\";s:8:\"MTE1MjU=\";s:4:\"name\";s:8:\"ZnJlZQ==\";s:5:\"title\";s:8:\"RnJlZQ==\";s:11:\"description\";N;s:17:\"is_free_localhost\";s:4:\"MQ==\";s:17:\"is_block_features\";s:4:\"MQ==\";s:12:\"license_type\";s:4:\"MA==\";s:16:\"is_https_support\";s:0:\"\";s:12:\"trial_period\";N;s:23:\"is_require_subscription\";s:0:\"\";s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";s:0:\"\";s:11:\"is_featured\";s:0:\"\";s:9:\"is_hidden\";s:0:\"\";s:7:\"pricing\";N;s:8:\"features\";N;}i:1;O:14:\"FS_Plugin_Plan\":24:{s:2:\"id\";s:8:\"MTk2Mzg=\";s:7:\"updated\";s:28:\"MjAyMi0xMi0xMCAxNjozNjowMA==\";s:7:\"created\";s:28:\"MjAyMi0xMS0yNSAxODowMTowNg==\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:9:\"plugin_id\";s:8:\"MTE1MjU=\";s:4:\"name\";s:12:\"ZGVmYXVsdA==\";s:5:\"title\";s:12:\"RGVmYXVsdA==\";s:11:\"description\";s:28:\"WWVhcmx5IHN1YnNjcmlwdGlvbg==\";s:17:\"is_free_localhost\";s:4:\"MQ==\";s:17:\"is_block_features\";s:4:\"MQ==\";s:12:\"license_type\";s:4:\"MA==\";s:16:\"is_https_support\";s:0:\"\";s:12:\"trial_period\";s:4:\"MTQ=\";s:23:\"is_require_subscription\";s:4:\"MQ==\";s:10:\"support_kb\";s:52:\"aHR0cHM6Ly9naXQtdXBkYXRlci5jb20va25vd2xlZGdlLWJhc2Uv\";s:13:\"support_forum\";s:40:\"aHR0cHM6Ly9naXQtdXBkYXRlci5zbGFjay5jb20=\";s:13:\"support_email\";s:32:\"c3VwcG9ydEBnaXQtdXBkYXRlci5jb20=\";s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";s:0:\"\";s:11:\"is_featured\";s:4:\"MQ==\";s:9:\"is_hidden\";s:0:\"\";s:7:\"pricing\";N;s:8:\"features\";N;}}}s:5:\"sites\";a:1:{s:11:\"git-updater\";O:7:\"FS_Site\":25:{s:2:\"id\";s:8:\"11134079\";s:7:\"updated\";s:19:\"2024-12-22 16:02:51\";s:7:\"created\";s:19:\"2023-01-19 17:07:38\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:10:\"public_key\";s:32:\"pk_876efe4469e706862ac7cf70741b7\";s:10:\"secret_key\";s:32:\"sk_QpG_cf2VzhN$g7ViVtCn;QEr<f[lX\";s:7:\"site_id\";s:8:\"13685151\";s:9:\"plugin_id\";s:5:\"11525\";s:7:\"user_id\";s:7:\"4711402\";s:5:\"title\";s:17:\"Meadowcroft Wines\";s:3:\"url\";s:32:\"https://www.meadowcroftwines.com\";s:7:\"version\";s:6:\"12.8.0\";s:8:\"language\";s:5:\"en-US\";s:16:\"platform_version\";s:5:\"6.7.1\";s:11:\"sdk_version\";s:6:\"2.10.1\";s:28:\"programming_language_version\";s:6:\"8.2.24\";s:7:\"plan_id\";s:5:\"19638\";s:10:\"license_id\";s:7:\"1077002\";s:13:\"trial_plan_id\";N;s:10:\"trial_ends\";N;s:10:\"is_premium\";b:1;s:15:\"is_disconnected\";b:0;s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;s:7:\"is_beta\";b:0;}}s:5:\"users\";a:1:{i:4711402;O:7:\"FS_User\":12:{s:2:\"id\";s:7:\"4711402\";s:7:\"updated\";s:19:\"2023-01-26 17:13:16\";s:7:\"created\";s:19:\"2021-05-03 17:30:31\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:10:\"public_key\";s:32:\"pk_e64b4e01229f856647a562c900a7a\";s:10:\"secret_key\";s:32:\"sk_MHFAItS<8ERaC=Hexx}DOz(!ezhKL\";s:5:\"email\";s:18:\"peter@wineworks.co\";s:5:\"first\";s:5:\"Peter\";s:4:\"last\";s:6:\"Andres\";s:11:\"is_verified\";b:1;s:11:\"customer_id\";N;s:5:\"gross\";N;}}s:23:\"user_id_license_ids_map\";a:1:{i:11525;a:1:{i:4711402;a:1:{i:0;i:1077002;}}}s:12:\"all_licenses\";a:1:{i:11525;a:1:{i:0;O:17:\"FS_Plugin_License\":21:{s:2:\"id\";s:7:\"1077002\";s:7:\"updated\";s:19:\"2024-12-23 19:11:54\";s:7:\"created\";s:19:\"2023-01-16 18:18:59\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:9:\"plugin_id\";s:5:\"11525\";s:7:\"user_id\";s:7:\"4711402\";s:7:\"plan_id\";s:5:\"19638\";s:16:\"parent_plan_name\";N;s:17:\"parent_plan_title\";N;s:17:\"parent_license_id\";N;s:8:\"products\";N;s:10:\"pricing_id\";s:5:\"22577\";s:5:\"quota\";N;s:9:\"activated\";i:314;s:15:\"activated_local\";i:93;s:10:\"expiration\";s:19:\"2025-01-17 18:18:55\";s:10:\"secret_key\";s:32:\"sk_FalB3@Qgg.5%tWCU08qw3yOyd=0IZ\";s:15:\"is_whitelabeled\";b:1;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:1;s:12:\"is_cancelled\";b:0;}}}s:7:\"updates\";a:1:{i:11525;N;}}','yes'),(12287,'fs_gdpr','a:2:{s:2:\"u2\";a:2:{s:8:\"required\";b:0;s:18:\"show_opt_in_notice\";b:0;}s:2:\"u0\";a:1:{s:18:\"show_opt_in_notice\";b:0;}}','yes'),(13860,'admin_email_lifespan','1745874979','yes'),(17092,'tribe_last_updated_option','1669906541.39','yes'),(27100,'options_header_bar_content','Test','no'),(27101,'_options_header_bar_content','field_5bd9f81e05b5a','no'),(27102,'options_header_bar_background_color','#af9f66','no'),(27103,'_options_header_bar_background_color','field_5bd9f85a05b5c','no'),(27104,'options_footer_bar_background_color','#222222','no'),(27105,'_options_footer_bar_background_color','field_5bd9f8e905b60','no'),(30996,'yoast_migrations_free','a:1:{s:7:\"version\";s:4:\"24.1\";}','yes'),(35498,'wpseo_ryte','a:2:{s:6:\"status\";i:0;s:10:\"last_fetch\";i:1615898341;}','yes'),(36910,'amelia_settings','{\"general\":{\"timeSlotLength\":1800,\"defaultAppointmentStatus\":\"approved\",\"minimumTimeRequirementPriorToBooking\":0,\"minimumTimeRequirementPriorToCanceling\":0,\"numberOfDaysAvailableForBooking\":365,\"phoneDefaultCountryCode\":\"auto\",\"requiredPhoneNumberField\":false,\"itemsPerPage\":12,\"gMapApiKey\":\"\",\"addToCalendar\":true,\"allowConfigureSchedule\":false,\"allowWriteAppointments\":false,\"defaultPageOnBackend\":\"Dashboard\",\"serviceDurationAsSlot\":false,\"requiredEmailField\":true,\"showClientTimeZone\":false,\"redirectUrlAfterAppointment\":\"\",\"customFieldsUploadsPath\":\"\",\"sortingServices\":\"nameAsc\",\"backLink\":{\"enabled\":false,\"label\":\"Powered by Amelia - Appointment and Events Booking Plugin\"}},\"company\":{\"pictureFullPath\":\"\",\"pictureThumbPath\":\"\",\"name\":\"\",\"address\":\"\",\"phone\":\"\",\"website\":\"\"},\"notifications\":{\"mailService\":\"smtp\",\"smtpHost\":\"smtp.office365.com\",\"smtpPort\":\"587\",\"smtpUsername\":\"noreply@goldhillwinery.com\",\"smtpPassword\":\"Hon94725a\",\"mailgunApiKey\":\"\",\"mailgunDomain\":\"\",\"senderName\":\"Gold Hill Winery\",\"senderEmail\":\"noreply@goldhillwinery.com\",\"notifyCustomers\":true,\"smtpSecure\":\"tls\",\"smsAlphaSenderId\":\"Amelia\",\"smsSignedIn\":false,\"smsApiToken\":\"\",\"bccEmail\":\"\",\"cancelSuccessUrl\":\"\",\"cancelErrorUrl\":\"\",\"breakReplacement\":\"\"},\"daysOff\":[],\"weekSchedule\":[{\"day\":\"Monday\",\"time\":[\"09:00\",\"17:00\"],\"breaks\":[],\"form\":{\"type\":null,\"isNew\":null,\"index\":null,\"show\":false,\"data\":[]},\"periods\":[{\"time\":[\"09:00\",\"17:00\"],\"id\":null,\"serviceIds\":[],\"periodServiceList\":[]}]},{\"day\":\"Tuesday\",\"time\":[\"09:00\",\"17:00\"],\"breaks\":[],\"form\":{\"type\":null,\"isNew\":null,\"index\":null,\"show\":false,\"data\":[]},\"periods\":[{\"time\":[\"09:00\",\"17:00\"],\"id\":null,\"serviceIds\":[],\"periodServiceList\":[]}]},{\"day\":\"Wednesday\",\"time\":[\"09:00\",\"17:00\"],\"breaks\":[],\"form\":{\"type\":null,\"isNew\":null,\"index\":null,\"show\":false,\"data\":[]},\"periods\":[{\"time\":[\"09:00\",\"17:00\"],\"id\":null,\"serviceIds\":[],\"periodServiceList\":[]}]},{\"day\":\"Thursday\",\"time\":[\"09:00\",\"17:00\"],\"breaks\":[],\"form\":{\"type\":null,\"isNew\":null,\"index\":null,\"show\":false,\"data\":[]},\"periods\":[{\"time\":[\"09:00\",\"17:00\"],\"id\":null,\"serviceIds\":[],\"periodServiceList\":[]}]},{\"day\":\"Friday\",\"time\":[\"09:00\",\"17:00\"],\"breaks\":[],\"form\":{\"type\":null,\"isNew\":null,\"index\":null,\"show\":false,\"data\":[]},\"periods\":[{\"time\":[\"09:00\",\"17:00\"],\"id\":null,\"serviceIds\":[],\"periodServiceList\":[]}]},{\"day\":\"Saturday\",\"time\":[],\"breaks\":[],\"form\":{\"type\":null,\"isNew\":null,\"index\":null,\"show\":false,\"data\":[]},\"periods\":[]},{\"day\":\"Sunday\",\"time\":[],\"breaks\":[],\"form\":{\"type\":null,\"isNew\":null,\"index\":null,\"show\":false,\"data\":[]},\"periods\":[]}],\"googleCalendar\":{\"clientID\":\"\",\"clientSecret\":\"\",\"redirectURI\":\"https:\\/\\/www.meadowcroftwines.com\\/wp-admin\\/admin.php?page=wpamelia-employees\",\"insertPendingAppointments\":false,\"addAttendees\":false,\"sendEventInvitationEmail\":false,\"removeGoogleCalendarBusySlots\":false,\"maximumNumberOfEventsReturned\":50,\"showAttendees\":false,\"eventTitle\":\"%service_name%\",\"eventDescription\":\"\",\"includeBufferTimeGoogleCalendar\":false},\"payments\":{\"currency\":\"USD\",\"symbol\":\"$\",\"priceSymbolPosition\":\"before\",\"priceNumberOfDecimals\":2,\"priceSeparator\":1,\"onSite\":true,\"coupons\":true,\"payPal\":{\"enabled\":false,\"sandboxMode\":false,\"liveApiClientId\":\"\",\"liveApiSecret\":\"\",\"testApiClientId\":\"\",\"testApiSecret\":\"\",\"description\":{\"enabled\":false,\"appointment\":\"\",\"event\":\"\"}},\"stripe\":{\"enabled\":false,\"testMode\":false,\"livePublishableKey\":\"\",\"liveSecretKey\":\"\",\"testPublishableKey\":\"\",\"testSecretKey\":\"\",\"description\":{\"enabled\":false,\"appointment\":\"\",\"event\":\"\"},\"metaData\":{\"enabled\":false,\"appointment\":null,\"event\":null}},\"wc\":{\"enabled\":false,\"productId\":\"\",\"onSiteIfFree\":false,\"page\":\"cart\",\"dashboard\":true},\"hideCurrencySymbolFrontend\":false,\"defaultPaymentMethod\":\"onSite\"},\"purchaseCode\":{\"code\":\"\"},\"customization\":{\"primaryColor\":\"#1A84EE\",\"primaryGradient1\":\"#1A84EE\",\"primaryGradient2\":\"#0454A2\",\"textColor\":\"#354052\",\"textColorOnBackground\":\"#FFFFFF\",\"font\":\"Roboto\",\"hash\":\"klOXtS6sIP\"},\"labels\":{\"employee\":\"employee\",\"employees\":\"employees\",\"service\":\"service\",\"services\":\"services\",\"enabled\":true},\"activation\":{\"version\":\"2.7\",\"showActivationSettings\":true,\"active\":false,\"purchaseCodeStore\":\"\",\"envatoTokenEmail\":\"\"},\"roles\":{\"allowConfigureSchedule\":false,\"allowConfigureDaysOff\":false,\"allowConfigureSpecialDays\":false,\"allowConfigureServices\":false,\"allowWriteAppointments\":false,\"automaticallyCreateCustomer\":false,\"inspectCustomerInfo\":false,\"allowCustomerReschedule\":false,\"allowCustomerDeleteProfile\":false,\"allowWriteEvents\":false,\"customerCabinet\":{\"enabled\":false,\"headerJwtSecret\":\"3905c8799fd1879f6bfa\",\"urlJwtSecret\":\"c9cf224c10db6112f2cc\",\"tokenValidTime\":2592000,\"pageUrl\":\"\",\"loginEnabled\":true,\"filterDate\":false}},\"appointments\":{\"isGloballyBusySlot\":false,\"allowBookingIfPending\":true,\"allowBookingIfNotMin\":true,\"openedBookingAfterMin\":false,\"recurringPlaceholders\":\"DateTime: %appointment_date_time%\"},\"webHooks\":[],\"zoom\":{\"enabled\":true,\"apiKey\":\"\",\"apiSecret\":\"\",\"meetingTitle\":\"%reservation_name%\",\"meetingAgenda\":\"%reservation_description%\",\"pendingAppointmentsMeetings\":false}}','yes'),(39528,'options_linkedin','','no'),(39529,'_options_linkedin','field_5bbe149a5e080a','no'),(39530,'options_email','tastingroom@meadowcroftwines.com','no'),(39531,'_options_email','field_5bbe149a5e080b','no'),(48723,'disallowed_keys','','no'),(48724,'comment_previously_approved','1','yes'),(48725,'auto_plugin_theme_update_emails','a:0:{}','no'),(48726,'finished_updating_comment_type','1','yes'),(59295,'wpe-health-check-site-status-result','{\"good\":17,\"recommended\":5,\"critical\":0}','yes'),(63554,'options_hide_hold_option_in_profile','0','no'),(63555,'_options_hide_hold_option_in_profile','field_5ce5bbdd39058a','no'),(63556,'options_hide_cancel_option_in_profile','0','no'),(63557,'_options_hide_cancel_option_in_profile','field_5ce5bbdd39058b','no'),(63558,'options_hide_skip_option_in_profile','0','no'),(63559,'_options_hide_skip_option_in_profile','field_5ce5bbdd39058c','no'),(63560,'options_footer_bar_content','<p style=\"text-align: center;\">We use cookies to optimize your experience, analyze traffic, and personalize content. To learn more, please visit our <a href=\"/privacy-policy/\">Privacy Policy</a>.\r\nBy using our site without disabling cookies, you consent to our use of them.</p>','no'),(63561,'_options_footer_bar_content','field_5fc6c92c2108f','no'),(63562,'options_customize_logo_width','1','no'),(63563,'_options_customize_logo_width','field_5c929f163d3c3a','no'),(63597,'options_footer_bar_toggle_gdpr','1','no'),(63598,'_options_footer_bar_toggle_gdpr','field_5fc6c91f2108e','no'),(71358,'options_footer_text_color','#ffffff','no'),(71359,'_options_footer_text_color','field_5fe0d97f59a3b','no'),(71360,'options_customize_footer_background','1','no'),(71361,'_options_customize_footer_background','field_5c929f163d3c3ff','no'),(71362,'options_page_background_image_toggle','0','no'),(71363,'_options_page_background_image_toggle','field_5c929f163d3c3abqa','no'),(83799,'auto_update_core_dev','enabled','yes'),(83800,'auto_update_core_minor','enabled','yes'),(83801,'auto_update_core_major','unset','yes'),(87208,'wperedirect','no','no'),(87209,'bvActivateTime','1616361549','no'),(87213,'bvAccountsList','a:1:{s:32:\"7dc177e86e4a5731cf23f198666219ae\";a:7:{s:6:\"secret\";s:32:\"06477dccec7fd4e802906eb1e7d85c58\";s:11:\"account_gid\";s:8:\"bPKJLint\";s:14:\"lastbackuptime\";i:1616362171;s:8:\"wpengine\";b:1;s:12:\"account_type\";s:8:\"wpengine\";s:3:\"url\";s:32:\"https://www.meadowcroftwines.com\";s:5:\"email\";s:22:\"pet******@wineworks.co\";}}','no'),(87214,'bvLastRecvTime','1616362223','no'),(87215,'bvApiPublic','7dc177e86e4a5731cf23f198666219ae','no'),(87278,'https_detection_errors','a:0:{}','off'),(87443,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(87483,'wp_force_deactivated_plugins','a:0:{}','off'),(87485,'git_updater','a:7:{s:10:\"db_version\";s:4:\"8312\";s:30:\"current_branch_wp-spectratheme\";s:6:\"master\";s:19:\"github_access_token\";s:93:\"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\";s:15:\"wp-spectratheme\";s:93:\"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\";s:13:\"branch_switch\";s:1:\"0\";s:11:\"git-updater\";s:93:\"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\";s:28:\"bypass_background_processing\";s:1:\"1\";}','no'),(87487,'git_updater_plugin_updates','a:1:{s:45:\"redirect-redirection/redirect-redirection.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:34:\"w.org/plugins/redirect-redirection\";s:4:\"slug\";s:20:\"redirect-redirection\";s:6:\"plugin\";s:45:\"redirect-redirection/redirect-redirection.php\";s:11:\"new_version\";s:5:\"1.2.5\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/redirect-redirection/\";s:7:\"package\";s:87:\"https://plugin-updates.wpengine.com/redirect-redirection/redirect-redirection.1.2.5.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:80:\"https://plugin-updates.wpengine.com/redirect-redirection/assets/icon-128x128.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:94:\"https://plugin-updates.wpengine.com/redirect-redirection/assets/banner-772x250.jpg?rev=2556040\";s:4:\"high\";b:0;}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.7.1\";s:8:\"requires\";s:3:\"4.6\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:100;s:11:\"num_ratings\";i:261;s:15:\"support_threads\";i:2;s:24:\"support_threads_resolved\";i:2;}}','off'),(87488,'git_updater_theme_updates','a:0:{}','off'),(87573,'options_enable_commerce7_v2','1','no'),(87574,'_options_enable_commerce7_v2','field_5ce5bbdd39058v2','no'),(87711,'wpe_cache_config','a:31:{s:20:\"sanitized_post_types\";a:11:{s:4:\"post\";s:4:\"post\";s:4:\"page\";s:4:\"page\";s:7:\"product\";s:7:\"product\";s:10:\"collection\";s:10:\"collection\";s:5:\"saswp\";s:5:\"saswp\";s:6:\"recipe\";s:6:\"recipe\";s:10:\"teammember\";s:10:\"teammember\";s:5:\"brand\";s:5:\"brand\";s:10:\"wine_asset\";s:10:\"wine_asset\";s:13:\"saswp_reviews\";s:13:\"saswp_reviews\";s:17:\"saswp-collections\";s:17:\"saswp-collections\";}s:28:\"sanitized_builtin_post_types\";a:2:{s:4:\"post\";s:4:\"post\";s:4:\"page\";s:4:\"page\";}s:21:\"smarter_cache_enabled\";s:1:\"0\";s:21:\"last_modified_enabled\";s:1:\"0\";s:27:\"wpe_ac_global_last_modified\";s:10:\"1262304000\";s:24:\"post_cache_expires_value\";s:2:\"-1\";s:24:\"page_cache_expires_value\";s:2:\"-1\";s:27:\"product_cache_expires_value\";s:2:\"-1\";s:30:\"collection_cache_expires_value\";s:2:\"-1\";s:25:\"saswp_cache_expires_value\";s:2:\"-1\";s:26:\"recipe_cache_expires_value\";s:2:\"-1\";s:30:\"teammember_cache_expires_value\";s:2:\"-1\";s:25:\"brand_cache_expires_value\";s:2:\"-1\";s:30:\"wine_asset_cache_expires_value\";s:2:\"-1\";s:33:\"saswp_reviews_cache_expires_value\";s:2:\"-1\";s:37:\"saswp-collections_cache_expires_value\";s:2:\"-1\";s:10:\"namespaces\";a:14:{i:0;s:10:\"oembed/1.0\";i:1;s:14:\"redirection/v1\";i:2;s:19:\"wpe/cache-plugin/v1\";i:3;s:21:\"wpe_sign_on_plugin/v1\";i:4;s:11:\"age-gate/v3\";i:5;s:12:\"saswp-output\";i:6;s:8:\"yoast/v1\";i:7;s:15:\"gravityforms/v2\";i:8;s:14:\"git-updater/v1\";i:9;s:11:\"git-updater\";i:10;s:17:\"github-updater/v1\";i:11;s:5:\"wp/v2\";i:12;s:17:\"wp-site-health/v1\";i:13;s:18:\"wp-block-editor/v1\";}s:30:\"oembed/1.0_cache_expires_value\";s:2:\"-1\";s:34:\"redirection/v1_cache_expires_value\";s:2:\"-1\";s:39:\"wpe/cache-plugin/v1_cache_expires_value\";s:2:\"-1\";s:41:\"wpe_sign_on_plugin/v1_cache_expires_value\";s:2:\"-1\";s:31:\"age-gate/v3_cache_expires_value\";s:2:\"-1\";s:32:\"saswp-output_cache_expires_value\";s:2:\"-1\";s:28:\"yoast/v1_cache_expires_value\";s:2:\"-1\";s:35:\"gravityforms/v2_cache_expires_value\";s:2:\"-1\";s:34:\"git-updater/v1_cache_expires_value\";s:2:\"-1\";s:31:\"git-updater_cache_expires_value\";s:2:\"-1\";s:37:\"github-updater/v1_cache_expires_value\";s:2:\"-1\";s:25:\"wp/v2_cache_expires_value\";s:2:\"-1\";s:37:\"wp-site-health/v1_cache_expires_value\";s:2:\"-1\";s:38:\"wp-block-editor/v1_cache_expires_value\";s:2:\"-1\";}','yes'),(88223,'wp_age_gate_restrictions','a:17:{s:7:\"min_age\";s:2:\"21\";s:16:\"restriction_type\";s:3:\"all\";s:9:\"multi_age\";i:0;s:17:\"restrict_register\";i:1;s:10:\"input_type\";s:7:\"buttons\";s:7:\"stepped\";i:0;s:12:\"button_order\";s:6:\"no-yes\";s:16:\"inherit_category\";i:0;s:8:\"remember\";i:0;s:13:\"remember_days\";s:3:\"365\";s:18:\"remember_timescale\";s:4:\"days\";s:19:\"remember_auto_check\";i:0;s:11:\"date_format\";s:8:\"mmddyyyy\";s:13:\"ignore_logged\";i:0;s:11:\"rechallenge\";s:1:\"1\";s:15:\"fail_link_title\";s:6:\"Custom\";s:9:\"fail_link\";s:22:\"https://www.google.com\";}','yes'),(88224,'wp_age_gate_messages','a:16:{s:11:\"instruction\";s:16:\"Age Verification\";s:9:\"messaging\";s:0:\"\";s:17:\"invalid_input_msg\";s:22:\"Your input was invalid\";s:13:\"under_age_msg\";s:43:\"You are not old enough to view this content\";s:17:\"generic_error_msg\";s:35:\"An error occurred, please try again\";s:16:\"remember_me_text\";s:11:\"Remember me\";s:14:\"yes_no_message\";s:29:\"Are you over %s years of age?\";s:8:\"yes_text\";s:3:\"Yes\";s:7:\"no_text\";s:2:\"No\";s:10:\"additional\";s:0:\"\";s:11:\"button_text\";s:6:\"Submit\";s:14:\"cookie_message\";s:85:\"Your browser does not support cookies, you may experience problems entering this site\";s:8:\"text_day\";s:3:\"Day\";s:10:\"text_month\";s:5:\"Month\";s:9:\"text_year\";s:4:\"Year\";s:10:\"aria_label\";s:36:\"Verify you are over %s years of age?\";}','yes'),(88225,'wp_age_gate_validation_messages','a:8:{s:17:\"validate_required\";s:29:\"The {field} field is required\";s:16:\"validate_numeric\";s:34:\"The {field} field must be a number\";s:16:\"validate_max_len\";s:56:\"The {field} field needs to be {param} characters or less\";s:16:\"validate_min_len\";s:57:\"The {field} field needs to be at least {param} characters\";s:20:\"validate_min_numeric\";s:79:\"The {field} field needs to be a numeric value, equal to, or higher than {param}\";s:20:\"validate_max_numeric\";s:78:\"The {field} field needs to be a numeric value, equal to, or lower than {param}\";s:16:\"validate_min_age\";s:71:\"The {field} field needs to have an age greater than or equal to {param}\";s:13:\"validate_date\";s:28:\"The date provided is invalid\";}','yes'),(88226,'wp_age_gate_appearance','a:19:{s:4:\"logo\";s:0:\"\";s:17:\"background_colour\";s:7:\"#0a0a0a\";s:18:\"background_opacity\";s:3:\"0.7\";s:16:\"background_image\";s:0:\"\";s:24:\"background_image_opacity\";s:1:\"1\";s:17:\"foreground_colour\";s:0:\"\";s:18:\"foreground_opacity\";s:1:\"1\";s:11:\"text_colour\";s:0:\"\";s:7:\"styling\";s:1:\"1\";s:12:\"device_width\";s:1:\"1\";s:12:\"switch_title\";i:0;s:12:\"custom_title\";s:16:\"Age Verification\";s:8:\"auto_tab\";i:0;s:15:\"title_separator\";s:1:\"-\";s:12:\"title_format\";s:9:\"page-name\";s:10:\"transition\";s:0:\"\";s:16:\"background_pos_x\";s:6:\"center\";s:16:\"background_pos_y\";s:6:\"center\";s:11:\"blur_amount\";s:1:\"0\";}','yes'),(88227,'wp_age_gate_advanced','a:24:{s:6:\"use_js\";s:1:\"1\";s:12:\"save_to_file\";i:0;s:10:\"custom_css\";s:0:\"\";s:17:\"restrict_archives\";i:0;s:10:\"dev_notify\";i:0;s:16:\"dev_hide_warning\";i:0;s:18:\"anonymous_age_gate\";i:0;s:8:\"endpoint\";s:4:\"ajax\";s:16:\"use_default_lang\";s:1:\"1\";s:12:\"use_meta_box\";i:0;s:11:\"custom_bots\";a:0:{}s:18:\"inherit_taxonomies\";i:0;s:16:\"enable_quicktags\";i:0;s:8:\"full_nav\";s:6:\"toggle\";s:20:\"enable_import_export\";i:0;s:12:\"post_to_self\";i:0;s:9:\"filter_qs\";i:0;s:8:\"js_hooks\";i:0;s:11:\"cookie_name\";s:0:\"\";s:7:\"rta_tag\";i:0;s:13:\"munge_options\";i:0;s:10:\"trap_focus\";s:1:\"1\";s:13:\"disable_right\";i:0;s:14:\"preload_images\";s:1:\"1\";}','yes'),(88228,'wp_age_gate_access','a:16:{s:4:\"post\";i:0;s:4:\"page\";i:0;s:10:\"attachment\";i:0;s:8:\"revision\";i:0;s:13:\"nav_menu_item\";i:0;s:10:\"custom_css\";i:0;s:19:\"customize_changeset\";i:0;s:12:\"oembed_cache\";i:0;s:12:\"user_request\";i:0;s:8:\"wp_block\";i:0;s:11:\"wp_template\";i:0;s:16:\"wp_template_part\";i:0;s:16:\"wp_global_styles\";i:0;s:13:\"wp_navigation\";i:0;s:6:\"recipe\";i:0;s:10:\"teammember\";i:0;}','yes'),(88230,'wp_age_gate_api','a:2:{s:4:\"base\";s:18:\"https://agegate.io\";s:3:\"api\";s:23:\"/api/license-manager/v1\";}','yes'),(88395,'options_enable_commerce7','1','no'),(88396,'_options_enable_commerce7','field_activateC7','no'),(88425,'auto_update_plugins','a:12:{i:0;s:57:\"acf-content-analysis-for-yoast-seo/yoast-acf-analysis.php\";i:1;s:21:\"age-gate/age-gate.php\";i:2;s:33:\"classic-editor/classic-editor.php\";i:3;s:27:\"git-updater/git-updater.php\";i:5;s:24:\"wordpress-seo/wp-seo.php\";i:11;s:59:\"modern-events-calendar-lite/modern-events-calendar-lite.php\";i:12;s:60:\"wp-slick-slider-and-image-carousel/wp-slick-image-slider.php\";i:13;s:29:\"gravityforms/gravityforms.php\";i:14;s:15:\"worker/init.php\";i:15;s:37:\"post-types-order/post-types-order.php\";i:16;s:58:\"responsive-accordion-and-collapse/responsive-accordion.php\";i:17;s:60:\"schema-and-structured-data-for-wp/structured-data-for-wp.php\";}','off'),(88542,'user_count','9','off'),(88544,'wpe_cache_last_cleared','2024-08-08 18:19:11','yes'),(88585,'age_gate_updated_from','2.21.2','yes'),(88586,'age_gate_restrictions','a:14:{s:11:\"default_age\";s:2:\"21\";s:4:\"type\";s:3:\"all\";s:9:\"multi_age\";i:0;s:10:\"input_type\";s:7:\"buttons\";s:11:\"date_format\";s:10:\"MM DD YYYY\";s:12:\"button_order\";s:6:\"no-yes\";s:10:\"year_order\";s:8:\"low-high\";s:7:\"stepped\";i:0;s:8:\"remember\";i:0;s:15:\"remember_length\";a:2:{s:15:\"remember_length\";s:3:\"365\";s:13:\"remember_time\";s:4:\"days\";}s:19:\"remember_auto_check\";i:0;s:13:\"ignore_logged\";i:0;s:11:\"rechallenge\";s:1:\"1\";s:8:\"redirect\";s:22:\"https://www.google.com\";}','yes'),(88587,'age_gate_appearance','a:22:{s:4:\"logo\";s:0:\"\";s:13:\"disable_title\";b:0;s:7:\"heading\";s:0:\"\";s:16:\"background_color\";s:7:\"#0a0a0a\";s:18:\"background_opacity\";s:3:\"0.7\";s:4:\"blur\";s:1:\"0\";s:16:\"background_image\";s:0:\"\";s:19:\"background_position\";a:2:{s:1:\"x\";s:6:\"center\";s:1:\"y\";s:6:\"center\";}s:24:\"background_image_opacity\";s:1:\"1\";s:16:\"foreground_color\";s:0:\"\";s:18:\"foreground_opacity\";s:1:\"1\";s:10:\"text_color\";s:0:\"\";s:11:\"enqueue_css\";s:1:\"1\";s:15:\"heading_element\";s:2:\"h1\";s:16:\"headline_element\";s:2:\"h2\";s:20:\"sub_headline_element\";s:1:\"p\";s:15:\"exit_transition\";s:0:\"\";s:8:\"viewport\";s:1:\"1\";s:14:\"input_auto_tab\";i:0;s:12:\"switch_title\";i:0;s:12:\"custom_title\";s:16:\"Age Verification\";s:9:\"simplebar\";b:0;}','yes'),(88588,'age_gate_messages','a:20:{s:8:\"headline\";s:16:\"Age Verification\";s:11:\"subheadline\";s:0:\"\";s:14:\"label_remember\";s:11:\"Remember me\";s:10:\"label_aria\";s:36:\"Verify you are over %s years of age?\";s:13:\"label_buttons\";s:29:\"Are you over %s years of age?\";s:9:\"label_yes\";s:3:\"Yes\";s:8:\"label_no\";s:2:\"No\";s:9:\"label_day\";s:3:\"Day\";s:11:\"label_month\";s:5:\"Month\";s:10:\"label_year\";s:4:\"Year\";s:15:\"placeholder_day\";s:2:\"DD\";s:17:\"placeholder_month\";s:2:\"MM\";s:16:\"placeholder_year\";s:4:\"YYYY\";s:12:\"label_submit\";s:6:\"Submit\";s:16:\"label_no_cookies\";s:85:\"Your browser does not support cookies, you may experience problems entering this site\";s:7:\"content\";s:0:\"\";s:13:\"error_invalid\";s:22:\"Your input was invalid\";s:12:\"error_failed\";s:43:\"You are not old enough to view this content\";s:13:\"error_generic\";s:35:\"An error occurred, please try again\";s:10:\"error_date\";s:32:\"The {field} must be a valid date\";}','yes'),(88589,'age_gate_content','a:5:{s:7:\"disable\";a:18:{s:4:\"post\";i:0;s:4:\"page\";i:0;s:7:\"product\";b:0;s:10:\"collection\";b:0;s:6:\"recipe\";i:0;s:10:\"teammember\";i:0;s:10:\"attachment\";i:0;s:8:\"revision\";i:0;s:13:\"nav_menu_item\";i:0;s:10:\"custom_css\";i:0;s:19:\"customize_changeset\";i:0;s:12:\"oembed_cache\";i:0;s:12:\"user_request\";i:0;s:8:\"wp_block\";i:0;s:11:\"wp_template\";i:0;s:16:\"wp_template_part\";i:0;s:16:\"wp_global_styles\";i:0;s:13:\"wp_navigation\";i:0;}s:8:\"ancestor\";a:1:{s:4:\"page\";b:0;}s:7:\"inherit\";b:0;i:4;a:1:{s:9:\"error_404\";a:1:{s:7:\"default\";b:0;}}i:3;a:1:{s:9:\"error_404\";a:1:{s:7:\"default\";b:0;}}}','yes'),(88590,'age_gate_advanced','a:18:{s:6:\"method\";s:2:\"js\";s:8:\"renderer\";s:8:\"template\";s:21:\"disable_ajax_fallback\";b:0;s:17:\"use_local_storage\";b:0;s:5:\"munge\";i:0;s:9:\"in_header\";b:0;s:8:\"js_hooks\";b:0;s:10:\"loader_img\";b:0;s:7:\"preload\";s:1:\"1\";s:5:\"focus\";s:1:\"1\";s:9:\"dev_tools\";i:0;s:3:\"rta\";i:0;s:7:\"toolbar\";s:6:\"toggle\";s:11:\"user_agents\";s:0:\"\";s:9:\"anonymous\";i:0;s:11:\"cookie_name\";s:0:\"\";s:3:\"css\";s:0:\"\";s:8:\"css_type\";s:2:\"v2\";}','yes'),(88591,'age_gate_tools','a:5:{s:16:\"disable_age_gate\";b:0;s:11:\"dev_warning\";i:0;s:12:\"dev_endpoint\";b:0;s:8:\"feedback\";b:0;s:12:\"dev_versions\";i:0;}','yes'),(88592,'age_gate_version','3.5.2','yes'),(88673,'git-updater_allow_tracking','yes','yes'),(88674,'git-updater_tracking_notice','hide','yes'),(88675,'git-updater_tracking_last_send','1671477292','yes'),(88723,'new_admin_email','info@wineworks.co','yes'),(88726,'action_scheduler_hybrid_store_demarkation','919','yes'),(88727,'schema-ActionScheduler_StoreSchema','6.0.1667516497','yes'),(88728,'schema-ActionScheduler_LoggerSchema','3.0.1667516497','yes'),(88729,'widget_tribe-widget-events-list','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(88731,'action_scheduler_lock_async-request-runner','1669906565','yes'),(88737,'gf_db_version','2.9.1','off'),(88738,'rg_form_version','2.9.1','no'),(88739,'gform_enable_background_updates','1','yes'),(88740,'gform_pending_installation','','yes'),(88741,'widget_gform_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(88742,'gravityformsaddon_gravityformswebapi_version','1.0','yes'),(88743,'gform_version_info','a:12:{s:12:\"is_valid_key\";b:1;s:6:\"reason\";s:0:\"\";s:7:\"version\";s:5:\"2.9.1\";s:3:\"url\";s:165:\"https://s3.amazonaws.com/gravityforms/releases/gravityforms_2.9.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=54KAj34qpp6N2bLzndJ9j8WDOOo%3D\";s:15:\"expiration_time\";i:1745078400;s:9:\"offerings\";a:69:{s:12:\"gravityforms\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.9.1\";s:14:\"version_latest\";s:7:\"2.9.1.3\";s:3:\"url\";s:165:\"https://s3.amazonaws.com/gravityforms/releases/gravityforms_2.9.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=54KAj34qpp6N2bLzndJ9j8WDOOo%3D\";s:10:\"url_latest\";s:167:\"https://s3.amazonaws.com/gravityforms/releases/gravityforms_2.9.1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=7QEAuCjBtPkbT2w8A0f3lA0ogmg%3D\";}s:21:\"gravityforms2checkout\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.3.0\";s:14:\"version_latest\";s:5:\"2.3.0\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/2checkout/gravityforms2checkout_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=vxCqBYxuXQFFjl1z4%2FeDJeS%2BIXo%3D\";s:10:\"url_latest\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/2checkout/gravityforms2checkout_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=vxCqBYxuXQFFjl1z4%2FeDJeS%2BIXo%3D\";}s:26:\"gravityformsactivecampaign\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.1.0\";s:14:\"version_latest\";s:5:\"2.1.0\";s:3:\"url\";s:192:\"https://s3.amazonaws.com/gravityforms/addons/activecampaign/gravityformsactivecampaign_2.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=v8H66FEmOgX2BR4geZQm92C6BGM%3D\";s:10:\"url_latest\";s:192:\"https://s3.amazonaws.com/gravityforms/addons/activecampaign/gravityformsactivecampaign_2.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=v8H66FEmOgX2BR4geZQm92C6BGM%3D\";}s:32:\"gravityformsadvancedpostcreation\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";s:3:\"url\";s:206:\"https://s3.amazonaws.com/gravityforms/addons/advancedpostcreation/gravityformsadvancedpostcreation_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=qmZwNpHGKkvilecm%2B6ZHZATNPyI%3D\";s:10:\"url_latest\";s:206:\"https://s3.amazonaws.com/gravityforms/addons/advancedpostcreation/gravityformsadvancedpostcreation_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=qmZwNpHGKkvilecm%2B6ZHZATNPyI%3D\";}s:20:\"gravityformsagilecrm\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.5.0\";s:14:\"version_latest\";s:5:\"1.5.0\";s:3:\"url\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/agilecrm/gravityformsagilecrm_1.5.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=lpX2keCNxgv3v%2F6FwtyYvpzJm6w%3D\";s:10:\"url_latest\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/agilecrm/gravityformsagilecrm_1.5.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=lpX2keCNxgv3v%2F6FwtyYvpzJm6w%3D\";}s:19:\"gravityformsakismet\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.0\";s:14:\"version_latest\";s:5:\"1.0.1\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/akismet/gravityformsakismet_1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=12PD6QJiSRuYeOBKFgdvRz7QpEw%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/akismet/gravityformsakismet_1.0.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=g7p8NB1L0oo0rjDQDXMK5vtB6cc%3D\";}s:24:\"gravityformsauthorizenet\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:4:\"2.11\";s:14:\"version_latest\";s:4:\"2.11\";s:3:\"url\";s:187:\"https://s3.amazonaws.com/gravityforms/addons/authorizenet/gravityformsauthorizenet_2.11.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=AF42MRJYLZP0cCpE3oCL8dfgp2E%3D\";s:10:\"url_latest\";s:187:\"https://s3.amazonaws.com/gravityforms/addons/authorizenet/gravityformsauthorizenet_2.11.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=AF42MRJYLZP0cCpE3oCL8dfgp2E%3D\";}s:18:\"gravityformsaweber\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.0.0\";s:14:\"version_latest\";s:5:\"4.0.0\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/aweber/gravityformsaweber_4.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=fwS5iC20HkDXT6C9a5IJldAfubU%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/aweber/gravityformsaweber_4.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=fwS5iC20HkDXT6C9a5IJldAfubU%3D\";}s:21:\"gravityformsbatchbook\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";s:3:\"url\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/batchbook/gravityformsbatchbook_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=3ZA%2FuCthT6mcwqHDRLKdQspoZxs%3D\";s:10:\"url_latest\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/batchbook/gravityformsbatchbook_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=3ZA%2FuCthT6mcwqHDRLKdQspoZxs%3D\";}s:18:\"gravityformsbreeze\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.6.0\";s:14:\"version_latest\";s:5:\"1.6.0\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/breeze/gravityformsbreeze_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=lASyZ8gj2xGGuEWAHgsWYK0F9wQ%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/breeze/gravityformsbreeze_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=lASyZ8gj2xGGuEWAHgsWYK0F9wQ%3D\";}s:27:\"gravityformscampaignmonitor\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.0.0\";s:14:\"version_latest\";s:5:\"4.0.0\";s:3:\"url\";s:194:\"https://s3.amazonaws.com/gravityforms/addons/campaignmonitor/gravityformscampaignmonitor_4.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=a87dgdg2PeBn8RWuqVILEp8DlN0%3D\";s:10:\"url_latest\";s:194:\"https://s3.amazonaws.com/gravityforms/addons/campaignmonitor/gravityformscampaignmonitor_4.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=a87dgdg2PeBn8RWuqVILEp8DlN0%3D\";}s:20:\"gravityformscampfire\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.1\";s:14:\"version_latest\";s:5:\"1.2.2\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/campfire/gravityformscampfire_1.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=M4Lb5cKzDh7Sk21e%2FoyOjVZecDY%3D\";s:10:\"url_latest\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/campfire/gravityformscampfire_1.2.2.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=WIpoETGWY19U43buBXc4%2BVSDAa8%3D\";}s:22:\"gravityformscapsulecrm\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.7.0\";s:14:\"version_latest\";s:5:\"1.7.0\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/capsulecrm/gravityformscapsulecrm_1.7.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=NUX4A5LV1SxbR0GG%2Fek27XKa4Bg%3D\";s:10:\"url_latest\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/capsulecrm/gravityformscapsulecrm_1.7.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=NUX4A5LV1SxbR0GG%2Fek27XKa4Bg%3D\";}s:26:\"gravityformschainedselects\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.7\";s:14:\"version_latest\";s:3:\"1.7\";s:3:\"url\";s:190:\"https://s3.amazonaws.com/gravityforms/addons/chainedselects/gravityformschainedselects_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=cXPGmbsDfHnXg6JySVQd1XQrImY%3D\";s:10:\"url_latest\";s:190:\"https://s3.amazonaws.com/gravityforms/addons/chainedselects/gravityformschainedselects_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=cXPGmbsDfHnXg6JySVQd1XQrImY%3D\";}s:23:\"gravityformscleverreach\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.8\";s:14:\"version_latest\";s:3:\"1.8\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/cleverreach/gravityformscleverreach_1.8.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=FVqQx1zKSc3eWDLxUIuzLI00px4%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/cleverreach/gravityformscleverreach_1.8.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=FVqQx1zKSc3eWDLxUIuzLI00px4%3D\";}s:15:\"gravityformscli\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:3:\"1.5\";s:3:\"url\";s:0:\"\";s:10:\"url_latest\";s:172:\"https://s3.amazonaws.com/gravityforms/addons/cli/gravityformscli_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=N00Cr8Oselo76%2BlLI%2F7FhHY5zPw%3D\";}s:27:\"gravityformsconstantcontact\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.7\";s:14:\"version_latest\";s:3:\"1.7\";s:3:\"url\";s:194:\"https://s3.amazonaws.com/gravityforms/addons/constantcontact/gravityformsconstantcontact_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=UCy7jkvRPc9Hw2KG2g%2BIBUOn9bY%3D\";s:10:\"url_latest\";s:194:\"https://s3.amazonaws.com/gravityforms/addons/constantcontact/gravityformsconstantcontact_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=UCy7jkvRPc9Hw2KG2g%2BIBUOn9bY%3D\";}s:31:\"gravityformsconversationalforms\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.5.0\";s:14:\"version_latest\";s:5:\"1.5.1\";s:3:\"url\";s:204:\"https://s3.amazonaws.com/gravityforms/addons/conversationalforms/gravityformsconversationalforms_1.5.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=tPrJhgdh1raRzW%2Fj2P4OrOEJXhQ%3D\";s:10:\"url_latest\";s:204:\"https://s3.amazonaws.com/gravityforms/addons/conversationalforms/gravityformsconversationalforms_1.5.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=xzq%2F1p9AuvjwhOs2rhxviufirtM%3D\";}s:22:\"gravityformsconvertkit\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.1.0\";s:14:\"version_latest\";s:5:\"1.1.0\";s:3:\"url\";s:188:\"https://s3.amazonaws.com/gravityforms/addons/convertkit/gravityformsconvertkit_1.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=%2FNnnntsZhB6nOCQm2z9%2BuzyUrEM%3D\";s:10:\"url_latest\";s:188:\"https://s3.amazonaws.com/gravityforms/addons/convertkit/gravityformsconvertkit_1.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=%2FNnnntsZhB6nOCQm2z9%2BuzyUrEM%3D\";}s:19:\"gravityformscoupons\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"3.4.0\";s:14:\"version_latest\";s:5:\"3.4.0\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/coupons/gravityformscoupons_3.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=k0kqyKTjLjfNQrbYUebIwkI%2F65I%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/coupons/gravityformscoupons_3.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=k0kqyKTjLjfNQrbYUebIwkI%2F65I%3D\";}s:17:\"gravityformsdebug\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:10:\"1.0.beta12\";s:3:\"url\";s:0:\"\";s:10:\"url_latest\";s:179:\"https://s3.amazonaws.com/gravityforms/addons/debug/gravityformsdebug_1.0.beta12.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=kmplWTMrh8maYDJeNZU6ybSNJ24%3D\";}s:19:\"gravityformsdropbox\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"3.2.0\";s:14:\"version_latest\";s:5:\"3.2.0\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/dropbox/gravityformsdropbox_3.2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=BgkaK8NITv9nq8wsm8mqvvMOm5s%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/dropbox/gravityformsdropbox_3.2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=BgkaK8NITv9nq8wsm8mqvvMOm5s%3D\";}s:24:\"gravityformsemailoctopus\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.3.0\";s:14:\"version_latest\";s:5:\"1.3.0\";s:3:\"url\";s:192:\"https://s3.amazonaws.com/gravityforms/addons/emailoctopus/gravityformsemailoctopus_1.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=ehagDsOL%2Bc8%2B8LmugYIu1F2eaVE%3D\";s:10:\"url_latest\";s:192:\"https://s3.amazonaws.com/gravityforms/addons/emailoctopus/gravityformsemailoctopus_1.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=ehagDsOL%2Bc8%2B8LmugYIu1F2eaVE%3D\";}s:16:\"gravityformsemma\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.6.0\";s:14:\"version_latest\";s:5:\"1.6.0\";s:3:\"url\";s:172:\"https://s3.amazonaws.com/gravityforms/addons/emma/gravityformsemma_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=f1WeCAP8Avni0gcS7LDa0gC2dR8%3D\";s:10:\"url_latest\";s:172:\"https://s3.amazonaws.com/gravityforms/addons/emma/gravityformsemma_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=f1WeCAP8Avni0gcS7LDa0gC2dR8%3D\";}s:22:\"gravityformsfreshbooks\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.8\";s:14:\"version_latest\";s:3:\"2.8\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/freshbooks/gravityformsfreshbooks_2.8.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=cPCYCyV%2Bb0F2ySawuQrZy15UmY4%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/freshbooks/gravityformsfreshbooks_2.8.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=cPCYCyV%2Bb0F2ySawuQrZy15UmY4%3D\";}s:23:\"gravityformsgeolocation\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";s:3:\"url\";s:190:\"https://s3.amazonaws.com/gravityforms/addons/geolocation/gravityformsgeolocation_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=j1ULlrv%2BFSuQMrraWd%2BepeWoWAE%3D\";s:10:\"url_latest\";s:190:\"https://s3.amazonaws.com/gravityforms/addons/geolocation/gravityformsgeolocation_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=j1ULlrv%2BFSuQMrraWd%2BepeWoWAE%3D\";}s:23:\"gravityformsgetresponse\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.8.0\";s:14:\"version_latest\";s:5:\"1.8.0\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/getresponse/gravityformsgetresponse_1.8.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=8KWsMJE1iFO3QosLsMn5upG6mNY%3D\";s:10:\"url_latest\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/getresponse/gravityformsgetresponse_1.8.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=8KWsMJE1iFO3QosLsMn5upG6mNY%3D\";}s:27:\"gravityformsgoogleanalytics\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.3.0\";s:14:\"version_latest\";s:5:\"2.3.0\";s:3:\"url\";s:194:\"https://s3.amazonaws.com/gravityforms/addons/googleanalytics/gravityformsgoogleanalytics_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=hsf9uAimMhs0d6mu8oix19l3ShY%3D\";s:10:\"url_latest\";s:194:\"https://s3.amazonaws.com/gravityforms/addons/googleanalytics/gravityformsgoogleanalytics_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=hsf9uAimMhs0d6mu8oix19l3ShY%3D\";}s:21:\"gravityformsgutenberg\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"1.0-rc-1.4\";s:14:\"version_latest\";s:10:\"1.0-rc-1.5\";s:3:\"url\";s:189:\"https://s3.amazonaws.com/gravityforms/addons/gutenberg/gravityformsgutenberg_1.0-rc-1.4.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=y88Izvqkl1AgvMZGRAJJ9Yic%2FpE%3D\";s:10:\"url_latest\";s:189:\"https://s3.amazonaws.com/gravityforms/addons/gutenberg/gravityformsgutenberg_1.0-rc-1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=nXWopFgldQiil%2BdAKR4YbY44lYs%3D\";}s:21:\"gravityformshelpscout\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.3.0\";s:14:\"version_latest\";s:5:\"2.3.0\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/helpscout/gravityformshelpscout_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=MGkqimVk98%2FtxhbKbRJ7V4hgn6c%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/helpscout/gravityformshelpscout_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=MGkqimVk98%2FtxhbKbRJ7V4hgn6c%3D\";}s:20:\"gravityformshighrise\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/highrise/gravityformshighrise_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=7nFLrj8JFbISFCggQnjBGptsRoo%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/highrise/gravityformshighrise_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=7nFLrj8JFbISFCggQnjBGptsRoo%3D\";}s:19:\"gravityformshipchat\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:3:\"1.2\";}s:19:\"gravityformshubspot\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.1.0\";s:14:\"version_latest\";s:5:\"2.1.0\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/hubspot/gravityformshubspot_2.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=5ElEzmM7IIkIf9rWWpkupHvCjLM%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/hubspot/gravityformshubspot_2.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=5ElEzmM7IIkIf9rWWpkupHvCjLM%3D\";}s:20:\"gravityformsicontact\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.7.0\";s:14:\"version_latest\";s:5:\"1.7.0\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/icontact/gravityformsicontact_1.7.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=siFVG8q6kR9lDw7WgawnuDaouI8%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/icontact/gravityformsicontact_1.7.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=siFVG8q6kR9lDw7WgawnuDaouI8%3D\";}s:19:\"gravityformslogging\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:5:\"1.3.1\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/logging/gravityformslogging_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=fPpvxcwn7Gb301D2V7f%2FJqH%2BNUU%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/logging/gravityformslogging_1.3.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=zynt4D47l8fP8LvUK2ye7mvlv%2Fc%3D\";}s:19:\"gravityformsmadmimi\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.5.0\";s:14:\"version_latest\";s:5:\"1.5.0\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/madmimi/gravityformsmadmimi_1.5.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=iy1RQzZZEjdJJrdNJi6trEOkCjg%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/madmimi/gravityformsmadmimi_1.5.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=iy1RQzZZEjdJJrdNJi6trEOkCjg%3D\";}s:21:\"gravityformsmailchimp\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"5.6.0\";s:14:\"version_latest\";s:5:\"5.6.0\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/mailchimp/gravityformsmailchimp_5.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=0EQljwRgboK%2FIp5FJFVT3Mcda9w%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/mailchimp/gravityformsmailchimp_5.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=0EQljwRgboK%2FIp5FJFVT3Mcda9w%3D\";}s:22:\"gravityformsmailerlite\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.0.0\";s:14:\"version_latest\";s:5:\"1.0.0\";s:3:\"url\";s:190:\"https://s3.amazonaws.com/gravityforms/addons/mailerlite/gravityformsmailerlite_1.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=hfxSj%2Fd%2B5g13xPvaQ%2FocpIuekl8%3D\";s:10:\"url_latest\";s:190:\"https://s3.amazonaws.com/gravityforms/addons/mailerlite/gravityformsmailerlite_1.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=hfxSj%2Fd%2B5g13xPvaQ%2FocpIuekl8%3D\";}s:19:\"gravityformsmailgun\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/mailgun/gravityformsmailgun_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=SIVIsDERDyc2ROlVt49OTC8Hgfo%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/mailgun/gravityformsmailgun_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=SIVIsDERDyc2ROlVt49OTC8Hgfo%3D\";}s:22:\"gravityformsmoderation\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.2.0\";s:14:\"version_latest\";s:5:\"1.2.1\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/moderation/gravityformsmoderation_1.2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=dCfPUoBnNsbjUFHIteIBVeOs%2F6I%3D\";s:10:\"url_latest\";s:188:\"https://s3.amazonaws.com/gravityforms/addons/moderation/gravityformsmoderation_1.2.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=8gEfb%2FyW7tgxw%2BZMSzpN8oMClLg%3D\";}s:18:\"gravityformsmollie\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.7.0\";s:14:\"version_latest\";s:5:\"1.7.0\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/mollie/gravityformsmollie_1.7.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=flmR8mbWiNyJNA4TLFgcA2XDGnA%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/mollie/gravityformsmollie_1.7.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=flmR8mbWiNyJNA4TLFgcA2XDGnA%3D\";}s:26:\"gravityformspartialentries\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.7\";s:14:\"version_latest\";s:3:\"1.7\";s:3:\"url\";s:190:\"https://s3.amazonaws.com/gravityforms/addons/partialentries/gravityformspartialentries_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=GZFLdJPfpveFsnWQbIeggLwH8js%3D\";s:10:\"url_latest\";s:190:\"https://s3.amazonaws.com/gravityforms/addons/partialentries/gravityformspartialentries_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=GZFLdJPfpveFsnWQbIeggLwH8js%3D\";}s:18:\"gravityformspaypal\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.5\";s:14:\"version_latest\";s:3:\"3.5\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/paypal/gravityformspaypal_3.5.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=iO5l%2FxqMQ814hoZdsyyHw%2BXAjto%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/paypal/gravityformspaypal_3.5.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=iO5l%2FxqMQ814hoZdsyyHw%2BXAjto%3D\";}s:33:\"gravityformspaypalexpresscheckout\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:0:\"\";}s:29:\"gravityformspaypalpaymentspro\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.7\";s:14:\"version_latest\";s:3:\"2.7\";s:3:\"url\";s:196:\"https://s3.amazonaws.com/gravityforms/addons/paypalpaymentspro/gravityformspaypalpaymentspro_2.7.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=we25ACif4jQnrUrqOtfO5UXnDME%3D\";s:10:\"url_latest\";s:196:\"https://s3.amazonaws.com/gravityforms/addons/paypalpaymentspro/gravityformspaypalpaymentspro_2.7.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=we25ACif4jQnrUrqOtfO5UXnDME%3D\";}s:21:\"gravityformspaypalpro\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.8.1\";s:14:\"version_latest\";s:5:\"1.8.4\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/paypalpro/gravityformspaypalpro_1.8.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=udxX9%2BMagKd9VHEAq832iFV65tc%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/paypalpro/gravityformspaypalpro_1.8.4.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=Lfy9gKyCN94AjT%2FcEhAJyMyTL3o%3D\";}s:20:\"gravityformspicatcha\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:3:\"2.0\";}s:16:\"gravityformspipe\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";s:3:\"url\";s:172:\"https://s3.amazonaws.com/gravityforms/addons/pipe/gravityformspipe_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=C4ObK3qNp4zNOosymzI0f11FszQ%3D\";s:10:\"url_latest\";s:172:\"https://s3.amazonaws.com/gravityforms/addons/pipe/gravityformspipe_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=C4ObK3qNp4zNOosymzI0f11FszQ%3D\";}s:17:\"gravityformspolls\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.3.0\";s:14:\"version_latest\";s:5:\"4.3.0\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/polls/gravityformspolls_4.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=PtWXa8owZVSHYn%2BpcrBhf7XqSsg%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/polls/gravityformspolls_4.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=PtWXa8owZVSHYn%2BpcrBhf7XqSsg%3D\";}s:20:\"gravityformspostmark\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/postmark/gravityformspostmark_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=ZVMj2JkRSx%2FNUrcU6OKmScI9d%2Bc%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/postmark/gravityformspostmark_1.4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=ZVMj2JkRSx%2FNUrcU6OKmScI9d%2Bc%3D\";}s:16:\"gravityformsppcp\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"3.8.0\";s:14:\"version_latest\";s:5:\"3.8.0\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/ppcp/gravityformsppcp_3.8.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=C%2BSt%2B9HL7uy0iuYQMZmirEzlT%2BU%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/ppcp/gravityformsppcp_3.8.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=C%2BSt%2B9HL7uy0iuYQMZmirEzlT%2BU%3D\";}s:16:\"gravityformsquiz\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.2.0\";s:14:\"version_latest\";s:5:\"4.2.1\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/quiz/gravityformsquiz_4.2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=EikI6EWMKt7teXt%2FvMvY4j%2BnpCY%3D\";s:10:\"url_latest\";s:172:\"https://s3.amazonaws.com/gravityforms/addons/quiz/gravityformsquiz_4.2.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=xfjzLtyTCBJtTlwe4SZZeW6niGU%3D\";}s:21:\"gravityformsrecaptcha\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.6.0\";s:14:\"version_latest\";s:5:\"1.6.0\";s:3:\"url\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/recaptcha/gravityformsrecaptcha_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=DHhIrgr9MbuVrS0koVRhROA9HxE%3D\";s:10:\"url_latest\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/recaptcha/gravityformsrecaptcha_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=DHhIrgr9MbuVrS0koVRhROA9HxE%3D\";}s:19:\"gravityformsrestapi\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"2.0-beta-2\";s:14:\"version_latest\";s:10:\"2.0-beta-2\";s:3:\"url\";s:185:\"https://s3.amazonaws.com/gravityforms/addons/restapi/gravityformsrestapi_2.0-beta-2.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=JJi2j9FHEnMog8TsRyY%2BlpPJ4xs%3D\";s:10:\"url_latest\";s:185:\"https://s3.amazonaws.com/gravityforms/addons/restapi/gravityformsrestapi_2.0-beta-2.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=JJi2j9FHEnMog8TsRyY%2BlpPJ4xs%3D\";}s:22:\"gravityformssalesforce\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.0.0\";s:14:\"version_latest\";s:5:\"1.0.0\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/salesforce/gravityformssalesforce_1.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=6%2BOlFk7HsB6o0dMn9zhx3o1d3f8%3D\";s:10:\"url_latest\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/salesforce/gravityformssalesforce_1.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=6%2BOlFk7HsB6o0dMn9zhx3o1d3f8%3D\";}s:20:\"gravityformssendgrid\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.6.0\";s:14:\"version_latest\";s:5:\"1.6.0\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/sendgrid/gravityformssendgrid_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=xjqPmm1aUO7VAHupUOmY0BWO2p4%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/sendgrid/gravityformssendgrid_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=xjqPmm1aUO7VAHupUOmY0BWO2p4%3D\";}s:21:\"gravityformssignature\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.6.0\";s:14:\"version_latest\";s:5:\"4.6.1\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/signature/gravityformssignature_4.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=%2F8tztS%2B4I9XEw0CrGX20kksgBx4%3D\";s:10:\"url_latest\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/signature/gravityformssignature_4.6.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=SmpgAYnV4E4yHZkQlocmXpT0lws%3D\";}s:17:\"gravityformsslack\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.1.0\";s:14:\"version_latest\";s:5:\"2.1.0\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/slack/gravityformsslack_2.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=fhHju0ojjjvjCkj3rtUdVKQwLmw%3D\";s:10:\"url_latest\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/slack/gravityformsslack_2.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=fhHju0ojjjvjCkj3rtUdVKQwLmw%3D\";}s:18:\"gravityformssquare\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.3.0\";s:14:\"version_latest\";s:5:\"2.3.0\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/square/gravityformssquare_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=DnRL3bf8ihNmtwfvWIhPzD95v2E%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/square/gravityformssquare_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=DnRL3bf8ihNmtwfvWIhPzD95v2E%3D\";}s:18:\"gravityformsstripe\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"5.9.0\";s:14:\"version_latest\";s:5:\"5.9.0\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/stripe/gravityformsstripe_5.9.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=dZsUrt%2Bo8%2BUQvyV1EFjBSJfRqf8%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/stripe/gravityformsstripe_5.9.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=dZsUrt%2Bo8%2BUQvyV1EFjBSJfRqf8%3D\";}s:18:\"gravityformssurvey\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.1.0\";s:14:\"version_latest\";s:5:\"4.1.1\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/survey/gravityformssurvey_4.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=J5YGVkzqDa7bYC1Mb0LMkH3zaU0%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/survey/gravityformssurvey_4.1.1.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=MmsFHOC8VFgzgXhbrxdlTiBse24%3D\";}s:18:\"gravityformstrello\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.1.0\";s:14:\"version_latest\";s:5:\"2.1.0\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/trello/gravityformstrello_2.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=5JCx7CZwkJ6%2F%2BFINrnkT04GXQR8%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/trello/gravityformstrello_2.1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=5JCx7CZwkJ6%2F%2BFINrnkT04GXQR8%3D\";}s:21:\"gravityformsturnstile\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.3.0\";s:14:\"version_latest\";s:5:\"1.3.0\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/turnstile/gravityformsturnstile_1.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=4BRSbheL0%2Fw8mUuP5%2FN6pU7aex0%3D\";s:10:\"url_latest\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/turnstile/gravityformsturnstile_1.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=4BRSbheL0%2Fw8mUuP5%2FN6pU7aex0%3D\";}s:18:\"gravityformstwilio\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"3.0.0\";s:14:\"version_latest\";s:5:\"3.0.0\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/twilio/gravityformstwilio_3.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=crmLRgtxeQHsyzajfNr41NMotdA%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/twilio/gravityformstwilio_3.0.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=crmLRgtxeQHsyzajfNr41NMotdA%3D\";}s:28:\"gravityformsuserregistration\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"5.3.0\";s:14:\"version_latest\";s:5:\"5.3.2\";s:3:\"url\";s:196:\"https://s3.amazonaws.com/gravityforms/addons/userregistration/gravityformsuserregistration_5.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=iAdC0BTZpDHksczrkKYlDckAGy0%3D\";s:10:\"url_latest\";s:198:\"https://s3.amazonaws.com/gravityforms/addons/userregistration/gravityformsuserregistration_5.3.2.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=L4extJfVUstQ1vXh8wQN%2FfFjne4%3D\";}s:20:\"gravityformswebhooks\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:3:\"1.5\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/webhooks/gravityformswebhooks_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=lA5FrpLRhGFrxw58uQS%2FQd7bMo4%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/webhooks/gravityformswebhooks_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=lA5FrpLRhGFrxw58uQS%2FQd7bMo4%3D\";}s:18:\"gravityformszapier\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.3.0\";s:14:\"version_latest\";s:5:\"4.3.0\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/zapier/gravityformszapier_4.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=W8o4tUdaoL3C5UcizNv29w9pjpg%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/zapier/gravityformszapier_4.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=W8o4tUdaoL3C5UcizNv29w9pjpg%3D\";}s:19:\"gravityformszohocrm\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.3.0\";s:14:\"version_latest\";s:5:\"2.3.0\";s:3:\"url\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/zohocrm/gravityformszohocrm_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=YfnQX8aWHuV9KOls95A%2F3uSJU%2Fw%3D\";s:10:\"url_latest\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/zohocrm/gravityformszohocrm_2.3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=YfnQX8aWHuV9KOls95A%2F3uSJU%2Fw%3D\";}s:11:\"gravitysmtp\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.6.0\";s:14:\"version_latest\";s:5:\"1.6.0\";s:3:\"url\";s:163:\"https://s3.amazonaws.com/gravitysmtp/releases/gravitysmtp_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=EBu39qjDaqcQcSI90RcnYmgdonc%3D\";s:10:\"url_latest\";s:163:\"https://s3.amazonaws.com/gravitysmtp/releases/gravitysmtp_1.6.0.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=EBu39qjDaqcQcSI90RcnYmgdonc%3D\";}}s:9:\"is_active\";s:1:\"1\";s:12:\"product_code\";s:5:\"GFDEV\";s:12:\"date_created\";s:19:\"2017-03-20 16:12:16\";s:14:\"version_latest\";s:7:\"2.9.1.3\";s:10:\"url_latest\";s:167:\"https://s3.amazonaws.com/gravityforms/releases/gravityforms_2.9.1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5W4WAA34F&Expires=1735992579&Signature=7QEAuCjBtPkbT2w8A0f3lA0ogmg%3D\";s:9:\"timestamp\";i:1735819779;}','off'),(88747,'rg_gforms_key','10ffe324fa5919f3b5e210b840003c0c','yes'),(88748,'gf_site_key','5bee29ea-7991-4acf-a3f4-a8c3e24ba223','yes'),(88749,'gf_site_secret','10b7bc6b-90e8-47bd-aeb0-804095ad945b','yes'),(88750,'gform_enable_noconflict','1','yes'),(88751,'rg_gforms_enable_akismet','1','yes'),(88752,'rg_gforms_currency','USD','yes'),(88753,'tribe_customizer','a:1:{s:15:\"global_elements\";a:2:{s:9:\"font_size\";s:1:\"0\";s:14:\"font_size_base\";s:2:\"16\";}}','yes'),(88755,'wp_calendar_block_has_published_posts','1','yes'),(88818,'category_children','a:0:{}','yes'),(88847,'options_spotify','','no'),(88848,'_options_spotify','field_5bbe149b5e081spotify','no'),(88849,'options_desktop_logo_width','350','no'),(88850,'_options_desktop_logo_width','field_5bbe126add578121','no'),(88851,'options_desktop_logo_width_on_scroll','250','no'),(88852,'_options_desktop_logo_width_on_scroll','field_5bbe126add578121s','no'),(88853,'options_mobile_logo_width','200','no'),(88854,'_options_mobile_logo_width','field_5bbe126add578121a','no'),(88855,'options_footer_background','color','no'),(88856,'_options_footer_background','field_5fe0f8e61bee5ff','no'),(88857,'options_footer_background_color','#000000','no'),(88858,'_options_footer_background_color','field_5c929f2c3d3c4ff','no'),(88886,'gf_previous_db_version','2.9.0','yes'),(88887,'gf_upgrade_lock','','yes'),(88888,'gform_sticky_admin_messages','a:0:{}','yes'),(88890,'gf_rest_api_db_version','2.9.1','yes'),(88894,'fs_api_cache','a:4:{s:46:\"get:/v1/users/4711402/plugins/11525/plans.json\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":1:{s:5:\"plans\";a:2:{i:0;O:14:\"FS_Plugin_Plan\":24:{s:2:\"id\";s:5:\"19696\";s:7:\"updated\";N;s:7:\"created\";s:19:\"2022-11-30 15:34:34\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:9:\"plugin_id\";s:5:\"11525\";s:4:\"name\";s:4:\"free\";s:5:\"title\";s:4:\"Free\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:1;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";N;s:23:\"is_require_subscription\";b:0;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:0;s:9:\"is_hidden\";b:0;s:7:\"pricing\";N;s:8:\"features\";N;}i:1;O:14:\"FS_Plugin_Plan\":24:{s:2:\"id\";s:5:\"19638\";s:7:\"updated\";s:19:\"2022-12-10 16:36:00\";s:7:\"created\";s:19:\"2022-11-25 18:01:06\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:9:\"plugin_id\";s:5:\"11525\";s:4:\"name\";s:7:\"default\";s:5:\"title\";s:7:\"Default\";s:11:\"description\";s:19:\"Yearly subscription\";s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:1;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";i:14;s:23:\"is_require_subscription\";b:1;s:10:\"support_kb\";s:39:\"https://git-updater.com/knowledge-base/\";s:13:\"support_forum\";s:29:\"https://git-updater.slack.com\";s:13:\"support_email\";s:23:\"support@git-updater.com\";s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:1;s:9:\"is_hidden\";b:0;s:7:\"pricing\";N;s:8:\"features\";N;}}}s:7:\"created\";i:1735763922;s:9:\"timestamp\";i:1735850322;}s:66:\"get:/v1/users/4711402/plugins/11525/licenses.json?is_enriched=true\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":1:{s:8:\"licenses\";a:1:{i:0;O:17:\"FS_Plugin_License\":21:{s:2:\"id\";s:7:\"1077002\";s:7:\"updated\";s:19:\"2024-12-23 19:11:54\";s:7:\"created\";s:19:\"2023-01-16 18:18:59\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:9:\"plugin_id\";s:5:\"11525\";s:7:\"user_id\";s:7:\"4711402\";s:7:\"plan_id\";s:5:\"19638\";s:16:\"parent_plan_name\";N;s:17:\"parent_plan_title\";N;s:17:\"parent_license_id\";N;s:8:\"products\";N;s:10:\"pricing_id\";s:5:\"22577\";s:5:\"quota\";N;s:9:\"activated\";i:314;s:15:\"activated_local\";i:93;s:10:\"expiration\";s:19:\"2025-01-17 18:18:55\";s:10:\"secret_key\";s:32:\"sk_FalB3@Qgg.5%tWCU08qw3yOyd=0IZ\";s:15:\"is_whitelabeled\";b:1;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:1;s:12:\"is_cancelled\";b:0;}}}s:7:\"created\";i:1735763922;s:9:\"timestamp\";i:1735850322;}s:61:\"get:/v1/installs/11134079/licenses/1077002/subscriptions.json\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":1:{s:13:\"subscriptions\";a:1:{i:0;O:8:\"stdClass\":33:{s:8:\"tax_rate\";N;s:11:\"total_gross\";d:39.98;s:16:\"amount_per_cycle\";d:19.99;s:14:\"initial_amount\";d:19.99;s:14:\"renewal_amount\";d:19.99;s:17:\"renewals_discount\";N;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:13:\"billing_cycle\";i:12;s:19:\"outstanding_balance\";i:0;s:15:\"failed_payments\";i:0;s:10:\"trial_ends\";N;s:12:\"next_payment\";s:19:\"2025-01-16 18:18:55\";s:11:\"canceled_at\";N;s:7:\"user_id\";s:7:\"4711402\";s:10:\"install_id\";s:8:\"11108687\";s:7:\"plan_id\";s:5:\"19638\";s:10:\"pricing_id\";s:5:\"22577\";s:10:\"license_id\";s:7:\"1077002\";s:2:\"ip\";s:11:\"70.70.24.96\";s:12:\"country_code\";s:2:\"ca\";s:15:\"zip_postal_code\";N;s:6:\"vat_id\";N;s:9:\"coupon_id\";N;s:12:\"user_card_id\";s:6:\"317629\";s:6:\"source\";i:0;s:9:\"plugin_id\";s:5:\"11525\";s:11:\"external_id\";s:28:\"sub_1MQxGmFmXz63vF5vfsl3JIW3\";s:7:\"gateway\";s:6:\"stripe\";s:11:\"environment\";i:0;s:2:\"id\";s:6:\"353301\";s:7:\"created\";s:19:\"2023-01-16 18:18:59\";s:7:\"updated\";s:19:\"2024-01-16 19:20:40\";s:8:\"currency\";s:3:\"usd\";}}}s:7:\"created\";i:1735763922;s:9:\"timestamp\";i:1735850322;}s:73:\"get:/v1/installs/11134079/updates/latest.json?is_premium=true&readme=true\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":19:{s:9:\"plugin_id\";s:5:\"11525\";s:12:\"developer_id\";s:5:\"11274\";s:4:\"slug\";N;s:12:\"premium_slug\";s:11:\"git-updater\";s:7:\"version\";s:6:\"12.6.0\";s:11:\"sdk_version\";s:5:\"2.8.1\";s:25:\"requires_platform_version\";s:3:\"5.9\";s:37:\"requires_programming_language_version\";s:3:\"7.4\";s:20:\"tested_up_to_version\";s:3:\"6.6\";s:8:\"has_free\";b:1;s:11:\"has_premium\";b:1;s:12:\"release_mode\";s:8:\"released\";s:5:\"limit\";N;s:7:\"uniques\";i:9625;s:2:\"id\";s:5:\"78742\";s:7:\"created\";s:19:\"2024-10-13 16:23:25\";s:7:\"updated\";s:19:\"2024-11-30 18:28:25\";s:11:\"is_released\";b:0;s:3:\"url\";s:388:\"https://api.freemius.com/v1/installs/11134079/updates/78742.zip?is_premium=true&authorization=FSLA+11134079%3A3YhkCtD3i_5pHsGBKmiVIdei8yMhT7uVrp4ZDiNmZYVmXX4UkbXXl8O_cNDbpgUXA89zIwkvDOV5L-b68Bd60uMC0H0UaIhk3iE9g-UvPoBcxgdxCptiBfavT4DZajxKX0RcePRD3iEmrTMhzVE6pLWslozhTDEYTxt4wMnmAxtFRMZtIwBwiZqQotriKsU-EFo-RB46jctqKwEnuPznCGJapY4XusYyjxCZARkWOQVB76lAtQn4zJMPOBJmT8ThF4ihMiGJ4wy-94eW2OQadQ\";}s:7:\"created\";i:1732999063;s:9:\"timestamp\";i:1733002663;}}','off'),(88895,'rewrite_rules','a:224:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:11:\"^cart/(.+)$\";s:23:\"index.php?pagename=cart\";s:15:\"^checkout/(.+)$\";s:27:\"index.php?pagename=checkout\";s:14:\"^profile/(.+)$\";s:26:\"index.php?pagename=profile\";s:11:\"^club/(.+)$\";s:23:\"index.php?pagename=club\";s:18:\"^reservation/(.+)$\";s:30:\"index.php?pagename=reservation\";s:10:\"product/?$\";s:27:\"index.php?post_type=product\";s:40:\"product/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:35:\"product/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:27:\"product/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:13:\"collection/?$\";s:30:\"index.php?post_type=collection\";s:43:\"collection/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?post_type=collection&feed=$matches[1]\";s:38:\"collection/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?post_type=collection&feed=$matches[1]\";s:30:\"collection/page/([0-9]{1,})/?$\";s:48:\"index.php?post_type=collection&paged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"collection/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"collection/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"collection/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"collection/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"collection/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"collection/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"collection/([^/]+)/embed/?$\";s:43:\"index.php?collection=$matches[1]&embed=true\";s:31:\"collection/([^/]+)/trackback/?$\";s:37:\"index.php?collection=$matches[1]&tb=1\";s:51:\"collection/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?collection=$matches[1]&feed=$matches[2]\";s:46:\"collection/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?collection=$matches[1]&feed=$matches[2]\";s:39:\"collection/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?collection=$matches[1]&paged=$matches[2]\";s:46:\"collection/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?collection=$matches[1]&cpage=$matches[2]\";s:35:\"collection/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?collection=$matches[1]&page=$matches[2]\";s:27:\"collection/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"collection/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"collection/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"collection/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"collection/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"collection/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"recipe/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"recipe/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"recipe/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"recipe/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"recipe/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"recipe/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:23:\"recipe/([^/]+)/embed/?$\";s:39:\"index.php?recipe=$matches[1]&embed=true\";s:27:\"recipe/([^/]+)/trackback/?$\";s:33:\"index.php?recipe=$matches[1]&tb=1\";s:35:\"recipe/([^/]+)/page/?([0-9]{1,})/?$\";s:46:\"index.php?recipe=$matches[1]&paged=$matches[2]\";s:42:\"recipe/([^/]+)/comment-page-([0-9]{1,})/?$\";s:46:\"index.php?recipe=$matches[1]&cpage=$matches[2]\";s:31:\"recipe/([^/]+)(?:/([0-9]+))?/?$\";s:45:\"index.php?recipe=$matches[1]&page=$matches[2]\";s:23:\"recipe/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:33:\"recipe/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:53:\"recipe/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"recipe/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"recipe/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"recipe/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"teammember/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"teammember/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"teammember/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"teammember/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"teammember/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"teammember/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"teammember/([^/]+)/embed/?$\";s:43:\"index.php?teammember=$matches[1]&embed=true\";s:31:\"teammember/([^/]+)/trackback/?$\";s:37:\"index.php?teammember=$matches[1]&tb=1\";s:39:\"teammember/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?teammember=$matches[1]&paged=$matches[2]\";s:46:\"teammember/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?teammember=$matches[1]&cpage=$matches[2]\";s:35:\"teammember/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?teammember=$matches[1]&page=$matches[2]\";s:27:\"teammember/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"teammember/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"teammember/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"teammember/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"teammember/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"teammember/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:56:\"recipe_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?recipe_category=$matches[1]&feed=$matches[2]\";s:51:\"recipe_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?recipe_category=$matches[1]&feed=$matches[2]\";s:32:\"recipe_category/([^/]+)/embed/?$\";s:48:\"index.php?recipe_category=$matches[1]&embed=true\";s:44:\"recipe_category/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?recipe_category=$matches[1]&paged=$matches[2]\";s:26:\"recipe_category/([^/]+)/?$\";s:37:\"index.php?recipe_category=$matches[1]\";s:33:\"brand/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"brand/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"brand/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"brand/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"brand/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"brand/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"brand/([^/]+)/embed/?$\";s:38:\"index.php?brand=$matches[1]&embed=true\";s:26:\"brand/([^/]+)/trackback/?$\";s:32:\"index.php?brand=$matches[1]&tb=1\";s:34:\"brand/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?brand=$matches[1]&paged=$matches[2]\";s:41:\"brand/([^/]+)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?brand=$matches[1]&cpage=$matches[2]\";s:30:\"brand/([^/]+)(?:/([0-9]+))?/?$\";s:44:\"index.php?brand=$matches[1]&page=$matches[2]\";s:22:\"brand/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"brand/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"brand/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"brand/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"brand/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"brand/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"wine_asset/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"wine_asset/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"wine_asset/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"wine_asset/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"wine_asset/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"wine_asset/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"wine_asset/([^/]+)/embed/?$\";s:43:\"index.php?wine_asset=$matches[1]&embed=true\";s:31:\"wine_asset/([^/]+)/trackback/?$\";s:37:\"index.php?wine_asset=$matches[1]&tb=1\";s:39:\"wine_asset/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?wine_asset=$matches[1]&paged=$matches[2]\";s:46:\"wine_asset/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?wine_asset=$matches[1]&cpage=$matches[2]\";s:35:\"wine_asset/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?wine_asset=$matches[1]&page=$matches[2]\";s:27:\"wine_asset/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"wine_asset/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"wine_asset/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"wine_asset/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"wine_asset/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"wine_asset/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:49:\"platform/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:61:\"index.php?taxonomy=platform&term=$matches[1]&feed=$matches[2]\";s:44:\"platform/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:61:\"index.php?taxonomy=platform&term=$matches[1]&feed=$matches[2]\";s:25:\"platform/([^/]+)/embed/?$\";s:55:\"index.php?taxonomy=platform&term=$matches[1]&embed=true\";s:37:\"platform/([^/]+)/page/?([0-9]{1,})/?$\";s:62:\"index.php?taxonomy=platform&term=$matches[1]&paged=$matches[2]\";s:19:\"platform/([^/]+)/?$\";s:44:\"index.php?taxonomy=platform&term=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:12:\"sitemap\\.xml\";s:24:\"index.php??sitemap=index\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:40:\"index.php?&page_id=412&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(88896,'mec_table_version_wp_mec_attendees','1.1.0','yes'),(88897,'mec_core_db','6.10.1','yes'),(88899,'mec_options','a:5:{s:8:\"settings\";a:135:{s:24:\"multiple_day_show_method\";s:18:\"first_day_listgrid\";s:18:\"google_maps_status\";i:1;s:20:\"export_module_status\";i:1;s:2:\"sn\";a:7:{s:9:\"googlecal\";i:1;s:4:\"ical\";i:1;s:8:\"facebook\";i:1;s:5:\"gplus\";i:1;s:7:\"twitter\";i:1;s:8:\"linkedin\";i:1;s:5:\"email\";i:1;}s:16:\"countdown_status\";i:1;s:21:\"social_network_status\";i:1;s:20:\"default_skin_archive\";s:13:\"full_calendar\";s:16:\"hide_time_method\";s:3:\"end\";s:24:\"remove_data_on_uninstall\";s:1:\"0\";s:11:\"date_suffix\";s:1:\"0\";s:6:\"schema\";s:1:\"1\";s:8:\"weekdays\";a:5:{i:0;s:1:\"1\";i:1;s:1:\"2\";i:2;s:1:\"3\";i:3;s:1:\"4\";i:4;s:1:\"5\";}s:8:\"weekends\";a:2:{i:0;s:1:\"7\";i:1;s:1:\"6\";}s:17:\"datepicker_format\";s:14:\"yy-mm-dd&Y-m-d\";s:13:\"midnight_hour\";s:1:\"0\";s:14:\"event_as_popup\";s:1:\"1\";s:11:\"sh_as_popup\";s:1:\"1\";s:21:\"include_image_in_feed\";s:1:\"1\";s:30:\"fallback_featured_image_status\";s:1:\"0\";s:10:\"tag_method\";s:8:\"post_tag\";s:9:\"ical_feed\";s:1:\"0\";s:18:\"ical_feed_upcoming\";s:1:\"0\";s:14:\"admin_calendar\";s:1:\"0\";s:19:\"booking_sender_name\";s:0:\"\";s:20:\"booking_sender_email\";s:14:\"david.messerli\";s:25:\"booking_recipients_method\";s:3:\"BCC\";s:13:\"archive_title\";s:6:\"Events\";s:17:\"archive_title_tag\";s:2:\"h1\";s:14:\"custom_archive\";s:0:\"\";s:25:\"monthly_view_archive_skin\";s:7:\"classic\";s:22:\"timetable_archive_skin\";s:6:\"modern\";s:17:\"list_archive_skin\";s:7:\"classic\";s:17:\"grid_archive_skin\";s:7:\"classic\";s:21:\"default_skin_category\";s:4:\"list\";s:23:\"custom_archive_category\";s:0:\"\";s:26:\"monthly_view_category_skin\";s:7:\"classic\";s:23:\"timetable_category_skin\";s:6:\"modern\";s:18:\"list_category_skin\";s:8:\"standard\";s:18:\"grid_category_skin\";s:7:\"classic\";s:22:\"category_events_method\";s:1:\"1\";s:14:\"archive_status\";s:1:\"1\";s:4:\"slug\";s:6:\"events\";s:13:\"category_slug\";s:12:\"mec-category\";s:8:\"currency\";s:1:\"$\";s:16:\"currency_symptom\";s:0:\"\";s:13:\"currency_sign\";s:6:\"before\";s:18:\"thousand_separator\";s:1:\",\";s:17:\"decimal_separator\";s:1:\".\";s:17:\"currency_decimals\";s:1:\"2\";s:24:\"decimal_separator_status\";s:1:\"1\";s:24:\"assets_disable_stripe_js\";s:1:\"0\";s:22:\"assets_per_page_status\";s:1:\"0\";s:23:\"assets_in_footer_status\";s:1:\"0\";s:23:\"google_recaptcha_status\";s:1:\"0\";s:20:\"google_recaptcha_fes\";s:1:\"0\";s:24:\"google_recaptcha_sitekey\";s:24:\"VrJFt7pU^DYZ0aA4Ld#ZNOQ9\";s:26:\"google_recaptcha_secretkey\";s:0:\"\";s:11:\"time_format\";s:2:\"12\";s:13:\"fes_list_page\";s:0:\"\";s:13:\"fes_form_page\";s:0:\"\";s:20:\"fes_new_event_status\";s:0:\"\";s:24:\"fes_display_date_in_list\";s:1:\"0\";s:17:\"fes_thankyou_page\";s:0:\"\";s:21:\"fes_thankyou_page_url\";s:0:\"\";s:22:\"fes_thankyou_page_time\";s:4:\"2000\";s:17:\"fes_max_file_size\";s:4:\"5000\";s:14:\"fes_disclaimer\";s:0:\"\";s:20:\"fes_default_category\";s:0:\"\";s:16:\"fes_guest_status\";s:1:\"0\";s:20:\"fes_guest_name_email\";s:1:\"1\";s:23:\"fes_guest_user_creation\";s:1:\"0\";s:23:\"fes_section_data_fields\";s:1:\"1\";s:28:\"fes_section_countdown_method\";s:1:\"1\";s:27:\"fes_section_style_per_event\";s:1:\"0\";s:23:\"fes_section_event_links\";s:1:\"1\";s:16:\"fes_section_cost\";s:1:\"1\";s:26:\"fes_section_featured_image\";s:1:\"1\";s:22:\"fes_section_categories\";s:1:\"1\";s:18:\"fes_section_labels\";s:1:\"1\";s:32:\"fes_section_shortcode_visibility\";s:1:\"1\";s:23:\"fes_section_event_color\";s:1:\"1\";s:16:\"fes_section_tags\";s:1:\"1\";s:20:\"fes_section_location\";s:1:\"1\";s:16:\"fes_add_location\";s:1:\"1\";s:21:\"fes_section_organizer\";s:1:\"1\";s:22:\"fes_use_all_organizers\";s:1:\"1\";s:17:\"fes_add_organizer\";s:1:\"1\";s:19:\"fes_section_speaker\";s:1:\"0\";s:19:\"fes_section_sponsor\";s:1:\"0\";s:27:\"fes_section_hourly_schedule\";s:1:\"1\";s:18:\"fes_section_schema\";s:1:\"1\";s:19:\"fes_section_excerpt\";s:1:\"0\";s:8:\"fes_note\";s:1:\"0\";s:19:\"fes_note_visibility\";s:6:\"always\";s:13:\"fes_agreement\";s:1:\"0\";s:21:\"fes_agreement_checked\";s:1:\"0\";s:18:\"fes_agreement_page\";s:0:\"\";s:17:\"fes_required_body\";s:1:\"0\";s:20:\"fes_required_excerpt\";s:1:\"0\";s:17:\"fes_required_cost\";s:1:\"0\";s:23:\"fes_required_event_link\";s:1:\"0\";s:27:\"fes_required_more_info_link\";s:1:\"0\";s:21:\"fes_required_category\";s:1:\"0\";s:27:\"fes_required_featured_image\";s:1:\"0\";s:18:\"fes_required_label\";s:1:\"0\";s:20:\"userevents_shortcode\";s:4:\"1506\";s:20:\"search_bar_ajax_mode\";s:1:\"0\";s:22:\"search_bar_modern_type\";s:1:\"0\";s:19:\"search_bar_category\";s:1:\"1\";s:19:\"search_bar_location\";s:1:\"0\";s:20:\"search_bar_organizer\";s:1:\"0\";s:14:\"search_bar_tag\";s:1:\"0\";s:16:\"search_bar_label\";s:1:\"0\";s:21:\"search_bar_text_field\";s:1:\"1\";s:26:\"full_calendar_archive_skin\";s:7:\"classic\";s:24:\"yearly_view_archive_skin\";s:6:\"modern\";s:24:\"weekly_view_archive_skin\";s:7:\"classic\";s:23:\"daily_view_archive_skin\";s:7:\"classic\";s:16:\"map_archive_skin\";s:7:\"classic\";s:27:\"full_calendar_category_skin\";s:7:\"classic\";s:25:\"yearly_view_category_skin\";s:6:\"modern\";s:25:\"weekly_view_category_skin\";s:7:\"classic\";s:24:\"daily_view_category_skin\";s:7:\"classic\";s:16:\"mtcaptcha_status\";s:1:\"0\";s:13:\"mtcaptcha_fes\";s:1:\"0\";s:17:\"mtcaptcha_sitekey\";s:0:\"\";s:20:\"mtcaptcha_privatekey\";s:0:\"\";s:27:\"fes_section_other_locations\";s:1:\"1\";s:18:\"fes_required_dates\";s:1:\"0\";s:21:\"fes_required_location\";s:1:\"0\";s:18:\"display_credit_url\";s:1:\"1\";s:16:\"fes_access_roles\";a:11:{i:0;s:0:\"\";i:1;s:16:\"wpamelia-manager\";i:2;s:17:\"wpamelia-provider\";i:3;s:17:\"wpamelia-customer\";i:4;s:12:\"wpseo_editor\";i:5;s:13:\"wpseo_manager\";i:6;s:10:\"subscriber\";i:7;s:11:\"contributor\";i:8;s:6:\"author\";i:9;s:6:\"editor\";i:10;s:13:\"administrator\";}s:19:\"auto_month_rotation\";s:1:\"1\";s:21:\"events_trash_interval\";i:0;s:21:\"events_purge_interval\";i:0;}s:6:\"styles\";a:1:{s:3:\"CSS\";s:1007:\"root {\r\n --mec-heading-font-family: \\\'Crimson Text\\\', serif;\r\n --mec-paragraph-font-family: \\\'Crimson Text\\\', serif;\r\n}\r\n\r\n.entry-content .mec-wrap h1, .entry-content .mec-wrap h2, .entry-content .mec-wrap h3, .entry-content .mec-wrap h4, .entry-content .mec-wrap h5, .entry-content .mec-wrap h6, .mec-events-meta-group-countdown .countdown-w span, .mec-hourly-schedule-speaker-job-title, .mec-hourly-schedule-speaker-name, .mec-single-event .mec-event-meta dt, .mec-ticket-available-spots .mec-event-ticket-name, .mec-wrap h1, .mec-wrap h2, .mec-wrap h3, .mec-wrap h4, .mec-wrap h5, .mec-wrap h6, .post-type-archive-mec-events h1, .tax-mec_category h1 {\r\n    letter-spacing: 0.03em;\r\ntext-transform: none;\r\n}\r\n\r\n.mec-event-list-standard .mec-event-title {\r\n    letter-spacing: 0.03em;\r\n}\r\n\r\n.mec-calendar .mec-calendar-events-side .mec-table-side-day {\r\n    width: 60px;}\r\n\r\n.mec-calendar .mec-event-article .mec-event-image {\r\n    width: 100%;\r\n}\r\n\r\n.mec-wrap p {\r\n    color: #000000;\r\nfont-size: 20px;\r\n}\";}s:8:\"gateways\";a:1:{i:1;a:1:{s:6:\"status\";i:1;}}s:13:\"notifications\";a:12:{s:20:\"booking_notification\";a:3:{s:7:\"subject\";s:25:\"Your booking is received.\";s:10:\"recipients\";s:0:\"\";s:7:\"content\";s:238:\"Hello %%name%%,\r\n\r\n                    Your booking is received. We will check and confirm your booking as soon as possible.\r\n                    Thanks for your patience.\r\n\r\n                    Regards,\r\n                    %%blog_name%%\";}s:18:\"email_verification\";a:3:{s:7:\"subject\";s:27:\"Please verify your booking.\";s:10:\"recipients\";s:0:\"\";s:7:\"content\";s:205:\"Hi %%name%%,\r\n\r\n                    Please verify your booking by clicking on following link:\r\n\r\n                    %%verification_link%%\r\n\r\n                    Regards,\r\n                    %%blog_name%%\";}s:20:\"booking_confirmation\";a:3:{s:7:\"subject\";s:26:\"Your booking is confirmed.\";s:10:\"recipients\";s:0:\"\";s:7:\"content\";s:295:\"Hi %%name%%,\r\n\r\n                    Your booking is confirmed. You should be available at %%book_date%% in %%event_location_address%%.\r\n\r\n                    You can contact to event organizer by calling %%event_organizer_tel%%.\r\n\r\n                    Regards,\r\n                    %%blog_name%%\";}s:25:\"cancellation_notification\";a:7:{s:6:\"status\";s:1:\"0\";s:7:\"subject\";s:25:\"Your booking is canceled.\";s:10:\"recipients\";s:0:\"\";s:13:\"send_to_admin\";s:1:\"1\";s:17:\"send_to_organizer\";s:1:\"0\";s:12:\"send_to_user\";s:1:\"0\";s:7:\"content\";s:187:\"Hi %%name%%,\r\n\r\n                    For your information, your booking for %%event_title%% at %%book_date%% is canceled.\r\n\r\n                    Regards,\r\n                    %%blog_name%%\";}s:18:\"admin_notification\";a:3:{s:7:\"subject\";s:26:\"A new booking is received.\";s:10:\"recipients\";s:0:\"\";s:7:\"content\";s:262:\"Dear Admin,\r\n\r\n                    A new booking is received. Please check and confirm it as soon as possible.\r\n\r\n                    %%admin_link%%\r\n\r\n                    %%attendees_full_info%%\r\n\r\n                    Regards,\r\n                    %%blog_name%%\";}s:9:\"new_event\";a:4:{s:6:\"status\";s:1:\"1\";s:7:\"subject\";s:21:\"A new event is added.\";s:10:\"recipients\";s:0:\"\";s:7:\"content\";s:322:\"Hello,\r\n\r\n                    A new event just added. The event title is %%event_title%% and its status is %%event_status%%.\r\n                    The new event may need to be published. Please use this link for managing your website events: %%admin_link%%\r\n\r\n                    Regards,\r\n                    %%blog_name%%\";}s:21:\"user_event_publishing\";a:4:{s:6:\"status\";s:1:\"1\";s:7:\"subject\";s:25:\"Your event gets published\";s:10:\"recipients\";s:0:\"\";s:7:\"content\";s:224:\"Hello %%name%%,\r\n\r\n                    Your event gets published. You can check it below:\r\n\r\n                    <a href=\"%%event_link%%\">%%event_title%%</a>\r\n\r\n                    Regards,\r\n                    %%blog_name%%\";}s:13:\"event_soldout\";a:6:{s:6:\"status\";s:1:\"0\";s:7:\"subject\";s:22:\"Your event is soldout!\";s:10:\"recipients\";s:0:\"\";s:13:\"send_to_admin\";s:1:\"1\";s:17:\"send_to_organizer\";s:1:\"1\";s:7:\"content\";s:180:\"Hi %%name%%,\r\n\r\n                    For your information, your %%event_title%% event at %%book_date%% is soldout.\r\n\r\n                    Regards,\r\n                    %%blog_name%%\";}s:17:\"booking_rejection\";a:7:{s:6:\"status\";s:1:\"0\";s:7:\"subject\";s:26:\"Your booking got rejected!\";s:10:\"recipients\";s:0:\"\";s:13:\"send_to_admin\";s:1:\"0\";s:17:\"send_to_organizer\";s:1:\"1\";s:12:\"send_to_user\";s:1:\"1\";s:7:\"content\";s:187:\"Hi %%name%%,\r\n\r\n                    For your information, your booking for %%event_title%% at %%book_date%% is rejected.\r\n\r\n                    Regards,\r\n                    %%blog_name%%\";}s:16:\"certificate_send\";a:4:{s:6:\"status\";s:1:\"1\";s:7:\"subject\";s:27:\"Event Attendee Certificates\";s:10:\"recipients\";s:0:\"\";s:7:\"content\";s:282:\"Hi %%name%%,\n\n            Congratulations for successfully attending / completing the event %%event_title%%.\n            Click the following link to download or print your PDF certificate.\n            \n            %%certificate_link%%\n\n            Regards,\n            %%blog_name%%\";}s:13:\"booking_moved\";a:4:{s:6:\"status\";s:1:\"0\";s:7:\"subject\";s:33:\"Your booking has been rescheduled\";s:10:\"recipients\";s:0:\"\";s:7:\"content\";s:660:\"Hi %%name%%,\n\n            We are writing to inform you that your booking for %%event_title%%, %%book_datetime_prev%% has been moved to a new date. Please find the updated booking details below:\n\n            New Booking Details:\n            \n            Event/Service Name: %%event_title%%\n            New Date: %%book_date%%\n            New Time: %%book_time%%\n            \n            We apologize for any inconvenience this may cause and appreciate your understanding. If the new date and time do not work for you, you can cancel the booking using following link:\n            \n            %%cancellation_link%%\n\n            Regards,\n            %%blog_name%%\";}s:13:\"suggest_event\";a:3:{s:7:\"subject\";s:33:\"Discover more events you\'ll love!\";s:10:\"recipients\";s:0:\"\";s:7:\"content\";s:344:\"Hi %%name%%,\n\n            We thought you\'d be interested in the following event coming up that we think you\'ll love.\n            \n            %%event_title%%\n            %%event_description%%\n            \n            You can find more details and book your tickets on our website: %%event_link%% \n\n            Regards,\n            %%blog_name%%\";}}s:7:\"styling\";a:13:{s:5:\"color\";s:7:\"#af9f66\";s:9:\"dark_mode\";s:1:\"0\";s:11:\"title_color\";s:0:\"\";s:17:\"title_color_hover\";s:0:\"\";s:13:\"content_color\";s:0:\"\";s:16:\"mec_h_fontfamily\";s:57:\"[Crimson Text,regular,italic,600,600italic,700,700italic]\";s:16:\"mec_p_fontfamily\";s:57:\"[Crimson Text,regular,italic,600,600italic,700,700italic]\";s:14:\"disable_gfonts\";s:1:\"1\";s:13:\"accessibility\";s:1:\"0\";s:22:\"container_normal_width\";s:0:\"\";s:21:\"container_large_width\";s:0:\"\";s:9:\"fes_color\";s:0:\"\";s:15:\"notification_bg\";s:0:\"\";}}','yes'),(88900,'mec_installed','1','yes'),(88901,'mec_version','7.14.1','yes'),(88902,'widget_mec_mec_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(88903,'widget_mec_single_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(88904,'mec_gfont','https://fonts.googleapis.com/css?family=Crimson+Text%3Aregular%2C+italic%2C+600%2C+600italic%2C+700%2C+700italic%2C+%7CCrimson+Text%3A700italic%2C+700italic%2C+700italic%2C+700italic%2C+700italic%2C+700italic%2C+&subset=latin%2Clatin-ext','yes'),(88905,'mec_dyncss',':root,::before,::after{--mec-heading-font-family: \'Crimson Text\';--mec-paragraph-font-family: \'Crimson Text\';--mec-color-skin: #af9f66;--mec-color-skin-rgba-1: rgba(175,159,102,.25);--mec-color-skin-rgba-2: rgba(175,159,102,.5);--mec-color-skin-rgba-3: rgba(175,159,102,.75);--mec-color-skin-rgba-4: rgba(175,159,102,.11);--mec-container-normal-width: 1196px;--mec-container-large-width: 1690px;--mec-fes-main-color: #40d9f1;--mec-fes-main-color-rgba-1: rgba(64, 217, 241, 0.12);--mec-fes-main-color-rgba-2: rgba(64, 217, 241, 0.23);--mec-fes-main-color-rgba-3: rgba(64, 217, 241, 0.03);--mec-fes-main-color-rgba-4: rgba(64, 217, 241, 0.3);--mec-fes-main-color-rgba-5: rgb(64 217 241 / 7%);--mec-fes-main-color-rgba-6: rgba(64, 217, 241, 0.2);--mec-fluent-main-color: #ade7ff;--mec-fluent-main-color-rgba-1: rgba(173, 231, 255, 0.3);--mec-fluent-main-color-rgba-2: rgba(173, 231, 255, 0.8);--mec-fluent-main-color-rgba-3: rgba(173, 231, 255, 0.1);--mec-fluent-main-color-rgba-4: rgba(173, 231, 255, 0.2);--mec-fluent-main-color-rgba-5: rgba(173, 231, 255, 0.7);--mec-fluent-main-color-rgba-6: rgba(173, 231, 255, 0.7);--mec-fluent-bold-color: #00acf8;--mec-fluent-bg-hover-color: #ebf9ff;--mec-fluent-bg-color: #f5f7f8;--mec-fluent-second-bg-color: #d6eef9;}','yes'),(88906,'external_updates-modern-events-calendar-lite','O:8:\"stdClass\":5:{s:9:\"lastCheck\";i:1730323002;s:14:\"checkedVersion\";s:6:\"7.14.1\";s:6:\"update\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"modern-events-calendar-lite\";s:7:\"version\";s:6:\"7.16.0\";s:12:\"download_url\";s:84:\"https://api.webnus.site/v3/updates/download.php?key=889d97d7eb4da571ee5c35c225f87c35\";s:12:\"translations\";a:0:{}s:2:\"id\";i:0;s:8:\"homepage\";s:42:\"https://webnus.net/modern-events-calendar/\";s:6:\"tested\";s:5:\"6.6.1\";s:12:\"requires_php\";s:5:\"5.6.0\";s:14:\"upgrade_notice\";N;s:5:\"icons\";a:2:{s:2:\"1x\";s:90:\"https://api.webnus.site/v3/updates/package-assets/icons/modern-events-calendar-128x128.png\";s:2:\"2x\";s:90:\"https://api.webnus.site/v3/updates/package-assets/icons/modern-events-calendar-256x256.png\";}s:8:\"filename\";s:59:\"modern-events-calendar-lite/modern-events-calendar-lite.php\";}s:11:\"updateClass\";s:23:\"Puc_v4p11_Plugin_Update\";s:15:\"updateBaseClass\";s:13:\"Plugin_Update\";}','off'),(88907,'mec_saved_message_2_time','2024-09-05','yes'),(88908,'mec_custom_msg_2_html','<div class=\"mec-custom-msg-2-notification-set-box extra\"><div style=\"margin: 0\" class=\"w-row mec-custom-msg-notification-wrap\"><div class=\"w-col-sm-12\"><div class=\"w-clearfix w-box mec-cmsg-2-notification-box-wrap mec-new-addons-wrap\" style=\"margin-top:0;\"><div class=\"w-box-head\">Announcement<span><i class=\"mec-sl-close\"></i></span></div><div class=\"w-box-content\"><div class=\"mec-addons-notification-box-image\" style=\"width: 240px; margin-right: 10px;\"><img src=\"https://www.meadowcroftwines.com/wp-content/plugins/modern-events-calendar-lite/app/libraries/../api/addons-api/square-integration-addon.svg\" /></div><div class=\"mec-addons-notification-box-content mec-new-addons\" style=\"width: calc(100% - 270px);\"><div class=\"w-box-content\"><div class=\"csm-message-notice\" style=\"text-align: center; background: #BAF0FC57; border-radius: 6px;letter-spacing: 4.4px; color: #00CAE6; text-transform: uppercase; padding: 10px 5px; font-weight: bold; margin-bottom: 40px;\">Square Payment</div><p>As promised, another one of the most-requested addons by you, Square Payment, is released this week. The first six addons are out already. Webex Integration and Social Auto Poster and Elementor FES Builder and Seat and Gutenberg Single Builder and Square Payment are now available on our website for purchase.<br/></p><div style=\"clear:both\"></div><a href=\"https://webnus.net/modern-events-calendar/addons/square-payment/?ref=17\" target=\"_blank\">Read More</a></div></div></div></div></div></div></div>','yes'),(88909,'mec_custom_msg_2_display','1','yes'),(88910,'mec_custom_msg_2_display_option','1','yes'),(88911,'mec_custom_msg_2_close_option','open','yes'),(88912,'mec_saved_message_time','2024-09-05','yes'),(88913,'mec_custom_msg_html','<div class=\"mec-custom-msg-notification-set-box extra\"><div style=\"margin: 0\" class=\"w-row mec-custom-msg-notification-wrap\"><div class=\"w-col-sm-12\"><div class=\"w-clearfix w-box mec-cmsg-notification-box-wrap mec-new-addons-wrap\" style=\"margin-top:0;\"><div class=\"w-box-head\">Announcement<span><i class=\"mec-sl-close\"></i></span></div><div class=\"w-box-content\"><div class=\"mec-addons-notification-box-image\" style=\"width: 240px; margin-right: 10px;\"><img src=\"https://www.meadowcroftwines.com/wp-content/plugins/modern-events-calendar-lite/app/libraries/../api/addons-api/liquid-view-layouts.svg\" /></div><div class=\"mec-addons-notification-box-content mec-new-addons\" style=\"width: calc(100% - 270px);\"><div class=\"w-box-content\"><div class=\"csm-message-notice\" style=\"text-align: center; background: #BAF0FC57; border-radius: 6px;letter-spacing: 4.4px; color: #00CAE6; text-transform: uppercase; padding: 10px 5px; font-weight: bold; margin-bottom: 40px;\">Liquid View Layouts</div><p>As promised, another one of the most-requested addons by you, Liquid View Layouts, is released this week. The all addons are out already. Webex Integration and Social Auto Poster and Elementor FES Builder and Seat and Gutenberg Single Builder and Square Payment and Liquid View Layouts are now available on our website for purchase.<br/></p><div style=\"clear:both\"></div><a href=\"https://webnus.net/modern-events-calendar/addons/liquid-view-layout/?ref=17\" target=\"_blank\">Read More</a></div></div></div></div></div></div></div>','yes'),(88914,'mec_custom_msg_display','1','yes'),(88915,'mec_custom_msg_display_option','1','yes'),(88916,'mec_custom_msg_close_option','close','yes'),(88917,'mec_get_webnus_news_time','2024-10-30','yes'),(88918,'mec_get_webnus_news_html','','yes'),(88919,'mec_colors','a:5:{i:0;s:6:\"fdd700\";i:1;s:6:\"00a0d2\";i:2;s:6:\"e14d43\";i:3;s:6:\"dd823b\";i:4;s:6:\"a3b745\";}','yes'),(88920,'mec_latest_event_datetime','20240905142919','off'),(88921,'mec_category_children','a:0:{}','yes'),(88924,'wpos_anylc_redirect','','yes'),(88925,'wpos_anylc_site_uid','843ef525fb87b2498cb6619a9ecdf5ee','yes'),(88926,'wpos_anylc_pdt_25','a:1:{s:6:\"status\";i:2;}','yes'),(88928,'wpsisac_slider-category_children','a:0:{}','yes'),(88946,'rg_gforms_message','<!--GFM-->','yes'),(88954,'git_updater_api_key','ca81f14a8b89c848387b2e791c9fb134','no'),(88964,'gform_email_count','811','yes'),(88997,'auto_update_themes','a:1:{i:0;s:15:\"wp-spectratheme\";}','no'),(89070,'mec_transaction_version','6.8.21','yes'),(89072,'mwp_service_key','4b66eb45-d2d1-44e1-ac49-a8f12d7576b5','yes'),(89075,'mwp_openssl_parameters','a:2:{s:4:\"time\";i:1735763806;s:7:\"working\";b:1;}','on'),(89076,'mwp_incremental_update_active','','yes'),(89083,'worker_migration_version','2','yes'),(89088,'mwp_public_keys_refresh_time','1735772990','on'),(89089,'mwp_public_keys','a:9:{i:0;a:6:{s:2:\"id\";s:19:\"managewp_1733277902\";s:7:\"service\";s:8:\"managewp\";s:9:\"validFrom\";s:19:\"2024-12-19 01:26:15\";s:7:\"validTo\";s:19:\"2025-01-20 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvm1zZD0tbugkSQiSWFWh\nbKQ7VMTq7AUmr89meuO5+7LBysbtz2q1HkGrRe0Nur4oy7MbFA4zICx8X3jsY3W7\n0v5q1SAG7jcs1A1oPiqRsjtwnnPewqo5PcNacosFagKhUiOS7W3fTnvw49LXefv0\nnSqlRKRQrhpJO+aaWWcbLPyS9JkHzJHwKZccPOZS0GEJj58DU2wNqVClY629W5qo\nKJbdloZzEkojPMttPSCd3R0GsXgnTsF2Gnq1s/4t77NRCAoFBl2ufft/QK6Ue+hG\niifvDAAl11ePzDmfhmd4LmwLo11Buy1of1bsuMGSDaMIb6X/KrZnL/A6twu/ziJL\nfwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:0;}i:1;a:6:{s:2:\"id\";s:23:\"managewp_dev_1733277902\";s:7:\"service\";s:12:\"managewp_dev\";s:9:\"validFrom\";s:19:\"2024-12-19 01:26:15\";s:7:\"validTo\";s:19:\"2025-01-20 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApnTnC7yWZ7JWhS4/V9da\n1fHiMsBVTYYZUD8JC+4sCgMsZiMfJkKxIqJuWPVsyuff4vegzA+EjGKWi+qQP9GV\npZZOJCBM6moHP0Q1FYROEAli1xa1mcNcRpxKslaVEYUZYf3u7/NegSEqXhYvhao+\nkYbshCUB9h8xUoIyXezS1qK7r0Du9r2NX0zyRe4LtkkOuaDw18Dhy8tfZX2oPk+N\nXdbIzFAGda5qYCFaHpZl/fVahIMJ+XinlZ9CPJUZMSoRwO/+PGknZbwd2iozcFZL\nFnu562BvaCllp4sVnK4+xz1E91R6ICSVHCD3zQA+o5kK+9uqqjas5nW0YQ0S/SH3\nKQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:0;}i:2;a:6:{s:2:\"id\";s:16:\"mwp20_1733277902\";s:7:\"service\";s:5:\"mwp20\";s:9:\"validFrom\";s:19:\"2024-12-19 01:26:15\";s:7:\"validTo\";s:19:\"2025-01-20 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlKrIPT82X684wJyX5tgh\n89gr9/1ahQNuhO+Fl36sYncVAkXP17fmthWUt15iHMC4dB4Tal8sG+GyGIr9FD60\nWaBNjdLVa16xnDeTm/dtQXU76u35VSiVWiw1NFub3LFtR18CBhWkkBgooOh62wIk\nX5TYDalT75hKCcNe6KW/sdRlyNMfJCu25qusRmoKxX64ZZFqYDtDeo5n9eyOeiya\n6uTYO7YNJUENqftI8ZmDBXwwwnCR8eVMsnemmh1UGzhyYEAWMZC/uu/VRLwTuE6k\nZJYpfQzn0uFo47ub4eXbXulLg33Y6OEeuvXXMVB50WEIS/+AErrzDyQsofgrPMuI\nKwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:3;a:6:{s:2:\"id\";s:15:\"wpps_1732885501\";s:7:\"service\";s:4:\"wpps\";s:9:\"validFrom\";s:19:\"2024-12-14 13:05:01\";s:7:\"validTo\";s:19:\"2025-01-15 13:05:01\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAx/J5JegzpJM6Shumu4FA\ndilzxcI1KGd3WJczaRuTpPcUu1FJcP5ebep0AWwjl7Z7zz+Q1+dkAHRgYLkNE0Za\nmymZwXOikPNLxZonsb0C+yOs7WsPZxO2ipDEJ+1DR67yHuDLffXUmMj6aqv1sLU5\nfnI1rNwyglOipVqpvrIAVO5Eo6qlHXeIvBgbSGEIAdB1H2fMwpYgFzIfCOV/PA91\ntIa2rzgWYFctgYAWkkyB1+phYw1NWZmVphOywEX1UXWcoJeh0YSh1VNJlfJu9QsL\n+RIDScCTCvm4oPe0V62Sha8C8kbHu81kLeHos+3ArVQcVto+90NoRw+Tl79OLEV/\nCQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:4;a:6:{s:2:\"id\";s:15:\"wpps_1735477503\";s:7:\"service\";s:4:\"wpps\";s:9:\"validFrom\";s:19:\"2025-01-13 13:05:01\";s:7:\"validTo\";s:19:\"2025-02-14 13:05:01\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2+tIRdnJOpmSPG89a7Jf\n6E0y1vt3AbdUxsP9DeZBzrpQM7ndK4CqT8iPSno5k7EGgB5J5NlQ5wTF9wh1pcMD\nrJocj/ishXsrF8/rrV9VZ0P+1MzCyaXTy9uoA5XGNi/vF1F/7OJKJrUjePll22nC\nwNCZkmYzDPLZl617L20jb34dE7gx8fhs0fYi+bBsIHXDuIB9DdVXnnj+B7uQN9of\nTDzDDN9/xlVZBP4hNwViEifGqyd1gAtA2ADIzUWksvQ/WZC+DrFI6qBQCcxBp2cO\nKfscqvmT/Gr1tkbdSpKO8KoNeY903xCg7rID+4ICTX6mUvoR3PIWW8uOsnsOPu0A\ngwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:5;a:6:{s:2:\"id\";s:25:\"cookie_service_1734109501\";s:7:\"service\";s:14:\"cookie_service\";s:9:\"validFrom\";s:19:\"2024-12-28 16:27:25\";s:7:\"validTo\";s:19:\"2025-01-29 16:27:25\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqbX6+Po/S4rqeIXLeGCl\n669TD191eSaltrhl1rxfJ2MbdgVLWO3lJnIEFn+EhraA3JQef3NOifgViAIQ1A+N\n5SHKD/b74vEYq61uEnW8gk3TmKuGbQThecwfPo+JhTNRuHfshHyk5bLv3jW2YgE6\n3v3JVTFT80PZT9chJ6s+mjIQ66fPqXdz0VEiHyYuGBTdknqsdLBlLTSST/3y5+SU\n7zd2wTSihc9RNRS95tlSK8zYM9AdvxUnMw7HX6eU9cnRPx1LaDfPK3rK3znQTbUj\n/YlXvufAWBw0gCDht0d515WzOROBRD4hcQ3nSD4XCyqLNSpLHes6Q2Ff6Q7oh6l5\nAwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:6;a:6:{s:2:\"id\";s:15:\"mwp1_1732975502\";s:7:\"service\";s:4:\"mwp1\";s:9:\"validFrom\";s:19:\"2024-12-15 14:05:01\";s:7:\"validTo\";s:19:\"2025-01-16 14:05:01\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxgFjU69tjIC+sULJ2mTq\nNBlUUdJXXBczTy8evI6jg4Muf14F7mzebuKKwPPlb1IgogrbGnfC6SetbPhLm2Py\nBX1z5kLbESaTtvghc39Ndf6aJaRmJR4K5rXBZNvTmPvvDL1jw6J6/RWIg95shdCs\n8mVMjAi5bWdLPU0SPjVsNjO/IxqCuK2oZMfH6sbiGmwP2Whuexd68Wp2R1rCUUgM\n6qC6LPjT/TBtNkqGV1CX8qFrb/gIf82Tq+arZJH5bAQ2BLiEPnbBSGE5tFcqjzyj\nLepNw2fd2uf7MJ8YHVdDjCDg87lFVkUWkBGDGcqeWEVRvIK2mU0UFBuL4MRFTym9\npwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:7;a:6:{s:2:\"id\";s:15:\"mwp1_1735567501\";s:7:\"service\";s:4:\"mwp1\";s:9:\"validFrom\";s:19:\"2025-01-14 14:05:01\";s:7:\"validTo\";s:19:\"2025-02-15 14:05:01\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAn1j0iLdyGgJoMQuB5cWy\nexSlFxOsfXhfNP+VEwHWiDjHCt3a4OxZF2B9apqBQKcpsltF/CHqI7/4YQEo91au\nSdLq+O+wVu67qwzjlqc1H/TEGaG3548sp3laScZofQpKlexmntWwF1nBwA00oobU\nidTkxDbEKhP3seOgJavX92wSg7s3Fpe015HDuxWR7U1fDCeUNos9Jfral/iqKtZb\nYrvBKV4Q2jtMXSSHRB1okQxqHbYGbfQ7ZBViLuCa2MQ/GZXoR+CrtImkiDhyROBG\nidP7C4wBoDXZ27inxtuQ66VDocMbSEq6nwvDgXSfAdrahepUI2JOie1n5gzxknPr\nSQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:8;a:6:{s:2:\"id\";s:20:\"migration_1733231102\";s:7:\"service\";s:9:\"migration\";s:9:\"validFrom\";s:19:\"2024-12-18 13:05:02\";s:7:\"validTo\";s:19:\"2025-01-19 13:05:02\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtMrR2EiC5MwYM46gnsQL\n3H/3TvqPbWD1b3SsGaWfEUw805abna3K2GZn1N7fpg3C+a+nQZQdce/lrWBk9KVw\nlLdGiYgdksXwVKs9/sRSC0gpzArr5xRdWcCmDJH7iZdEoNI/gDg+l9dIEWiV4Jhw\nngT9Trnms8yxFRlPHGAzlz4Uclka4eswiOmgX91T56Mc4rVXv91Oi/9PZDXIrBMc\nLzkaqOhy+oTHeDqdNLDO9kAc1EA9BlC8FqmClhKlB6BjN7ddW4p0RpjghCgfK5+r\n8ce7MSNBlGtO+nxHKR/DH8Hyi0sSFUELh9pL35c1tfkx1b1PecGiPu50C+JngVwh\npwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}}','on'),(89090,'mwp_communication_keys','a:1:{i:10337719;a:2:{s:3:\"key\";s:36:\"0b0e3ff4-83e6-4bbc-a610-488d0683bcaa\";s:5:\"added\";i:1678403389;}}','yes'),(89091,'mwp_key_last_used_0b0e3ff4-83e6-4bbc-a610-488d0683bcaa','1678403389','yes'),(89092,'mmb_stats_filter','a:1:{s:7:\"plugins\";a:1:{s:7:\"cleanup\";a:1:{s:9:\"revisions\";a:1:{s:11:\"num_to_keep\";i:5;}}}}','yes'),(89093,'mwp_potential_key','7e01fd90-f261-4117-aeca-96a17f8eb295','on'),(89094,'mwp_potential_key_time','1735776098','on'),(89095,'mwp_key_last_used_10337719','1735247765','on'),(89096,'mwp_new_communication_established','1','on'),(89097,'user_hit_count','a:60:{s:10:\"2024-11-04\";i:1233;s:10:\"2024-11-05\";i:1616;s:10:\"2024-11-06\";i:1164;s:10:\"2024-11-07\";i:1264;s:10:\"2024-11-08\";i:2024;s:10:\"2024-11-09\";i:963;s:10:\"2024-11-10\";i:590;s:10:\"2024-11-11\";i:542;s:10:\"2024-11-12\";i:2167;s:10:\"2024-11-13\";i:1078;s:10:\"2024-11-14\";i:682;s:10:\"2024-11-15\";i:594;s:10:\"2024-11-16\";i:653;s:10:\"2024-11-17\";i:384;s:10:\"2024-11-18\";i:667;s:10:\"2024-11-19\";i:1235;s:10:\"2024-11-20\";i:953;s:10:\"2024-11-21\";i:992;s:10:\"2024-11-22\";i:1304;s:10:\"2024-11-23\";i:863;s:10:\"2024-11-24\";i:1350;s:10:\"2024-11-25\";i:959;s:10:\"2024-11-26\";i:1171;s:10:\"2024-11-27\";i:1111;s:10:\"2024-11-28\";i:760;s:10:\"2024-11-29\";i:1016;s:10:\"2024-11-30\";i:1133;s:10:\"2024-12-01\";i:857;s:10:\"2024-12-02\";i:616;s:10:\"2024-12-03\";i:664;s:10:\"2024-12-04\";i:921;s:10:\"2024-12-05\";i:636;s:10:\"2024-12-06\";i:1298;s:10:\"2024-12-07\";i:593;s:10:\"2024-12-08\";i:1277;s:10:\"2024-12-09\";i:1693;s:10:\"2024-12-10\";i:2643;s:10:\"2024-12-11\";i:1979;s:10:\"2024-12-12\";i:2209;s:10:\"2024-12-13\";i:1562;s:10:\"2024-12-14\";i:1935;s:10:\"2024-12-15\";i:1753;s:10:\"2024-12-16\";i:1717;s:10:\"2024-12-17\";i:1474;s:10:\"2024-12-18\";i:3019;s:10:\"2024-12-19\";i:3947;s:10:\"2024-12-20\";i:1626;s:10:\"2024-12-21\";i:1422;s:10:\"2024-12-22\";i:1782;s:10:\"2024-12-23\";i:2811;s:10:\"2024-12-24\";i:1435;s:10:\"2024-12-25\";i:1289;s:10:\"2024-12-26\";i:2077;s:10:\"2024-12-27\";i:1752;s:10:\"2024-12-28\";i:1706;s:10:\"2024-12-29\";i:1212;s:10:\"2024-12-30\";i:1687;s:10:\"2024-12-31\";i:1312;s:10:\"2025-01-01\";i:2395;s:10:\"2025-01-02\";i:353;}','on'),(89160,'disabled_hit_count','0','yes'),(89200,'fs_clone_management','a:5:{s:29:\"request_handler_retries_count\";i:1;s:25:\"request_handler_timestamp\";i:1683048899;s:18:\"request_handler_id\";s:30:\"6830987320.54585200 1683048899\";s:30:\"clone_identification_timestamp\";i:1683048938;s:22:\"hide_manual_resolution\";b:0;}','yes'),(89204,'c7c_settings_misc','a:5:{s:19:\"installation_status\";s:8:\"complete\";s:30:\"should_enable_cart_and_account\";b:0;s:22:\"should_enable_age_gate\";b:0;s:31:\"should_enable_advanced_products\";b:1;s:30:\"should_enable_subscribe_pop_up\";b:0;}','yes'),(89205,'c7c_settings_account','a:4:{s:19:\"commerce7_tenant_id\";s:17:\"meadowcroft-wines\";s:23:\"commerce7_email_address\";s:26:\"wine-works-template-access\";s:18:\"commerce7_password\";s:64:\"YLFvVUBcpSYCYmWIPyxk9zjvjP1kET63uXe3jp7md3m0HMUWlUrqAqKjns4vTNJ5\";s:21:\"api_connection_status\";s:21:\"connection-successful\";}','yes'),(89206,'c7c_settings_styles','a:1:{s:13:\"css_overrides\";s:2938:\":root {\r\n\r\n  /* --c7-page-width: 1300px; */\r\n  /* --c7-page-width-checkout: 1500px; */\r\n  /* --c7-font-family: \'Inter\', sans-serif; */\r\n  /* --c7-body-text-color: #232324; */\r\n  /* --c7-alt-text-color: #50505A; */\r\n  /* --c7-font-size: 16px; */\r\n  /* --c7-font-size-sub: 14px; */\r\n  /* --c7-heading-font-family: \'Inter\', sans-serif; */\r\n  /* --c7-heading-text-color: #000; */\r\n  /* --c7-heading-font-weight: bold; */\r\n\r\n  /* --c7-primary-color: #3860D6; */\r\n  /* --c7-primary-color-text: #3251AE; */\r\n  /* --c7-primary-color-dark: #264BBA; */\r\n  /* --c7-primary-color-focus: rgba(56, 96, 214, 0.25); */\r\n\r\n  /* --c7-link-color: var(--c7-primary-color-text); */\r\n  /* --c7-bg: #FFF; */\r\n  /* --c7-bg-alt: #F7F8FA; */\r\n  /* --c7-border-color: #E3E3E8; */\r\n  /* --c7-border-radius: 4px; */\r\n\r\n  /* --c7-loading-bg: rgba(255, 255, 255, 0.5); */\r\n  /* --c7-modal-border-radius: 8px; */\r\n  /* --c7-modal-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1); */\r\n  /* --c7-overlay-bg: rgba(0, 0, 0, 0.1); */\r\n  /* --c7-progress-bar: var(--c7-primary-color); */\r\n  /* --c7-pill-bg: #F3F6FF; */\r\n  /* --c7-pill-text-color: var(--c7-primary-color-text); */\r\n\r\n  /* --c7-field-bg: #FFF; */\r\n  /* --c7-field-border-radius: 4px; */\r\n  /* --c7-field-border-color: #B2B2B8; */\r\n  /* --c7-field-focus-color: rgba(0, 0, 0, 0.07); */\r\n  /* --c7-field-option-selected-color: var(--c7-primary-color); */\r\n  /* --c7-field-option-focus-color: var(--c7-primary-color-focus); */\r\n  /* --c7-field-placeholder: #B2B2B8; */\r\n  /* --c7-field-dropdown-shadow: 2px 2px 10px 0 rgb(0 0 0 / 8%); */\r\n\r\n  /* --c7-primary-button-bg: var(--c7-primary-color); */\r\n  /* --c7-primary-button-bg-hover: var(--c7-primary-color-dark); */\r\n  /* --c7-primary-button-text-color: #FFF; */\r\n  /* --c7-alt-button-bg: #DEDFE3; */\r\n  /* --c7-alt-button-bg-hover: #CECFD4; */\r\n  /* --c7-alt-button-text-color: #232324; */\r\n  /* --c7-button-border-radius: 4px; */\r\n\r\n  /* --c7-info-bg: #F1F1F4 (Light grey); */\r\n  /* --c7-error: #CA0505 (Red); */\r\n  /* --c7-error-bg: #FFEBEB (Light red); */\r\n  /* --c7-warning: #FBA213 (Orange); */\r\n  /* --c7-warning-bg: #FFF6E5 (Light orange); */\r\n  /* --c7-success: #016047 (Green); */\r\n  /* --c7-success-bg: #E8FCF7 (Light green); */\r\n\r\n  /* --c7-header-text-color: #232324; */\r\n  /* --c7-notification: #CA0505 (Red); */\r\n  /* --c7-cart-count-bg: var(--c7-primary-color); */\r\n  /* --c7-cart-count-bg-focus: var(--c7-primary-color-focus); */\r\n  /* --c7-cart-count-text-color: #FFF; */\r\n  /* --c7-side-cart-shadow: 0 0 15px 5px rgb(0 0 0 / 10%); */\r\n  /* --c7-dropdown-border-radius: 8px; */\r\n  /* --c7-dropdown-shadow: 0 1px 7px 0 rgb(0 0 0 / 15%); */\r\n  /* --c7-dropdown-hover: #E6E8ED; */\r\n\r\n  /* --c7-block-bg: var(--c7-bg); */\r\n  /* --c7-block-border-color: var(--c7-border-color); */\r\n  /* --c7-block-border-radius: var(--c7-border-radius); */\r\n  /* --c7-block-shadow: 0px 1px 3px 0px rgba(222, 222, 227, 0.3); */\r\n  \r\n  --c7c-product-max-width: 73.125rem;\r\n\r\n} \";}','yes'),(89207,'c7c_settings_age_gate','a:3:{s:5:\"title\";s:0:\"\";s:22:\"reset_duration_in_days\";i:30;s:7:\"content\";s:0:\"\";}','yes'),(89208,'c7c_state','a:14:{s:12:\"redirections\";a:7:{i:0;a:5:{s:10:\"source_url\";s:14:\"/collection/.+\";s:9:\"page_slug\";s:10:\"collection\";s:10:\"page_title\";s:10:\"Collection\";s:18:\"rewrite_rule_regex\";s:17:\"^collection/(.+)$\";s:18:\"rewrite_rule_query\";s:29:\"index.php?pagename=collection\";}i:1;a:5:{s:10:\"source_url\";s:11:\"/product/.+\";s:9:\"page_slug\";s:7:\"product\";s:10:\"page_title\";s:7:\"Product\";s:18:\"rewrite_rule_regex\";s:14:\"^product/(.+)$\";s:18:\"rewrite_rule_query\";s:26:\"index.php?pagename=product\";}i:2;a:5:{s:10:\"source_url\";s:8:\"/cart/.+\";s:9:\"page_slug\";s:4:\"cart\";s:10:\"page_title\";s:4:\"Cart\";s:18:\"rewrite_rule_regex\";s:11:\"^cart/(.+)$\";s:18:\"rewrite_rule_query\";s:23:\"index.php?pagename=cart\";}i:3;a:5:{s:10:\"source_url\";s:12:\"/checkout/.+\";s:9:\"page_slug\";s:8:\"checkout\";s:10:\"page_title\";s:8:\"Checkout\";s:18:\"rewrite_rule_regex\";s:15:\"^checkout/(.+)$\";s:18:\"rewrite_rule_query\";s:27:\"index.php?pagename=checkout\";}i:4;a:5:{s:10:\"source_url\";s:11:\"/profile/.+\";s:9:\"page_slug\";s:7:\"profile\";s:10:\"page_title\";s:7:\"Profile\";s:18:\"rewrite_rule_regex\";s:14:\"^profile/(.+)$\";s:18:\"rewrite_rule_query\";s:26:\"index.php?pagename=profile\";}i:5;a:5:{s:10:\"source_url\";s:8:\"/club/.+\";s:9:\"page_slug\";s:4:\"club\";s:10:\"page_title\";s:4:\"Club\";s:18:\"rewrite_rule_regex\";s:11:\"^club/(.+)$\";s:18:\"rewrite_rule_query\";s:23:\"index.php?pagename=club\";}i:6;a:5:{s:10:\"source_url\";s:15:\"/reservation/.+\";s:9:\"page_slug\";s:11:\"reservation\";s:10:\"page_title\";s:11:\"Reservation\";s:18:\"rewrite_rule_regex\";s:18:\"^reservation/(.+)$\";s:18:\"rewrite_rule_query\";s:30:\"index.php?pagename=reservation\";}}s:26:\"should_flush_rewrite_rules\";b:0;s:16:\"controlled_pages\";a:7:{i:0;a:4:{s:4:\"slug\";s:10:\"collection\";s:5:\"title\";s:10:\"Collection\";s:6:\"status\";s:20:\"successfully-created\";s:7:\"post_id\";i:1885;}i:1;a:4:{s:4:\"slug\";s:7:\"product\";s:5:\"title\";s:7:\"Product\";s:6:\"status\";s:20:\"successfully-created\";s:7:\"post_id\";i:1886;}i:2;a:4:{s:4:\"slug\";s:4:\"cart\";s:5:\"title\";s:4:\"Cart\";s:6:\"status\";s:20:\"successfully-created\";s:7:\"post_id\";i:1887;}i:3;a:4:{s:4:\"slug\";s:8:\"checkout\";s:5:\"title\";s:8:\"Checkout\";s:6:\"status\";s:20:\"successfully-created\";s:7:\"post_id\";i:1888;}i:4;a:4:{s:4:\"slug\";s:7:\"profile\";s:5:\"title\";s:7:\"Profile\";s:6:\"status\";s:20:\"successfully-created\";s:7:\"post_id\";i:1889;}i:5;a:4:{s:4:\"slug\";s:4:\"club\";s:5:\"title\";s:4:\"Club\";s:6:\"status\";s:20:\"successfully-created\";s:7:\"post_id\";i:1890;}i:6;a:4:{s:4:\"slug\";s:11:\"reservation\";s:5:\"title\";s:11:\"Reservation\";s:6:\"status\";s:20:\"successfully-created\";s:7:\"post_id\";i:1891;}}s:29:\"did_create_access_denied_page\";b:1;s:29:\"available_customer_tag_titles\";a:21:{i:0;s:21:\"CC Declined Fall 2022\";i:1;s:31:\"CC Declined Fall 2022 duplicate\";i:2;s:23:\"CC Declined Winter 2023\";i:3;s:29:\"Customers with loyalty points\";i:4;s:11:\"Distributor\";i:5;s:8:\"Employee\";i:6;s:31:\"Highlands - new sub club member\";i:7;s:19:\"Highlands Wine Club\";i:8;s:22:\"ILS 2022 Fall Panorama\";i:9;s:8:\"Industry\";i:10;s:19:\"Loyalty points 200+\";i:11;s:31:\"Non-club- available loyalty pts\";i:12;s:33:\"non-members and cancelled 11-2022\";i:13;s:28:\"Oustanding will call package\";i:14;s:26:\"Pano - new sub club member\";i:15;s:18:\"Panorama Wine Club\";i:16;s:5:\"Promo\";i:17;s:60:\"Ticket- Spring 23 Pick Up Party &#8211; Club Member Waitlist\";i:18;s:6:\"Vendor\";i:19;s:9:\"Wholesale\";i:20;s:11:\"Wine Grower\";}s:30:\"available_customer_club_titles\";a:7:{i:0;s:31:\"Highlands Mixed Wine Membership\";i:1;s:23:\"Highlands Red Wine Only\";i:2;s:30:\"Highlands White Wine Only Club\";i:3;s:24:\"Industry Wine Membership\";i:4;s:34:\"Meadowcroft Subscription Wine Club\";i:5;s:24:\"Panorama Case Membership\";i:6;s:17:\"TEST - do not use\";}s:33:\"available_product_meta_attributes\";a:4:{i:0;a:2:{s:5:\"title\";s:11:\"Review Text\";s:4:\"slug\";s:11:\"review-text\";}i:1;a:2:{s:5:\"title\";s:12:\"Feature Text\";s:4:\"slug\";s:12:\"feature-text\";}i:2;a:2:{s:5:\"title\";s:10:\"Wine Notes\";s:4:\"slug\";s:10:\"wine-notes\";}i:3;a:2:{s:5:\"title\";s:15:\"Technical Notes\";s:4:\"slug\";s:15:\"technical-notes\";}}s:22:\"accepted_filter_values\";a:5:{s:4:\"type\";a:8:{i:0;s:6:\"Bundle\";i:1;s:10:\"Collateral\";i:2;s:12:\"Event Ticket\";i:3;s:19:\"General Merchandise\";i:4;s:9:\"Gift Card\";i:5;s:11:\"Reservation\";i:6;s:7:\"Tasting\";i:7;s:4:\"Wine\";}s:8:\"varietal\";a:23:{i:0;s:8:\"Albarino\";i:1;s:5:\"Blend\";i:2;s:14:\"Cabernet Franc\";i:3;s:18:\"Cabernet Sauvignon\";i:4;s:10:\"Chardonnay\";i:5;s:8:\"Colombar\";i:6;s:9:\"Colombard\";i:7;s:6:\"Malbec\";i:8;s:6:\"Merlot\";i:9;s:5:\"Other\";i:10;s:12:\"Petit Verdot\";i:11;s:11:\"Pinot Blanc\";i:12;s:10:\"Pinot Gris\";i:13;s:10:\"Pinot Noir\";i:14;s:4:\"Port\";i:15;s:4:\"Rose\";i:16;s:9:\"Roussanne\";i:17;s:10:\"Sangiovese\";i:18;s:15:\"Sauvignon Blanc\";i:19;s:9:\"Sparkling\";i:20;s:5:\"Syrah\";i:21;s:8:\"Viognier\";i:22;s:9:\"Zinfandel\";}s:11:\"appellation\";a:23:{i:0;s:15:\"Anderson Valley\";i:1;s:10:\"Atlas Peak\";i:2;s:8:\"Carneros\";i:3;s:10:\"Chalk Hill\";i:4;s:14:\"Clements Hills\";i:5;s:16:\"Dry Creek Valley\";i:6;s:15:\"Howell Mountain\";i:7;s:14:\"Knights Valley\";i:8;s:4:\"Lodi\";i:9;s:12:\"Los Carneros\";i:10;s:9:\"Mendocino\";i:11;s:10:\"Mt. Veeder\";i:12;s:11:\"Napa Valley\";i:13;s:33:\"Oak Knoll District of Napa Valley\";i:14;s:8:\"Oakville\";i:15;s:21:\"Red Hills Lake County\";i:16;s:20:\"Russian River Valley\";i:17;s:10:\"Rutherford\";i:18;s:12:\"Sonoma Coast\";i:19;s:13:\"Sonoma County\";i:20;s:13:\"Sonoma Valley\";i:21;s:24:\"Spring Mountain District\";i:22;s:19:\"Stags Leap District\";}s:7:\"vintage\";a:19:{i:0;i:2005;i:1;i:2006;i:2;i:2007;i:3;i:2008;i:4;i:2009;i:5;i:2010;i:6;i:2011;i:7;i:2012;i:8;i:2013;i:9;i:2014;i:10;i:2015;i:11;i:2016;i:12;i:2017;i:13;i:2018;i:14;i:2019;i:15;i:2020;i:16;i:2021;i:17;i:2022;i:18;i:2023;}s:6:\"vendor\";a:16:{i:0;s:19:\"707 Embroidery Zone\";i:1;s:22:\"Faire - Mast Chocolate\";i:2;s:20:\"Faire - Olives et Al\";i:3;s:21:\"Faire - Rustic Bakery\";i:4;s:22:\"Faire - The Truffleist\";i:5;s:17:\"Faire- Fackelmann\";i:6;s:19:\"Faire- Mother Earth\";i:7;s:16:\"Faire- Perennity\";i:8;s:23:\"Faire- The Bower Studio\";i:9;s:25:\"Faire- Wood Stove Kitchen\";i:10;s:17:\"Faire-O Olive Oil\";i:11;s:6:\"Fellow\";i:12;s:20:\"Hatchette Book Group\";i:13;s:17:\"Meadowcroft Wines\";i:14;s:16:\"Revive Drinkware\";i:15;s:10:\"Sozo Gifts\";}}s:14:\"license_status\";s:6:\"active\";s:21:\"license_purchase_date\";s:11:\"May 2, 2023\";s:26:\"should_enable_pro_features\";b:1;s:24:\"are_web_hooks_registered\";b:1;s:42:\"available_values_by_product_meta_attribute\";a:4:{s:11:\"review-text\";a:35:{i:0;s:324:\"<div><span style=\"font-weight: bold;\"\">AWARDS AND REVIEWS</span></div>94 pts | &nbsp;Wine Enthusiast &nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2005 Mt Veeder Cabernet Sauvignon</span><div>91 pts | &nbsp;Wine Enthusiast &nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2008 Mt Veeder Cabernet Sauvignon</span></div>\"\";i:1;s:448:\"<div><span style=\"font-weight: bold;\"\">AWARDS AND REVIEWS</span></div>94 pts | &nbsp;Wine Enthusiast &nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2005 Mt Veeder Cabernet Sauvignon</span><div>91 pts | &nbsp;Wine Enthusiast &nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2008 Mt Veeder Cabernet Sauvignon<br></span>91 pts | &nbsp;James Suckling &nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2013 Mt Veeder Cabernet Sauvignon</span></div>\"\";i:2;s:1109:\"<div>98 pts GOLD |&nbsp; <a href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"_blank\"\">Sunset Wine Competition</a>&nbsp; |&nbsp; 2016 Mt Veeder Cabernet Sauvignon</div><div>94 pts | &nbsp;<a href=\"\"https://www.winemag.com/\"\" title=\"\"Wine Enthusiast\"\" target=\"\"_blank\"\">Wine Enthusiast</a> &nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2005 Mt Veeder Cabernet Sauvignon</span><br></div><div>91 pts | &nbsp;<a href=\"\"https://www.winemag.com/\"\" title=\"\"Wine Enthusiast\"\" target=\"\"_blank\"\">Wine Enthusiast</a> &nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2008 Mt Veeder Cabernet Sauvignon<br></span>91 pts | &nbsp;<a href=\"\"https://www.jamessuckling.com/\"\" title=\"\"James Suckling\"\" target=\"\"_blank\"\">James Suckling</a> &nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2013 Mt Veeder Cabernet Sauvignon</span><br>93 pts |&nbsp; <a href=\"\"https://www.sommeliercompany.com/\"\" title=\"\"Sommelier Company\"\" target=\"\"_blank\"\">Sommelier Company</a> |&nbsp; <span style=\"\"font-style: italic;\"\">2016 Mt Veeder Cabernet Sauvignon</span></div>\"\";i:3;s:850:\"<div>AWARDS AND REVIEWS</div>\n<div>90 pt |&nbsp; James Suckling</div>\n<div>A prototypical, modern Napa red that has the big cassis character of fully ripe cabernet sauvignon, moderate tannins that are already well integrated and nice freshness at the finish.&nbsp; Makes you want to order or cook some Osso Bucco.&nbsp; &nbsp;</div>\n<div>&nbsp;</div>\n<p>94 pts | &nbsp;Chris Sawyer, Certified Sommelier&nbsp; |&nbsp; 2014 vintage</p>\n<div>&nbsp;On the palate, the generous flavors of black raspberry, dark cherry, cassis, ripe currants, cinnamon, hickory spice and dark chocolate truffle are complemented with a harmonious mixture of smooth, silky texture, chewy tannins, firm structure, and a lingering finish. Overall, an extremely well-crafted wine that is not only approachable when young, but also worthy of cellaring for more 10-15 years.</div>\";i:4;s:457:\"<div>98 pts GOLD |&nbsp; Sunset Wine Competition&nbsp; |&nbsp; 2016 Mt Veeder Cabernet Sauvignon</div>\n<div>94 pts |&nbsp; Wine Enthusiast&nbsp; |&nbsp; 2005 Mt Veeder Cabernet Sauvignon</div>\n<div>91 pts |&nbsp; Wine Enthusiast&nbsp; |&nbsp; 2008 Mt Veeder Cabernet Sauvignon</div>\n<div>91 pts |&nbsp; James Suckling&nbsp; |&nbsp; 2013 Mt Veeder Cabernet Sauvignon</div>\n<div>93 pts |&nbsp; Sommelier Company |&nbsp; 2016 Mt Veeder Cabernet Sauvignon</div>\";i:5;s:563:\"<div>98 pts GOLD |&nbsp; Sunset Wine Competition&nbsp; |&nbsp; 2016 Mt Veeder Cabernet Sauvignon</div>\n<div>90pts |&nbsp; James Suckling&nbsp; |&nbsp; 2016 Mt Veeder Cabernet Sauvignon</div>\n<div>93 pts |&nbsp; Sommelier Company |&nbsp; 2016 Mt Veeder Cabernet Sauvignon</div>\n<div>94 pts |&nbsp; Wine Enthusiast&nbsp; |&nbsp; 2005 Mt Veeder Cabernet Sauvignon</div>\n<div>91 pts |&nbsp; Wine Enthusiast&nbsp; |&nbsp; 2008 Mt Veeder Cabernet Sauvignon</div>\n<div>91 pts |&nbsp; James Suckling&nbsp; |&nbsp; 2013 Mt Veeder Cabernet Sauvignon</div>\n<div>&nbsp;</div>\";i:6;s:928:\"<div>90 pt |&nbsp; James Suckling&nbsp; |&nbsp; 2016 vintage<br></div><div><span style=\"font-style: italic;\"\">A prototypical, modern Napa red that has the big cassis character of fully ripe cabernet sauvignon, moderate tannins that are already well integrated and nice freshness at the finish.&nbsp; Makes you want to order or cook some Osso Bucco.&nbsp; &nbsp;</span></div><div><br></div>94 pts | &nbsp;Chris Sawyer, Certified Sommelier&nbsp; |&nbsp; 2014 vintage<br><div><span style=\"\"font-style: italic;\"\">&nbsp;On the palate, the generous flavors of black raspberry, dark cherry, cassis, ripe currants, cinnamon, hickory spice and dark chocolate truffle are complemented with a harmonious mixture of smooth, silky texture, chewy tannins, firm structure, and a lingering finish. Overall, an extremely well-crafted wine that is not only approachable when young, but also worthy of cellaring for more 10-15 years.</span></div>\"\";i:7;s:609:\"<div><span style=\"font-weight: bold;\"\">AWARDS AND REVIEWS</span></div>94 pts | &nbsp;Chris Sawyer, Certified Sommelier&nbsp; |&nbsp; 2014 vintage<br><div><span style=\"\"font-style: italic;\"\">&nbsp;On the palate, the generous flavors of black raspberry, dark cherry, cassis, ripe currants, cinnamon, hickory spice and dark chocolate truffle are complemented with a harmonious mixture of smooth, silky texture, chewy tannins, firm structure, and a lingering finish. Overall, an extremely well-crafted wine that is not only approachable when young, but also worthy of cellaring for more 10-15 years.</span></div>\"\";i:8;s:1513:\"<div>92 pts GOLD |&nbsp; <a href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"\"\">Sunset International Wine Competition</a>&nbsp;<span style=\"\"font-style: italic;\"\">(2018 vintage)</span><br></div><div>GOLD |&nbsp; <a href=\"\"https://winejudging.com/\"\" title=\"\"SF Chronicle Wine Competition\"\" target=\"\"\"\">San Francisco Chronicle&nbsp;Wine Competition</a>&nbsp;<span style=\"\"font-style: italic;\"\">(2018 vintage)</span><br></div><div>92 pts GOLD |&nbsp; <a href=\"\"https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"\"\">Sunset International Wine Competition </a><span style=\"\"font-style: italic;\"\">(2017 vintage)</span></div><div>GOLD |&nbsp; <a href=\"\"https://winejudging.com/\"\" title=\"\"SF Chronicle Wine Competition\"\" target=\"\"\"\">San Francisco Chronicle&nbsp;Wine Competition</a>&nbsp;<span style=\"\"font-style: italic;\"\">(2017 vintage)</span><br>GOLD |&nbsp; <a href=\"\"https://winejudging.com/\"\" title=\"\"SF Chronicle Wine Competition\"\" target=\"\"\"\">San Francisco Chronicle&nbsp;Wine Competition </a><span style=\"\"font-style: italic;\"\">(2016 vintage)</span></div><div>DOUBLE GOLD | <a href=\"\"https://winejudging.com/\"\" title=\"\"SF Chronicle Wine Competition\"\" target=\"\"\"\">San Francisco Chronicle Wine Competition</a> <span style=\"\"font-style: italic;\"\">(2014 vintage)</span><br><span style=\"\"font-style: italic;\"\">Unanimous Gold voted by a five-member judging panel.&nbsp;</span></div>\"\";i:9;s:3259:\"<div><div><span style=\"font-weight: bold;\"\">AWARDS &amp; REVIEWS</span></div>94 points &nbsp;|&nbsp; <a href=\"\"http://https://www.criticschallenge.com/cgi-bin/rtbin/sbpg/rt_hdln_dsply2.cgi?Autoincrement=000031&amp;value_6=Results\"\" title=\"\"\"\" target=\"\"\"\">2021 Critics Challenge</a> | &nbsp;Platinum Medal</div><div><p class=\"\"MsoNormal\"\" style=\"\"margin: 0in; font-size: 12pt; font-family: Calibri, sans-serif; color: rgb(0, 0, 0);\"\"><i><span style=\"\"font-family: D-DIN, serif; color: rgb(10, 10, 10);\"\">\"\"Here is a structured Zinfandel that shows plenty of oak toast and spice in front at present, and it promises to fold into the brooding berry fruit as the firmness mellows with a bit of bottle aging in your cellar.&nbsp; It will be well worth the wait.&nbsp; A Platinum Award winner at the 2021 Critics Challenge International Wine &amp; Spirits Competition.\"\"&nbsp; &nbsp; &nbsp; &nbsp;<br>94&nbsp;<a href=\"\"http://www.winereviewonline.com/about_us.cfm?#%20RC\"\"><span style=\"\"color: rgb(10, 10, 10); text-decoration-line: underline; font-weight: bold;\"\">Rich Cook</span></a>&nbsp;Jul 6, 2021<o:p></o:p></span></i></p><p class=\"\"MsoNormal\"\" style=\"\"margin: 0in; font-size: 12pt; font-family: Calibri, sans-serif; color: rgb(0, 0, 0);\"\"><span style=\"\"color: rgb(10, 10, 10); font-family: D-DIN;\"\">92 pts GOLD |&nbsp;&nbsp;</span><a href=\"\"https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"\"\" style=\"\"background-color: rgb(255, 255, 255); font-family: D-DIN;\"\">Sunset International Wine Competition</a><span style=\"\"color: rgb(10, 10, 10); font-family: D-DIN;\"\">&nbsp;</span><span style=\"\"color: rgb(10, 10, 10); font-family: D-DIN; font-style: italic;\"\">(2018 vintage)</span><i><span style=\"\"font-family: D-DIN, serif; color: rgb(10, 10, 10);\"\"><br></span></i></p><p class=\"\"MsoNormal\"\" style=\"\"margin: 0in; font-size: 12pt; font-family: Calibri, sans-serif; color: rgb(0, 0, 0);\"\"><span style=\"\"color: rgb(10, 10, 10); font-family: D-DIN;\"\">GOLD |&nbsp; <a href=\"\"http://harvestfair.org/professional-wine-competition/\"\" title=\"\"\"\" target=\"\"\"\">Sonoma County Harvest Fair Wine Competition</a>&nbsp;</span><span style=\"\"color: rgb(10, 10, 10); font-family: D-DIN; font-style: italic;\"\">(2018 vintage)</span><span style=\"\"color: rgb(10, 10, 10); font-family: D-DIN; font-style: italic;\"\"><br></span></p><div><br></div></div><div><span style=\"\"font-weight: bold;\"\">The Sommelier Company&nbsp; |&nbsp; 90 points</span></div><div><span style=\"\"font-style: italic;\"\">\"\"Supple and juicy, balanced and refined—this is Zinfandel’s elegant side. The foreground is equal measures of brambly dark fruit and concentrated red fruit, with an enduring overlay of rose perfume. Eastern and barbecue spices linger on the finish with black licorice, molasses and cocoa,\"\"&nbsp;</span>Adam Edmonsond. (2014 vintage)</div><div><br></div><div><span style=\"\"font-style: italic;\"\">\"\"This Zinfandel shows a wide, layered multiplicity of aromas and flavors. The body is typically full but not a jammy Zinfandel body. Characteristic of Dry Creek, its balance is noteworthy, and that allows delicate flavors on the palate to keep in step with a complex nose,\"\"&nbsp;</span>Jörn Kleinhans, CSW. (2014 vintage)</div>\"\";i:10;s:530:\"<p>91 points &nbsp;|&nbsp;&nbsp;<a href=\"https://www.jamessuckling.com/\">JamesSuckling.com</a>&nbsp;</p>\n<p><em>\"Crushed raspberries, ripe cherries, blackberries, dried thyme, lavender, and spice box on the nose. Medium-bodied with plush tannins. Round, creamy, and polished with pretty vanilla notes on the finish. Drink from 2023.\"&nbsp;<strong>James Suckling</strong></em></p>\n<p>Silver |&nbsp;<a href=\"https://winejudging.com/medal-winners/2022-medal-winners/\">San Francisco International Wines Competition</a>&nbsp;(2022)</p>\";i:11;s:1840:\"<div>95 pts DOUBLE GOLD |&nbsp;&nbsp;<a href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"\"\" style=\"\"background-color: rgb(255, 255, 255);\"\">Sunset International Wine Competition</a>&nbsp;<span style=\"\"font-style: italic;\"\">(2019 vintage)</span><br></div><div>92 pts GOLD |&nbsp; <a href=\"\"https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"\"\">Sunset International Wine Competition</a>&nbsp;<span style=\"\"font-style: italic;\"\">(2018 vintage)</span><br></div><div>GOLD |&nbsp; <a href=\"\"https://winejudging.com/\"\" title=\"\"SF Chronicle Wine Competition\"\" target=\"\"\"\">San Francisco Chronicle&nbsp;Wine Competition</a>&nbsp;<span style=\"\"font-style: italic;\"\">(2018 vintage)</span><br></div><div>92 pts GOLD |&nbsp; <a href=\"\"https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"\"\">Sunset International Wine Competition </a><span style=\"\"font-style: italic;\"\">(2017 vintage)</span></div><div>GOLD |&nbsp; <a href=\"\"https://winejudging.com/\"\" title=\"\"SF Chronicle Wine Competition\"\" target=\"\"\"\">San Francisco Chronicle&nbsp;Wine Competition</a>&nbsp;<span style=\"\"font-style: italic;\"\">(2017 vintage)</span><br>GOLD |&nbsp; <a href=\"\"https://winejudging.com/\"\" title=\"\"SF Chronicle Wine Competition\"\" target=\"\"\"\">San Francisco Chronicle&nbsp;Wine Competition </a><span style=\"\"font-style: italic;\"\">(2016 vintage)</span></div><div>DOUBLE GOLD | <a href=\"\"https://winejudging.com/\"\" title=\"\"SF Chronicle Wine Competition\"\" target=\"\"\"\">San Francisco Chronicle Wine Competition</a> <span style=\"\"font-style: italic;\"\">(2014 vintage)</span><br><span style=\"\"font-style: italic;\"\">Unanimous Gold voted by a five-member judging panel.&nbsp;</span></div>\"\";i:12;s:387:\"<div>91 pts |&nbsp; Wilfred Wong of <span style=\"font-style: italic;\"\">www.wine.com&nbsp;</span>&nbsp;<br></div><div><span style=\"\"font-style: italic;\"\">The 2019 Meadowcroft Pinot Noir is a beautifully balanced wine. This wine shows pleasing red fruit, dried herbs, and savory accents in the aromas and on the palate. Pair it with a mildly-seasoned lamb stew.&nbsp;</span><br><br></div>\"\";i:13;s:861:\"<div><span style=\"font-weight: bold;\"\">AWARDS AND REVIEWS</span></div><div><div>CRITICS CHALLENGE 2021 | &nbsp;<span style=\"\"font-style: italic;\"\">2019 Cornerstone Pinot Noir</span></div><div>GOLD 93 Points</div></div><div><a href=\"\"http://https://www.jamessuckling.com/\"\" title=\"\"James Suckling \"\" target=\"\"\"\">James Suckling</a>&nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2015 Cornerstone Pinot Noir</span><br></div><span style=\"\"font-style: italic;\"\">A little jammy with strawberry and cherry character. &nbsp;Full body, round and juicy palate.&nbsp;</span><div><a href=\"\"http://https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"\"\">Sunset International Wine Competition </a>&nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2015 Cornerstone Pinot Noir</span></div><div>SILVER MEDAL</div>\"\";i:14;s:741:\"<div><span style=\"font-weight: bold;\"\">AWARDS AND REVIEWS</span><br><div><div>GOLD MEDAL |&nbsp; <span style=\"\"font-style: italic;\"\">2018 Russian River Valley Pinot Noir</span><br></div><span style=\"\"font-style: italic;\"\">San Francisco Chronicle Wine Competition</span><span style=\"\"font-style: italic;\"\"><br></span></div><div><span style=\"\"font-style: italic;\"\"><br></span></div><span style=\"\"font-weight: bold;\"\"></span></div><div>James Suckling&nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2015 Russian River Valley Pinot Noir</span><br></div><div><span style=\"\"font-style: italic;\"\">Lots of ripe cherries with some jam character. &nbsp;Full body, light tannins.</span></div><div><span style=\"\"font-style: italic;\"\"><br></span></div>\"\";i:15;s:292:\"<p><span style=\"font-weight: bold;\">AWARDS AND REVIEWS</span></p>\n<div>GOLD MEDAL&nbsp;</div>\n<div>2019 Sonoma Coast Pinot Noir</div>\n<div><a href=\"https://enofileonline.com/awardsbybrandgoldplus.aspx?compid=2842\" target=\"_blank\" rel=\"noopener\">Sunset International Wine Competition</a></div>\";i:16;s:356:\"<p class=\"MsoNormal\">90 points &nbsp;|&nbsp;&nbsp;<a title=\"\" target=\"\">JamesSuckling.com</a><a>&nbsp;</a></p>\n<p class=\"\"><em>\"\"&lsquo;Ripe blueberries, walnuts and dried herbs on the nose. Medium body with creamy tannins. Dark, plush and fruity with vivid acidity. From organically grown grapes. Drink now.&lsquo;.\"\"&nbsp;James Suckling</em></p>\n<p>\"</p>\";i:17;s:296:\"<p>90 points &nbsp;|&nbsp;&nbsp;JamesSuckling.com&nbsp;</p>\n<p><em>\"\"&lsquo;Ripe blueberries, walnuts and dried herbs on the nose. Medium body with creamy tannins. Dark, plush and fruity with vivid acidity. From organically grown grapes. Drink now.&lsquo;.\"\"&nbsp;James Suckling</em></p>\n<p>\"</p>\";i:18;s:748:\"<div>98 pts GOLD |&nbsp;&nbsp;<a title=\"\" href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\" target=\"\">Sunset Wine Competition</a>&nbsp; |&nbsp; 2016 Mt Veeder Cabernet Sauvignon</div>\n<div>94 pts | &nbsp;<a title=\"\" target=\"\">Wine Enthusiast</a>&nbsp;&nbsp;| &nbsp;<span>2005 Mt Veeder Cabernet Sauvignon</span></div>\n<div>91 pts | &nbsp;<a title=\"\" target=\"\">Wine Enthusiast</a>&nbsp;&nbsp;| &nbsp;<span>2008 Mt Veeder Cabernet Sauvignon<br /></span>91 pts | &nbsp;<a title=\"\" target=\"\">James Suckling</a>&nbsp;&nbsp;| &nbsp;<span>2013 Mt Veeder Cabernet Sauvignon</span><br />93 pts |&nbsp;&nbsp;<a title=\"\" target=\"\">Sommelier Company</a>&nbsp;|&nbsp;&nbsp;<span>2016 Mt Veeder Cabernet Sauvignon</span></div>\n<p>\"</p>\";i:19;s:1144:\"<div>98 pts GOLD |&nbsp;&nbsp;<a href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"_blank\"\">Sunset Wine Competition</a>&nbsp; |&nbsp; 2016 Mt Veeder Cabernet Sauvignon</div><div>94 pts | &nbsp;<a href=\"\"https://www.winemag.com/\"\" title=\"\"Wine Enthusiast\"\" target=\"\"_blank\"\">Wine Enthusiast</a>&nbsp;&nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2005 Mt Veeder Cabernet Sauvignon</span><br></div><div>91 pts | &nbsp;<a href=\"\"https://www.winemag.com/\"\" title=\"\"Wine Enthusiast\"\" target=\"\"_blank\"\">Wine Enthusiast</a>&nbsp;&nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2008 Mt Veeder Cabernet Sauvignon<br></span>91 pts | &nbsp;<a href=\"\"https://www.jamessuckling.com/\"\" title=\"\"James Suckling\"\" target=\"\"_blank\"\">James Suckling</a>&nbsp;&nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2013 Mt Veeder Cabernet Sauvignon</span><br>93 pts |&nbsp;&nbsp;<a href=\"\"https://www.sommeliercompany.com/\"\" title=\"\"Sommelier Company\"\" target=\"\"_blank\"\">Sommelier Company</a>&nbsp;|&nbsp;&nbsp;<span style=\"\"font-style: italic;\"\">2016 Mt Veeder Cabernet Sauvignon</span></div>\"\";i:20;s:910:\"<div>90 pt |&nbsp; James Suckling&nbsp; |&nbsp; 2016 vintage</div>\n<div><span style=\"font-style: italic;\">A prototypical, modern Napa red that has the big cassis character of fully ripe cabernet sauvignon, moderate tannins that are already well integrated and nice freshness at the finish.&nbsp; Makes you want to order or cook some Osso Bucco.&nbsp; &nbsp;</span></div>\n<div>&nbsp;</div>\n<p>94 pts | &nbsp;Chris Sawyer, Certified Sommelier&nbsp; |&nbsp; 2014 vintage</p>\n<div><span>&nbsp;On the palate, the generous flavors of black raspberry, dark cherry, cassis, ripe currants, cinnamon, hickory spice and dark chocolate truffle are complemented with a harmonious mixture of smooth, silky texture, chewy tannins, firm structure, and a lingering finish. Overall, an extremely well-crafted wine that is not only approachable when young, but also worthy of cellaring for more 10-15 years.</span></div>\n<p>\"</p>\";i:21;s:930:\"<div><span style=\"font-weight: bold;\">AWARDS AND REVIEWS</span></div>\n<div>\n<div>90 pt |&nbsp; James Suckling&nbsp; |&nbsp; 2016 vintage</div>\n<div>A prototypical, modern Napa red that has the big cassis character of fully ripe cabernet sauvignon, moderate tannins that are already well integrated and nice freshness at the finish.&nbsp; Makes you want to order or cook some Osso Bucco.&nbsp; &nbsp;</div>\n<div>&nbsp;</div>\n94 pts | &nbsp;Chris Sawyer, Certified Sommelier&nbsp; |&nbsp; 2014 vintage<br />\n<div>&nbsp;On the palate, the generous flavors of black raspberry, dark cherry, cassis, ripe currants, cinnamon, hickory spice and dark chocolate truffle are complemented with a harmonious mixture of smooth, silky texture, chewy tannins, firm structure, and a lingering finish. Overall, an extremely well-crafted wine that is not only approachable when young, but also worthy of cellaring for more 10-15 years.</div>\n.</div>\";i:22;s:745:\"<p style=\"font-weight: 400;\"><strong>AWARDS &amp; REVIEWS</strong></p>\n<p>91 points &nbsp;|&nbsp;&nbsp;<a href=\"https://www.jamessuckling.com/\">JamesSuckling.com</a>&nbsp;</p>\n<p><em>\"Crushed raspberries, ripe cherries, blackberries, dried thyme, lavender, and spice box on the nose. Medium-bodied with plush tannins. Round, creamy, and polished with pretty vanilla notes on the finish. Drink from 2023.\"&nbsp;<strong>James Suckling</strong></em></p>\n<p><em><strong>&nbsp;</strong></em></p>\n<p><span style=\"font-weight: 400;\">Silver |&nbsp;</span><a style=\"font-weight: 400;\" href=\"https://winejudging.com/medal-winners/2022-medal-winners/\">San Francisco International Wines Competition</a><span style=\"font-weight: 400;\">&nbsp;(2022)</span></p>\";i:23;s:185:\"<div>Produced Exclusively For the <a href=\"https://barrelauction.sonomawine.com/lot/lot-49-meadowcroft-wines/\"\" title=\"\"\"\" target=\"\"\"\">2022 Sonoma County Barrel Auction&nbsp;</a></div>\"\";i:24;s:550:\"<span style=\"font-weight: bold;\"\">AWARDS AND REVIEWS</span><br><div><div>GOLD MEDAL |&nbsp;&nbsp;92 pts&nbsp;</div><div><span style=\"\"font-style: italic;\"\">2020 Rivino Vineyard Pinot Blanc</span><br></div><span style=\"\"font-style: italic;\"\"><a href=\"\"https://www.criticschallenge.com/cgi-bin/rtbin/sbpg/rt_hdln_dsply2.cgi?Autoincrement=000032&amp;value_6=Results\"\" title=\"\"\"\" target=\"\"\"\">Critics Challenge Wine Wine Competition</a></span><span style=\"\"font-style: italic;\"\"><br></span></div><div><span style=\"\"font-style: italic;\"\"><br></span></div>\"\";i:25;s:993:\"<div>93 pts GOLD&nbsp; |&nbsp; <a href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"\"\">Sunset International Wine Competition </a><span style=\"\"font-style: italic;\"\">(2017 vintage)</span></div><div>BEST OF CLASS |&nbsp; <a href=\"\"https://winejudging.com/\"\" title=\"\"SF Chronicle Wine Competition\"\" target=\"\"\"\">San Francisco Chronicle&nbsp;Wine Competition</a><br></div><div><span style=\"\"font-style: italic;\"\">A muscular and enduring take of the increasingly popular GSM style pulled off here with unusual panache and vibrancy.&nbsp; &nbsp;(2016 Vintage)<br>Unanimous Gold voted by a five-member judging panel.&nbsp;</span></div><div><br></div><div><span style=\"\"font-style: italic;\"\">**CLUB EXCLUSIVE WINE:&nbsp; This wine is <span style=\"\"text-decoration-line: underline;\"\">only</span> available to club members; thus, the wine is already priced with club discount.&nbsp; No additional club discount applies.</span></div>\"\";i:26;s:1494:\"<div>90 points, GOLD MEDAL&nbsp; |&nbsp;&nbsp;<a href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"\"\" style=\"\"background-color: rgb(255, 255, 255); color: rgb(20, 104, 160);\"\">Sunset International Wine Competition</a>&nbsp;(2020 vintage)<br></div><div>90 points, GOLD MEDAL&nbsp; |&nbsp;&nbsp;<a href=\"\"https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"\"\">Sunset International Wine Competition</a>&nbsp;(2019 vintage)<br></div><div>92 points, GOLD MEDAL&nbsp; |&nbsp;&nbsp;<a href=\"\"https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"_blank\"\">Sunset International Wine Competition</a>&nbsp;(2018 vintage)</div><div>BEST OF CLASS, GOLD MEDAL &nbsp;| &nbsp;<a href=\"\"https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"\"\">Sunset International Wine Competition</a><br><span style=\"\"font-style: italic;\"\">Juicy peach, melon, and citrus fruit is slightly creamy on the midpalate, followed by a long, brisk, spicy finish.&nbsp; (2016 vintage)<br></span></div><div>DOUBLE GOLD |&nbsp;<a href=\"\"https://winejudging.com/\"\" title=\"\"SF Chronicle Wine Competition\"\" target=\"\"\"\">San Francisco Chronicle Wine Competition</a><br><span style=\"\"font-style: italic;\"\">Unanimous Gold voted by a five member judging panel. (2016 vintage)</span></div>\"\";i:27;s:936:\"<div>GOLD |&nbsp;<a href=\"https://winejudging.com/medal_winners_2022/awards_by_winery.php\"\" title=\"\"\"\" target=\"\"\"\">2022 San Francisco Chronicle Wine Judging Competition</a>&nbsp;(2019 Vintage)</div><div>91 pts GOLD |&nbsp;&nbsp;<a href=\"\"https://www.criticschallenge.com/\"\" title=\"\"\"\" target=\"\"\"\">Critics Challenge International Wine Competition</a>&nbsp;<span style=\"\"font-style: italic;\"\">(2019 vintage)</span></div><div><p class=\"\"MsoNormal\"\" style=\"\"margin: 0in;\"\">GOLD |&nbsp; <a href=\"\"http://http://harvestfair.org/professional-wine-competition/\"\" title=\"\"\"\" target=\"\"\"\">Sonoma County Harvest Fair Wine Competition</a> (2019 vintage)</p><p class=\"\"MsoNormal\"\" style=\"\"margin: 0in;\"\"><span style=\"\"font-size: inherit;\"\">92 pts GOLD |&nbsp; <a href=\"\"http://https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"\"\" target=\"\"\"\">Sunset International Wine Competition</a> (2018 vintage)</span><br></p></div>\"\";i:28;s:889:\"<div><span style=\"font-weight: bold;\"\">AWARDS &amp; REVIEWS</span></div>92 points &nbsp;| &nbsp;Wine Enthusiast Magazine | &nbsp;2014 Louvau Vineyard Viognier<div><span style=\"\"font-style: italic;\"\">This 100% varietal wine makes the case for Viognier in this appellation, expressing Golden Delicious apple and pear around a fresh, medium build of viscous texture, lemon and wild honey. &nbsp;Pretty and aromatic, it\'s a classically fine-formed white, made in small quantities.</span></div><div><span style=\"\"font-style: italic;\"\"><br></span></div><span style=\"\"font-style: italic;\"\">**CLUB EXCLUSIVE WINE:&nbsp; This wine is&nbsp;</span><span style=\"\"font-style: italic; text-decoration-line: underline;\"\">only</span><span style=\"\"font-style: italic;\"\">&nbsp;available to club members; thus, the wine is already priced with club discount.&nbsp; No additional club discount applies.</span>\"\";i:29;s:308:\"<div><strong>AWARDS AND REVIEWS</strong></div>\n<div>&nbsp;</div>\n<div>GOLD MEDAL&nbsp;</div>\n<div>2021 Mae Vineyard Zinfandel, Dry Creek Valley</div>\n<div><a href=\"https://enofileonline.com/awardsbybrandgoldplus.aspx?compid=2842\" target=\"_blank\" rel=\"noopener\">Sunset International Wine Competition</a></div>\";i:30;s:35:\"<div>&nbsp;</div>\n<div>&nbsp;</div>\";i:31;s:518:\"<p><span style=\"font-weight: bold;\">AWARDS AND REVIEWS</span></p>\n<div>DOUBLE GOLD MEDAL&nbsp;</div>\n<div>2021 Rivino Vineyard Pinot Blanc</div>\n<div><a href=\"https://enofileonline.com/awardsbybrandgoldplus.aspx?compid=2842\" target=\"_blank\" rel=\"noopener\">Sunset International Wine Competition</a></div>\n<div>&nbsp;</div>\n<div>\n<div>GOLD MEDAL |&nbsp;&nbsp;92 pts&nbsp;</div>\n<div>2020 Rivino Vineyard Pinot Blanc</div>\n<a title=\"\" target=\"\">Critics Challenge Wine Wine Competition</a></div>\n<div>&nbsp;</div>\n<p>\"</p>\";i:32;s:278:\"<div><strong>AWARDS AND REVIEWS</strong></div>\n<div>GOLD MEDAL&nbsp;</div>\n<div>2021 Pinot Gris, Mendocino County</div>\n<div><a href=\"https://enofileonline.com/awardsbybrandgoldplus.aspx?compid=2842\" target=\"_blank\" rel=\"noopener\">Sunset International Wine Competition</a></div>\";i:33;s:312:\"<div><strong>AWARDS AND REVIEWS</strong></div>\n<div>&nbsp;</div>\n<div>GOLD MEDAL&nbsp;</div>\n<div>2021 Roussanne, Wyldvin Vineyard Dry Creek Valley</div>\n<div><a href=\"https://enofileonline.com/awardsbybrandgoldplus.aspx?compid=2842\" target=\"_blank\" rel=\"noopener\">Sunset International Wine Competition</a></div>\";i:34;s:3620:\"<div><span style=\"font-weight: bold;\"\">AWARDS AND REVIEWS</span></div><div>90 pts |&nbsp; Sommelier Company | Blanc De Blancs</div><div><div>98 pts GOLD |&nbsp; Sunset Wine Competition&nbsp; |&nbsp; 2016 Mt Veeder Cabernet Sauvignon<div style=\"\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 16px; vertical-align: baseline; background: rgb(245, 245, 245); color: rgb(136, 136, 136); font-family: \"\" crimson=\"\"\"\" text\"\",=\"\"\"\" \"\"open=\"\"\"\" sans\"\",=\"\"\"\" arial,=\"\"\"\" sans-serif;=\"\"\"\" font-style:=\"\"\"\" normal;=\"\"\"\" font-variant-ligatures:=\"\"\"\" font-variant-caps:=\"\"\"\" font-weight:=\"\"\"\" 400;=\"\"\"\" letter-spacing:=\"\"\"\" orphans:=\"\"\"\" 2;=\"\"\"\" text-align:=\"\"\"\" start;=\"\"\"\" text-indent:=\"\"\"\" 0px;=\"\"\"\" text-transform:=\"\"\"\" none;=\"\"\"\" white-space:=\"\"\"\" widows:=\"\"\"\" word-spacing:=\"\"\"\" -webkit-text-stroke-width:=\"\"\"\" text-decoration-thickness:=\"\"\"\" initial;=\"\"\"\" text-decoration-style:=\"\"\"\" text-decoration-color:=\"\"\"\" initial;\"\"=\"\"\"\">94 pts |&nbsp; Wine Enthusiast&nbsp; |&nbsp; 2005 Mt Veeder Cabernet Sauvignon</div><div style=\"\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 16px; vertical-align: baseline; background: rgb(245, 245, 245); color: rgb(136, 136, 136); font-family: \"\" crimson=\"\"\"\" text\"\",=\"\"\"\" \"\"open=\"\"\"\" sans\"\",=\"\"\"\" arial,=\"\"\"\" sans-serif;=\"\"\"\" font-style:=\"\"\"\" normal;=\"\"\"\" font-variant-ligatures:=\"\"\"\" font-variant-caps:=\"\"\"\" font-weight:=\"\"\"\" 400;=\"\"\"\" letter-spacing:=\"\"\"\" orphans:=\"\"\"\" 2;=\"\"\"\" text-align:=\"\"\"\" start;=\"\"\"\" text-indent:=\"\"\"\" 0px;=\"\"\"\" text-transform:=\"\"\"\" none;=\"\"\"\" white-space:=\"\"\"\" widows:=\"\"\"\" word-spacing:=\"\"\"\" -webkit-text-stroke-width:=\"\"\"\" text-decoration-thickness:=\"\"\"\" initial;=\"\"\"\" text-decoration-style:=\"\"\"\" text-decoration-color:=\"\"\"\" initial;\"\"=\"\"\"\">91 pts |&nbsp; Wine Enthusiast&nbsp; |&nbsp; 2008 Mt Veeder Cabernet Sauvignon</div><div style=\"\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 16px; vertical-align: baseline; background: rgb(245, 245, 245); color: rgb(136, 136, 136); font-family: \"\" crimson=\"\"\"\" text\"\",=\"\"\"\" \"\"open=\"\"\"\" sans\"\",=\"\"\"\" arial,=\"\"\"\" sans-serif;=\"\"\"\" font-style:=\"\"\"\" normal;=\"\"\"\" font-variant-ligatures:=\"\"\"\" font-variant-caps:=\"\"\"\" font-weight:=\"\"\"\" 400;=\"\"\"\" letter-spacing:=\"\"\"\" orphans:=\"\"\"\" 2;=\"\"\"\" text-align:=\"\"\"\" start;=\"\"\"\" text-indent:=\"\"\"\" 0px;=\"\"\"\" text-transform:=\"\"\"\" none;=\"\"\"\" white-space:=\"\"\"\" widows:=\"\"\"\" word-spacing:=\"\"\"\" -webkit-text-stroke-width:=\"\"\"\" text-decoration-thickness:=\"\"\"\" initial;=\"\"\"\" text-decoration-style:=\"\"\"\" text-decoration-color:=\"\"\"\" initial;\"\"=\"\"\"\">91 pts |&nbsp; James Suckling&nbsp; |&nbsp; 2013 Mt Veeder Cabernet Sauvignon</div><div style=\"\"box-sizing: border-box; margin-top: 0px; margin-right: 0px; margin-bottom: 1rem !important; margin-left: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 16px; vertical-align: baseline; background: rgb(245, 245, 245); color: rgb(136, 136, 136); font-family: \"\" crimson=\"\"\"\" text\"\",=\"\"\"\" \"\"open=\"\"\"\" sans\"\",=\"\"\"\" arial,=\"\"\"\" sans-serif;=\"\"\"\" font-style:=\"\"\"\" normal;=\"\"\"\" font-variant-ligatures:=\"\"\"\" font-variant-caps:=\"\"\"\" font-weight:=\"\"\"\" 400;=\"\"\"\" letter-spacing:=\"\"\"\" orphans:=\"\"\"\" 2;=\"\"\"\" text-align:=\"\"\"\" start;=\"\"\"\" text-indent:=\"\"\"\" 0px;=\"\"\"\" text-transform:=\"\"\"\" none;=\"\"\"\" white-space:=\"\"\"\" widows:=\"\"\"\" word-spacing:=\"\"\"\" -webkit-text-stroke-width:=\"\"\"\" text-decoration-thickness:=\"\"\"\" initial;=\"\"\"\" text-decoration-style:=\"\"\"\" text-decoration-color:=\"\"\"\" initial;\"\"=\"\"\"\">93 pts |&nbsp; Sommelier Company |&nbsp; 2016 Mt Veeder Cabernet Sauvignon</div><span style=\"\"font-style: italic;\"\"></span></div></div>\"\";}s:12:\"feature-text\";a:47:{i:0;s:49:\"<div>Library Release</div>Mt. Veeder, Napa Valley\";i:1;s:23:\"Mt. Veeder, Napa Valley\";i:2;s:11:\"Napa Valley\";i:3;s:22:\"Mt Veeder, Napa Valley\";i:4;s:49:\"<p>Napa Valley, Half Bottle</p>\n<div>&nbsp;</div>\";i:5;s:25:\"Los Carneros, Napa County\";i:6;s:13:\"Sonoma Valley\";i:7;s:29:\"<p>Mt Veeder, Napa Valley</p>\";i:8;s:39:\"Napa Valley, Half Bottle<div><br></div>\";i:9;s:14:\"Clements Hills\";i:10;s:24:\"Dry Creek, Sonoma County\";i:11;s:9:\"Mendocino\";i:12;s:36:\"Special Shipping offer on 6+ Bottles\";i:13;s:18:\"<p>Napa Valley</p>\";i:14;s:18:\"Los Carneros, Napa\";i:15;s:10:\"Lodi&nbsp;\";i:16;s:20:\"Los Carneros, Sonoma\";i:17;s:15:\"Anderson Valley\";i:18;s:12:\"Los Carneros\";i:19;s:24:\"Russian River Valley<br>\";i:20;s:36:\"<p>Knights Valley, Sonoma County</p>\";i:21;s:237:\"<p class=\"p1\"><strong>This wine has the aromas of blueberries, walnuts, and dried herbs. Medium body with creamy tannins and vivid acidity. Made from organically grown grapes.<span class=\"Apple-converted-space\">&nbsp;</span></strong></p>\";i:22;s:209:\"<p>This wine has the aromas of blueberries, walnuts, and dried herbs. Medium body with creamy tannins and vivid acidity. Made from organically grown grapes.<span class=\"Apple-converted-space\">&nbsp;</span></p>\";i:23;s:30:\"<p>Mt. Veeder, Napa Valley</p>\";i:24;s:28:\"<p>Oakville, Napa Valley</p>\";i:25;s:11:\"Lake County\";i:26;s:31:\"Dry Creek Valley, Sonoma County\";i:27;s:16:\"Dry Creek Valley\";i:28;s:13:\"Clements Hill\";i:29;s:12:\"Sonoma Coast\";i:30;s:29:\"Knights Valley, Sonoma County\";i:31;s:13:\"Sonoma County\";i:32;s:16:\"<p>Mendocino</p>\";i:33;s:860:\"<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>TASTING NOTES: &nbsp;We love Pinot Gris from Mendocino because of the spirited aromatics that are characteristic of grapes grown in that appellation. This wine opens with aromatics of granny smith apple, stone fruit, limes, and lemon tart. On the palate, flavors of white peach, almonds, and nougat dissolve into a dry, yet fruity finish laced with ruby-red grapefruit.<br /><br /></div>\n<div>FOOD PAIRINGS:&nbsp;This medium-bodied, complex varietal is delicious when served with grilled seafood and fresh vegetables. Simple meals, like fruit salad and smoked fish, are also a great accompaniment.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">&nbsp;</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\">&nbsp;</div>\";i:34;s:17:\"Sonoma County<br>\";i:35;s:24:\"EVENING BLENDING SEMINAR\";i:36;s:85:\"Our Buy &amp; Hold program is a safe shipping solution for extreme heat, for only $12\";i:37;s:10:\"TODAY ONLY\";i:38;s:12:\"Holiday Gift\";i:39;s:8:\"Set of 2\";i:40;s:38:\"<div>Holiday Gift</div><div><br></div>\";i:41;s:36:\"Limited Edition Library Offering<br>\";i:42;s:51:\"Meadowcroft Sparkling Celebration Bundle | Save 10%\";i:43;s:283:\"This limited-edition collection features one bottle each of our 2021 Carneros Chardonnay, Napa Valley, and 2019 Carneros, Sonoma Valley Bonneau Vineyard.&nbsp;<div><span style=\"font-weight: 700;\"\">Available for a short time only at 20% Savings (membership pricing!)</span><br></div>\"\";i:44;s:281:\"This limited-edition collection features one bottle each of our 2021 Carneros Pinot Noir, Napa Valley, and 2019 Carneros, Sonoma Cornerstone Vineyard.&nbsp;<div><span style=\"font-weight: bold;\"\">Available for a short time only at 20% Savings (membership pricing!)</span><br></div>\"\";i:45;s:32:\"Meadowcroft Logo Champagne Sabre\";i:46;s:86:\"<div>SOLD OUT<span style=\"-webkit-text-size-adjust: 100%;\"\">! &nbsp;</span><br></div>\"\";}s:10:\"wine-notes\";a:55:{i:0;s:7:\"$500.00\";i:1;s:7:\"$125.00\";i:2;s:6:\"$84.00\";i:3;s:11:\"$105.60<br>\";i:4;s:6:\"$33.60\";i:5;s:6:\"$45.00\";i:6;s:13:\"<p>$88.00</p>\";i:7;s:13:\"<p>$92.00</p>\";i:8;s:7:\"$28<br>\";i:9;s:6:\"$28.80\";i:10;s:6:\"$36.00\";i:11;s:6:\"$40.00\";i:12;s:6:\"$52.00\";i:13;s:343:\"<p>This rich, complex wine features blueberry and blackberry characteristics framed by notes of violets and tea leaves. Full-bodied, with firm and silky tannins, the flavor profile is dominated by vivid flavors of cassis, blackberries, and mocha. This wine is an ideal candidate for cellaring and should mature well over the next 10 years.</p>\";i:14;s:6:\"$25.60\";i:15;s:6:\"$32.00\";i:16;s:443:\"<div>TASTING NOTES: &nbsp;Aromas of white nectarine and subtle citrus come together in this refreshing wine.&nbsp; The palate is round and luscious notes of grapefruit and tangerine.&nbsp; The wine finishes with satisfying acidity.<br /><br /></div>\n<div>FOOD PAIRINGS: &nbsp;This refreshing wine will complement lively ceviche or creamy seafood risotto.&nbsp; The acidity in the wine is also a great match for spicy Indian dishes.&nbsp;</div>\";i:17;s:6:\"$88.00\";i:18;s:6:\"$30.40\";i:19;s:10:\"$36.80<br>\";i:20;s:13:\"<p>$30.40</p>\";i:21;s:13:\"<p>$36.00</p>\";i:22;s:718:\"<p style=\"font-weight: 400;\"><strong>TASTING NOTE:</strong>&nbsp; Rich fruit notes of blackberry and cherry, followed by subtle secondary botanical notes of cherry wood and anise blossom define the nose.&nbsp; The front palate exhibits a firm structure with intense flavors of blackberry pie, currants, and clove. The racy acidity on the mid-palate stands up to noticeable tannins, leading into a robust, lingering, and supple finish.</p>\n<p style=\"font-weight: 400;\"><strong>FOOD PAIRING:&nbsp;&nbsp;</strong>This balanced Zinfandel pairs well with a variety of dishes such as spicy baby back ribs, classic BBQ fare, rich mole sauces, and pasta with red sauce.&nbsp; On its own, this wine is an indulgent delight.</p>\";i:23;s:12:\"<p>19.00</p>\";i:24;s:73:\"<p>$180.00 with $20 flat rate ground shipping ( excludes AK &amp; HI)</p>\";i:25;s:14:\"<p>$211.20</p>\";i:26;s:11:\"$211.20<br>\";i:27;s:13:\"<p>$52.00</p>\";i:28;s:10:\"<p>$28</p>\";i:29;s:14:\"<p>$125.00</p>\";i:30;s:5:\"28.00\";i:31;s:6:\"$55.00\";i:32;s:2:\"24\";i:33;s:6:\"$50.00\";i:34;s:10:\"$22.40<br>\";i:35;s:6:\"$24.00\";i:36;s:9:\"28.80<br>\";i:37;s:6:\"$44.00\";i:38;s:6:\"$22.40\";i:39;s:6:\"$34.00\";i:40;s:763:\"<div>TASTING NOTES:&nbsp; &nbsp;A lush and aromatic wine, our 2021 vintage of our Carneros Chardonnay is delightfully complex, with notes of melon and stone fruit framed by primary flavors of apple and lemon peel. Secondary suggestions of grilled bread cheese, mustard seed, pear, and white pepper follow. The finish is rich and extended, with hints of toasted marshmallows.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp; This wine will carry you through pairings for elegant entertaining, weeknight dinners, and everything in between.&nbsp; Seafood is always an easy pairing with this wine. Try also with a selection of cheeses with higher acidity like goat cheese or Jarlsberg. In general, choose to serve with foods that are light and a tad rich.&nbsp;</div>\";i:41;s:6:\"$28.00\";i:42;s:13:\"<p>$25.60</p>\";i:43;s:860:\"<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>TASTING NOTES: &nbsp;We love Pinot Gris from Mendocino because of the spirited aromatics that are characteristic of grapes grown in that appellation. This wine opens with aromatics of granny smith apple, stone fruit, limes, and lemon tart. On the palate, flavors of white peach, almonds, and nougat dissolve into a dry, yet fruity finish laced with ruby-red grapefruit.<br /><br /></div>\n<div>FOOD PAIRINGS:&nbsp;This medium-bodied, complex varietal is delicious when served with grilled seafood and fresh vegetables. Simple meals, like fruit salad and smoked fish, are also a great accompaniment.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">&nbsp;</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\">&nbsp;</div>\";i:44;s:7:\"$100.00\";i:45;s:6:\"$12.00\";i:46;s:7:\"$136.00\";i:47;s:6:\"$60.00\";i:48;s:6:\"$47.95\";i:49;s:7:\"$104.00\";i:50;s:7:\"$103.68\";i:51;s:166:\"Club pricing as listed, learn more about our membership<a href=\"https://www.meadowcroftwines.com/wine-club/\"\" title=\"\"\"\" target=\"\"\"\" style=\"\"background-color: rgb(255\";i:52;s:143:\"Club pricing as listed, learn more about our membership<a href=\"https://www.meadowcroftwines.com/wine-club/\"\" title=\"\"\"\" target=\"\"\"\"> here</a>\"\";i:53;s:7:\"$113.60\";i:54;s:7:\"$140.00\";}s:15:\"technical-notes\";a:53:{i:0;s:243:\"<div>Appellation: &nbsp;Mt. Veeder, Napa</div><div>Varietal: &nbsp;Cabernet Sauvignon</div><div>Harvest Date: &nbsp;October 2008</div><div>Bottle Date: &nbsp;March 2011</div><div>Production: &nbsp;200 cases</div><div>Alcohol: &nbsp;14.4%</div>\";i:1;s:212:\"Appellation: &nbsp;Mt. Veeder, Napa<br>Varietal: &nbsp;Cabernet Sauvignon<br>Harvested: &nbsp;September 28, 2009<br>Barrel Aged: &nbsp;36 months<br>Bottle Date: &nbsp;November 6, 2012<br>Production: 160 cases<br>\";i:2;s:214:\"Appellation: &nbsp;Mt. Veeder, Napa<br>Varietal: &nbsp;Cabernet Sauvignon<br>Harvested: &nbsp;September&nbsp;28, 2009<br>Barrel Aged: &nbsp;36 months<br>Bottle Date: &nbsp;November 2012<br>Production: 160 cases<br>\";i:3;s:201:\"Appellation: &nbsp;Mt. Veeder, Napa<br>Varietal: &nbsp;Cabernet Sauvignon<br>Harvested: &nbsp;September 2012<br>Barrel Aged: &nbsp;38 months<br>Bottle Date: &nbsp;November 2015<br>Production: 103 cases\";i:4;s:258:\"<div>Appellation:&nbsp; Mt. Veeder, Napa Valley<div>Varietal:&nbsp; Cabernet Sauvignon</div><div>Harvested:&nbsp; October 2016</div><div>Barrel-Aged:&nbsp; 36 months</div><div>Bottle Date:&nbsp; November 2018</div><div>Production:&nbsp; 200 cases</div></div>\";i:5;s:227:\"<div>Appellation: Russian River Valley, Sonoma County</div>\n<div>Varietal: 100% Chardonnay</div>\n<div>Harvested: September 2016</div>\n<div>Bottle Date: March 2018</div>\n<div>Production: 112 Cases</div>\n<div>Alcohol: 13.3%</div>\";i:6;s:238:\"<div>Appellation: &nbsp;Carneros, Napa County</div><div>Varietal: &nbsp;Pinot Noir</div><div>Harvest Date: &nbsp;September 2016</div><div>Bottle Date: &nbsp;January 2018</div><div>Production: 105 cases</div><div>Alcohol: &nbsp;13.5%</div>\";i:7;s:70:\"<div>Appellation:&nbsp;<span style=\"line-height: 1.5;\"\">Giles Vineyard\";i:8;s:223:\"<div>Appellation:&nbsp; Mt. Veeder, Napa Valley</div>\n<div>Varietal:&nbsp; Cabernet Sauvignon</div>\n<div>Harvested:&nbsp; October 2017</div>\n<div>Bottle Date:&nbsp; November 2019</div>\n<div>Production:&nbsp; 168 cases</div>\";i:9;s:249:\"<div>\n<div>Appellation:&nbsp; Mt. Veeder, Napa Valley</div>\n<div>Varietal:&nbsp; Cabernet Sauvignon</div>\n<div>Harvested:&nbsp; October 2018</div>\n<div>Bottle Date:&nbsp; May 2021</div>\n<div>Production:&nbsp; 168 cases</div>\n</div>\n<div>&nbsp;</div>\";i:10;s:210:\"<div>Appellation: &nbsp;Napa Valley<br>Varietal: &nbsp;Cabernet Sauvignon<br>Harvested: &nbsp;October 2018<br>Barrel-Aged:&nbsp; 15 months<br>Bottle Date:&nbsp; January 2020<br>Production: 1,816 cases<br></div>\";i:11;s:152:\"Appellation: Napa Valley, Napa County<div>Varietal: Cabernet Sauvignon<div>Harvest Date: September 2018</div><div>Case Production: 230 cases</div></div>\";i:12;s:131:\"Appellation:  Clements Hill, San Joaquin County\nVarietal:  Malbec\nHarvested:  November 2018\nProduction:  232 cases\nAlcohol:  14.75%\";i:13;s:269:\"<div>Appellation: &nbsp;Dry Creek Valley, Sonoma County</div><div>Varietal: &nbsp;80% Zinfandel, 20% Petite Sirah</div><div>Harvest Date: &nbsp;October 2018</div><div>Bottling Date: &nbsp;January 2019</div><div>Case Production: 198 cases</div><div>Alcohol: 15.67%</div>\";i:14;s:244:\"<div> Appellation: &nbsp;Mendocino County<br>Varietal: &nbsp;Cabernet Sauvignon<br>Harvest Date: &nbsp;September 2019<br>Bottled Date: &nbsp;March 2022<br>Alcohol: &nbsp;14.58%<br>Case Production: &nbsp;238 cases<div><div><br></div></div></div>\";i:15;s:249:\"<div>\n<div>Appellation:&nbsp; Mt. Veeder, Napa Valley</div>\n<div>Varietal:&nbsp; Cabernet Sauvignon</div>\n<div>Harvested:&nbsp; October 2019</div>\n<div>Bottle Date:&nbsp; May 2021</div>\n<div>Production:&nbsp; 168 cases</div>\n</div>\n<div>&nbsp;</div>\";i:16;s:172:\"<div>Appellation: &nbsp;Napa Valley<br>Varietal: &nbsp;Cabernet Sauvignon<br>Harvested:&nbsp; October 2019<br>Bottle Date:&nbsp; May 2021<br>Production: 620 cases<br></div>\";i:17;s:231:\"<p>Appellation: Oakville, Napa Valley</p>\n<p>Varietal:&nbsp;91% Cabernet Sauvignon, 9% Petite Verdot&nbsp;</p>\n<p>Harvested: September 2019</p>\n<p>Bottling Date: December 2021</p>\n<p>Production: 150 cases</p>\n<p>Alcohol: 14.84%</p>\";i:18;s:255:\"<div>Appellation: Los Carneros, Napa Valley</div><div>Varietal:&nbsp; Chardonnay</div><div>Harvested:&nbsp; August 2019</div><div>Barrel Regime:&nbsp; 25% New French Oak</div><div>Bottled Date:&nbsp; June 2020</div><div>Production:&nbsp; 1,200 cases</div>\";i:19;s:204:\"<div>Appellation:  Clements Hill, San Joaquin County&nbsp;</div><div>Varietal:  Malbec&nbsp;</div><div>Harvested: October 2019&nbsp;</div><div>Production:  200 cases&nbsp;</div><div>Alcohol:  14.75%</div>\";i:20;s:297:\"<p>Appellation:&nbsp; Cameron Vineyard, Russian River Valley</p>\n<div>Fermentation:&nbsp; 90% Stainless Steel; 10% New French Oak</div>\n<div>Harvest Date:&nbsp; September 2019</div>\n<div>Bottling Date:&nbsp; June 2020</div>\n<div>Case Production:&nbsp;84 cases</div>\n<div>Alcohol:&nbsp; 13.3%</div>\";i:21;s:305:\"Appellation: &nbsp;Los Carneros, Sonoma County<br><span style=\"line-height: 1.5;\"\">Varietal: &nbsp;Pinot Noir<br></span><span style=\"\"line-height: 1.5;\"\">Harvested:&nbsp; September 2017</span><span style=\"\"line-height: 1.5;\"\"><br></span><span style=\"\"line-height: 1.5;\"\">Production: &nbsp;40 cases</span>\"\";i:22;s:222:\"<div>Appellation: &nbsp;Anderson Valley, Mendocino County</div><div>Varietal: &nbsp;Pinot Noir</div><div>Harvested: &nbsp;September 2019</div><div>Bottle Date:&nbsp; January 2020</div><div>Production:&nbsp; 900 cases</div>\";i:23;s:341:\"Appellation: &nbsp;Los Carneros, Sonoma County<br><span style=\"line-height: 1.5;\"\">Varietal: &nbsp;Pinot Noir<br></span><span style=\"\"line-height: 1.5;\"\">Harvested: &nbsp;September 2019<br>B</span><span style=\"\"line-height: 1.5;\"\">ottle Date:&nbsp; May 2021<br></span><span style=\"\"line-height: 1.5;\"\">Production:&nbsp; 173 cases</span><br>\"\";i:24;s:207:\"Appellations: &nbsp;Russian River Valley, Sonoma County<div>Varietal: &nbsp;Pinot Noir</div><div>Harvested: &nbsp;September 2019</div><div>Bottle Date:&nbsp; October 2020<br>Production:&nbsp; 130 cases</div>\";i:25;s:225:\"<p>Appellation: Sonoma Coast, Sonoma County Pinot Noir<br />Harvest Date: September 2019<br />Barrel Regime: French oak barrels<br />Bottling Date: August 2021<br />Production: 695 Cases<br />Alcohol: 13.26%<br />pH: 3.83</p>\";i:26;s:260:\"<div>Appellation: &nbsp;Dry Creek Valley, Sonoma County</div>\n<div>Varietal: Roussanne</div>\n<div>Fermentation: &nbsp;French oak barrel</div>\n<div>Harvest Date: September 2019</div>\n<div>Bottling Date: February 2020</div>\n<div>Production:&nbsp; 112 cases</div>\";i:27;s:226:\"<div>Appellation: &nbsp;Knights Valley, Sonoma County<br />\n<div>Varietal: &nbsp;Zinfandel</div>\n<div>Harvested: &nbsp;September 2019</div>\n<div>Bottle Date: &nbsp;April 2022</div>\n<div>Production: &nbsp;184 Cases</div>\n</div>\";i:28;s:287:\"<div>Appellation: &nbsp;Dry Creek Valley, Sonoma County</div><div>Varietal: &nbsp;76 % Zinfandel, 12% Petite Sirah, 12% Cabernet</div><div>Harvest Date: &nbsp;September 2019</div><div>Bottling Date: &nbsp;December 2021</div><div>Case Production: 431 cases</div><div>Alcohol: 15.20%</div>\";i:29;s:163:\"<div>Format: 375ml (Half-Bottle)</div>\n<div>Appellation: &nbsp;Dry Creek Valley, Sonoma County</div>\n<div>Varietal: &nbsp;Zinfandel</div>\n<div>Alcohol: 14.5%</div>\";i:30;s:592:\"<p><span style=\"font-weight: bold;\">TECHNICAL DATA</span></p>\n<div>\n<p class=\"p1\"><strong>Grapes: </strong>100% Organic Malbec.</p>\n<p class=\"p1\"><strong>Region: </strong>Agrelo, Luj&aacute;n de Cuyo, Mendoza. Argentina.</p>\n<p class=\"p1\"><strong>Winemaking: </strong>Fermentation in stainless steel tanks at 24-26&deg;C for 14 days.</p>\n<p class=\"p1\"><strong>Oak Aging: </strong>10% of the wine was aged in 500 liter barrels of medium-toasted French oak.</p>\n<p class=\"p1\"><strong>| ALC. 14 | RS. 5 | AT. 5.54 | pH. 3.67 |<span class=\"Apple-converted-space\">&nbsp;</span></strong></p>\n</div>\";i:31;s:218:\"<div>Appellation:&nbsp; Mt. Veeder, Napa Valley</div>\n<div>Varietal:&nbsp; Cabernet Sauvignon</div>\n<div>Harvested:&nbsp; October 2018</div>\n<div>Bottle Date:&nbsp; May 2021</div>\n<div>Production:&nbsp; 168 cases</div>\";i:32;s:80:\"<p class=\"MsoNormal\"\" style=\"\"margin: 0in; font-size: 12pt; font-family: Calibri\";i:33;s:180:\"<div>Appellation: &nbsp;Napa Valley<br />Varietal: &nbsp;Cabernet Sauvignon<br />Harvested:&nbsp; September 2020<br />Bottle Date:&nbsp; March 2022<br />Production: 578 cases</div>\";i:34;s:161:\"<p>Appellation: &nbsp;Napa Valley<br />Varietal: &nbsp;Cabernet Sauvignon<br />Harvested:&nbsp; September 2020<br />Bottle Date:&nbsp; March 2022<br /><br /></p>\";i:35;s:248:\"<p>Appellation: Oakville, Napa Valley</p>\n<div>Varietal:&nbsp;91% Cabernet Sauvignon, 9% Petite Verdot&nbsp;</div>\n<div>Harvested: September 2020</div>\n<div>Bottling Date: April 2022</div>\n<div>Production: 150 cases</div>\n<div>Alcohol: 14.84%</div>\";i:36;s:176:\"<div>Appellation: &nbsp;Napa Valley<br>Varietal: &nbsp;Cabernet Sauvignon<br>Harvested:&nbsp; September 2020<br>Bottle Date:&nbsp; March 2022<br>Production: 578 cases<br></div>\";i:37;s:286:\"Appellation: &nbsp;Dry Creek Valley, Sonoma County<br>Varietal:&nbsp;75% Cabernet Sauvignon 10% Mourvedre 10% Petite Sirah, 5% Malbec&nbsp;<br>Harvest Date: &nbsp;September 2020<br>Bottled Date:&nbsp; April 2022<br>Alcohol: &nbsp;14.5%<br>Production: 222 cases<div></div><div><br></div>\";i:38;s:297:\"<div>Appellation: &nbsp;Dry Creek Valley</div>\n<div>Varieties: &nbsp;Cabernet Sauvignon 91%, Petite Sirah 5%, Malbec 2%, Petit Verdot 2%</div><div>Barrel Regime:&nbsp; 25% French Oak</div><div>Bottling Date:&nbsp; April 2022</div><div>Production:&nbsp;20 cases</div><div>Alcohol: &nbsp;14.5%</div>\";i:39;s:214:\"<div>Appellation:&nbsp; Mendocino</div><div>Varietal:&nbsp; Pinot Blanc</div><div>Harvest Date: September 2020</div><div>Bottle date: May 2021</div><div>Production: 81&nbsp; cases</div><div>Alcohol: 14.2%<br></div>\";i:40;s:310:\"<div>Appellation:&nbsp; Lodi, Contra Costa &amp; Sonoma, California</div><div>Varietal: 48% Syrah, 12% Grenache, and 12% Mourvédre,&nbsp;4% Malbec, 24% Carignane</div><div>Harvest Date: September 2020</div><div>Bottling Date: April 2022</div><div>Production:&nbsp; 403 cases</div><div>Alcohol:&nbsp; 14%</div>\";i:41;s:248:\"<div>Appellation: &nbsp;Clements Hill, San Joaquin Valley</div><div>Varietal: &nbsp;Malbec</div><div>Harvest Date: &nbsp;September 2020</div><div>Bottling Date: &nbsp;January 2021</div><div>Production:&nbsp; 140 cases</div><div>Alcohol: 13.5%</div>\";i:42;s:223:\"<div>Appellation: &nbsp;Sonoma Coast</div><div>Varietal: &nbsp;Pinot Noir</div><div>Harvest Date: September 2020</div><div>Bottling Date: March 2021</div><div>Production:&nbsp; 196 cases</div><div>Alcohol: &nbsp;13.5%</div>\";i:43;s:266:\"<div>Appellation: &nbsp;Dry Creek Valley, Sonoma County</div><div>Varietal: Roussanne</div><div>Fermentation: &nbsp;French oak barrel fermented</div><div>Harvest Date: September 2020</div><div>Bottling Date: May 2021&nbsp;</div><div>Production:&nbsp; 213 cases</div>\";i:44;s:344:\"Appellation: Knights Valley, Sonoma County<br><span style=\"line-height: 1.5;\"\">Varietal: Sangiovese<br></span><span style=\"\"line-height: 1.5;\"\">Harvested: September 2020</span><span style=\"\"line-height: 1.5;\"\"><br></span><span style=\"\"line-height: 1.5;\"\">Production: 209 cases<br></span><span style=\"\"line-height: 1.5;\"\">Alcohol: 14.79%</span>\"\";i:45;s:241:\"<div>Appellation:&nbsp; Sonoma Coast, Sonoma County</div><div>Varietal: &nbsp;Sauvignon Blanc</div><div>Harvest Date: September 2020</div><div>Bottle date: March 2021</div><div>Production: &nbsp;118 cases</div><div>Alcohol: &nbsp;14.4%</div>\";i:46;s:322:\"<div>Appellation: &nbsp;Dry Creek Valley, Sonoma County</div><div>Varietal: Viognier</div><div>Fermentation:&nbsp; Barrel fermented in French oak barrels</div><div>Harvest Date: September 2020</div><div>Bottling Date: May 2020<br></div><div>Production:&nbsp; &nbsp;76cases</div><div>Alcohol: 14.32%<br>pH:&nbsp; 3.38</div>\";i:47;s:189:\"<div>Appellation: Carneros, Napa Valley</div>\n<div>Varietal:&nbsp; Chardonnay</div>\n<div>Harvested:&nbsp; September 2021</div>\n<div>Bottled Date:&nbsp; February 2022</div>\n<div>&nbsp;</div>\";i:48;s:280:\"<div>Appellation: Vino Del Sol Sonoma Coast, Sonoma County</div><div>Varietal: Chardonnay</div><div>Oak Regime: 100% French Oak, 35% New</div><div>Harvested: September 2021</div><div>Bottle Date: April 2022</div><div>Production: 145 Cases</div><div>Alc: 13.5%</div><div><br></div>\";i:49;s:222:\"<div>Appellation:&nbsp; Mendocino</div>\n<div>Varietal:&nbsp; Pinot Blanc</div>\n<div>Harvest Date: September 2021</div>\n<div>Bottle date: February&nbsp;</div>\n<div>Production: 97&nbsp; cases</div>\n<div>Alcohol: 13.39%</div>\";i:50;s:588:\"<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">Appellation:&nbsp; Nelson Ranch Vineyard, Mendocino County\n<div>Harvest Date:&nbsp; September 2021</div>\n<div>Bottling Date:&nbsp; February 2022</div>\n<div>Case Production:&nbsp;183 cases</div>\n<div>Alcohol:&nbsp; 14.10%</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/03/Meadowcroft_2021_Pinot_Gris_Mendocino_Tech_Sheet.pdf\">Download Complete Wine Tasting Notes</a></div>\";i:51;s:205:\"Appellations: &nbsp;Russian River Valley, Sonoma County<div>Varietal: &nbsp;Pinot Noir</div><div>Harvested: &nbsp;September 2021</div><div>Bottle Date:&nbsp; April 2022<br>Production:&nbsp; 160 cases</div>\";i:52;s:209:\"Appellation: Sonoma Coast, Sonoma County Pinot Noir<br>Harvest Date: September 2021<br>Barrel Regime: French oak barrels<br>Bottling Date: April 2022<br>Production: 200 Cases<br>Alcohol: 13.38%<br>pH: 3.75<br>\";}}s:30:\"did_just_save_product_settings\";b:0;}','yes'),(89209,'c7c_settings_products','a:15:{s:26:\"notification_email_address\";s:0:\"\";s:17:\"products_per_page\";i:10;s:24:\"price_range_filter_steps\";a:4:{i:0;i:20;i:1;i:40;i:2;i:60;i:3;i:80;}s:29:\"wine_score_range_filter_steps\";a:3:{i:0;i:85;i:1;i:90;i:2;i:95;}s:36:\"trade_assets_enabled_sort_attributes\";a:2:{i:0;s:5:\"title\";i:1;s:5:\"price\";}s:26:\"join_waitlist_button_label\";s:0:\"\";s:27:\"leave_waitlist_button_label\";s:0:\"\";s:30:\"should_enable_related_products\";b:0;s:27:\"should_enable_share_buttons\";b:0;s:32:\"should_enable_customer_favorites\";b:0;s:21:\"should_enable_reviews\";b:0;s:14:\"wine_verticals\";a:0:{}s:38:\"trade_assets_enabled_filter_attributes\";a:0:{}s:33:\"trade_assets_should_enable_search\";b:0;s:33:\"should_hide_leave_waitlist_button\";b:0;}','yes'),(89210,'c7c_settings_subscribe_pop_up','a:5:{s:5:\"title\";s:0:\"\";s:25:\"delay_duration_in_seconds\";i:1;s:22:\"reset_duration_in_days\";i:3;s:12:\"banner_image\";s:0:\"\";s:7:\"content\";s:0:\"\";}','yes'),(89211,'c7c_settings_license','a:1:{s:11:\"license_key\";s:36:\"f300d18e-32e8-458f-bfc0-75ad49f4cfb2\";}','yes'),(89212,'c7c_templates','a:8:{s:16:\"next_template_id\";i:5;s:17:\"product_templates\";a:1:{i:0;a:4:{s:2:\"id\";i:1;s:4:\"name\";s:24:\"Default Product Template\";s:7:\"content\";s:2210:\"<div class=\"entry-content\">\r\n  <div class=\"c7-product-detail\">\r\n    <div class=\"c7-product\">\r\n      <div class=\"c7-product__image\">\r\n        <img src=\"{{ product-image }}\" alt=\"{{ product-title }}\" />\r\n      </div>\r\n      <div class=\"c7-product__details\">\r\n        {{ if-product-has-title }}<h1 class=\"c7-product__title\">{{ product-title }}</h1>{{ end-if }}\r\n        <div class=\"c7-product__subtitle\">{{ product-subtitle }}</div>\r\n        {{ select-vertical-button }}\r\n        {{ waitlist-button }}\r\n        <div class=\"c7-buy-product\" data-product-slug=\"{{ product-slug }}\"></div>\r\n        <div class=\"c7-product__info\">\r\n          <div class=\"c7-product__content\">\r\n            <div>{{ product-content }}</div>\r\n          </div>\r\n          <div class=\"c7-product__specs\">\r\n            {{ if-product-type-is-wine }}\r\n              {{ if-wine-has-vintage }}\r\n              <div class=\"c7-product__spec\">\r\n                <div>Vintage</div>\r\n                <div>{{ wine-vintage }}</div>\r\n              </div>\r\n              {{ end-if }}\r\n              {{ if-wine-has-varietal }}\r\n              <div class=\"c7-product__spec\">\r\n                <div>Varietal</div>\r\n                <div>{{ wine-varietal }}</div>\r\n              </div>\r\n              {{ end-if }}\r\n              {{ if-wine-has-appellation }}\r\n              <div class=\"c7-product__spec\">\r\n                <div>Appellation</div>\r\n                <div>{{ wine-appellation }}</div>\r\n              </div>\r\n              {{ end-if }}\r\n              \r\n              {{ if-product-has-vendor }}\r\n                <div class=\"c7-product__spec\">\r\n                  <div>Vendor</div>\r\n                  <div>{{ product-vendor }}</div>\r\n                </div>\r\n              {{ end-if }}\r\n            {{ end-if }}\r\n            {{ if-product-has-downloads }}\r\n              {{ for-each-download }}\r\n                <div class=\"c7-product__spec\">\r\n                  <div>{{ download-label }}</div>\r\n                  <div><a href=\"{{ download-link }}\" download>Download {{ download-label }}</a></div>\r\n                </div>\r\n              {{ end-for-each}}\r\n            {{ end-if }}\r\n          </div>\r\n        </div>\r\n      </div>\r\n    </div>\r\n  </div>\r\n</div>\";s:6:\"errors\";a:0:{}}}s:20:\"collection_templates\";a:1:{i:0;a:4:{s:2:\"id\";i:2;s:4:\"name\";s:27:\"Default Collection Template\";s:7:\"content\";s:1174:\"<div class=\"entry-content\">\r\n  <div class=\"c7-product-collection\">\r\n    <h1>{{ collection-title }}</h1>\r\n    {{ if-collection-has-products }}\r\n      <div class=\"c7-product-collection__products\">\r\n        <h2 class=\"c7-sr-only\">Product List</h2>\r\n        <div class=\"c7-product-collection__product-list\">\r\n          {{ for-each-product }}\r\n            <div class=\"c7-product\">\r\n              <div class=\"c7-product__photo\">\r\n                <a href=\"/product/{{ product-slug }}\"><img src=\"{{ product-image }}\" alt=\"{{ product-title }}\" loading=\"lazy\" /></a>\r\n              </div>\r\n              <div class=\"c7-product__info\">\r\n                <div class=\"c7-product__title c7-title\" role=\"heading\" aria-level=\"3\">\r\n                  <a href=\"/product/{{ product-slug }}\">{{ product-title }}</a>\r\n                </div>\r\n                <div class=\"c7-buy-product\" data-product-slug=\"{{ product-slug }}\"></div>\r\n              </div>\r\n            </div>\r\n          {{ end-for-each }}\r\n        </div>\r\n      </div>\r\n    {{ else }}\r\n      <div class=\"c7-product-collection__empty-collection-notice\">Empty Collection</div>\r\n    {{ end-if }}\r\n    {{ pagination }}\r\n  </div>\r\n</div>\";s:6:\"errors\";a:0:{}}}s:25:\"personalization_templates\";a:1:{i:0;a:4:{s:2:\"id\";i:3;s:4:\"name\";s:31:\"Sample Personalization Template\";s:7:\"content\";s:476:\"<div class=\"\">\n  {{ if-user-is-logged-in }}\n  <div>Hello Customer.</div>\n    {{ if-user-has-tag-employee }}\n      <div>Oh you\'re an employee, okay.</div>\n    {{ end-if }}\n    {{ if-customer-is-a-subscriber }}\n      <div>Thanks for being a subscriber!</div>\n    {{ end-if }}\n    {{ if-user-is-member-of-six-bottle-club }}\n      <div>We see you\'re a Six Bottle Club member!</div>\n    {{ end-if }}\n  {{ else }}\n    <div>Wow, you\'re not even logged in.</div>\n  {{ end-if }}\n</div>\";s:6:\"errors\";a:0:{}}}s:16:\"recipe_templates\";a:1:{i:0;a:4:{s:2:\"id\";i:4;s:4:\"name\";s:22:\"Sample Recipe Template\";s:7:\"content\";s:1726:\"<div class=\"entry-content\">\n  <div class=\"recipe-image\">\n    <img src=\"{{ recipe-image }}\" alt=\"{{ recipe-title }}\" />\n  </div>\n  <div class=\"recipe-detail\">\n    <div class=\"intro\">\n      <meta itemprop=\"url\" content=\"{{ recipe-url }}\">\n      <h1 itemprop=\"name\" class=\"name\">{{ recipe-title }}</h1>\n      {{ if-recipe-has-wine-pairings }}\n        <div class=\"pairs-with\">\n          <span>Pairs With </span>\n          {{ for-each-wine-pairing }}\n            <a class=\"pairing-link\" href=\"{{ wine-url }}\">{{ wine-title }}</a>\n          {{ end-for-each }}\n        </div>\n      {{ end-if }}\n    </div>\n    <div class=\"attributes\">\n      <div itemprop=\"yield\" class=\"yield\">\n        <div class=\"label\">Yield:</div>\n        <div class=\"value\">{{ recipe-yield }}</div>\n      </div>\n      <div itemprop=\"prepTime\" class=\"prep-time\">\n        <div class=\"label\">Prep Time:</div>\n        <div class=\"value\">{{ recipe-prep-time }}</div>\n      </div>\n      <div itemprop=\"cookTime\" class=\"cook-time\">\n        <div class=\"label\">Cook Time:</div>\n        <div class=\"value\">{{ recipe-cook-time }}</div>\n      </div>\n      <div itemprop=\"totalTime\" class=\"total-time\">\n        <div class=\"label\">Total Time:</div>\n        {{ if-recipe-has-total-time }}<div class=\"value\">{{ recipe-total-time }}</div>{{ end-if }}\n      </div>\n    </div>\n    <div class=\"details\">\n      <div itemprop=\"recipeIngredient\" class=\"ingredients\">\n        <h2 class=\"heading\">Ingredients</h2>\n        <div class=\"text\">{{ recipe-ingredients }}</div>\n      </div>\n      <div itemprop=\"recipeInstructions\" class=\"preparation\">\n        <h2 class=\"heading\">Preparation</h2>\n        <div class=\"text\">{{ recipe-preparation }}</div>\n      </div>\n    </div>\n  </div>\n</div>\";s:6:\"errors\";a:0:{}}}s:24:\"default_product_template\";i:1;s:27:\"default_collection_template\";i:2;s:23:\"default_recipe_template\";i:4;}','yes'),(89213,'mwp_recovering','','yes'),(89214,'mwp_core_autoupdate','','yes'),(89215,'mwp_container_parameters','a:0:{}','yes'),(89216,'mwp_container_site_parameters','a:0:{}','yes'),(89217,'mwp_maintenace_mode','a:0:{}','yes'),(89218,'_worker_nossl_key','','yes'),(89219,'_worker_public_key','','yes'),(89220,'mwp_worker_configuration','a:9:{s:10:\"master_url\";s:21:\"https://managewp.com/\";s:15:\"master_cron_url\";s:75:\"https://managewp.com/wp-content/plugins/master/mwp-notifications-handle.php\";s:20:\"noti_cache_life_time\";s:5:\"86400\";s:27:\"noti_treshold_spam_comments\";s:2:\"10\";s:30:\"noti_treshold_pending_comments\";s:1:\"0\";s:31:\"noti_treshold_approved_comments\";s:1:\"0\";s:19:\"noti_treshold_posts\";s:1:\"0\";s:20:\"noti_treshold_drafts\";s:1:\"0\";s:8:\"key_name\";s:8:\"managewp\";}','yes'),(89247,'wpsm_acc_r_review','a:2:{s:4:\"time\";i:1698948720;s:9:\"dismissed\";b:1;}','yes'),(89278,'saswp_installation_date','2023-05-29','yes'),(89279,'sd_data','a:25:{s:13:\"saswp_kb_type\";s:12:\"Organization\";s:7:\"sd_name\";s:17:\"Meadowcroft Wines\";s:11:\"sd_alt_name\";s:17:\"Meadowcroft Wines\";s:6:\"sd_url\";s:32:\"https://www.meadowcroftwines.com\";s:14:\"sd-person-name\";s:12:\"Vishal Mehta\";s:13:\"sd-person-url\";s:32:\"https://www.meadowcroftwines.com\";s:18:\"saswp_kb_contact_1\";i:0;s:19:\"saswp-for-wordpress\";i:1;s:24:\"sd_initial_wizard_status\";i:1;s:23:\"saswp-microdata-cleanup\";i:1;s:25:\"saswp-default-videoobject\";i:1;s:18:\"saswp-other-images\";i:1;s:20:\"saswp_default_review\";i:1;s:25:\"saswp-multiple-size-image\";i:1;s:20:\"saswp-image-resizing\";i:1;s:25:\"saswp_woocommerce_archive\";i:1;s:20:\"saswp-default-rating\";i:5;s:23:\"instant_indexing_action\";i:1;s:16:\"instant_indexing\";a:2:{s:4:\"post\";i:1;s:4:\"page\";i:1;}s:7:\"sd_logo\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";b:0;s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:18:\"saswp-accordionfaq\";i:1;s:28:\"saswp-modern-events-calendar\";i:1;s:11:\"saswp-yoast\";i:1;s:23:\"saswp-role-based-access\";a:1:{i:0;s:13:\"administrator\";}s:18:\"saswp_social_links\";a:0:{}}','yes'),(89280,'widget_saswp_location_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(89281,'widget_saswp_google_review_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(89282,'saswp_social_profile_upgrade','2023-05-29','yes'),(89303,'saswp_google_upgrade','2023-06-07','yes'),(89398,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:62:\"https://wpe-downloads.wpengine.com/release/wordpress-6.7.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:62:\"https://wpe-downloads.wpengine.com/release/wordpress-6.7.1.zip\";s:10:\"no_content\";s:73:\"https://wpe-downloads.wpengine.com/release/wordpress-6.7.1-no-content.zip\";s:11:\"new_bundled\";s:74:\"https://wpe-downloads.wpengine.com/release/wordpress-6.7.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.1\";s:7:\"version\";s:5:\"6.7.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1735819780;s:15:\"version_checked\";s:5:\"6.7.1\";s:12:\"translations\";a:0:{}}','off'),(89400,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1735819780;s:8:\"response\";a:1:{s:45:\"redirect-redirection/redirect-redirection.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:34:\"w.org/plugins/redirect-redirection\";s:4:\"slug\";s:20:\"redirect-redirection\";s:6:\"plugin\";s:45:\"redirect-redirection/redirect-redirection.php\";s:11:\"new_version\";s:5:\"1.2.5\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/redirect-redirection/\";s:7:\"package\";s:87:\"https://plugin-updates.wpengine.com/redirect-redirection/redirect-redirection.1.2.5.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:80:\"https://plugin-updates.wpengine.com/redirect-redirection/assets/icon-128x128.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:94:\"https://plugin-updates.wpengine.com/redirect-redirection/assets/banner-772x250.jpg?rev=2556040\";s:4:\"high\";b:0;}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.7.1\";s:8:\"requires\";s:3:\"4.6\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:100;s:11:\"num_ratings\";i:261;s:15:\"support_threads\";i:2;s:24:\"support_threads_resolved\";i:2;}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:11:{s:57:\"acf-content-analysis-for-yoast-seo/yoast-acf-analysis.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:48:\"w.org/plugins/acf-content-analysis-for-yoast-seo\";s:4:\"slug\";s:34:\"acf-content-analysis-for-yoast-seo\";s:6:\"plugin\";s:57:\"acf-content-analysis-for-yoast-seo/yoast-acf-analysis.php\";s:11:\"new_version\";s:3:\"3.1\";s:3:\"url\";s:65:\"https://wordpress.org/plugins/acf-content-analysis-for-yoast-seo/\";s:7:\"package\";s:113:\"https://plugin-updates.wpengine.com/acf-content-analysis-for-yoast-seo/acf-content-analysis-for-yoast-seo.3.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:94:\"https://plugin-updates.wpengine.com/acf-content-analysis-for-yoast-seo/assets/icon-128x128.png\";s:2:\"2x\";s:94:\"https://plugin-updates.wpengine.com/acf-content-analysis-for-yoast-seo/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:108:\"https://plugin-updates.wpengine.com/acf-content-analysis-for-yoast-seo/assets/banner-772x250.png?rev=1717503\";s:4:\"high\";s:109:\"https://plugin-updates.wpengine.com/acf-content-analysis-for-yoast-seo/assets/banner-1544x500.png?rev=1717503\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.7.1\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:5:\"7.2.5\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:82;s:11:\"num_ratings\";i:34;s:15:\"support_threads\";i:1;s:24:\"support_threads_resolved\";i:0;}s:21:\"age-gate/age-gate.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:22:\"w.org/plugins/age-gate\";s:4:\"slug\";s:8:\"age-gate\";s:6:\"plugin\";s:21:\"age-gate/age-gate.php\";s:11:\"new_version\";s:5:\"3.5.2\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/age-gate/\";s:7:\"package\";s:63:\"https://plugin-updates.wpengine.com/age-gate/age-gate.3.5.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:68:\"https://plugin-updates.wpengine.com/age-gate/assets/icon-128x128.png\";s:2:\"2x\";s:68:\"https://plugin-updates.wpengine.com/age-gate/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:82:\"https://plugin-updates.wpengine.com/age-gate/assets/banner-772x250.png?rev=2783003\";s:4:\"high\";b:0;}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.7.0\";s:8:\"requires\";s:5:\"6.0.0\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:94;s:11:\"num_ratings\";i:60;s:15:\"support_threads\";i:13;s:24:\"support_threads_resolved\";i:2;}s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:5:\"1.6.7\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:75:\"https://plugin-updates.wpengine.com/classic-editor/classic-editor.1.6.7.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:74:\"https://plugin-updates.wpengine.com/classic-editor/assets/icon-128x128.png\";s:2:\"2x\";s:74:\"https://plugin-updates.wpengine.com/classic-editor/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:88:\"https://plugin-updates.wpengine.com/classic-editor/assets/banner-772x250.png?rev=1998676\";s:4:\"high\";s:89:\"https://plugin-updates.wpengine.com/classic-editor/assets/banner-1544x500.png?rev=1998671\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.7.1\";s:8:\"requires\";s:3:\"4.9\";s:12:\"requires_php\";s:5:\"5.2.4\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:98;s:11:\"num_ratings\";i:1198;s:15:\"support_threads\";i:9;s:24:\"support_threads_resolved\";i:5;}s:47:\"current-template-name/current-template-name.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:35:\"w.org/plugins/current-template-name\";s:4:\"slug\";s:21:\"current-template-name\";s:6:\"plugin\";s:47:\"current-template-name/current-template-name.php\";s:11:\"new_version\";s:6:\"1.1.16\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/current-template-name/\";s:7:\"package\";s:90:\"https://plugin-updates.wpengine.com/current-template-name/current-template-name.1.1.16.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:81:\"https://plugin-updates.wpengine.com/current-template-name/assets/icon-128x128.png\";s:2:\"2x\";s:81:\"https://plugin-updates.wpengine.com/current-template-name/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:95:\"https://plugin-updates.wpengine.com/current-template-name/assets/banner-772x250.png?rev=3163227\";s:4:\"high\";b:0;}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.6.2\";s:8:\"requires\";s:3:\"4.6\";s:12:\"requires_php\";s:5:\"5.2.4\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:100;s:11:\"num_ratings\";i:5;s:15:\"support_threads\";i:0;s:24:\"support_threads_resolved\";i:0;}s:39:\"eps-301-redirects/eps-301-redirects.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:31:\"w.org/plugins/eps-301-redirects\";s:4:\"slug\";s:17:\"eps-301-redirects\";s:6:\"plugin\";s:39:\"eps-301-redirects/eps-301-redirects.php\";s:11:\"new_version\";s:4:\"2.77\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/eps-301-redirects/\";s:7:\"package\";s:80:\"https://plugin-updates.wpengine.com/eps-301-redirects/eps-301-redirects.2.77.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:77:\"https://plugin-updates.wpengine.com/eps-301-redirects/assets/icon-128x128.png\";s:2:\"2x\";s:77:\"https://plugin-updates.wpengine.com/eps-301-redirects/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:91:\"https://plugin-updates.wpengine.com/eps-301-redirects/assets/banner-772x250.png?rev=2049908\";s:4:\"high\";s:92:\"https://plugin-updates.wpengine.com/eps-301-redirects/assets/banner-1544x500.png?rev=2049908\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.7.1\";s:8:\"requires\";s:3:\"3.6\";s:12:\"requires_php\";s:3:\"5.2\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:94;s:11:\"num_ratings\";i:542;s:15:\"support_threads\";i:7;s:24:\"support_threads_resolved\";i:6;}s:37:\"post-types-order/post-types-order.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:30:\"w.org/plugins/post-types-order\";s:4:\"slug\";s:16:\"post-types-order\";s:6:\"plugin\";s:37:\"post-types-order/post-types-order.php\";s:11:\"new_version\";s:5:\"2.3.3\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/post-types-order/\";s:7:\"package\";s:79:\"https://plugin-updates.wpengine.com/post-types-order/post-types-order.2.3.3.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:76:\"https://plugin-updates.wpengine.com/post-types-order/assets/icon-128x128.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:90:\"https://plugin-updates.wpengine.com/post-types-order/assets/banner-772x250.png?rev=3164418\";s:4:\"high\";s:91:\"https://plugin-updates.wpengine.com/post-types-order/assets/banner-1544x500.png?rev=3164418\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.7.1\";s:8:\"requires\";s:3:\"2.8\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:90;s:11:\"num_ratings\";i:285;s:15:\"support_threads\";i:7;s:24:\"support_threads_resolved\";i:6;}s:58:\"responsive-accordion-and-collapse/responsive-accordion.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:47:\"w.org/plugins/responsive-accordion-and-collapse\";s:4:\"slug\";s:33:\"responsive-accordion-and-collapse\";s:6:\"plugin\";s:58:\"responsive-accordion-and-collapse/responsive-accordion.php\";s:11:\"new_version\";s:5:\"2.5.1\";s:3:\"url\";s:64:\"https://wordpress.org/plugins/responsive-accordion-and-collapse/\";s:7:\"package\";s:113:\"https://plugin-updates.wpengine.com/responsive-accordion-and-collapse/responsive-accordion-and-collapse.2.5.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:93:\"https://plugin-updates.wpengine.com/responsive-accordion-and-collapse/assets/icon-128x128.png\";s:2:\"2x\";s:93:\"https://plugin-updates.wpengine.com/responsive-accordion-and-collapse/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:107:\"https://plugin-updates.wpengine.com/responsive-accordion-and-collapse/assets/banner-772x250.png?rev=1909708\";s:4:\"high\";b:0;}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.7.1\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:92;s:11:\"num_ratings\";i:663;s:15:\"support_threads\";i:7;s:24:\"support_threads_resolved\";i:5;}s:60:\"schema-and-structured-data-for-wp/structured-data-for-wp.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:47:\"w.org/plugins/schema-and-structured-data-for-wp\";s:4:\"slug\";s:33:\"schema-and-structured-data-for-wp\";s:6:\"plugin\";s:60:\"schema-and-structured-data-for-wp/structured-data-for-wp.php\";s:11:\"new_version\";s:4:\"1.39\";s:3:\"url\";s:64:\"https://wordpress.org/plugins/schema-and-structured-data-for-wp/\";s:7:\"package\";s:112:\"https://plugin-updates.wpengine.com/schema-and-structured-data-for-wp/schema-and-structured-data-for-wp.1.39.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:93:\"https://plugin-updates.wpengine.com/schema-and-structured-data-for-wp/assets/icon-128x128.png\";s:2:\"2x\";s:93:\"https://plugin-updates.wpengine.com/schema-and-structured-data-for-wp/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:107:\"https://plugin-updates.wpengine.com/schema-and-structured-data-for-wp/assets/banner-772x250.png?rev=1929177\";s:4:\"high\";s:108:\"https://plugin-updates.wpengine.com/schema-and-structured-data-for-wp/assets/banner-1544x500.png?rev=1929177\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.7.1\";s:8:\"requires\";s:3:\"4.5\";s:12:\"requires_php\";s:6:\"5.6.20\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:92;s:11:\"num_ratings\";i:239;s:15:\"support_threads\";i:16;s:24:\"support_threads_resolved\";i:14;}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:4:\"24.1\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:72:\"https://plugin-updates.wpengine.com/wordpress-seo/wordpress-seo.24.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:73:\"https://plugin-updates.wpengine.com/wordpress-seo/assets/icon-128x128.gif\";s:2:\"2x\";s:73:\"https://plugin-updates.wpengine.com/wordpress-seo/assets/icon-256x256.gif\";}s:7:\"banners\";a:2:{s:3:\"low\";s:87:\"https://plugin-updates.wpengine.com/wordpress-seo/assets/banner-772x250.png?rev=2643727\";s:4:\"high\";s:88:\"https://plugin-updates.wpengine.com/wordpress-seo/assets/banner-1544x500.png?rev=2643727\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.7.1\";s:8:\"requires\";s:3:\"6.5\";s:12:\"requires_php\";s:5:\"7.2.5\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:96;s:11:\"num_ratings\";i:27746;s:15:\"support_threads\";i:230;s:24:\"support_threads_resolved\";i:214;}s:15:\"worker/init.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:20:\"w.org/plugins/worker\";s:4:\"slug\";s:6:\"worker\";s:6:\"plugin\";s:15:\"worker/init.php\";s:11:\"new_version\";s:6:\"4.9.20\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/worker/\";s:7:\"package\";s:53:\"https://plugin-updates.wpengine.com/worker/worker.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://plugin-updates.wpengine.com/worker/assets/icon.svg\";s:3:\"svg\";s:58:\"https://plugin-updates.wpengine.com/worker/assets/icon.svg\";}s:7:\"banners\";a:2:{s:3:\"low\";s:80:\"https://plugin-updates.wpengine.com/worker/assets/banner-772x250.jpg?rev=2035974\";s:4:\"high\";s:81:\"https://plugin-updates.wpengine.com/worker/assets/banner-1544x500.jpg?rev=2035974\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.5.5\";s:8:\"requires\";s:3:\"3.1\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:92;s:11:\"num_ratings\";i:663;s:15:\"support_threads\";i:2;s:24:\"support_threads_resolved\";i:0;}s:60:\"wp-slick-slider-and-image-carousel/wp-slick-image-slider.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:48:\"w.org/plugins/wp-slick-slider-and-image-carousel\";s:4:\"slug\";s:34:\"wp-slick-slider-and-image-carousel\";s:6:\"plugin\";s:60:\"wp-slick-slider-and-image-carousel/wp-slick-image-slider.php\";s:11:\"new_version\";s:5:\"3.7.2\";s:3:\"url\";s:65:\"https://wordpress.org/plugins/wp-slick-slider-and-image-carousel/\";s:7:\"package\";s:115:\"https://plugin-updates.wpengine.com/wp-slick-slider-and-image-carousel/wp-slick-slider-and-image-carousel.3.7.2.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:94:\"https://plugin-updates.wpengine.com/wp-slick-slider-and-image-carousel/assets/icon-128x128.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:108:\"https://plugin-updates.wpengine.com/wp-slick-slider-and-image-carousel/assets/banner-772x250.png?rev=2890924\";s:4:\"high\";b:0;}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.6.2\";s:8:\"requires\";s:3:\"4.0\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:80;s:11:\"num_ratings\";i:70;s:15:\"support_threads\";i:0;s:24:\"support_threads_resolved\";i:0;}}}','off'),(89401,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1735819780;s:7:\"checked\";a:4:{s:16:\"twentytwentyfive\";s:3:\"1.0\";s:16:\"twentytwentyfour\";s:3:\"1.3\";s:21:\"wp-spectratheme-child\";s:8:\"1.1.2.13\";s:15:\"wp-spectratheme\";s:3:\"1.5\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:2:{s:16:\"twentytwentyfive\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfive\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:76:\"https://theme-updates.wpengine.com/twentytwentyfive/twentytwentyfive.1.0.zip\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.2\";}s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:76:\"https://theme-updates.wpengine.com/twentytwentyfour/twentytwentyfour.1.3.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}}s:12:\"translations\";a:0:{}}','off'),(89436,'gf_telemetry_data','a:2:{s:8:\"snapshot\";O:64:\"Gravity_Forms\\Gravity_Forms\\Telemetry\\GF_Telemetry_Snapshot_Data\":3:{s:4:\"data\";a:31:{s:3:\"key\";s:32:\"10ffe324fa5919f3b5e210b840003c0c\";s:10:\"wp_version\";s:5:\"6.7.1\";s:11:\"php_version\";s:6:\"8.2.24\";s:13:\"mysql_version\";s:6:\"8.0.37\";s:7:\"plugins\";a:16:{i:0;a:4:{s:4:\"name\";s:13:\"301 Redirects\";s:4:\"slug\";s:17:\"eps-301-redirects\";s:7:\"version\";s:4:\"2.77\";s:9:\"is_active\";b:1;}i:1;a:4:{s:4:\"name\";s:34:\"ACF Content Analysis for Yoast SEO\";s:4:\"slug\";s:34:\"acf-content-analysis-for-yoast-seo\";s:7:\"version\";s:3:\"3.1\";s:9:\"is_active\";b:1;}i:2;a:4:{s:4:\"name\";s:8:\"Age Gate\";s:4:\"slug\";s:8:\"age-gate\";s:7:\"version\";s:5:\"3.5.2\";s:9:\"is_active\";b:1;}i:3;a:4:{s:4:\"name\";s:14:\"Classic Editor\";s:4:\"slug\";s:14:\"classic-editor\";s:7:\"version\";s:5:\"1.6.7\";s:9:\"is_active\";b:1;}i:4;a:4:{s:4:\"name\";s:17:\"Commerce7 Connect\";s:4:\"slug\";s:17:\"commerce7-connect\";s:7:\"version\";s:5:\"1.0.5\";s:9:\"is_active\";b:0;}i:5;a:4:{s:4:\"name\";s:21:\"Commerce7 Connect Pro\";s:4:\"slug\";s:21:\"commerce7-connect-pro\";s:7:\"version\";s:5:\"1.0.5\";s:9:\"is_active\";b:1;}i:6;a:4:{s:4:\"name\";s:11:\"Git Updater\";s:4:\"slug\";s:11:\"git-updater\";s:7:\"version\";s:6:\"12.8.0\";s:9:\"is_active\";b:1;}i:7;a:4:{s:4:\"name\";s:13:\"Gravity Forms\";s:4:\"slug\";s:12:\"gravityforms\";s:7:\"version\";s:5:\"2.9.1\";s:9:\"is_active\";b:1;}i:8;a:4:{s:4:\"name\";s:17:\"ManageWP - Worker\";s:4:\"slug\";s:6:\"worker\";s:7:\"version\";s:6:\"4.9.20\";s:9:\"is_active\";b:1;}i:9;a:4:{s:4:\"name\";s:35:\"Pagely - Show Current Template Info\";s:4:\"slug\";s:21:\"current-template-name\";s:7:\"version\";s:6:\"1.1.16\";s:9:\"is_active\";b:1;}i:10;a:4:{s:4:\"name\";s:16:\"Post Types Order\";s:4:\"slug\";s:16:\"post-types-order\";s:7:\"version\";s:5:\"2.3.3\";s:9:\"is_active\";b:1;}i:11;a:4:{s:4:\"name\";s:20:\"Redirect Redirection\";s:4:\"slug\";s:20:\"redirect-redirection\";s:7:\"version\";s:5:\"1.2.4\";s:9:\"is_active\";b:0;}i:12;a:4:{s:4:\"name\";s:33:\"Responsive Accordion And Collapse\";s:4:\"slug\";s:33:\"responsive-accordion-and-collapse\";s:7:\"version\";s:5:\"2.5.1\";s:9:\"is_active\";b:1;}i:13;a:4:{s:4:\"name\";s:37:\"Schema & Structured Data for WP & AMP\";s:4:\"slug\";s:33:\"schema-and-structured-data-for-wp\";s:7:\"version\";s:4:\"1.39\";s:9:\"is_active\";b:1;}i:14;a:4:{s:4:\"name\";s:34:\"WP Slick Slider and Image Carousel\";s:4:\"slug\";s:34:\"wp-slick-slider-and-image-carousel\";s:7:\"version\";s:5:\"3.7.2\";s:9:\"is_active\";b:1;}i:15;a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:13:\"wordpress-seo\";s:7:\"version\";s:4:\"24.1\";s:9:\"is_active\";b:1;}}s:10:\"theme_name\";s:22:\"Spectra Template Child\";s:9:\"theme_uri\";s:0:\"\";s:13:\"theme_version\";s:8:\"1.1.2.13\";s:12:\"theme_author\";s:9:\"Wineworks\";s:16:\"theme_author_uri\";s:19:\"http://wineworks.co\";s:12:\"is_multisite\";b:0;s:11:\"total_forms\";i:3;s:13:\"total_entries\";s:3:\"828\";s:11:\"emails_sent\";s:3:\"811\";s:9:\"api_calls\";i:0;s:16:\"entry_meta_count\";i:3843;s:19:\"entry_details_count\";i:3843;s:17:\"entry_notes_count\";i:828;s:4:\"lang\";s:5:\"en_US\";s:2:\"db\";s:5:\"MySQL\";s:10:\"autoUpdate\";i:1;s:8:\"currency\";s:3:\"USD\";s:14:\"dataCollection\";i:0;s:5:\"email\";b:0;s:9:\"formTypes\";s:0:\"\";s:14:\"formTypesOther\";b:0;s:11:\"hideLicense\";i:0;s:12:\"organization\";b:0;s:17:\"organizationOther\";b:0;s:8:\"services\";s:0:\"\";s:13:\"servicesOther\";b:0;}s:3:\"key\";s:8:\"snapshot\";s:15:\"data_collection\";b:0;}s:6:\"events\";a:0:{}}','off'),(89542,'gf_last_telemetry_run','1735663457','yes'),(89590,'wp_attachment_pages_enabled','1','yes'),(89743,'eps_redirects_version','2.77','yes'),(89744,'eps_pointers','a:0:{}','yes'),(89745,'eps_redirects_redirects','a:0:{}','yes'),(89746,'eps_redirects_404s','a:0:{}','yes'),(89747,'eps_redirects_link-scanner','a:0:{}','yes'),(89748,'eps_redirects_import-export','a:0:{}','yes'),(89749,'eps_redirects_support','a:0:{}','yes'),(89750,'eps_redirects_pro','a:0:{}','yes'),(89751,'301-redirects-notices','a:1:{s:22:\"dismiss_auto_pro_modal\";b:1;}','yes'),(89752,'eps_redirects_404_log','a:50:{i:0;a:3:{s:9:\"timestamp\";i:1735789570;s:3:\"url\";s:8:\"/ads.txt\";s:10:\"user_agent\";s:72:\"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\";}i:1;a:3:{s:9:\"timestamp\";i:1735787414;s:3:\"url\";s:24:\"/adminer-4.6.2-mysql.php\";s:10:\"user_agent\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36\";}i:2;a:3:{s:9:\"timestamp\";i:1735787413;s:3:\"url\";s:24:\"/adminer-4.6.1-mysql.php\";s:10:\"user_agent\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36\";}i:3;a:3:{s:9:\"timestamp\";i:1735787412;s:3:\"url\";s:27:\"/adminer-4.6.1-mysql-en.php\";s:10:\"user_agent\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36\";}i:4;a:3:{s:9:\"timestamp\";i:1735787410;s:3:\"url\";s:27:\"/adminer-4.6.2-mysql-en.php\";s:10:\"user_agent\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36\";}i:5;a:3:{s:9:\"timestamp\";i:1735787409;s:3:\"url\";s:18:\"/adminer-4.5.0.php\";s:10:\"user_agent\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36\";}i:6;a:3:{s:9:\"timestamp\";i:1735787408;s:3:\"url\";s:18:\"/adminer-4.6.0.php\";s:10:\"user_agent\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36\";}i:7;a:3:{s:9:\"timestamp\";i:1735787407;s:3:\"url\";s:18:\"/adminer-4.6.1.php\";s:10:\"user_agent\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36\";}i:8;a:3:{s:9:\"timestamp\";i:1735787405;s:3:\"url\";s:18:\"/adminer-4.6.2.php\";s:10:\"user_agent\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36\";}i:9;a:3:{s:9:\"timestamp\";i:1735786886;s:3:\"url\";s:16:\"/tasting-room/)-\";s:10:\"user_agent\";s:80:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:132.0) Gecko/20100101 Firefox/133.0\";}i:10;a:3:{s:9:\"timestamp\";i:1735783232;s:3:\"url\";s:27:\"/.well-known/traffic-advice\";s:10:\"user_agent\";s:40:\"Chrome Privacy Preserving Prefetch Proxy\";}i:11;a:3:{s:9:\"timestamp\";i:1735780791;s:3:\"url\";s:8:\"/events/\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36\";}i:12;a:3:{s:9:\"timestamp\";i:1735780032;s:3:\"url\";s:23:\"/upcoming-events/embed/\";s:10:\"user_agent\";s:102:\"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)\";}i:13;a:3:{s:9:\"timestamp\";i:1735779907;s:3:\"url\";s:48:\"/shop/?amp%3Bslug=blind_tasting_red&view=product\";s:10:\"user_agent\";s:102:\"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)\";}i:14;a:3:{s:9:\"timestamp\";i:1735779647;s:3:\"url\";s:40:\"/wp-includes/images/w-logo-blue.png%202x\";s:10:\"user_agent\";s:102:\"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)\";}i:15;a:3:{s:9:\"timestamp\";i:1735779533;s:3:\"url\";s:40:\"/wp-content/uploads/2022/11/visit-1.jpg)\";s:10:\"user_agent\";s:102:\"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)\";}i:16;a:3:{s:9:\"timestamp\";i:1735779493;s:3:\"url\";s:26:\"/2024-half-marathon-wines/\";s:10:\"user_agent\";s:102:\"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)\";}i:17;a:3:{s:9:\"timestamp\";i:1735778461;s:3:\"url\";s:27:\"/apple-app-site-association\";s:10:\"user_agent\";s:217:\"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html)\";}i:18;a:3:{s:9:\"timestamp\";i:1735778461;s:3:\"url\";s:27:\"/apple-app-site-association\";s:10:\"user_agent\";s:217:\"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html)\";}i:19;a:3:{s:9:\"timestamp\";i:1735777633;s:3:\"url\";s:27:\"/.well-known/traffic-advice\";s:10:\"user_agent\";s:40:\"Chrome Privacy Preserving Prefetch Proxy\";}i:20;a:3:{s:9:\"timestamp\";i:1735776947;s:3:\"url\";s:18:\"/_profiler/phpinfo\";s:10:\"user_agent\";s:118:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 14_4_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15\";}i:21;a:3:{s:9:\"timestamp\";i:1735776537;s:3:\"url\";s:24:\"/vineyard/tel:7079344090\";s:10:\"user_agent\";s:105:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.517 Safari/537.36\";}i:22;a:3:{s:9:\"timestamp\";i:1735776113;s:3:\"url\";s:20:\"/tasting-room/%29%2C\";s:10:\"user_agent\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36\";}i:23;a:3:{s:9:\"timestamp\";i:1735776111;s:3:\"url\";s:18:\"/tasting-room/%29-\";s:10:\"user_agent\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36\";}i:24;a:3:{s:9:\"timestamp\";i:1735775214;s:3:\"url\";s:5:\"/home\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36\";}i:25;a:3:{s:9:\"timestamp\";i:1735775214;s:3:\"url\";s:5:\"/main\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36\";}i:26;a:3:{s:9:\"timestamp\";i:1735775214;s:3:\"url\";s:5:\"/main\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36\";}i:27;a:3:{s:9:\"timestamp\";i:1735775213;s:3:\"url\";s:4:\"/new\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36\";}i:28;a:3:{s:9:\"timestamp\";i:1735775212;s:3:\"url\";s:4:\"/old\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36\";}i:29;a:3:{s:9:\"timestamp\";i:1735775212;s:3:\"url\";s:7:\"/backup\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36\";}i:30;a:3:{s:9:\"timestamp\";i:1735775212;s:3:\"url\";s:7:\"/backup\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36\";}i:31;a:3:{s:9:\"timestamp\";i:1735775211;s:3:\"url\";s:3:\"/bk\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36\";}i:32;a:3:{s:9:\"timestamp\";i:1735775211;s:3:\"url\";s:3:\"/bk\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36\";}i:33;a:3:{s:9:\"timestamp\";i:1735775211;s:3:\"url\";s:3:\"/bc\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36\";}i:34;a:3:{s:9:\"timestamp\";i:1735775211;s:3:\"url\";s:3:\"/bc\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36\";}i:35;a:3:{s:9:\"timestamp\";i:1735775210;s:3:\"url\";s:3:\"/wp\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36\";}i:36;a:3:{s:9:\"timestamp\";i:1735775210;s:3:\"url\";s:3:\"/wp\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36\";}i:37;a:3:{s:9:\"timestamp\";i:1735775209;s:3:\"url\";s:10:\"/wordpress\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36\";}i:38;a:3:{s:9:\"timestamp\";i:1735775208;s:3:\"url\";s:10:\"/wordpress\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36\";}i:39;a:3:{s:9:\"timestamp\";i:1735772081;s:3:\"url\";s:5:\"/shop\";s:10:\"user_agent\";s:200:\"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\";}i:40;a:3:{s:9:\"timestamp\";i:1735771959;s:3:\"url\";s:7:\"/?p=504\";s:10:\"user_agent\";s:139:\"Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1\";}i:41;a:3:{s:9:\"timestamp\";i:1735768442;s:3:\"url\";s:27:\"/.well-known/traffic-advice\";s:10:\"user_agent\";s:40:\"Chrome Privacy Preserving Prefetch Proxy\";}i:42;a:3:{s:9:\"timestamp\";i:1735768253;s:3:\"url\";s:6:\"/news/\";s:10:\"user_agent\";s:167:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)\";}i:43;a:3:{s:9:\"timestamp\";i:1735768115;s:3:\"url\";s:28:\"/events/freedom-week-sonoma/\";s:10:\"user_agent\";s:144:\"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36\";}i:44;a:3:{s:9:\"timestamp\";i:1735767618;s:3:\"url\";s:27:\"/apple-app-site-association\";s:10:\"user_agent\";s:217:\"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html)\";}i:45;a:3:{s:9:\"timestamp\";i:1735766749;s:3:\"url\";s:30:\"/privacy-policy/tel:7079344090\";s:10:\"user_agent\";s:101:\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36\";}i:46;a:3:{s:9:\"timestamp\";i:1735766501;s:3:\"url\";s:30:\"/wp-content/themes/include.php\";s:10:\"user_agent\";s:152:\"Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36\";}i:47;a:3:{s:9:\"timestamp\";i:1735766488;s:3:\"url\";s:30:\"/wp-content/themes/include.php\";s:10:\"user_agent\";s:152:\"Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36\";}i:48;a:3:{s:9:\"timestamp\";i:1735766480;s:3:\"url\";s:45:\"/wp-content/plugins/WordPressCore/include.php\";s:10:\"user_agent\";s:152:\"Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36\";}i:49;a:3:{s:9:\"timestamp\";i:1735766463;s:3:\"url\";s:45:\"/wp-content/plugins/WordPressCore/include.php\";s:10:\"user_agent\";s:152:\"Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36\";}}','yes'),(89754,'irrp_tables_created','yes','no'),(89756,'analyst_cache','s:6:\"a:0:{}\";','yes'),(89757,'_irb_h_bn_review','a:2:{s:5:\"users\";a:0:{}s:20:\"redirect-redirection\";i:1704880929;}','yes'),(89758,'irrp_redirection','a:16:{s:23:\"ignore_trailing_slashes\";s:1:\"1\";s:17:\"ignore_parameters\";s:1:\"1\";s:11:\"ignore_case\";s:1:\"1\";s:18:\"pass_on_parameters\";s:1:\"0\";s:13:\"redirect_code\";s:3:\"301\";s:25:\"inclusion_exclusion_rules\";s:1:\"0\";s:16:\"redirect_options\";s:8:\"are_case\";s:24:\"redirection_http_headers\";s:0:\"\";s:12:\"rules_group1\";a:2:{s:7:\"enabled\";s:1:\"0\";s:10:\"login_info\";s:0:\"\";}s:12:\"rules_group2\";a:3:{s:7:\"enabled\";s:1:\"0\";s:4:\"role\";s:0:\"\";s:9:\"role_name\";s:2:\"[]\";}s:12:\"rules_group3\";a:4:{s:7:\"enabled\";s:1:\"0\";s:8:\"referrer\";s:0:\"\";s:14:\"referrer_value\";s:0:\"\";s:14:\"referrer_regex\";s:1:\"0\";}s:12:\"rules_group4\";a:4:{s:7:\"enabled\";s:1:\"0\";s:5:\"agent\";s:0:\"\";s:11:\"agent_value\";s:0:\"\";s:11:\"agent_regex\";s:1:\"0\";}s:12:\"rules_group5\";a:5:{s:7:\"enabled\";s:1:\"0\";s:6:\"cookie\";s:0:\"\";s:11:\"cookie_name\";s:0:\"\";s:12:\"cookie_value\";s:0:\"\";s:12:\"cookie_regex\";s:1:\"0\";}s:12:\"rules_group6\";a:3:{s:7:\"enabled\";s:1:\"0\";s:2:\"ip\";s:0:\"\";s:8:\"ip_value\";s:0:\"\";}s:12:\"rules_group7\";a:3:{s:7:\"enabled\";s:1:\"0\";s:6:\"server\";s:0:\"\";s:12:\"server_value\";s:0:\"\";}s:12:\"rules_group8\";a:3:{s:7:\"enabled\";s:1:\"0\";s:8:\"language\";s:0:\"\";s:14:\"language_value\";s:0:\"\";}}','no'),(89759,'irrp_auto_redirects','a:4:{s:8:\"post_url\";s:1:\"0\";s:8:\"page_url\";s:1:\"0\";s:12:\"custom_posts\";s:1:\"0\";s:23:\"log_me_where_i_finished\";s:1:\"0\";}','yes'),(89760,'irrp_logs_status','1','yes'),(89816,'current-template-name_allow_tracking','yes','yes'),(89817,'current-template-name_tracking_notice','hide','yes'),(89818,'current-template-name_tracking_last_send','1734646740','yes'),(89976,'ghu-08b597e1c985d41458cd8a8aa74c6fa0','a:9:{s:7:\"timeout\";i:1735832528;s:11:\"git-updater\";a:12:{s:4:\"Name\";s:11:\"Git Updater\";s:9:\"PluginURI\";s:23:\"https://git-updater.com\";s:7:\"Version\";s:6:\"12.8.0\";s:11:\"Description\";s:156:\"A plugin to automatically update GitHub hosted plugins, themes, and language packs. Additional API plugins available for Bitbucket, GitLab, Gitea, and Gist.\";s:6:\"Author\";s:11:\"Andy Fragen\";s:10:\"TextDomain\";s:11:\"git-updater\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";s:4:\"true\";s:8:\"Requires\";s:3:\"5.9\";s:11:\"RequiresPHP\";s:3:\"7.4\";s:15:\"GitHubLanguages\";s:51:\"https://github.com/afragen/git-updater-translations\";s:15:\"GitHubPluginURI\";s:38:\"https://github.com/afragen/git-updater\";}s:4:\"repo\";s:11:\"git-updater\";s:7:\"dot_org\";s:14:\"not in dot org\";s:4:\"meta\";a:5:{s:7:\"private\";b:0;s:12:\"last_updated\";s:20:\"2025-01-01T18:28:26Z\";s:8:\"watchers\";i:3206;s:5:\"forks\";i:460;s:11:\"open_issues\";i:9;}s:7:\"changes\";s:7183:\"<h4>[unreleased]</h4>\n<h4>12.8.0 / 2024-12-21</h4>\n<ul>\n<li>update GitHub release asset parsing</li>\n<li>update <code>REST_API</code> for Bitbucket update link</li>\n<li>update <code>REST_API</code> for <code>update-api</code> route</li>\n</ul>\n<h4>12.7.2 / 2024-12-18</h4>\n<ul>\n<li>update <code>freemius/wordpress-sdk</code></li>\n<li>use <code>mcaskill/composer-exclude-files</code> to exclude autoloading <code>start.php</code> from Freemius, issues arise</li>\n<li>update <code>REST_API::get_api_data()</code> to always get current release asset redirect as appropriate</li>\n</ul>\n<h4>12.7.1 / 2024-12-02</h4>\n<ul>\n<li>use <code>get_file_date()</code> to return plugin version</li>\n<li>fix <code>API::get_dot_org_data()</code> to work with WPE mirror</li>\n</ul>\n<h4>12.7.0 / 2024-11-30</h4>\n<ul>\n<li>fix missing/incorrect textdomains</li>\n<li>look for <code>__()</code> functions loading in hooks before <code>init</code></li>\n<li>remove <code>load_plugin_textdomain()</code></li>\n<li>add git host icon to single site theme description</li>\n<li>don\'t save to GitHub.com access token from single repo remote install</li>\n<li>fix PHP 8.1 creation dynamic variable from <code>class REST_API</code></li>\n<li>update REST API response to return <code>plugins_api()</code> or <code>themes_api()</code> style response</li>\n</ul>\n<h4>12.6.0 / 2024-10-13</h4>\n<ul>\n<li>check existence of <code>FS__RESOLVE_CLONE_AS</code> before setting</li>\n<li>add filter hook <code>gu_api_domain</code> to set domain for default API updating</li>\n<li>add filter hook <code>gu_ignore_dot_org</code> to completely ignore updates from dot org. Works as if every plugin/theme is in the <code>gu_override_dot_org</code> hook</li>\n</ul>\n<h4>12.5.0 / 2024-08-16</h4>\n<ul>\n<li>update <code>class-parser.php</code></li>\n<li>update <code>Requires PHP</code> to 7.4 for <code>class-parser.php</code></li>\n<li>update <code>Requires WP</code> to 5.9</li>\n<li>update <code>freemius/wordpress-sdk</code></li>\n<li>update <code>printf()</code> in <code>class Branches</code></li>\n<li>fix old <code>git-updater-pro</code> and <code>git-updater-additions</code> textdomains</li>\n<li>update <code>Base::upgrader_source_selection()</code> when trying to update <code>$source</code> and <code>$new_source</code> when destination directories are identical</li>\n<li>remove unused parameters in certain functions</li>\n</ul>\n<h4>12.4.0 / 2024-03-04</h4>\n<ul>\n<li>update <code>freemius/wordpress-sdk</code></li>\n<li>update <code>class-parser.php</code></li>\n<li>use <code>is_wp_version_compatible()</code> and <code>is_php_version_compatible()</code> in <code>GU_Trait::can_update_repo()</code></li>\n<li>update <code>gu-loader.php</code> with generic loader</li>\n<li>update <code>Readme_Parser::trim_length</code></li>\n</ul>\n<h4>12.3.1 / 2023-10-19</h4>\n<ul>\n<li>update <code>freemius/wordpress-sdk</code></li>\n<li>WPCS 3.0.0 linting</li>\n<li>popup on icon for &quot;Updates via Git Updater&quot;, thanks @BrianHenryIE</li>\n</ul>\n<h4>12.3.0 / 2023-08-10</h4>\n<ul>\n<li>update Bitbucket Add-on message for consistency</li>\n<li>ensure <code>Shim</code> available during <code>register_activation_hook()</code></li>\n<li>add conditional to <code>get_remote_api_branches()</code> to ensure <code>$response</code> is not a scalar</li>\n<li>use null coalescing operator</li>\n<li>update for PHP 8.2</li>\n</ul>\n<h4>12.2.3 / 2023-06-27</h4>\n<ul>\n<li>composer update</li>\n<li>get <code>gu_disable_cron</code> hook result once per repository</li>\n<li>ensure git class is instantiated when checking <code>waiting_for_background_update()</code></li>\n<li>add check for <code>$response-&gt;error</code> to <code>API::validate_response()</code></li>\n<li>update <code>freemius/wordpress-sdk</code> to 2.5.10</li>\n</ul>\n<h4>12.2.2 /2023-05-22</h4>\n<ul>\n<li>add back Network only activate for multisite, may cause issue where post-license activation Freemius doesn\'t re-direct to network admin</li>\n<li>update anonymous functions as static functions for better performance</li>\n<li>composer update</li>\n</ul>\n<h4>12.2.1 / 2023-04-21</h4>\n<ul>\n<li>ensure <code>$wp_filesystem</code> set for <code>Bootstrap::rename_on_activation()</code></li>\n<li>uninstall tested to function correctly</li>\n</ul>\n<h4>12.2.0 / 2023-04-20</h4>\n<ul>\n<li>update <code>freemius/wordpress-sdk</code></li>\n<li>update <code>afragen/wp-dismiss-notice</code></li>\n<li>don\'t save unused data from <code>API_Common::parse_release_asset()</code></li>\n<li>don\'t use Freemius uninstall, use previous <code>uninstall.php</code></li>\n<li>more PHP 8.2 compatibility</li>\n<li>composer update</li>\n<li>update <code>REST_API::get_plugins_api_data()</code> to return response without download link using boolean value in <code>download</code> query arg</li>\n<li>hide Freemius menus with <code>gu_hide_settings</code> filter</li>\n<li>more specific hiding of Git Updater settings</li>\n</ul>\n<h4>12.1.3 / 2023-03-20</h4>\n<ul>\n<li>improved setting/default of <code>$options[\'bypass_background_processing\']</code></li>\n<li>improved setting/default of <code>$options[\'branch_switch\']</code></li>\n<li>display upgrade notice on <code>update-core.php</code></li>\n<li>composer update <code>afragen/singleton</code> for PHP 8.2 compat</li>\n</ul>\n<h4>12.1.2 / 2023-02-08</h4>\n<ul>\n<li>fix for webhook updating issue if <code>$branches</code> not defined, thanks @awunsch</li>\n</ul>\n<h4>12.1.1 / 2023-02-07</h4>\n<ul>\n<li>remove force of Network activation, messes up Freemius license activation on multisite</li>\n<li>composer update</li>\n</ul>\n<h4>12.1.0 / 2023-02-06</h4>\n<ul>\n<li>further limit log of HTTP errors, trying for only once per plugin</li>\n<li>eliminate Freemius clone resolution popup</li>\n<li>update <code>Shim:move_dir()</code> for improved error messaging</li>\n<li>update comparison in <code>Base::upgrader_source_selection</code> of <code>$source</code> and <code>$new_source</code></li>\n</ul>\n<h4>12.0.4 / 2023-01-27</h4>\n<ul>\n<li>update to use <code>str_contains()</code></li>\n<li>log HTTP errors only hourly</li>\n<li>update <code>Shim::move_dir()</code> to exit early if source and destination differ only by case or trailing slash</li>\n</ul>\n<h4>12.0.3 / 2023-01-19</h4>\n<ul>\n<li>update <code>Shim</code> for <code>move_dir()</code> and <code>wp_opcache_invalidate_directory()</code></li>\n<li>composer update</li>\n</ul>\n<h4>12.0.2 / 2023-01-12</h4>\n<ul>\n<li>PHP 8.1 compatibility fix, thanks @chesio</li>\n<li>other PHP 8.1 fixes</li>\n<li>declare <code>class API</code> variable <code>$type</code>, avoid future PHP issues, thanks @chesio</li>\n</ul>\n<h4>12.0.1 / 2023-01-02</h4>\n<ul>\n<li>cleanup parsing of GitHub release assets</li>\n<li>composer update to fix dependency conflict</li>\n</ul>\n<h4>12.0.0 / 2022-12-12</h4>\n<ul>\n<li>ensure <code>$wp_filesystem</code> is available</li>\n<li>re-integrate Git Updater PRO</li>\n<li>integrate Git Updater Additions</li>\n<li>add git logo to subtab, hide for now</li>\n<li>load API tabs of installed/active API plugins</li>\n<li>set Git Updater to auto-update with new <code>$db_version</code></li>\n<li>replace Appsero SDK with Freemius SDK</li>\n<li>suspend Freemius plugin updating for Git Updater</li>\n<li>fix uninstall.php for Freemius</li>\n</ul>\";s:6:\"readme\";a:22:{s:4:\"name\";s:11:\"Git Updater\";s:4:\"tags\";a:3:{i:1;s:5:\"theme\";i:2;s:13:\"language pack\";i:3;s:7:\"updater\";}s:8:\"requires\";s:3:\"5.9\";s:6:\"tested\";s:3:\"6.8\";s:12:\"requires_php\";s:3:\"7.4\";s:12:\"contributors\";a:1:{s:7:\"afragen\";a:3:{s:12:\"display_name\";s:7:\"afragen\";s:7:\"profile\";s:32:\"//profiles.wordpress.org/afragen\";s:6:\"avatar\";s:52:\"https://wordpress.org/grav-redirect.php?user=afragen\";}}s:10:\"stable_tag\";s:6:\"master\";s:11:\"donate_link\";s:41:\"https://thefragens.com/git-updater-donate\";s:17:\"short_description\";s:159:\"This plugin was originally designed to simply update any GitHub hosted WordPress plugin or theme. Currently, plugins or themes hosted on Bitbucket, Gi &hellip;\";s:7:\"license\";s:3:\"MIT\";s:11:\"license_uri\";s:0:\"\";s:8:\"sections\";a:3:{s:11:\"description\";s:2386:\"<p>This plugin was originally designed to simply update any GitHub hosted WordPress plugin or theme. Currently, plugins or themes hosted on Bitbucket, GitLab, Gitea, or Gist are also supported via additional API plugins. Additionally, self-hosted git servers are supported.</p>\n<p>Your plugin or theme <strong>must</strong> contain a header in the style.css header or in the plugin\'s header denoting the location on GitHub. The format is as follows.</p>\n<pre><code>GitHub Plugin URI: afragen/git-updater\nGitHub Plugin URI: https://github.com/afragen/git-updater</code></pre>\n<p>or</p>\n<pre><code>GitHub Theme URI: afragen/test-child\nGitHub Theme URI: https://github.com/afragen/test-child</code></pre>\n<p>...where the above URI leads to the <strong>owner/repository</strong> of your theme or plugin. The URI may be in the format <code>https://github.com/&lt;owner&gt;/&lt;repo&gt;</code> or the short format <code>&lt;owner&gt;/&lt;repo&gt;</code>. You do not need both. Only one Plugin or Theme URI is required. You <strong>must not</strong> include any extensions like <code>.git</code>.</p>\n<h3>API Plugins</h3>\n<p>API plugins for Bitbucket, GitLab, Gitea, and Gist are available. API plugins are available for a one-click install from the <strong>Add-Ons</strong> tab.</p>\n<ul>\n<li><a href=\"https://github.com/afragen/git-updater-bitbucket/releases/latest\">Git Updater - Bitbucket</a></li>\n<li><a href=\"https://github.com/afragen/git-updater-gitlab/releases/latest\">Git Updater - GitLab</a></li>\n<li><a href=\"https://github.com/afragen/git-updater-gitea/releases/latest\">Git Updater - Gitea</a></li>\n<li><a href=\"https://github.com/afragen/git-updater-gist/releases/latest\">Git Updater - Gist</a></li>\n</ul>\n<h3>Sponsor</h3>\n<p>Purchase a license at the <a href=\"https://git-updater.com/store/\">Git Updater Store</a>. An unlimited yearly license is very reasonable and allows for authenticated API requests. There is an initial free trial period. After the trial period Git Updater will not be able to make authenticated API requests.</p>\n<p>You can <a href=\"https://github.com/sponsors/afragen\">sponsor me on GitHub</a> to help with continued development and support.</p>\n<h3>Headers</h3>\n<p>The following headers are available for use depending upon your hosting source.</p>\n<h4>GitHub</h4>\n<ul>\n<li>GitHub Plugin URI</li>\n<li>GitHub Theme URI</li>\n<li>GitHub Languages</li>\n</ul>\";s:12:\"installation\";s:110:\"<p>Go to <a href=\"https://git-updater.com\">git-updater.com</a> to download and install the latest version.</p>\";s:3:\"faq\";s:723:\"<h4>Knowledge Base</h4>\n<p><a href=\"https://git-updater.com/knowledge-base\">Comprehensive information regarding Git Updater is available in the Knowledge Base.</a></p>\n<h4>Slack</h4>\n<p>We now have a <a href=\"https://git-updater.slack.com\">Slack team for Git Updater</a>. Please <a href=\"https://join.slack.com/t/git-updater/shared_invite/zt-1extq97hy-FjA1QAhjGNDzmFjjlRv3rg\">click here for an invite</a>. You will be automatically added to the <em>#general</em> and <em>#support</em> channels. Please take a look at other channels too.</p>\n<h4>Translations</h4>\n<p>If you are a polyglot I would greatly appreciate translation contributions to <a href=\"https://translate.git-updater.com\">GlotPress for Git Updater</a>.</p>\n\";}s:14:\"upgrade_notice\";a:0:{}s:11:\"screenshots\";a:0:{}s:3:\"faq\";a:3:{s:14:\"Knowledge Base\";s:143:\"<p><a href=\"https://git-updater.com/knowledge-base\">Comprehensive information regarding Git Updater is available in the Knowledge Base.</a></p>\";s:5:\"Slack\";s:357:\"<p>We now have a <a href=\"https://git-updater.slack.com\">Slack team for Git Updater</a>. Please <a href=\"https://join.slack.com/t/git-updater/shared_invite/zt-1extq97hy-FjA1QAhjGNDzmFjjlRv3rg\">click here for an invite</a>. You will be automatically added to the <em>#general</em> and <em>#support</em> channels. Please take a look at other channels too.</p>\";s:12:\"Translations\";s:159:\"<p>If you are a polyglot I would greatly appreciate translation contributions to <a href=\"https://translate.git-updater.com\">GlotPress for Git Updater</a>.</p>\";}s:8:\"warnings\";a:2:{s:12:\"ignored_tags\";a:1:{i:0;s:6:\"plugin\";}s:28:\"no_short_description_present\";b:1;}s:17:\"expected_sections\";a:7:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:11:\"screenshots\";i:4;s:9:\"changelog\";i:5;s:14:\"upgrade_notice\";i:6;s:11:\"other_notes\";}s:14:\"alias_sections\";a:3:{s:26:\"frequently_asked_questions\";s:3:\"faq\";s:10:\"change_log\";s:9:\"changelog\";s:10:\"screenshot\";s:11:\"screenshots\";}s:13:\"valid_headers\";a:11:{s:6:\"tested\";s:6:\"tested\";s:12:\"tested up to\";s:6:\"tested\";s:8:\"requires\";s:8:\"requires\";s:17:\"requires at least\";s:8:\"requires\";s:12:\"requires php\";s:12:\"requires_php\";s:4:\"tags\";s:4:\"tags\";s:12:\"contributors\";s:12:\"contributors\";s:11:\"donate link\";s:11:\"donate_link\";s:10:\"stable tag\";s:10:\"stable_tag\";s:7:\"license\";s:7:\"license\";s:11:\"license uri\";s:11:\"license_uri\";}s:11:\"ignore_tags\";a:2:{i:0;s:6:\"plugin\";i:1;s:9:\"wordpress\";}s:21:\"maximum_field_lengths\";a:4:{s:17:\"short_description\";i:150;s:7:\"section\";i:2500;s:17:\"section-changelog\";i:5000;s:11:\"section-faq\";i:5000;}s:12:\"raw_contents\";s:3072:\"# Git Updater\n\nContributors: afragen\nDonate link: https://thefragens.com/git-updater-donate\nTags: plugin, theme, language pack, updater\nRequires at least: 5.9\nRequires PHP: 7.4\nTested up to: 6.8\nStable tag: master\nLicense: MIT\n\n## Description\n\nThis plugin was originally designed to simply update any GitHub hosted WordPress plugin or theme. Currently, plugins or themes hosted on Bitbucket, GitLab, Gitea, or Gist are also supported via additional API plugins. Additionally, self-hosted git servers are supported.\n\nYour plugin or theme **must** contain a header in the style.css header or in the plugin\'s header denoting the location on GitHub. The format is as follows.\n\n    GitHub Plugin URI: afragen/git-updater\n    GitHub Plugin URI: https://github.com/afragen/git-updater\n\nor\n\n    GitHub Theme URI: afragen/test-child\n    GitHub Theme URI: https://github.com/afragen/test-child\n\n...where the above URI leads to the __owner/repository__ of your theme or plugin. The URI may be in the format `https://github.com/<owner>/<repo>` or the short format `<owner>/<repo>`. You do not need both. Only one Plugin or Theme URI is required. You **must not** include any extensions like `.git`.\n\n### API Plugins\n\nAPI plugins for Bitbucket, GitLab, Gitea, and Gist are available. API plugins are available for a one-click install from the **Add-Ons** tab.\n\n* [Git Updater - Bitbucket](https://github.com/afragen/git-updater-bitbucket/releases/latest)\n* [Git Updater - GitLab](https://github.com/afragen/git-updater-gitlab/releases/latest)\n* [Git Updater - Gitea](https://github.com/afragen/git-updater-gitea/releases/latest)\n* [Git Updater - Gist](https://github.com/afragen/git-updater-gist/releases/latest)\n\n### Sponsor\n\nPurchase a license at the [Git Updater Store](https://git-updater.com/store/). An unlimited yearly license is very reasonable and allows for authenticated API requests. There is an initial free trial period. After the trial period Git Updater will not be able to make authenticated API requests.\n\nYou can [sponsor me on GitHub](https://github.com/sponsors/afragen) to help with continued development and support.\n\n### Headers\n\nThe following headers are available for use depending upon your hosting source.\n\n#### GitHub\n* GitHub Plugin URI\n* GitHub Theme URI\n* GitHub Languages\n\n## Frequently Asked Questions\n\n#### Knowledge Base\n\n[Comprehensive information regarding Git Updater is available in the Knowledge Base.](https://git-updater.com/knowledge-base)\n\n#### Slack\n\nWe now have a [Slack team for Git Updater](https://git-updater.slack.com). Please [click here for an invite](https://join.slack.com/t/git-updater/shared_invite/zt-1extq97hy-FjA1QAhjGNDzmFjjlRv3rg). You will be automatically added to the _#general_ and _#support_ channels. Please take a look at other channels too.\n\n#### Translations\n\nIf you are a polyglot I would greatly appreciate translation contributions to [GlotPress for Git Updater](https://translate.git-updater.com).\n\n## Installation\n\nGo to [git-updater.com](https://git-updater.com) to download and install the latest version.\n\";}s:4:\"tags\";a:30:{i:0;s:6:\"12.8.0\";i:1;s:6:\"12.7.2\";i:2;s:6:\"12.7.1\";i:3;s:6:\"12.7.0\";i:4;s:6:\"12.6.0\";i:5;s:6:\"12.5.0\";i:6;s:6:\"12.4.0\";i:7;s:6:\"12.3.1\";i:8;s:6:\"12.3.0\";i:9;s:6:\"12.2.3\";i:10;s:6:\"12.2.2\";i:11;s:6:\"12.2.1\";i:12;s:6:\"12.2.0\";i:13;s:6:\"12.1.3\";i:14;s:6:\"12.1.2\";i:15;s:6:\"12.1.1\";i:16;s:6:\"12.1.0\";i:17;s:6:\"12.0.4\";i:18;s:6:\"12.0.3\";i:19;s:6:\"12.0.2\";i:20;s:6:\"12.0.1\";i:21;s:6:\"12.0.0\";i:22;s:7:\"11.1.10\";i:23;s:6:\"11.1.9\";i:24;s:6:\"11.1.8\";i:25;s:6:\"11.1.7\";i:26;s:6:\"11.1.6\";i:27;s:6:\"11.1.5\";i:28;s:6:\"11.1.4\";i:29;s:6:\"11.1.3\";}s:9:\"languages\";O:8:\"stdClass\":18:{s:5:\"ar_AR\";O:8:\"stdClass\":7:{s:4:\"slug\";s:11:\"git-updater\";s:8:\"language\";s:5:\"ar_AR\";s:7:\"updated\";s:24:\"2022-03-15 15:55:39+0000\";s:7:\"package\";s:103:\"https://github.com/afragen/git-updater-translations/blob/master/packages/git-updater-ar_AR.zip?raw=true\";s:10:\"autoupdate\";s:1:\"1\";s:4:\"type\";s:6:\"plugin\";s:7:\"version\";s:6:\"12.8.0\";}s:5:\"bg_BG\";O:8:\"stdClass\":7:{s:4:\"slug\";s:11:\"git-updater\";s:8:\"language\";s:5:\"bg_BG\";s:7:\"updated\";s:21:\"2018-12-01 09:18-0800\";s:7:\"package\";s:103:\"https://github.com/afragen/git-updater-translations/blob/master/packages/git-updater-bg_BG.zip?raw=true\";s:10:\"autoupdate\";s:1:\"1\";s:4:\"type\";s:6:\"plugin\";s:7:\"version\";s:6:\"12.8.0\";}s:5:\"de_AT\";O:8:\"stdClass\":7:{s:4:\"slug\";s:11:\"git-updater\";s:8:\"language\";s:5:\"de_AT\";s:7:\"updated\";s:21:\"2018-12-01 09:18-0800\";s:7:\"package\";s:103:\"https://github.com/afragen/git-updater-translations/blob/master/packages/git-updater-de_AT.zip?raw=true\";s:10:\"autoupdate\";s:1:\"1\";s:4:\"type\";s:6:\"plugin\";s:7:\"version\";s:6:\"12.8.0\";}s:5:\"de_CH\";O:8:\"stdClass\":7:{s:4:\"slug\";s:11:\"git-updater\";s:8:\"language\";s:5:\"de_CH\";s:7:\"updated\";s:24:\"2022-03-15 15:57:32+0000\";s:7:\"package\";s:103:\"https://github.com/afragen/git-updater-translations/blob/master/packages/git-updater-de_CH.zip?raw=true\";s:10:\"autoupdate\";s:1:\"1\";s:4:\"type\";s:6:\"plugin\";s:7:\"version\";s:6:\"12.8.0\";}s:5:\"de_DE\";O:8:\"stdClass\":7:{s:4:\"slug\";s:11:\"git-updater\";s:8:\"language\";s:5:\"de_DE\";s:7:\"updated\";s:24:\"2022-03-15 15:56:43+0000\";s:7:\"package\";s:103:\"https://github.com/afragen/git-updater-translations/blob/master/packages/git-updater-de_DE.zip?raw=true\";s:10:\"autoupdate\";s:1:\"1\";s:4:\"type\";s:6:\"plugin\";s:7:\"version\";s:6:\"12.8.0\";}s:5:\"es_ES\";O:8:\"stdClass\":7:{s:4:\"slug\";s:11:\"git-updater\";s:8:\"language\";s:5:\"es_ES\";s:7:\"updated\";s:24:\"2022-03-15 15:59:03+0000\";s:7:\"package\";s:103:\"https://github.com/afragen/git-updater-translations/blob/master/packages/git-updater-es_ES.zip?raw=true\";s:10:\"autoupdate\";s:1:\"1\";s:4:\"type\";s:6:\"plugin\";s:7:\"version\";s:6:\"12.8.0\";}s:5:\"fr_BE\";O:8:\"stdClass\":7:{s:4:\"slug\";s:11:\"git-updater\";s:8:\"language\";s:5:\"fr_BE\";s:7:\"updated\";s:24:\"2024-11-25 18:29:01+0000\";s:7:\"package\";s:103:\"https://github.com/afragen/git-updater-translations/blob/master/packages/git-updater-fr_BE.zip?raw=true\";s:10:\"autoupdate\";s:1:\"1\";s:4:\"type\";s:6:\"plugin\";s:7:\"version\";s:6:\"12.8.0\";}s:5:\"fr_CA\";O:8:\"stdClass\":7:{s:4:\"slug\";s:11:\"git-updater\";s:8:\"language\";s:5:\"fr_CA\";s:7:\"updated\";s:24:\"2024-11-25 18:27:58+0000\";s:7:\"package\";s:103:\"https://github.com/afragen/git-updater-translations/blob/master/packages/git-updater-fr_CA.zip?raw=true\";s:10:\"autoupdate\";s:1:\"1\";s:4:\"type\";s:6:\"plugin\";s:7:\"version\";s:6:\"12.8.0\";}s:5:\"fr_FR\";O:8:\"stdClass\":7:{s:4:\"slug\";s:11:\"git-updater\";s:8:\"language\";s:5:\"fr_FR\";s:7:\"updated\";s:24:\"2024-11-25 18:26:40+0000\";s:7:\"package\";s:103:\"https://github.com/afragen/git-updater-translations/blob/master/packages/git-updater-fr_FR.zip?raw=true\";s:10:\"autoupdate\";s:1:\"1\";s:4:\"type\";s:6:\"plugin\";s:7:\"version\";s:6:\"12.8.0\";}s:5:\"it_IT\";O:8:\"stdClass\":7:{s:4:\"slug\";s:11:\"git-updater\";s:8:\"language\";s:5:\"it_IT\";s:7:\"updated\";s:24:\"2022-10-15 15:58:04+0000\";s:7:\"package\";s:103:\"https://github.com/afragen/git-updater-translations/blob/master/packages/git-updater-it_IT.zip?raw=true\";s:10:\"autoupdate\";s:1:\"1\";s:4:\"type\";s:6:\"plugin\";s:7:\"version\";s:6:\"12.8.0\";}s:5:\"ja_JP\";O:8:\"stdClass\":7:{s:4:\"slug\";s:11:\"git-updater\";s:8:\"language\";s:5:\"ja_JP\";s:7:\"updated\";s:24:\"2022-03-15 16:00:41+0000\";s:7:\"package\";s:103:\"https://github.com/afragen/git-updater-translations/blob/master/packages/git-updater-ja_JP.zip?raw=true\";s:10:\"autoupdate\";s:1:\"1\";s:4:\"type\";s:6:\"plugin\";s:7:\"version\";s:6:\"12.8.0\";}s:5:\"pt_BR\";O:8:\"stdClass\":7:{s:4:\"slug\";s:11:\"git-updater\";s:8:\"language\";s:5:\"pt_BR\";s:7:\"updated\";s:24:\"2022-03-15 16:02:33+0000\";s:7:\"package\";s:103:\"https://github.com/afragen/git-updater-translations/blob/master/packages/git-updater-pt_BR.zip?raw=true\";s:10:\"autoupdate\";s:1:\"1\";s:4:\"type\";s:6:\"plugin\";s:7:\"version\";s:6:\"12.8.0\";}s:5:\"pt_PT\";O:8:\"stdClass\":7:{s:4:\"slug\";s:11:\"git-updater\";s:8:\"language\";s:5:\"pt_PT\";s:7:\"updated\";s:24:\"2022-03-16 03:19:50+0000\";s:7:\"package\";s:103:\"https://github.com/afragen/git-updater-translations/blob/master/packages/git-updater-pt_PT.zip?raw=true\";s:10:\"autoupdate\";s:1:\"1\";s:4:\"type\";s:6:\"plugin\";s:7:\"version\";s:6:\"12.8.0\";}s:5:\"ro_RO\";O:8:\"stdClass\":7:{s:4:\"slug\";s:11:\"git-updater\";s:8:\"language\";s:5:\"ro_RO\";s:7:\"updated\";s:24:\"2022-03-15 16:03:10+0000\";s:7:\"package\";s:103:\"https://github.com/afragen/git-updater-translations/blob/master/packages/git-updater-ro_RO.zip?raw=true\";s:10:\"autoupdate\";s:1:\"1\";s:4:\"type\";s:6:\"plugin\";s:7:\"version\";s:6:\"12.8.0\";}s:5:\"ru_RU\";O:8:\"stdClass\":7:{s:4:\"slug\";s:11:\"git-updater\";s:8:\"language\";s:5:\"ru_RU\";s:7:\"updated\";s:24:\"2022-03-15 16:03:45+0000\";s:7:\"package\";s:103:\"https://github.com/afragen/git-updater-translations/blob/master/packages/git-updater-ru_RU.zip?raw=true\";s:10:\"autoupdate\";s:1:\"1\";s:4:\"type\";s:6:\"plugin\";s:7:\"version\";s:6:\"12.8.0\";}s:5:\"sv_SE\";O:8:\"stdClass\":7:{s:4:\"slug\";s:11:\"git-updater\";s:8:\"language\";s:5:\"sv_SE\";s:7:\"updated\";s:24:\"2022-03-15 16:04:24+0000\";s:7:\"package\";s:103:\"https://github.com/afragen/git-updater-translations/blob/master/packages/git-updater-sv_SE.zip?raw=true\";s:10:\"autoupdate\";s:1:\"1\";s:4:\"type\";s:6:\"plugin\";s:7:\"version\";s:6:\"12.8.0\";}s:5:\"uk_UA\";O:8:\"stdClass\":7:{s:4:\"slug\";s:11:\"git-updater\";s:8:\"language\";s:5:\"uk_UA\";s:7:\"updated\";s:24:\"2022-03-15 16:04:53+0000\";s:7:\"package\";s:103:\"https://github.com/afragen/git-updater-translations/blob/master/packages/git-updater-uk_UA.zip?raw=true\";s:10:\"autoupdate\";s:1:\"1\";s:4:\"type\";s:6:\"plugin\";s:7:\"version\";s:6:\"12.8.0\";}s:5:\"zh_TW\";O:8:\"stdClass\":7:{s:4:\"slug\";s:11:\"git-updater\";s:8:\"language\";s:5:\"zh_TW\";s:7:\"updated\";s:24:\"2022-03-15 16:05:35+0000\";s:7:\"package\";s:103:\"https://github.com/afragen/git-updater-translations/blob/master/packages/git-updater-zh_TW.zip?raw=true\";s:10:\"autoupdate\";s:1:\"1\";s:4:\"type\";s:6:\"plugin\";s:7:\"version\";s:6:\"12.8.0\";}}}','off'),(89977,'ghu-20c71081ca9008425981deb5ceeb459c','a:6:{s:7:\"timeout\";i:1735841978;s:15:\"wp-spectratheme\";a:7:{s:4:\"Name\";s:16:\"Spectra Template\";s:11:\"Description\";s:74:\"Custom theme developed by Wine Works to be used with Commerce7 & WordPress\";s:6:\"Author\";s:9:\"Wineworks\";s:9:\"AuthorURI\";s:19:\"http://wineworks.co\";s:7:\"Version\";s:3:\"1.5\";s:10:\"TextDomain\";s:7:\"Spectra\";s:14:\"GitHubThemeURI\";s:44:\"https://github.com/wineworks/wp-spectratheme\";}s:4:\"repo\";s:15:\"wp-spectratheme\";s:7:\"dot_org\";s:14:\"not in dot org\";s:4:\"meta\";a:5:{s:7:\"private\";b:1;s:12:\"last_updated\";s:20:\"2024-09-12T00:20:22Z\";s:8:\"watchers\";i:0;s:5:\"forks\";i:0;s:11:\"open_issues\";i:0;}s:4:\"tags\";O:8:\"stdClass\":1:{s:7:\"message\";s:13:\"No tags found\";}}','off'),(90040,'acf_will_escape_html_log','a:1:{s:19:\"field_5fc6c92c2108f\";a:4:{s:8:\"selector\";s:18:\"footer_bar_content\";s:8:\"function\";s:9:\"the_field\";s:5:\"field\";s:18:\"footer_bar_content\";s:7:\"post_id\";s:6:\"option\";}}','yes'),(90624,'ghu-408cef4f91029c9f3f0269da036f3e90','a:9:{s:7:\"timeout\";i:1734703481;s:11:\"git-updater\";a:12:{s:4:\"Name\";s:11:\"Git Updater\";s:9:\"PluginURI\";s:23:\"https://git-updater.com\";s:7:\"Version\";s:6:\"12.7.2\";s:11:\"Description\";s:156:\"A plugin to automatically update GitHub hosted plugins, themes, and language packs. Additional API plugins available for Bitbucket, GitLab, Gitea, and Gist.\";s:6:\"Author\";s:11:\"Andy Fragen\";s:10:\"TextDomain\";s:11:\"git-updater\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";s:4:\"true\";s:8:\"Requires\";s:3:\"5.9\";s:11:\"RequiresPHP\";s:3:\"7.4\";s:15:\"GitHubLanguages\";s:51:\"https://github.com/afragen/git-updater-translations\";s:15:\"GitHubPluginURI\";s:38:\"https://github.com/afragen/git-updater\";}s:4:\"repo\";s:11:\"git-updater\";s:7:\"dot_org\";s:14:\"not in dot org\";s:4:\"meta\";a:5:{s:7:\"private\";b:0;s:12:\"last_updated\";s:20:\"2024-12-19T01:17:45Z\";s:8:\"watchers\";i:3205;s:5:\"forks\";i:460;s:11:\"open_issues\";i:9;}s:7:\"changes\";s:6962:\"<h4>[unreleased]</h4>\n<h4>12.7.2 / 2024-12-18</h4>\n<ul>\n<li>update <code>freemius/wordpress-sdk</code></li>\n<li>use <code>mcaskill/composer-exclude-files</code> to exclude autoloading <code>start.php</code> from Freemius, issues arise</li>\n<li>update <code>REST_API::get_api_data()</code> to always get current release asset redirect as appropriate</li>\n</ul>\n<h4>12.7.1 / 2024-12-02</h4>\n<ul>\n<li>use <code>get_file_date()</code> to return plugin version</li>\n<li>fix <code>API::get_dot_org_data()</code> to work with WPE mirror</li>\n</ul>\n<h4>12.7.0 / 2024-11-30</h4>\n<ul>\n<li>fix missing/incorrect textdomains</li>\n<li>look for <code>__()</code> functions loading in hooks before <code>init</code></li>\n<li>remove <code>load_plugin_textdomain()</code></li>\n<li>add git host icon to single site theme description</li>\n<li>don\'t save to GitHub.com access token from single repo remote install</li>\n<li>fix PHP 8.1 creation dynamic variable from <code>class REST_API</code></li>\n<li>update REST API response to return <code>plugins_api()</code> or <code>themes_api()</code> style response</li>\n</ul>\n<h4>12.6.0 / 2024-10-13</h4>\n<ul>\n<li>check existence of <code>FS__RESOLVE_CLONE_AS</code> before setting</li>\n<li>add filter hook <code>gu_api_domain</code> to set domain for default API updating</li>\n<li>add filter hook <code>gu_ignore_dot_org</code> to completely ignore updates from dot org. Works as if every plugin/theme is in the <code>gu_override_dot_org</code> hook</li>\n</ul>\n<h4>12.5.0 / 2024-08-16</h4>\n<ul>\n<li>update <code>class-parser.php</code></li>\n<li>update <code>Requires PHP</code> to 7.4 for <code>class-parser.php</code></li>\n<li>update <code>Requires WP</code> to 5.9</li>\n<li>update <code>freemius/wordpress-sdk</code></li>\n<li>update <code>printf()</code> in <code>class Branches</code></li>\n<li>fix old <code>git-updater-pro</code> and <code>git-updater-additions</code> textdomains</li>\n<li>update <code>Base::upgrader_source_selection()</code> when trying to update <code>$source</code> and <code>$new_source</code> when destination directories are identical</li>\n<li>remove unused parameters in certain functions</li>\n</ul>\n<h4>12.4.0 / 2024-03-04</h4>\n<ul>\n<li>update <code>freemius/wordpress-sdk</code></li>\n<li>update <code>class-parser.php</code></li>\n<li>use <code>is_wp_version_compatible()</code> and <code>is_php_version_compatible()</code> in <code>GU_Trait::can_update_repo()</code></li>\n<li>update <code>gu-loader.php</code> with generic loader</li>\n<li>update <code>Readme_Parser::trim_length</code></li>\n</ul>\n<h4>12.3.1 / 2023-10-19</h4>\n<ul>\n<li>update <code>freemius/wordpress-sdk</code></li>\n<li>WPCS 3.0.0 linting</li>\n<li>popup on icon for &quot;Updates via Git Updater&quot;, thanks @BrianHenryIE</li>\n</ul>\n<h4>12.3.0 / 2023-08-10</h4>\n<ul>\n<li>update Bitbucket Add-on message for consistency</li>\n<li>ensure <code>Shim</code> available during <code>register_activation_hook()</code></li>\n<li>add conditional to <code>get_remote_api_branches()</code> to ensure <code>$response</code> is not a scalar</li>\n<li>use null coalescing operator</li>\n<li>update for PHP 8.2</li>\n</ul>\n<h4>12.2.3 / 2023-06-27</h4>\n<ul>\n<li>composer update</li>\n<li>get <code>gu_disable_cron</code> hook result once per repository</li>\n<li>ensure git class is instantiated when checking <code>waiting_for_background_update()</code></li>\n<li>add check for <code>$response-&gt;error</code> to <code>API::validate_response()</code></li>\n<li>update <code>freemius/wordpress-sdk</code> to 2.5.10</li>\n</ul>\n<h4>12.2.2 /2023-05-22</h4>\n<ul>\n<li>add back Network only activate for multisite, may cause issue where post-license activation Freemius doesn\'t re-direct to network admin</li>\n<li>update anonymous functions as static functions for better performance</li>\n<li>composer update</li>\n</ul>\n<h4>12.2.1 / 2023-04-21</h4>\n<ul>\n<li>ensure <code>$wp_filesystem</code> set for <code>Bootstrap::rename_on_activation()</code></li>\n<li>uninstall tested to function correctly</li>\n</ul>\n<h4>12.2.0 / 2023-04-20</h4>\n<ul>\n<li>update <code>freemius/wordpress-sdk</code></li>\n<li>update <code>afragen/wp-dismiss-notice</code></li>\n<li>don\'t save unused data from <code>API_Common::parse_release_asset()</code></li>\n<li>don\'t use Freemius uninstall, use previous <code>uninstall.php</code></li>\n<li>more PHP 8.2 compatibility</li>\n<li>composer update</li>\n<li>update <code>REST_API::get_plugins_api_data()</code> to return response without download link using boolean value in <code>download</code> query arg</li>\n<li>hide Freemius menus with <code>gu_hide_settings</code> filter</li>\n<li>more specific hiding of Git Updater settings</li>\n</ul>\n<h4>12.1.3 / 2023-03-20</h4>\n<ul>\n<li>improved setting/default of <code>$options[\'bypass_background_processing\']</code></li>\n<li>improved setting/default of <code>$options[\'branch_switch\']</code></li>\n<li>display upgrade notice on <code>update-core.php</code></li>\n<li>composer update <code>afragen/singleton</code> for PHP 8.2 compat</li>\n</ul>\n<h4>12.1.2 / 2023-02-08</h4>\n<ul>\n<li>fix for webhook updating issue if <code>$branches</code> not defined, thanks @awunsch</li>\n</ul>\n<h4>12.1.1 / 2023-02-07</h4>\n<ul>\n<li>remove force of Network activation, messes up Freemius license activation on multisite</li>\n<li>composer update</li>\n</ul>\n<h4>12.1.0 / 2023-02-06</h4>\n<ul>\n<li>further limit log of HTTP errors, trying for only once per plugin</li>\n<li>eliminate Freemius clone resolution popup</li>\n<li>update <code>Shim:move_dir()</code> for improved error messaging</li>\n<li>update comparison in <code>Base::upgrader_source_selection</code> of <code>$source</code> and <code>$new_source</code></li>\n</ul>\n<h4>12.0.4 / 2023-01-27</h4>\n<ul>\n<li>update to use <code>str_contains()</code></li>\n<li>log HTTP errors only hourly</li>\n<li>update <code>Shim::move_dir()</code> to exit early if source and destination differ only by case or trailing slash</li>\n</ul>\n<h4>12.0.3 / 2023-01-19</h4>\n<ul>\n<li>update <code>Shim</code> for <code>move_dir()</code> and <code>wp_opcache_invalidate_directory()</code></li>\n<li>composer update</li>\n</ul>\n<h4>12.0.2 / 2023-01-12</h4>\n<ul>\n<li>PHP 8.1 compatibility fix, thanks @chesio</li>\n<li>other PHP 8.1 fixes</li>\n<li>declare <code>class API</code> variable <code>$type</code>, avoid future PHP issues, thanks @chesio</li>\n</ul>\n<h4>12.0.1 / 2023-01-02</h4>\n<ul>\n<li>cleanup parsing of GitHub release assets</li>\n<li>composer update to fix dependency conflict</li>\n</ul>\n<h4>12.0.0 / 2022-12-12</h4>\n<ul>\n<li>ensure <code>$wp_filesystem</code> is available</li>\n<li>re-integrate Git Updater PRO</li>\n<li>integrate Git Updater Additions</li>\n<li>add git logo to subtab, hide for now</li>\n<li>load API tabs of installed/active API plugins</li>\n<li>set Git Updater to auto-update with new <code>$db_version</code></li>\n<li>replace Appsero SDK with Freemius SDK</li>\n<li>suspend Freemius plugin updating for Git Updater</li>\n<li>fix uninstall.php for Freemius</li>\n</ul>\";s:6:\"readme\";a:22:{s:4:\"name\";s:11:\"Git Updater\";s:4:\"tags\";a:3:{i:1;s:5:\"theme\";i:2;s:13:\"language pack\";i:3;s:7:\"updater\";}s:8:\"requires\";s:3:\"5.9\";s:6:\"tested\";s:3:\"6.8\";s:12:\"requires_php\";s:3:\"7.4\";s:12:\"contributors\";a:1:{s:7:\"afragen\";a:3:{s:12:\"display_name\";s:7:\"afragen\";s:7:\"profile\";s:32:\"//profiles.wordpress.org/afragen\";s:6:\"avatar\";s:52:\"https://wordpress.org/grav-redirect.php?user=afragen\";}}s:10:\"stable_tag\";s:6:\"master\";s:11:\"donate_link\";s:41:\"https://thefragens.com/git-updater-donate\";s:17:\"short_description\";s:159:\"This plugin was originally designed to simply update any GitHub hosted WordPress plugin or theme. Currently, plugins or themes hosted on Bitbucket, Gi &hellip;\";s:7:\"license\";s:3:\"MIT\";s:11:\"license_uri\";s:0:\"\";s:8:\"sections\";a:3:{s:11:\"description\";s:2386:\"<p>This plugin was originally designed to simply update any GitHub hosted WordPress plugin or theme. Currently, plugins or themes hosted on Bitbucket, GitLab, Gitea, or Gist are also supported via additional API plugins. Additionally, self-hosted git servers are supported.</p>\n<p>Your plugin or theme <strong>must</strong> contain a header in the style.css header or in the plugin\'s header denoting the location on GitHub. The format is as follows.</p>\n<pre><code>GitHub Plugin URI: afragen/git-updater\nGitHub Plugin URI: https://github.com/afragen/git-updater</code></pre>\n<p>or</p>\n<pre><code>GitHub Theme URI: afragen/test-child\nGitHub Theme URI: https://github.com/afragen/test-child</code></pre>\n<p>...where the above URI leads to the <strong>owner/repository</strong> of your theme or plugin. The URI may be in the format <code>https://github.com/&lt;owner&gt;/&lt;repo&gt;</code> or the short format <code>&lt;owner&gt;/&lt;repo&gt;</code>. You do not need both. Only one Plugin or Theme URI is required. You <strong>must not</strong> include any extensions like <code>.git</code>.</p>\n<h3>API Plugins</h3>\n<p>API plugins for Bitbucket, GitLab, Gitea, and Gist are available. API plugins are available for a one-click install from the <strong>Add-Ons</strong> tab.</p>\n<ul>\n<li><a href=\"https://github.com/afragen/git-updater-bitbucket/releases/latest\">Git Updater - Bitbucket</a></li>\n<li><a href=\"https://github.com/afragen/git-updater-gitlab/releases/latest\">Git Updater - GitLab</a></li>\n<li><a href=\"https://github.com/afragen/git-updater-gitea/releases/latest\">Git Updater - Gitea</a></li>\n<li><a href=\"https://github.com/afragen/git-updater-gist/releases/latest\">Git Updater - Gist</a></li>\n</ul>\n<h3>Sponsor</h3>\n<p>Purchase a license at the <a href=\"https://git-updater.com/store/\">Git Updater Store</a>. An unlimited yearly license is very reasonable and allows for authenticated API requests. There is an initial free trial period. After the trial period Git Updater will not be able to make authenticated API requests.</p>\n<p>You can <a href=\"https://github.com/sponsors/afragen\">sponsor me on GitHub</a> to help with continued development and support.</p>\n<h3>Headers</h3>\n<p>The following headers are available for use depending upon your hosting source.</p>\n<h4>GitHub</h4>\n<ul>\n<li>GitHub Plugin URI</li>\n<li>GitHub Theme URI</li>\n<li>GitHub Languages</li>\n</ul>\";s:12:\"installation\";s:110:\"<p>Go to <a href=\"https://git-updater.com\">git-updater.com</a> to download and install the latest version.</p>\";s:3:\"faq\";s:723:\"<h4>Knowledge Base</h4>\n<p><a href=\"https://git-updater.com/knowledge-base\">Comprehensive information regarding Git Updater is available in the Knowledge Base.</a></p>\n<h4>Slack</h4>\n<p>We now have a <a href=\"https://git-updater.slack.com\">Slack team for Git Updater</a>. Please <a href=\"https://join.slack.com/t/git-updater/shared_invite/zt-1extq97hy-FjA1QAhjGNDzmFjjlRv3rg\">click here for an invite</a>. You will be automatically added to the <em>#general</em> and <em>#support</em> channels. Please take a look at other channels too.</p>\n<h4>Translations</h4>\n<p>If you are a polyglot I would greatly appreciate translation contributions to <a href=\"https://translate.git-updater.com\">GlotPress for Git Updater</a>.</p>\n\";}s:14:\"upgrade_notice\";a:0:{}s:11:\"screenshots\";a:0:{}s:3:\"faq\";a:3:{s:14:\"Knowledge Base\";s:143:\"<p><a href=\"https://git-updater.com/knowledge-base\">Comprehensive information regarding Git Updater is available in the Knowledge Base.</a></p>\";s:5:\"Slack\";s:357:\"<p>We now have a <a href=\"https://git-updater.slack.com\">Slack team for Git Updater</a>. Please <a href=\"https://join.slack.com/t/git-updater/shared_invite/zt-1extq97hy-FjA1QAhjGNDzmFjjlRv3rg\">click here for an invite</a>. You will be automatically added to the <em>#general</em> and <em>#support</em> channels. Please take a look at other channels too.</p>\";s:12:\"Translations\";s:159:\"<p>If you are a polyglot I would greatly appreciate translation contributions to <a href=\"https://translate.git-updater.com\">GlotPress for Git Updater</a>.</p>\";}s:8:\"warnings\";a:2:{s:12:\"ignored_tags\";a:1:{i:0;s:6:\"plugin\";}s:28:\"no_short_description_present\";b:1;}s:17:\"expected_sections\";a:7:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:11:\"screenshots\";i:4;s:9:\"changelog\";i:5;s:14:\"upgrade_notice\";i:6;s:11:\"other_notes\";}s:14:\"alias_sections\";a:3:{s:26:\"frequently_asked_questions\";s:3:\"faq\";s:10:\"change_log\";s:9:\"changelog\";s:10:\"screenshot\";s:11:\"screenshots\";}s:13:\"valid_headers\";a:11:{s:6:\"tested\";s:6:\"tested\";s:12:\"tested up to\";s:6:\"tested\";s:8:\"requires\";s:8:\"requires\";s:17:\"requires at least\";s:8:\"requires\";s:12:\"requires php\";s:12:\"requires_php\";s:4:\"tags\";s:4:\"tags\";s:12:\"contributors\";s:12:\"contributors\";s:11:\"donate link\";s:11:\"donate_link\";s:10:\"stable tag\";s:10:\"stable_tag\";s:7:\"license\";s:7:\"license\";s:11:\"license uri\";s:11:\"license_uri\";}s:11:\"ignore_tags\";a:2:{i:0;s:6:\"plugin\";i:1;s:9:\"wordpress\";}s:21:\"maximum_field_lengths\";a:4:{s:17:\"short_description\";i:150;s:7:\"section\";i:2500;s:17:\"section-changelog\";i:5000;s:11:\"section-faq\";i:5000;}s:12:\"raw_contents\";s:3072:\"# Git Updater\n\nContributors: afragen\nDonate link: https://thefragens.com/git-updater-donate\nTags: plugin, theme, language pack, updater\nRequires at least: 5.9\nRequires PHP: 7.4\nTested up to: 6.8\nStable tag: master\nLicense: MIT\n\n## Description\n\nThis plugin was originally designed to simply update any GitHub hosted WordPress plugin or theme. Currently, plugins or themes hosted on Bitbucket, GitLab, Gitea, or Gist are also supported via additional API plugins. Additionally, self-hosted git servers are supported.\n\nYour plugin or theme **must** contain a header in the style.css header or in the plugin\'s header denoting the location on GitHub. The format is as follows.\n\n    GitHub Plugin URI: afragen/git-updater\n    GitHub Plugin URI: https://github.com/afragen/git-updater\n\nor\n\n    GitHub Theme URI: afragen/test-child\n    GitHub Theme URI: https://github.com/afragen/test-child\n\n...where the above URI leads to the __owner/repository__ of your theme or plugin. The URI may be in the format `https://github.com/<owner>/<repo>` or the short format `<owner>/<repo>`. You do not need both. Only one Plugin or Theme URI is required. You **must not** include any extensions like `.git`.\n\n### API Plugins\n\nAPI plugins for Bitbucket, GitLab, Gitea, and Gist are available. API plugins are available for a one-click install from the **Add-Ons** tab.\n\n* [Git Updater - Bitbucket](https://github.com/afragen/git-updater-bitbucket/releases/latest)\n* [Git Updater - GitLab](https://github.com/afragen/git-updater-gitlab/releases/latest)\n* [Git Updater - Gitea](https://github.com/afragen/git-updater-gitea/releases/latest)\n* [Git Updater - Gist](https://github.com/afragen/git-updater-gist/releases/latest)\n\n### Sponsor\n\nPurchase a license at the [Git Updater Store](https://git-updater.com/store/). An unlimited yearly license is very reasonable and allows for authenticated API requests. There is an initial free trial period. After the trial period Git Updater will not be able to make authenticated API requests.\n\nYou can [sponsor me on GitHub](https://github.com/sponsors/afragen) to help with continued development and support.\n\n### Headers\n\nThe following headers are available for use depending upon your hosting source.\n\n#### GitHub\n* GitHub Plugin URI\n* GitHub Theme URI\n* GitHub Languages\n\n## Frequently Asked Questions\n\n#### Knowledge Base\n\n[Comprehensive information regarding Git Updater is available in the Knowledge Base.](https://git-updater.com/knowledge-base)\n\n#### Slack\n\nWe now have a [Slack team for Git Updater](https://git-updater.slack.com). Please [click here for an invite](https://join.slack.com/t/git-updater/shared_invite/zt-1extq97hy-FjA1QAhjGNDzmFjjlRv3rg). You will be automatically added to the _#general_ and _#support_ channels. Please take a look at other channels too.\n\n#### Translations\n\nIf you are a polyglot I would greatly appreciate translation contributions to [GlotPress for Git Updater](https://translate.git-updater.com).\n\n## Installation\n\nGo to [git-updater.com](https://git-updater.com) to download and install the latest version.\n\";}s:4:\"tags\";a:30:{i:0;s:6:\"12.7.2\";i:1;s:6:\"12.7.1\";i:2;s:6:\"12.7.0\";i:3;s:6:\"12.6.0\";i:4;s:6:\"12.5.0\";i:5;s:6:\"12.4.0\";i:6;s:6:\"12.3.1\";i:7;s:6:\"12.3.0\";i:8;s:6:\"12.2.3\";i:9;s:6:\"12.2.2\";i:10;s:6:\"12.2.1\";i:11;s:6:\"12.2.0\";i:12;s:6:\"12.1.3\";i:13;s:6:\"12.1.2\";i:14;s:6:\"12.1.1\";i:15;s:6:\"12.1.0\";i:16;s:6:\"12.0.4\";i:17;s:6:\"12.0.3\";i:18;s:6:\"12.0.2\";i:19;s:6:\"12.0.1\";i:20;s:6:\"12.0.0\";i:21;s:7:\"11.1.10\";i:22;s:6:\"11.1.9\";i:23;s:6:\"11.1.8\";i:24;s:6:\"11.1.7\";i:25;s:6:\"11.1.6\";i:26;s:6:\"11.1.5\";i:27;s:6:\"11.1.4\";i:28;s:6:\"11.1.3\";i:29;s:6:\"11.1.2\";}s:11:\"error_cache\";a:7:{s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:19:{s:4:\"date\";s:29:\"Fri, 20 Dec 2024 13:49:41 GMT\";s:6:\"server\";s:7:\"Varnish\";s:25:\"strict-transport-security\";s:44:\"max-age=31536000; includeSubdomains; preload\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:15:\"x-frame-options\";s:4:\"deny\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:23:\"content-security-policy\";s:45:\"default-src \'none\'; style-src \'unsafe-inline\'\";s:27:\"access-control-allow-origin\";s:1:\"*\";s:29:\"access-control-expose-headers\";s:248:\"ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-RateLimit-Used, X-RateLimit-Resource, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset\";s:12:\"content-type\";s:31:\"application/json; charset=utf-8\";s:15:\"referrer-policy\";s:57:\"origin-when-cross-origin, strict-origin-when-cross-origin\";s:19:\"x-github-media-type\";s:22:\"github.v3; format=json\";s:17:\"x-ratelimit-limit\";s:2:\"60\";s:21:\"x-ratelimit-remaining\";s:1:\"0\";s:17:\"x-ratelimit-reset\";s:10:\"1734703494\";s:20:\"x-ratelimit-resource\";s:4:\"core\";s:16:\"x-ratelimit-used\";s:2:\"60\";s:14:\"content-length\";s:3:\"281\";s:19:\"x-github-request-id\";s:37:\"1003:3AC688:D79AE23:1AC9AFD8:676575F5\";}}s:4:\"body\";s:281:\"{\"message\":\"API rate limit exceeded for 130.211.199.142. (But here\'s the good news: Authenticated requests get a higher rate limit. Check out the documentation for more details.)\",\"documentation_url\":\"https://docs.github.com/rest/overview/resources-in-the-rest-api#rate-limiting\"}\n\";s:8:\"response\";a:2:{s:4:\"code\";i:403;s:7:\"message\";s:9:\"Forbidden\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;s:11:\"\0*\0response\";O:23:\"WpOrg\\Requests\\Response\":10:{s:4:\"body\";s:281:\"{\"message\":\"API rate limit exceeded for 130.211.199.142. (But here\'s the good news: Authenticated requests get a higher rate limit. Check out the documentation for more details.)\",\"documentation_url\":\"https://docs.github.com/rest/overview/resources-in-the-rest-api#rate-limiting\"}\n\";s:3:\"raw\";s:1316:\"HTTP/1.1 403 rate limit exceeded\r\nDate: Fri, 20 Dec 2024 13:49:41 GMT\r\nServer: Varnish\r\nStrict-Transport-Security: max-age=31536000; includeSubdomains; preload\r\nX-Content-Type-Options: nosniff\r\nX-Frame-Options: deny\r\nX-XSS-Protection: 1; mode=block\r\nContent-Security-Policy: default-src \'none\'; style-src \'unsafe-inline\'\r\nAccess-Control-Allow-Origin: *\r\nAccess-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-RateLimit-Used, X-RateLimit-Resource, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset\r\nContent-Type: application/json; charset=utf-8\r\nReferrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin\r\nX-GitHub-Media-Type: github.v3; format=json\r\nX-RateLimit-Limit: 60\r\nX-RateLimit-Remaining: 0\r\nX-RateLimit-Reset: 1734703494\r\nX-RateLimit-Resource: core\r\nX-RateLimit-Used: 60\r\nContent-Length: 281\r\nX-GitHub-Request-Id: 1003:3AC688:D79AE23:1AC9AFD8:676575F5\r\nconnection: close\r\n\r\n{\"message\":\"API rate limit exceeded for 130.211.199.142. (But here\'s the good news: Authenticated requests get a higher rate limit. Check out the documentation for more details.)\",\"documentation_url\":\"https://docs.github.com/rest/overview/resources-in-the-rest-api#rate-limiting\"}\n\";s:7:\"headers\";O:31:\"WpOrg\\Requests\\Response\\Headers\":1:{s:7:\"\0*\0data\";a:19:{s:4:\"date\";a:1:{i:0;s:29:\"Fri, 20 Dec 2024 13:49:41 GMT\";}s:6:\"server\";a:1:{i:0;s:7:\"Varnish\";}s:25:\"strict-transport-security\";a:1:{i:0;s:44:\"max-age=31536000; includeSubdomains; preload\";}s:22:\"x-content-type-options\";a:1:{i:0;s:7:\"nosniff\";}s:15:\"x-frame-options\";a:1:{i:0;s:4:\"deny\";}s:16:\"x-xss-protection\";a:1:{i:0;s:13:\"1; mode=block\";}s:23:\"content-security-policy\";a:1:{i:0;s:45:\"default-src \'none\'; style-src \'unsafe-inline\'\";}s:27:\"access-control-allow-origin\";a:1:{i:0;s:1:\"*\";}s:29:\"access-control-expose-headers\";a:1:{i:0;s:248:\"ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-RateLimit-Used, X-RateLimit-Resource, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset\";}s:12:\"content-type\";a:1:{i:0;s:31:\"application/json; charset=utf-8\";}s:15:\"referrer-policy\";a:1:{i:0;s:57:\"origin-when-cross-origin, strict-origin-when-cross-origin\";}s:19:\"x-github-media-type\";a:1:{i:0;s:22:\"github.v3; format=json\";}s:17:\"x-ratelimit-limit\";a:1:{i:0;s:2:\"60\";}s:21:\"x-ratelimit-remaining\";a:1:{i:0;s:1:\"0\";}s:17:\"x-ratelimit-reset\";a:1:{i:0;s:10:\"1734703494\";}s:20:\"x-ratelimit-resource\";a:1:{i:0;s:4:\"core\";}s:16:\"x-ratelimit-used\";a:1:{i:0;s:2:\"60\";}s:14:\"content-length\";a:1:{i:0;s:3:\"281\";}s:19:\"x-github-request-id\";a:1:{i:0;s:37:\"1003:3AC688:D79AE23:1AC9AFD8:676575F5\";}}}s:11:\"status_code\";i:403;s:16:\"protocol_version\";d:1.1;s:7:\"success\";b:0;s:9:\"redirects\";i:0;s:3:\"url\";s:89:\"https://api.github.com/repos/afragen/git-updater-translations/contents/language-pack.json\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:25:\"WpOrg\\Requests\\Cookie\\Jar\":1:{s:10:\"\0*\0cookies\";a:0:{}}}s:11:\"\0*\0filename\";N;}s:7:\"timeout\";s:2:\"15\";}}','off'),(91062,'options_tiktok','','off'),(91063,'_options_tiktok','field_5bbe149b5e081tiktok','off'),(91064,'options_custom_social_media_links','','off'),(91065,'_options_custom_social_media_links','field_6578be782ac0dsml','off'),(91442,'wpe_feature_flags','a:8:{s:6:\"wpeApi\";b:1;s:18:\"wpeWordPressComApi\";b:0;s:17:\"wpeWooCommerceApi\";b:0;s:27:\"showAddPluginsFallbackPanel\";b:0;s:25:\"showAddPluginsPopularTags\";b:0;s:26:\"showAddThemesFallbackPanel\";b:0;s:26:\"showAddPluginsFavoritesTab\";b:0;s:14:\"forcePhotonOff\";b:0;}','auto'),(91443,'wpe_feature_flags_expiration','1735820680','auto'),(91475,'wpe_notices_expiration','1735820681','auto'),(91986,'can_compress_scripts','1','on'),(92216,'_transient_timeout_acf_plugin_updates','1735820080','off'),(92217,'_transient_acf_plugin_updates','O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:12:\"server_error\";a:1:{i:0;s:11:\"Bad Request\";}}s:10:\"error_data\";a:0:{}s:18:\"\0*\0additional_data\";a:0:{}}','off');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (405,410,'inline_featured_image','0'),(406,410,'_wp_page_template','default'),(407,410,'_edit_last','2'),(408,410,'content_block','a:1:{i:0;s:10:\"text_block\";}'),(409,410,'_content_block','field_5bbe19a7efa09'),(431,337,'_edit_last','2'),(432,337,'intro','A hearty soup to warm you up in the winter months.'),(433,337,'_intro','field_5bc4e7874c207'),(434,337,'recommended_wine_pairings','recipe-pairing'),(435,337,'_recommended_wine_pairings','field_5bc4e85d4c20c'),(436,337,'ingredients_0_ingredient','One small onion, chopped'),(437,337,'_ingredients_0_ingredient','field_5bc4e7354c204'),(438,337,'ingredients_1_ingredient','4 tablespoons margarine'),(439,337,'_ingredients_1_ingredient','field_5bc4e7354c204'),(440,337,'ingredients','9'),(441,337,'_ingredients','field_5bc4e7264c203'),(442,337,'directions_0_direction','1. In a large saucepan, saute onions in margarine until tender. Add squash, chick broth, marjoram, black pepper and cayenne pepper. Bring to boil; cook 20 minutes, or until squash is tender.'),(443,337,'_directions_0_direction','field_5bc4e93a4c211'),(444,337,'directions_1_direction','2. Puree squash and cream cheese using a hand blender until smooth. Return to saucepan, and heat through. Do not allow to boil.'),(445,337,'_directions_1_direction','field_5bc4e93a4c211'),(446,337,'directions','3'),(447,337,'_directions','field_5bc4e92e4c210'),(448,337,'difficulty','Medium'),(449,337,'_difficulty','field_5bc4e79c4c208'),(450,337,'cooking_time','35'),(451,337,'_cooking_time','field_5bc4e7b84c209'),(452,337,'measurement_system','Imperial (US)'),(453,337,'_measurement_system','field_5bc4e7e04c20a'),(454,337,'serving_size',''),(455,337,'_serving_size','field_5bc4e8134c20b'),(456,337,'preview_photo','590'),(457,337,'_preview_photo','field_5bc4ea4909280'),(458,337,'featured_photo','591'),(459,337,'_featured_photo','field_5bc4ea170927f'),(460,337,'prep_time','25'),(461,337,'_prep_time','field_5bc5039498f67'),(462,337,'cuisine_type',''),(463,337,'_cuisine_type','field_5bc5062298f68'),(464,337,'keywords','food, soup'),(465,337,'_keywords','field_5bc5063798f69'),(466,351,'_edit_last','2'),(467,351,'intro','A fruity twist on a household favourite. '),(468,351,'_intro','field_5bc4e7874c207'),(469,351,'recommended_wine_pairings','recipe-pairing'),(470,351,'_recommended_wine_pairings','field_5bc4e85d4c20c'),(471,351,'ingredients_0_ingredient','4 eggs '),(472,351,'_ingredients_0_ingredient','field_5bc4e7354c204'),(473,351,'ingredients','8'),(474,351,'_ingredients','field_5bc4e7264c203'),(475,351,'directions_0_direction','1. Preheat oven to 350 degrees F. Grease a 12x9-inch baking pan'),(476,351,'_directions_0_direction','field_5bc4e93a4c211'),(477,351,'directions','4'),(478,351,'_directions','field_5bc4e92e4c210'),(479,351,'difficulty','Easy'),(480,351,'_difficulty','field_5bc4e79c4c208'),(481,351,'prep_time','10'),(482,351,'_prep_time','field_5bc5039498f67'),(483,351,'cooking_time','40'),(484,351,'_cooking_time','field_5bc4e7b84c209'),(485,351,'measurement_system','Imperial (US)'),(486,351,'_measurement_system','field_5bc4e7e04c20a'),(487,351,'cuisine_type','American'),(488,351,'_cuisine_type','field_5bc5062298f68'),(489,351,'keywords','food'),(490,351,'_keywords','field_5bc5063798f69'),(491,351,'serving_size','8'),(492,351,'_serving_size','field_5bc4e8134c20b'),(493,351,'preview_photo','594'),(494,351,'_preview_photo','field_5bc4ea4909280'),(495,351,'featured_photo','595'),(496,351,'_featured_photo','field_5bc4ea170927f'),(497,412,'inline_featured_image','0'),(498,412,'inline_featured_image','0'),(499,412,'_edit_last','3'),(500,412,'_wp_page_template','default'),(501,412,'content_block','a:9:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";i:3;s:10:\"text_block\";i:4;s:10:\"text_block\";i:5;s:10:\"text_block\";i:6;s:5:\"video\";i:7;s:10:\"text_block\";i:8;s:6:\"banner\";}'),(502,412,'_content_block','field_5bbe19a7efa09'),(503,412,'content_block_0_banner_full_width','1'),(504,412,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(505,412,'content_block_0_banner_size','long'),(506,412,'_content_block_0_banner_size','field_5bbe232929ec9'),(507,412,'content_block_0_add_parallax_effect','0'),(508,412,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(509,412,'content_block_0_add_veil_over_banner','0'),(510,412,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(511,412,'content_block_0_banner_content_position','centered'),(512,412,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(513,412,'content_block_0_banner_title',' <h1 style=\"color: #ffffff;\">MEADOWCROFT WINES<h1>'),(514,412,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(515,412,'content_block_0_banner_subtitle','● SONOMA | NAPA ●'),(516,412,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(517,412,'content_block_0_banner_button_link','a:3:{s:5:\"title\";s:9:\"subscribe\";s:3:\"url\";s:43:\"https://www.meadowcroftwines.com/subscribe/\";s:6:\"target\";s:0:\"\";}'),(518,412,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(519,412,'content_block_0_banner_button_text','Join Our Mailing List'),(520,412,'_content_block_0_banner_button_text','field_5bbe1ba0efa0e'),(521,412,'content_block_0_banner_button_new_tab','0'),(522,412,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(523,412,'content_block_0_show_down_arrow','0'),(524,412,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(525,412,'content_block_0_banner_image','3279'),(526,412,'_content_block_0_banner_image','field_5bbe201718faf'),(527,412,'content_block_0_banner_image_position','center center'),(528,412,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(529,412,'content_block_0_banner_image_mobile','3280'),(530,412,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(531,412,'content_block_0_banner_image_mobile_position','center center'),(532,412,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(569,412,'content_block_2_text_block_columns','one'),(570,412,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(571,412,'content_block_2_narrow_text_block_content','1'),(572,412,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(573,412,'content_block_2_reverse_colors','0'),(574,412,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(575,412,'content_block_2_enable_background_image','0'),(576,412,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(577,412,'content_block_2_text_block_content_col_one','&nbsp;\r\n<h3 style=\"text-align: center;\">TOP 100 WINERY FROM BONFORT’S WINE &amp; SPIRITS!</h3>\r\n<img class=\"wp-image-866 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Top_100_Winner_Gold-1-1-300x138.png\" alt=\"Top 100 Winery Logo\" width=\"463\" height=\"213\" />'),(578,412,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(637,431,'inline_featured_image','0'),(638,431,'inline_featured_image','0'),(639,431,'inline_featured_image','0'),(640,431,'_wp_page_template','default'),(641,431,'content_block','a:7:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";i:3;s:10:\"text_block\";i:4;s:10:\"text_block\";i:5;s:10:\"text_block\";i:6;s:10:\"text_block\";}'),(642,431,'_content_block','field_5bbe19a7efa09'),(643,431,'content_block_0_banner_full_width','1'),(644,431,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(645,431,'content_block_0_banner_size','short'),(646,431,'_content_block_0_banner_size','field_5bbe232929ec9'),(647,431,'content_block_0_add_parallax_effect','0'),(648,431,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(649,431,'content_block_0_add_veil_over_banner','1'),(650,431,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(651,431,'content_block_0_banner_content_position','centered'),(652,431,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(653,431,'content_block_0_banner_title','VIRTUAL WINE TASTINGS'),(654,431,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(655,431,'content_block_0_banner_subtitle','Perfect for Teams, Groups, and Remote Employees'),(656,431,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(657,431,'content_block_0_banner_button_link',''),(658,431,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(659,431,'content_block_0_banner_button_text','Current Releases'),(660,431,'_content_block_0_banner_button_text','field_5bbe1ba0efa0e'),(661,431,'content_block_0_banner_button_new_tab','0'),(662,431,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(663,431,'content_block_0_show_down_arrow','0'),(664,431,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(665,431,'content_block_0_banner_image','924'),(666,431,'_content_block_0_banner_image','field_5bbe201718faf'),(667,431,'content_block_0_banner_image_position','center center'),(668,431,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(669,431,'content_block_0_banner_image_mobile','925'),(670,431,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(671,431,'content_block_0_banner_image_mobile_position','center center'),(672,431,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(761,431,'_dp_original','410'),(762,431,'_edit_last','2'),(763,412,'_edit_lock','1712265189:3'),(778,431,'_edit_lock','1670871461:2'),(780,440,'_wp_attached_file','2018/10/logo.svg'),(791,443,'inline_featured_image','0'),(792,443,'_edit_last','2'),(793,443,'content_block','a:4:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";i:3;s:10:\"text_block\";}'),(794,443,'_content_block','field_5bbe19a7efa09'),(795,443,'_edit_lock','1695133732:2'),(796,444,'inline_featured_image','0'),(797,444,'_edit_last','3'),(798,444,'content_block','a:8:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";i:3;s:10:\"text_block\";i:4;s:5:\"video\";i:5;s:10:\"text_block\";i:6;s:12:\"team_members\";i:7;s:10:\"text_block\";}'),(799,444,'_content_block','field_5bbe19a7efa09'),(800,444,'_edit_lock','1703181365:3'),(801,445,'inline_featured_image','0'),(802,445,'_edit_last','3'),(803,445,'content_block','a:11:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:6:\"banner\";i:3;s:10:\"text_block\";i:4;s:10:\"text_block\";i:5;s:10:\"text_block\";i:6;s:10:\"text_block\";i:7;s:10:\"text_block\";i:8;s:10:\"text_block\";i:9;s:10:\"text_block\";i:10;s:10:\"text_block\";}'),(804,445,'_content_block','field_5bbe19a7efa09'),(805,445,'_edit_lock','1733952240:3'),(806,446,'inline_featured_image','0'),(807,446,'_edit_last','2'),(808,446,'content_block','a:4:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";i:3;s:10:\"text_block\";}'),(809,446,'_content_block','field_5bbe19a7efa09'),(810,446,'_edit_lock','1634061291:2'),(811,447,'inline_featured_image','0'),(812,447,'_edit_last','3'),(813,447,'content_block','a:1:{i:0;s:10:\"text_block\";}'),(814,447,'_content_block','field_5bbe19a7efa09'),(815,447,'_edit_lock','1732642603:3'),(821,449,'inline_featured_image','0'),(822,449,'_edit_last','5'),(823,449,'content_block','a:4:{i:0;s:10:\"text_block\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";i:3;s:10:\"text_block\";}'),(824,449,'_content_block','field_5bbe19a7efa09'),(825,449,'_edit_lock','1686196757:7'),(876,456,'_menu_item_type','post_type'),(877,456,'_menu_item_menu_item_parent','920'),(878,456,'_menu_item_object_id','445'),(879,456,'_menu_item_object','page'),(880,456,'_menu_item_target',''),(881,456,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(882,456,'_menu_item_xfn',''),(883,456,'_menu_item_url',''),(921,461,'inline_featured_image','0'),(922,461,'_edit_last','2'),(923,461,'content_block','a:2:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";}'),(924,461,'_content_block','field_5bbe19a7efa09'),(925,461,'_edit_lock','1677060387:5'),(1013,446,'content_block_0_banner_full_width','1'),(1014,446,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(1015,446,'content_block_0_banner_size','short'),(1016,446,'_content_block_0_banner_size','field_5bbe232929ec9'),(1017,446,'content_block_0_add_parallax_effect','0'),(1018,446,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(1019,446,'content_block_0_add_veil_over_banner','0'),(1020,446,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(1021,446,'content_block_0_banner_content_position','centered'),(1022,446,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(1023,446,'content_block_0_banner_title',''),(1024,446,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(1025,446,'content_block_0_banner_subtitle',''),(1026,446,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(1027,446,'content_block_0_banner_button_link',''),(1028,446,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(1029,446,'content_block_0_banner_button_new_tab','0'),(1030,446,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(1031,446,'content_block_0_show_down_arrow','1'),(1032,446,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(1033,446,'content_block_0_banner_image','473'),(1034,446,'_content_block_0_banner_image','field_5bbe201718faf'),(1035,446,'content_block_0_banner_image_position','center center'),(1036,446,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(1037,446,'content_block_0_banner_image_mobile','474'),(1038,446,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(1039,446,'content_block_0_banner_image_mobile_position','center center'),(1040,446,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(1045,431,'content_block_1_text_block_columns','one'),(1046,431,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(1047,431,'content_block_1_narrow_text_block_content','1'),(1048,431,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(1049,431,'content_block_1_reverse_colors','0'),(1050,431,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(1051,431,'content_block_1_enable_background_image','0'),(1052,431,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(1053,431,'content_block_1_text_block_content_col_one','<h2 style=\"text-align: center;\">Private Groups and Teams</h2>\r\nIn the age of remote work and digital commerce, we make it easy to interact with family, friends, and coworkers. Meadowcroft offers a variety of virtual wine tasting experience packages to help you connect online.\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"#inquiries\">BOOK YOUR VIRTUAL WINE TASTING</a></p>\r\n&nbsp;'),(1054,431,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(1577,501,'inline_featured_image','0'),(1578,501,'_edit_lock','1684260455:2'),(1579,501,'_edit_last','3'),(1580,501,'content_block_0_text_block_columns','one'),(1581,501,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(1582,501,'content_block_0_narrow_text_block_content','0'),(1583,501,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(1584,501,'content_block_0_reverse_colors','0'),(1585,501,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(1586,501,'content_block_0_enable_background_image','0'),(1587,501,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(1588,501,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">Shop Wines</h1>\r\nEvery soil tells the story of its people, their place, and their culture. It is from this culture that springs creations, like wine.  Anthropology, agriculture, and alchemy combine to form the foundation of Tom’s work with wine. He constantly explores, creates, and brings to his customers the cultural heritage of European wine styles, while infusing his wines with the exuberance of California’s innovation in winemaking.'),(1589,501,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(1590,501,'content_block_1_product_row_number','4up'),(1591,501,'_content_block_1_product_row_number','field_5bc11c6da0d4f'),(1592,501,'content_block_1_data_collection_slug','wines'),(1593,501,'_content_block_1_data_collection_slug','field_5bc11ca9a0d50'),(1594,501,'content_block','a:2:{i:0;s:10:\"text_block\";i:1;s:18:\"product_collection\";}'),(1595,501,'_content_block','field_5bbe19a7efa09'),(1626,504,'inline_featured_image','0'),(1627,504,'_edit_lock','1707819922:5'),(1628,504,'_edit_last','5'),(1629,504,'content_block_0_text_block_columns','one'),(1630,504,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(1631,504,'content_block_0_narrow_text_block_content','0'),(1632,504,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(1633,504,'content_block_0_reverse_colors','0'),(1634,504,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(1635,504,'content_block_0_enable_background_image','0'),(1636,504,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(1637,504,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">Red Wines</h1>\r\n<p style=\"text-align: center;\">Meadowcroft is an innovative and sophisticated winery that combines the rich heritage of European viticulture with the vibrant freshness of California. By carefully sourcing the finest grapes from diverse vineyards across the state, Meadowcroft produces exceptional Red wines that reflect the distinct terroir and characteristics of each region.</p>'),(1638,504,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(1639,504,'content_block_1_product_row_number','4up'),(1640,504,'_content_block_1_product_row_number','field_5bc11c6da0d4f'),(1641,504,'content_block_1_data_collection_slug','red'),(1642,504,'_content_block_1_data_collection_slug','field_5bc11ca9a0d50'),(1655,504,'content_block','a:4:{i:0;s:10:\"text_block\";i:1;s:18:\"product_collection\";i:2;s:10:\"text_block\";i:3;s:4:\"faqs\";}'),(1656,504,'_content_block','field_5bbe19a7efa09'),(1666,506,'inline_featured_image','0'),(1667,506,'_edit_lock','1707820067:5'),(1668,506,'_edit_last','5'),(1669,506,'content_block_0_text_block_columns','one'),(1670,506,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(1671,506,'content_block_0_narrow_text_block_content','0'),(1672,506,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(1673,506,'content_block_0_reverse_colors','0'),(1674,506,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(1675,506,'content_block_0_enable_background_image','0'),(1676,506,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(1677,506,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">White Wines</h1>\r\n<p style=\"text-align: center;\">Tom Meadowcroft expertly curates an exquisite range of unique white wines, each sourced from carefully chosen vineyards across California. Together, they form a stellar collection of varietals that are both interesting and compelling.</p>'),(1678,506,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(1679,506,'content_block_1_product_row_number','4up'),(1680,506,'_content_block_1_product_row_number','field_5bc11c6da0d4f'),(1681,506,'content_block_1_data_collection_slug','white'),(1682,506,'_content_block_1_data_collection_slug','field_5bc11ca9a0d50'),(1695,506,'content_block','a:4:{i:0;s:10:\"text_block\";i:1;s:18:\"product_collection\";i:2;s:10:\"text_block\";i:3;s:4:\"faqs\";}'),(1696,506,'_content_block','field_5bbe19a7efa09'),(1706,508,'inline_featured_image','0'),(1707,508,'_edit_lock','1712018549:2'),(1708,508,'_edit_last','2'),(1709,508,'content_block','a:12:{i:0;s:10:\"text_block\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";i:3;s:10:\"text_block\";i:4;s:10:\"text_block\";i:5;s:10:\"text_block\";i:6;s:10:\"text_block\";i:7;s:10:\"text_block\";i:8;s:10:\"text_block\";i:9;s:10:\"text_block\";i:10;s:10:\"text_block\";i:11;s:10:\"text_block\";}'),(1710,508,'_content_block','field_5bbe19a7efa09'),(1711,508,'content_block_0_text_block_columns','one'),(1712,508,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(1713,508,'content_block_0_narrow_text_block_content','0'),(1714,508,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(1715,508,'content_block_0_reverse_colors','0'),(1716,508,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(1717,508,'content_block_0_enable_background_image','0'),(1718,508,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(1719,508,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">MEADOWCROFT TRADE AND MEDIA</h1>\r\n<p style=\"text-align: center;\">Download trade and media materials for Meadowcroft such as logos, bottle shots, and tech sheets.\r\nIf you don’t see what you need, feel free to <a href=\"mailto:tastingroom@meadowcroftwines.com\">email us</a>.</p>'),(1720,508,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(1746,443,'content_block_0_banner_full_width','1'),(1747,443,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(1748,443,'content_block_0_banner_size','long'),(1749,443,'_content_block_0_banner_size','field_5bbe232929ec9'),(1750,443,'content_block_0_add_parallax_effect','0'),(1751,443,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(1752,443,'content_block_0_add_veil_over_banner','1'),(1753,443,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(1754,443,'content_block_0_banner_content_position','centered'),(1755,443,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(1756,443,'content_block_0_banner_title','MEADOWCROFT WINE CLUB MEMBERSHIP'),(1757,443,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(1758,443,'content_block_0_banner_subtitle',''),(1759,443,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(1760,443,'content_block_0_banner_button_link','a:3:{s:5:\"title\";s:8:\"Join Now\";s:3:\"url\";s:5:\"#join\";s:6:\"target\";s:0:\"\";}'),(1761,443,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(1762,443,'content_block_0_banner_button_new_tab','0'),(1763,443,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(1764,443,'content_block_0_show_down_arrow','0'),(1765,443,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(1766,443,'content_block_0_banner_image','943'),(1767,443,'_content_block_0_banner_image','field_5bbe201718faf'),(1768,443,'content_block_0_banner_image_position','center center'),(1769,443,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(1770,443,'content_block_0_banner_image_mobile','943'),(1771,443,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(1772,443,'content_block_0_banner_image_mobile_position','center center'),(1773,443,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(1778,443,'content_block_1_text_block_columns','one'),(1779,443,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(1780,443,'content_block_1_narrow_text_block_content','0'),(1781,443,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(1782,443,'content_block_1_reverse_colors','0'),(1783,443,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(1784,443,'content_block_1_enable_background_image','0'),(1785,443,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(1786,443,'content_block_1_text_block_content_col_one','<h2 id=\"join\"></h2>\r\n<h2 style=\"text-align: center;\"><span class=\"h3\">BENEFITS OF MEADOWCROFT WINE-TASTING CLUB</span></h2>\r\n<p class=\"callout\" style=\"text-align: center;\">• FREE TO JOIN • COMPLIMENTARY TASTINGS FOR UP TO 4 PEOPLE • COMPLIMENTARY GLASS POURS • MEMBER PRICING FOR EVENTS •</p>\r\n<p class=\"callout\" style=\"text-align: center;\">• PRIORITY ACCESS TO WINES • SHIPPING DISCOUNTS • LOYALTY AND REFERRAL PROGRAM</p>\r\n<p style=\"text-align: center;\"><em>Our Bee Team is available to answer any questions about the Wine Club. Contact us at <a href=\"mailto:clubs@meadowcroftwines.com\">clubs@meadowcroftwines.com</a> or 707.559.0395</em></p>'),(1787,443,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(1788,443,'content_block_2_text_block_columns','two'),(1789,443,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(1790,443,'content_block_2_narrow_text_block_content','0'),(1791,443,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(1792,443,'content_block_2_reverse_colors','0'),(1793,443,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(1794,443,'content_block_2_enable_background_image','0'),(1795,443,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(1796,443,'content_block_2_text_block_content_col_one','<h3 style=\"text-align: center;\">THE\r\nHIGHLANDS\r\nCLUB</h3>\r\n\r\n<hr />\r\n<p style=\"text-align: center;\"><strong>4</strong>\r\nBOTTLES PER SHIPMENT</p>\r\n<p style=\"text-align: center;\"><strong>3</strong>\r\nSHIPMENTS PER YEAR (FEB, MAY &amp; OCT)</p>\r\n<p style=\"text-align: center;\"><strong>12</strong>\r\nBOTTLES TOTAL PER YEAR</p>\r\n<p style=\"text-align: center;\"><strong>20</strong>\r\n% WINE DISCOUNT</p>\r\n\r\n\r\n<hr />\r\n<p style=\"text-align: center;\">[club_button slug=\"highlands-wine-membership\"]</p>\r\n<p class=\"normal\">By joining the wine club, I agree to the one year membership commitment. I authorize Meadowcroft Wines to charge my card two weeks prior to shipping or pick up. The shipping carrier will require an adult signature (21 or older). I understand that if I choose to pick up and do not pick up within 30 days of release, I will be charged for shipping. If I choose to join the case club (Panorama Club) and do not select my wines within the time given, the wines will be selected for me.</p>'),(1797,443,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(1798,443,'content_block_2_text_block_content_col_two','<h3 style=\"text-align: center;\">THE\r\nPANORAMA\r\nCLUB</h3>\r\n\r\n<hr />\r\n<p style=\"text-align: center;\"><strong>12</strong>\r\nBOTTLES PER SHIPMENT</p>\r\n<p style=\"text-align: center;\"><strong>2</strong>\r\nSHIPMENTS PER YEAR (MAY &amp; OCT)</p>\r\n<p style=\"text-align: center;\"><strong>24</strong>\r\nBOTTLES TOTAL PER YEAR</p>\r\n<p style=\"text-align: center;\"><strong>25</strong>\r\n% WINE DISCOUNT</p>\r\n\r\n\r\n<hr />\r\n<p style=\"text-align: center;\">[club_button slug=\"panarama-club\"]</p>\r\n<p class=\"normal\">By joining the wine club, I agree to the one year membership commitment. I authorize Meadowcroft Wines to charge my card two weeks prior to shipping or pick up. The shipping carrier will require an adult signature (21 or older). I understand that if I choose to pick up and do not pick up within 30 days of release, I will be charged for shipping. If I do not select my wines within the time given, the wines will be selected for me.</p>'),(1799,443,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(1800,443,'content_block_3_text_block_columns','one'),(1801,443,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(1802,443,'content_block_3_narrow_text_block_content','0'),(1803,443,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(1804,443,'content_block_3_reverse_colors','1'),(1805,443,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(1806,443,'content_block_3_enable_background_image','1'),(1807,443,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(1808,443,'content_block_3_text_block_content_col_one','&nbsp;\r\n&nbsp;\r\n[slick-slider category=\"30\" loop=\"true\" hover_pause=\"true\" dots=\"false\" arrows=\"false\" show_content=\"true\" show_title=\"false\" autoplay_interval=\"4000\" speed=\"300\" extra_class=\"wine-club\" design=\"design-5\"]\r\n&nbsp;\r\n&nbsp;'),(1809,443,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(1810,443,'content_block_3_text_block_content_col_two','[c7-subscribe-with-name]'),(1811,443,'_content_block_3_text_block_content_col_two','field_5bbe31593920e'),(1846,444,'content_block_1_text_block_columns','one'),(1847,444,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(1848,444,'content_block_1_narrow_text_block_content','1'),(1849,444,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(1850,444,'content_block_1_reverse_colors','0'),(1851,444,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(1852,444,'content_block_1_enable_background_image','0'),(1853,444,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(1854,444,'content_block_1_text_block_content_col_one','&nbsp;\r\n<p class=\"metatitle\" style=\"text-align: center;\">About</p>\r\n\r\n<h2 style=\"text-align: center;\">MEADOWCROFT WINES\r\nBY TOM MEADOWCROFT</h2>\r\n<p style=\"text-align: center;\">Meadowcroft is the namesake of Winegrower Tom Meadowcroft. The meaning of Meadowcroft is a fertile field or meadow and croft refers to a cultivated area that has been nurtured over time. The honeybee on the label symbolizes this conscientious work and the process of transformation from wine grapes into outstanding wine.</p>\r\n&nbsp;'),(1855,444,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(1858,516,'inline_featured_image','0'),(1859,516,'_edit_lock','1668534709:2'),(1860,516,'_edit_last','2'),(1861,516,'content_block','a:9:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:6:\"banner\";i:3;s:10:\"text_block\";i:4;s:6:\"banner\";i:5;s:10:\"text_block\";i:6;s:6:\"banner\";i:7;s:10:\"text_block\";i:8;s:10:\"text_block\";}'),(1862,516,'_content_block','field_5bbe19a7efa09'),(1863,517,'inline_featured_image','0'),(1864,517,'_edit_lock','1649101251:2'),(1865,517,'_edit_last','2'),(1866,517,'content_block','a:4:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:12:\"team_members\";i:3;s:10:\"text_block\";}'),(1867,517,'_content_block','field_5bbe19a7efa09'),(1868,518,'inline_featured_image','0'),(1869,518,'_edit_lock','1670627421:2'),(1870,518,'_edit_last','2'),(1871,518,'content_block','a:1:{i:0;s:10:\"text_block\";}'),(1872,518,'_content_block','field_5bbe19a7efa09'),(1976,516,'content_block_0_banner_full_width','1'),(1977,516,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(1978,516,'content_block_0_banner_size','long'),(1979,516,'_content_block_0_banner_size','field_5bbe232929ec9'),(1980,516,'content_block_0_add_parallax_effect','0'),(1981,516,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(1982,516,'content_block_0_add_veil_over_banner','1'),(1983,516,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(1984,516,'content_block_0_banner_content_position','centered'),(1985,516,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(1986,516,'content_block_0_banner_title','<h1 style=\"color: #ffffff;\">OUR VINEYARDS</p>'),(1987,516,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(1988,516,'content_block_0_banner_subtitle',''),(1989,516,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(1990,516,'content_block_0_banner_button_link',''),(1991,516,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(1992,516,'content_block_0_banner_button_new_tab','0'),(1993,516,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(1994,516,'content_block_0_show_down_arrow','0'),(1995,516,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(1996,516,'content_block_0_banner_image','851'),(1997,516,'_content_block_0_banner_image','field_5bbe201718faf'),(1998,516,'content_block_0_banner_image_position','center center'),(1999,516,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(2000,516,'content_block_0_banner_image_mobile','852'),(2001,516,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(2002,516,'content_block_0_banner_image_mobile_position','center center'),(2003,516,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(2004,516,'content_block_1_text_block_columns','one'),(2005,516,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(2006,516,'content_block_1_narrow_text_block_content','0'),(2007,516,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(2008,516,'content_block_1_reverse_colors','0'),(2009,516,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(2010,516,'content_block_1_enable_background_image','0'),(2011,516,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(2012,516,'content_block_1_text_block_content_col_one','<h2 style=\"text-align: center;\">H2 Title</h2>\r\n<p style=\"text-align: left;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin vitae interdum sapien, in maximus risus. Quisque at pellentesque felis, eu blandit sapien. Fusce luctus magna purus, vitae fermentum erat vulputate a. Suspendisse euismod sed nunc et consequat. Fusce hendrerit scelerisque tortor quis vehicula. Donec et consectetur odio, sed ornare leo. Aliquam dapibus, felis vitae placerat pretium, nibh justo eleifend nunc, id fringilla enim elit ac neque. Donec luctus arcu sit amet magna tempor tristique. Pellentesque pulvinar ut dui sit amet molestie.</p>'),(2013,516,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(2014,516,'content_block_2_banner_full_width','1'),(2015,516,'_content_block_2_banner_full_width','field_5bbe19c8efa0a'),(2016,516,'content_block_2_banner_size','long'),(2017,516,'_content_block_2_banner_size','field_5bbe232929ec9'),(2018,516,'content_block_2_add_parallax_effect','1'),(2019,516,'_content_block_2_add_parallax_effect','field_5bbe219ccb6a9'),(2020,516,'content_block_2_add_veil_over_banner','0'),(2021,516,'_content_block_2_add_veil_over_banner','field_5bbe333f39212'),(2022,516,'content_block_2_banner_content_position','centered'),(2023,516,'_content_block_2_banner_content_position','field_5bbe259b02b62'),(2024,516,'content_block_2_banner_title',''),(2025,516,'_content_block_2_banner_title','field_5bbe1b78efa0b'),(2026,516,'content_block_2_banner_subtitle',''),(2027,516,'_content_block_2_banner_subtitle','field_5bbe1b83efa0c'),(2028,516,'content_block_2_banner_button_link',''),(2029,516,'_content_block_2_banner_button_link','field_5bbe1b8cefa0d'),(2030,516,'content_block_2_banner_button_new_tab','0'),(2031,516,'_content_block_2_banner_button_new_tab','field_5bbe1e6d18fae'),(2032,516,'content_block_2_show_down_arrow','0'),(2033,516,'_content_block_2_show_down_arrow','field_5bbe24f721165'),(2034,516,'content_block_2_banner_image','484'),(2035,516,'_content_block_2_banner_image','field_5bbe201718faf'),(2036,516,'content_block_2_banner_image_position','center center'),(2037,516,'_content_block_2_banner_image_position','field_5bbe278f9fb97'),(2038,516,'content_block_2_banner_image_mobile','485'),(2039,516,'_content_block_2_banner_image_mobile','field_5bbe202818fb0'),(2040,516,'content_block_2_banner_image_mobile_position','center center'),(2041,516,'_content_block_2_banner_image_mobile_position','field_5bbe279c9fb98'),(2042,516,'content_block_3_text_block_columns','one'),(2043,516,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(2044,516,'content_block_3_narrow_text_block_content','0'),(2045,516,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(2046,516,'content_block_3_reverse_colors','0'),(2047,516,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(2048,516,'content_block_3_enable_background_image','0'),(2049,516,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(2050,516,'content_block_3_text_block_content_col_one','<h2 style=\"text-align: center;\">Vineyard 1</h2>\r\n<strong>Location:</strong> Elevated bench on the west side of the valley in the area\'s best location. Adjacent to the winery and home vineyards and Home Vineyards.\r\n\r\n<strong>Vines:</strong> Planted in 1982 with of Riesling, of Kerner, and of Cabernert. The Cabernet and some of the Riesling were recently replaced with Chardonnay, Gamay, Syrah, and Viognier\r\n\r\n<strong>Soil:</strong> Gravel and sand. Despite the proximity to both the winery and home vineyard soil types are completely different.'),(2051,516,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(2052,516,'content_block_4_banner_full_width','1'),(2053,516,'_content_block_4_banner_full_width','field_5bbe19c8efa0a'),(2054,516,'content_block_4_banner_size','long'),(2055,516,'_content_block_4_banner_size','field_5bbe232929ec9'),(2056,516,'content_block_4_add_parallax_effect','1'),(2057,516,'_content_block_4_add_parallax_effect','field_5bbe219ccb6a9'),(2058,516,'content_block_4_add_veil_over_banner','0'),(2059,516,'_content_block_4_add_veil_over_banner','field_5bbe333f39212'),(2060,516,'content_block_4_banner_content_position','centered'),(2061,516,'_content_block_4_banner_content_position','field_5bbe259b02b62'),(2062,516,'content_block_4_banner_title',''),(2063,516,'_content_block_4_banner_title','field_5bbe1b78efa0b'),(2064,516,'content_block_4_banner_subtitle',''),(2065,516,'_content_block_4_banner_subtitle','field_5bbe1b83efa0c'),(2066,516,'content_block_4_banner_button_link',''),(2067,516,'_content_block_4_banner_button_link','field_5bbe1b8cefa0d'),(2068,516,'content_block_4_banner_button_new_tab','0'),(2069,516,'_content_block_4_banner_button_new_tab','field_5bbe1e6d18fae'),(2070,516,'content_block_4_show_down_arrow','0'),(2071,516,'_content_block_4_show_down_arrow','field_5bbe24f721165'),(2072,516,'content_block_4_banner_image','486'),(2073,516,'_content_block_4_banner_image','field_5bbe201718faf'),(2074,516,'content_block_4_banner_image_position','center center'),(2075,516,'_content_block_4_banner_image_position','field_5bbe278f9fb97'),(2076,516,'content_block_4_banner_image_mobile','487'),(2077,516,'_content_block_4_banner_image_mobile','field_5bbe202818fb0'),(2078,516,'content_block_4_banner_image_mobile_position','center center'),(2079,516,'_content_block_4_banner_image_mobile_position','field_5bbe279c9fb98'),(2080,516,'content_block_5_text_block_columns','one'),(2081,516,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(2082,516,'content_block_5_narrow_text_block_content','0'),(2083,516,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(2084,516,'content_block_5_reverse_colors','0'),(2085,516,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(2086,516,'content_block_5_enable_background_image','0'),(2087,516,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(2088,516,'content_block_5_text_block_content_col_one','<h2 style=\"text-align: center;\">Vineyard 2</h2>\r\n<strong>Location:</strong> Located on the west side of the valley, in the area\'s best region. Incorporates two distinct vineyard sites, one on the west side and the other on land that slopes toward the valley bottom.\r\n\r\n<strong>Vines:</strong> Planted in 1999 this vineyard includes approximately of Merlot, each of Pinot Noir and Pinot Gris, and of Gewurztraminer. A little more than half an acre of Syrah was added in the spring of 2014.\r\n\r\n<strong>Soil:</strong> Today we own and farm a total of about and also relies on long-term contracts with some of the areas top grape growers. The winery takes great pride in its positive reputation amongst grape growers as an excellent winery partner. The respect of the growers is reflected in the quality of the fruit that they deliver to us.'),(2089,516,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(2090,516,'content_block_6_banner_full_width','1'),(2091,516,'_content_block_6_banner_full_width','field_5bbe19c8efa0a'),(2092,516,'content_block_6_banner_size','long'),(2093,516,'_content_block_6_banner_size','field_5bbe232929ec9'),(2094,516,'content_block_6_add_parallax_effect','1'),(2095,516,'_content_block_6_add_parallax_effect','field_5bbe219ccb6a9'),(2096,516,'content_block_6_add_veil_over_banner','0'),(2097,516,'_content_block_6_add_veil_over_banner','field_5bbe333f39212'),(2098,516,'content_block_6_banner_content_position','centered'),(2099,516,'_content_block_6_banner_content_position','field_5bbe259b02b62'),(2100,516,'content_block_6_banner_title',''),(2101,516,'_content_block_6_banner_title','field_5bbe1b78efa0b'),(2102,516,'content_block_6_banner_subtitle',''),(2103,516,'_content_block_6_banner_subtitle','field_5bbe1b83efa0c'),(2104,516,'content_block_6_banner_button_link',''),(2105,516,'_content_block_6_banner_button_link','field_5bbe1b8cefa0d'),(2106,516,'content_block_6_banner_button_new_tab','0'),(2107,516,'_content_block_6_banner_button_new_tab','field_5bbe1e6d18fae'),(2108,516,'content_block_6_show_down_arrow','0'),(2109,516,'_content_block_6_show_down_arrow','field_5bbe24f721165'),(2110,516,'content_block_6_banner_image','488'),(2111,516,'_content_block_6_banner_image','field_5bbe201718faf'),(2112,516,'content_block_6_banner_image_position','center center'),(2113,516,'_content_block_6_banner_image_position','field_5bbe278f9fb97'),(2114,516,'content_block_6_banner_image_mobile','489'),(2115,516,'_content_block_6_banner_image_mobile','field_5bbe202818fb0'),(2116,516,'content_block_6_banner_image_mobile_position','center center'),(2117,516,'_content_block_6_banner_image_mobile_position','field_5bbe279c9fb98'),(2118,516,'content_block_7_text_block_columns','one'),(2119,516,'_content_block_7_text_block_columns','field_5bbe2f81a4de0'),(2120,516,'content_block_7_narrow_text_block_content','0'),(2121,516,'_content_block_7_narrow_text_block_content','field_5bbe342e08360'),(2122,516,'content_block_7_reverse_colors','0'),(2123,516,'_content_block_7_reverse_colors','field_5bbe3027a4de1'),(2124,516,'content_block_7_enable_background_image','0'),(2125,516,'_content_block_7_enable_background_image','field_5bbe30b1a4de2'),(2126,516,'content_block_7_text_block_content_col_one','<h2 style=\"text-align: center;\">Vineyard 3</h2>\r\n<strong>Location:</strong> Elevated bench up against the mountain on the west side of the valley in the area’s best region. All-day and late-day sun exposure. Adjacent to the home vineyard.\r\n\r\n<strong>Vines:</strong> First planted in 1986 to Chardonnay, Pinot Noir and Merlot. Syrah was added in 2005.\r\n\r\n<strong>Soil:</strong> It’s not! It is the usual stuff vines really love: hard and rocky with fine clay interspersed. This clay results in a high moisture-holding capacity, giving the vines a natural and constant reservoir of nourishing moisture and nutrients.\r\n&nbsp;'),(2127,516,'_content_block_7_text_block_content_col_one','field_5bbe313b3920d'),(2128,516,'content_block_8_text_block_columns','two'),(2129,516,'_content_block_8_text_block_columns','field_5bbe2f81a4de0'),(2130,516,'content_block_8_narrow_text_block_content','1'),(2131,516,'_content_block_8_narrow_text_block_content','field_5bbe342e08360'),(2132,516,'content_block_8_reverse_colors','1'),(2133,516,'_content_block_8_reverse_colors','field_5bbe3027a4de1'),(2134,516,'content_block_8_enable_background_image','0'),(2135,516,'_content_block_8_enable_background_image','field_5bbe30b1a4de2'),(2136,516,'content_block_8_text_block_content_col_one','&nbsp;\r\n<p class=\"testimonial\" style=\"text-align: center;\">STAY IN TOUCH</p>'),(2137,516,'_content_block_8_text_block_content_col_one','field_5bbe313b3920d'),(2138,516,'content_block_8_text_block_content_col_two','[c7-subscribe]'),(2139,516,'_content_block_8_text_block_content_col_two','field_5bbe31593920e'),(2152,517,'content_block_0_banner_full_width','1'),(2153,517,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(2154,517,'content_block_0_banner_size','short'),(2155,517,'_content_block_0_banner_size','field_5bbe232929ec9'),(2156,517,'content_block_0_add_parallax_effect','0'),(2157,517,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(2158,517,'content_block_0_add_veil_over_banner','0'),(2159,517,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(2160,517,'content_block_0_banner_content_position','centered'),(2161,517,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(2162,517,'content_block_0_banner_title','A great group'),(2163,517,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(2164,517,'content_block_0_banner_subtitle','Crafting an exceptional wine experience!'),(2165,517,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(2166,517,'content_block_0_banner_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:56:\"https://www.meadowcroftwines.com/wines/current-releases/\";s:6:\"target\";s:0:\"\";}'),(2167,517,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(2168,517,'content_block_0_banner_button_text','Current Releases'),(2169,517,'_content_block_0_banner_button_text','field_5bbe1ba0efa0e'),(2170,517,'content_block_0_banner_button_new_tab','0'),(2171,517,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(2172,517,'content_block_0_show_down_arrow','1'),(2173,517,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(2174,517,'content_block_0_banner_image','473'),(2175,517,'_content_block_0_banner_image','field_5bbe201718faf'),(2176,517,'content_block_0_banner_image_position','center center'),(2177,517,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(2178,517,'content_block_0_banner_image_mobile','474'),(2179,517,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(2180,517,'content_block_0_banner_image_mobile_position','center center'),(2181,517,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(2182,517,'content_block_1_text_block_columns','one'),(2183,517,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(2184,517,'content_block_1_narrow_text_block_content','0'),(2185,517,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(2186,517,'content_block_1_reverse_colors','0'),(2187,517,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(2188,517,'content_block_1_enable_background_image','0'),(2189,517,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(2190,517,'content_block_1_text_block_content_col_one','<h2 style=\"text-align: center;\">Our Team</h2>\r\n<blockquote style=\"text-align: center;\">I try to create wines that suit our climate and our way of life - wines to drink with the food we grow, make and eat.</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">Spectra winery was realised to focus on our passion for the region and its ability to produce dry - grown and environmentally sustainable wine. Recently a new home was established on our holistic philosophy to winemaking which starts with climate, empahasises the importance on the vineyard, as well as wine\'s relation to the food we love to grow, cook, and eat.</p>'),(2191,517,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(2192,517,'content_block_3_text_block_columns','two'),(2193,517,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(2194,517,'content_block_3_narrow_text_block_content','0'),(2195,517,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(2196,517,'content_block_3_reverse_colors','1'),(2197,517,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(2198,517,'content_block_3_enable_background_image','0'),(2199,517,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(2200,517,'content_block_3_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(2201,517,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(2202,517,'content_block_3_text_block_content_col_two','[c7-subscribe-with-name]'),(2203,517,'_content_block_3_text_block_content_col_two','field_5bbe31593920e'),(2411,351,'_edit_lock','1541615547:2'),(2527,337,'_edit_lock','1541098004:2'),(2618,351,'ingredients_1_ingredient','2 cups sugar'),(2619,351,'_ingredients_1_ingredient','field_5bc4e7354c204'),(2620,351,'directions_1_direction','2. Beat eggs, sugar, softened margarine, flour, chocolate chunks, and 3/4 cups cocoa powder together with an electric hand mixer in a large mixing bowl until smooth. Fold raspberries gently into the batter; spoon into the prepared baking pan.'),(2621,351,'_directions_1_direction','field_5bc4e93a4c211'),(2622,554,'_edit_lock','1578439390:2'),(2623,554,'_edit_last','2'),(2624,351,'ingredients_2_ingredient','1 cup margarine, softened'),(2625,351,'_ingredients_2_ingredient','field_5bc4e7354c204'),(2626,351,'ingredients_3_ingredient','1 cup self rising flour '),(2627,351,'_ingredients_3_ingredient','field_5bc4e7354c204'),(2628,351,'ingredients_4_ingredient','1 cup semi-sweet chocolate chips '),(2629,351,'_ingredients_4_ingredient','field_5bc4e7354c204'),(2630,351,'ingredients_5_ingredient','3/4 cup cocoa powder '),(2631,351,'_ingredients_5_ingredient','field_5bc4e7354c204'),(2632,351,'ingredients_6_ingredient','1 cup fresh raspberries'),(2633,351,'_ingredients_6_ingredient','field_5bc4e7354c204'),(2634,351,'ingredients_7_ingredient','Edible gold sparkles as needed '),(2635,351,'_ingredients_7_ingredient','field_5bc4e7354c204'),(2638,351,'directions_2_direction','Bake in the preheated oven until a toothpick inserted into the center comes out clean and the top is a bit crusty, 40-45 minutes. Add sprinkles.'),(2639,351,'_directions_2_direction','field_5bc4e93a4c211'),(2640,554,'intro','An instant summer classic!'),(2641,554,'_intro','field_5bc4e7874c207'),(2642,554,'recommended_wine_pairings',''),(2643,554,'_recommended_wine_pairings','field_5bc4e85d4c20c'),(2644,554,'ingredients_0_ingredient','1/2 cup lemon juice '),(2645,554,'_ingredients_0_ingredient','field_5bc4e7354c204'),(2646,554,'ingredients_1_ingredient','1/2 cup soy sauce'),(2647,554,'_ingredients_1_ingredient','field_5bc4e7354c204'),(2648,554,'ingredients_2_ingredient','1/2 teaspoon ground ginger'),(2649,554,'_ingredients_2_ingredient','field_5bc4e7354c204'),(2650,554,'ingredients_3_ingredient','1 clove minced garlic'),(2651,554,'_ingredients_3_ingredient','field_5bc4e7354c204'),(2652,554,'ingredients_4_ingredient','1/4 teaspoon ground black pepper '),(2653,554,'_ingredients_4_ingredient','field_5bc4e7354c204'),(2654,554,'ingredients_5_ingredient','6 ounce skinless, boneless chicken breast '),(2655,554,'_ingredients_5_ingredient','field_5bc4e7354c204'),(2662,554,'ingredients','6'),(2663,554,'_ingredients','field_5bc4e7264c203'),(2664,554,'directions_0_direction','1. Stir together the lemon juice, soy sauce, ginger, garlic, and black pepper in a bowl.'),(2665,554,'_directions_0_direction','field_5bc4e93a4c211'),(2666,554,'directions_1_direction','2. Pour the mixture in a large, resealable plastic bag and add the chicken breast. Massage to evenly coat the chicken. Place in the fridge to marinate for at least 30 minutes, or up to 24 hours.'),(2667,554,'_directions_1_direction','field_5bc4e93a4c211'),(2668,554,'directions_2_direction','Preheat the BBQ for medium-high heat and lightly oil the grill. '),(2669,554,'_directions_2_direction','field_5bc4e93a4c211'),(2670,554,'directions','4'),(2671,554,'_directions','field_5bc4e92e4c210'),(2672,554,'difficulty','Easy'),(2673,554,'_difficulty','field_5bc4e79c4c208'),(2674,554,'prep_time','10'),(2675,554,'_prep_time','field_5bc5039498f67'),(2676,554,'cooking_time','14'),(2677,554,'_cooking_time','field_5bc4e7b84c209'),(2678,554,'measurement_system','Imperial (US)'),(2679,554,'_measurement_system','field_5bc4e7e04c20a'),(2680,554,'cuisine_type',''),(2681,554,'_cuisine_type','field_5bc5062298f68'),(2682,554,'keywords',''),(2683,554,'_keywords','field_5bc5063798f69'),(2684,554,'serving_size',''),(2685,554,'_serving_size','field_5bc4e8134c20b'),(2686,554,'preview_photo','592'),(2687,554,'_preview_photo','field_5bc4ea4909280'),(2688,554,'featured_photo','593'),(2689,554,'_featured_photo','field_5bc4ea170927f'),(2694,445,'content_block_0_banner_full_width','1'),(2695,445,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(2696,445,'content_block_0_banner_size','normal'),(2697,445,'_content_block_0_banner_size','field_5bbe232929ec9'),(2698,445,'content_block_0_add_parallax_effect','0'),(2699,445,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(2700,445,'content_block_0_add_veil_over_banner','1'),(2701,445,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(2702,445,'content_block_0_banner_content_position','centered'),(2703,445,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(2704,445,'content_block_0_banner_title','Visit Meadowcroft Wines'),(2705,445,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(2706,445,'content_block_0_banner_subtitle',''),(2707,445,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(2708,445,'content_block_0_banner_button_link',''),(2709,445,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(2710,445,'content_block_0_banner_button_new_tab','0'),(2711,445,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(2712,445,'content_block_0_show_down_arrow','0'),(2713,445,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(2714,445,'content_block_0_banner_image','881'),(2715,445,'_content_block_0_banner_image','field_5bbe201718faf'),(2716,445,'content_block_0_banner_image_position','center center'),(2717,445,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(2718,445,'content_block_0_banner_image_mobile','882'),(2719,445,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(2720,445,'content_block_0_banner_image_mobile_position','center center'),(2721,445,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(2760,446,'content_block_1_text_block_columns','one'),(2761,446,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(2762,446,'content_block_1_narrow_text_block_content','0'),(2763,446,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(2764,446,'content_block_1_reverse_colors','0'),(2765,446,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(2766,446,'content_block_1_enable_background_image','0'),(2767,446,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(2768,446,'content_block_1_text_block_content_col_one','<h2 style=\"text-align: center;\">Contact Us</h2>\r\n<p style=\"text-align: center;\">We invite you to visit us to taste our current wines in our open, scenic setting.\r\nSpectra is conveniently located minutes from both downtown the valley.</p>\r\n\r\n\r\n<hr />'),(2769,446,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(2770,446,'content_block_2_text_block_columns','two'),(2771,446,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(2772,446,'content_block_2_narrow_text_block_content','0'),(2773,446,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(2774,446,'content_block_2_reverse_colors','0'),(2775,446,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(2776,446,'content_block_2_enable_background_image','0'),(2777,446,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(2778,446,'content_block_2_text_block_content_col_one','<h4>Visting Hours</h4>\r\nWe are open everyday from 10am to 6pm\r\n\r\nTastings are available between 10am and 3pm\r\n<strong>$20 per person</strong>.\r\n\r\nTours and Tastings are available at 10am, 1pm, and 3pm\r\n<strong>$85 per person</strong>.\r\n\r\nFor large parties (10 or more) or special requests, please contact us directly at <a href=\"tel:707-576-8080\">(707) 576-8080</a> or <a href=\"mailto: orders@spectrawinery.com\">orders@spectrawinery.com</a>.\r\n\r\nSpectra Winery\r\n9999 The Best Street\r\nSan Francisco, CA 94016\r\n(888) 888-8080'),(2779,446,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(2780,446,'content_block_2_text_block_content_col_two','[c7_form form-code=\"contact-us\"]'),(2781,446,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(2782,446,'content_block_3_text_block_columns','two'),(2783,446,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(2784,446,'content_block_3_narrow_text_block_content','0'),(2785,446,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(2786,446,'content_block_3_reverse_colors','1'),(2787,446,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(2788,446,'content_block_3_enable_background_image','0'),(2789,446,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(2790,446,'content_block_3_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(2791,446,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(2792,446,'content_block_3_text_block_content_col_two','[c7-subscribe-with-name]'),(2793,446,'_content_block_3_text_block_content_col_two','field_5bbe31593920e'),(2939,567,'inline_featured_image','0'),(2940,567,'_edit_lock','1681131211:5'),(2941,567,'_edit_last','5'),(2942,567,'content_block_0_text_block_columns','one'),(2943,567,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(2944,567,'content_block_0_narrow_text_block_content','0'),(2945,567,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(2946,567,'content_block_0_reverse_colors','0'),(2947,567,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(2948,567,'content_block_0_enable_background_image','0'),(2949,567,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(2950,567,'content_block_0_text_block_content_col_one','[c7_content]'),(2951,567,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(2952,567,'content_block','a:1:{i:0;s:10:\"text_block\";}'),(2953,567,'_content_block','field_5bbe19a7efa09'),(3139,504,'_wp_page_template','default'),(3140,508,'_wp_page_template','default'),(3141,501,'_wp_page_template','default'),(3142,506,'_wp_page_template','default'),(3373,554,'directions_3_direction','Remove chicken from marinade bag and place it on the preheated grill. Cook until chicken is no longer pink and juices run clear - 7-9 min on each side. '),(3374,554,'_directions_3_direction','field_5bc4e93a4c211'),(3375,351,'directions_3_direction','Let cool completely before cutting.'),(3376,351,'_directions_3_direction','field_5bc4e93a4c211'),(3377,337,'_wp_old_slug','chipotle-lime-guacamole'),(3378,337,'ingredients_2_ingredient','6 cups peeled and cubed butternut squash'),(3379,337,'_ingredients_2_ingredient','field_5bc4e7354c204'),(3380,337,'ingredients_3_ingredient','3 1/2 cups chicken broth'),(3381,337,'_ingredients_3_ingredient','field_5bc4e7354c204'),(3382,337,'ingredients_4_ingredient','1/2 teaspoon dried majoram '),(3383,337,'_ingredients_4_ingredient','field_5bc4e7354c204'),(3384,337,'ingredients_5_ingredient','1/4 teaspoon ground black pepper '),(3385,337,'_ingredients_5_ingredient','field_5bc4e7354c204'),(3386,337,'ingredients_6_ingredient','1/4 teaspoon ground chilli powder '),(3387,337,'_ingredients_6_ingredient','field_5bc4e7354c204'),(3388,337,'ingredients_7_ingredient','2 (8 ounce) packages cream cheese'),(3389,337,'_ingredients_7_ingredient','field_5bc4e7354c204'),(3390,337,'ingredients_8_ingredient','Pumpkin seeds '),(3391,337,'_ingredients_8_ingredient','field_5bc4e7354c204'),(3392,337,'directions_2_direction','Add pumpkin seeds for garnish'),(3393,337,'_directions_2_direction','field_5bc4e93a4c211'),(3414,518,'_wp_page_template','default'),(3427,554,'_wp_old_slug','recipe-title'),(3429,517,'_wp_page_template','default'),(3437,444,'_wp_page_template','default'),(3449,447,'_wp_page_template','default'),(3450,447,'content_block_0_text_block_columns','one'),(3451,447,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(3452,447,'content_block_0_narrow_text_block_content','0'),(3453,447,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(3454,447,'content_block_0_reverse_colors','0'),(3455,447,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(3456,447,'content_block_0_enable_background_image','0'),(3457,447,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(3458,447,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">SHIPPING POLICIES</h1>\r\n<ul>\r\n 	<li>Wine must be delivered to an address where an individual of at least 21 years of age is available to sign for wines during regular business hours.</li>\r\n 	<li>Delivery carrier (UPS ) will make up to 3 delivery attempts before your order is returned to the winery</li>\r\n 	<li>Expedited packages are only delivered Monday through Friday.</li>\r\n 	<li>Reroutes will incur an additional fee</li>\r\n</ul>\r\nMeadowcroft Wines uses the best method shipping platform to utilize the most economical, efficient, and quality-conscious shipment of wine to our customers. We ship on Mondays for most orders and will delay shipments to avoid temperature extremes. If your order needs to arrive by a particular date, such as for a gift or prior to travel, please call us directly. We charge our customers only what it costs us to have your wine packed and shipped to you safely and legally.\r\n\r\nAll wine is sold in California and title passes to the buyer in California. We make no representation as to the legal right of anyone to ship or import wines into any state outside of California. By placing an order with us, you authorize us to release your wine to a third party carrier who will deliver your order to you.\r\n\r\nWe strongly recommend delivery of wine shipments to a business, rather than a home address. Shipment of wine requires an adult signature. If an adult (21 years or older with proper identification of age) is not available to receive this package, additional attempts to deliver will be made. If these attempts are unsuccessful, your order will be returned to the distribution center it originated from, resulting in additional shipping costs.\r\n<h2>ADDITIONAL SHIPPING FAQ</h2>\r\n<ul>\r\n 	<li><strong>TAX</strong> – Tax varies by address zip code and will be calculated during checkout.</li>\r\n 	<li><strong>TRACKING NUMBERS &amp; SHIPPING CONFIRMATION</strong> – Once your package ships, you will receive an email confirmation with your tracking number. Please note: Due to state laws, tracking numbers to New Jersey will not be activated until the wine reaches the state line. Once scanned in at your local UPS facility, your delivery information will be available.</li>\r\n 	<li><strong>STATES WHERE WINE CANNOT BE DELIVERED</strong> – Due to state laws we are unable to ship wine to AL, AR, DE, MS, RI, and UT. If you live in these states you can still send wine as a gift to an eligible state! We are also <strong>unable to expedite shipping</strong> to NJ due to laws in that state.</li>\r\n 	<li><strong>OVER 21 REQUIREMENTS</strong> – Both the buyer and recipient must be 21 years or older with verification during purchase and upon receipt.</li>\r\n 	<li><strong>FEDERAL AND STATE REGULATIONS – ID’S AND DATE OF BIRTH</strong> – Currently, regulatory compliance with state and federal law requires us to keep a valid identification number or date of birth on file for you (driver’s license, passport, or military identification number) as proof of your legal age.</li>\r\n</ul>'),(3459,447,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(3460,410,'_edit_lock','1707395228:5'),(3461,410,'content_block_0_text_block_columns','one'),(3462,410,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(3463,410,'content_block_0_narrow_text_block_content','1'),(3464,410,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(3465,410,'content_block_0_reverse_colors','0'),(3466,410,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(3467,410,'content_block_0_enable_background_image','0'),(3468,410,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(3469,410,'content_block_0_text_block_content_col_one','<article class=\"narrow-content-wrapper group\">\r\n<h1>Privacy Policy</h1>\r\nProtecting your privacy is important to us. We hope the following statement will help you understand how we collect, use and safeguard the personal information you provide to us on our site.\r\n<h3>I. What kind of information do we collect from you when you visit our site?</h3>\r\nWhen you visit <strong>(Your Company Name)</strong>.com, our stats package from Google collects some basic information about your browser. Examples are things like what type of browser and operating system are you using; how long did you stay on our site; what pages did you look at. This helps us understand how visitors browse our site, so that we can make their shopping experience better.\r\n\r\nWe also collect personal information about you when you check out of our store such as your name, address, postal code, phone number, etc. We need this information to process payment and ship merchandise to you.\r\n<h3>II. Sharing of personal information - we don\'t do it.</h3>\r\nUnder no circumstances will we share any personal information that we collect with any third parties or web sites. All the information you give us is completely private and used solely for order processing and shipping. If you give us permission to send you marketing emails then we use your email for that purpose, but never does that email get sold or distributed to any other web site or list.\r\n<h3>III. Newsletter Opt-Out.</h3>\r\nIf you have chosen to opt into our newsletter or marketing emails and decide to opt out, we have a simple unsubscribe form that will let you get off our email list. Also, under the member area, you will find a simple form to unsubscribe.\r\n<h3>IV. Consumer inquiries and privacy.</h3>\r\nIf you have any questions about your privacy, or want to make changes to your profile, or get off our marketing list, simply send us an email.\r\n<h3>V. Protecting your information.</h3>\r\nAll the payment information we collect is done so under SSL - a standard internet security measure. Any data that we store about you is kept behind a secure firewall in our database and is not accessible to the public in any way.\r\n</article>'),(3470,410,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(3471,449,'_wp_page_template','default'),(3472,449,'content_block_0_text_block_columns','one'),(3473,449,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(3474,449,'content_block_0_narrow_text_block_content','0'),(3475,449,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(3476,449,'content_block_0_reverse_colors','0'),(3477,449,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(3478,449,'content_block_0_enable_background_image','0'),(3479,449,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(3480,449,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">UPDATES FROM MEADOWCROFT WINES</h1>\r\n<h2 class=\"metatitle\" style=\"text-align: center;\">STAY UP TO DATE WITH OUR QUARTERLY NEWSLETTERS</h2>'),(3481,449,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(3488,567,'_wp_page_template','page-product.php'),(3489,446,'_wp_page_template','default'),(3677,504,'content_block_0_custom_css_class',''),(3678,504,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(3679,504,'content_block_1_custom_css_class',''),(3680,504,'_content_block_1_custom_css_class','field_5bc11ca9a0d50-cc'),(3681,504,'content_block_1_product_display_teaser','0'),(3682,504,'_content_block_1_product_display_teaser','field_5d114505e6923'),(3683,504,'content_block_1_product_display_feature','0'),(3684,504,'_content_block_1_product_display_feature','field_5d1144d5e6922'),(3689,567,'content_block_0_custom_css_class',''),(3690,567,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(3718,501,'content_block_0_custom_css_class',''),(3719,501,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(3720,501,'content_block_1_custom_css_class',''),(3721,501,'_content_block_1_custom_css_class','field_1cce1w78efa7b'),(3722,501,'content_block_1_product_display_teaser','0'),(3723,501,'_content_block_1_product_display_teaser','field_5d114505e6923'),(3724,501,'content_block_1_product_display_feature','0'),(3725,501,'_content_block_1_product_display_feature','field_5d1144d5e6922'),(4001,412,'content_block_2_custom_css_class',''),(4002,412,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(4005,412,'_yoast_wpseo_content_score','60'),(4006,637,'inline_featured_image','0'),(4007,637,'_edit_last','2'),(4008,637,'_wp_page_template','default'),(4009,637,'content_block',''),(4010,637,'_content_block','field_5bbe19a7efa09'),(4011,637,'_yoast_wpseo_content_score','30'),(4012,637,'_edit_lock','1688974727:5'),(4119,642,'inline_featured_image','0'),(4120,642,'_edit_lock','1668534565:2'),(4121,642,'_edit_last','2'),(4122,642,'_wp_page_template','default'),(4177,642,'content_block','a:1:{i:0;s:10:\"text_block\";}'),(4178,642,'_content_block','field_5bbe19a7efa09'),(4179,642,'_yoast_wpseo_content_score','90'),(4201,431,'content_block_1_custom_css_class',''),(4202,431,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(4205,431,'_yoast_wpseo_content_score','90'),(4222,646,'_VenueOrigin','events-calendar'),(4223,646,'_tribe_modified_fields','a:16:{s:12:\"_VenueOrigin\";d:1563374476;s:17:\"_EventShowMapLink\";d:1563374476;s:13:\"_EventShowMap\";d:1563374476;s:17:\"_VenueShowMapLink\";d:1563374476;s:13:\"_VenueShowMap\";d:1563374476;s:13:\"_VenueAddress\";d:1563374476;s:10:\"_VenueCity\";d:1563374476;s:13:\"_VenueCountry\";d:1563374476;s:14:\"_VenueProvince\";d:1563374476;s:11:\"_VenueState\";d:1563374476;s:9:\"_VenueZip\";d:1563374476;s:11:\"_VenuePhone\";d:1563374476;s:9:\"_VenueURL\";d:1563374476;s:18:\"_VenueEventShowMap\";d:1563374476;s:22:\"_VenueEventShowMapLink\";d:1563374476;s:19:\"_VenueStateProvince\";d:1563374476;}'),(4224,646,'_EventShowMapLink','1'),(4225,646,'_EventShowMap','1'),(4226,646,'_VenueShowMapLink','1'),(4227,646,'_VenueShowMap','1'),(4228,646,'_VenueAddress','9999 The Best Street'),(4229,646,'_VenueCity','San Francisco'),(4230,646,'_VenueCountry','United States'),(4231,646,'_VenueProvince',''),(4232,646,'_VenueState','CA'),(4233,646,'_VenueZip','94016'),(4234,646,'_VenuePhone','(707) 576-8080'),(4235,646,'_VenueURL','orders@spectrawinery.com'),(4236,646,'_VenueEventShowMap','1'),(4237,646,'_VenueEventShowMapLink','1'),(4238,646,'_VenueStateProvince','CA'),(4252,508,'content_block_0_custom_css_class',''),(4253,508,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(4262,508,'_yoast_wpseo_content_score','90'),(4382,444,'_yoast_wpseo_content_score','60'),(4385,444,'content_block_1_custom_css_class','wide-content'),(4386,444,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(4728,518,'_yoast_wpseo_content_score','30'),(4894,517,'_yoast_wpseo_content_score','30'),(5143,443,'_wp_page_template','default'),(5144,443,'_yoast_wpseo_content_score','90'),(5145,443,'content_block_0_layout_title','Page Banner'),(5146,443,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(5147,443,'content_block_0_custom_css_class',''),(5148,443,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(5149,443,'content_block_1_layout_title','Club Intro'),(5150,443,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(5151,443,'content_block_1_custom_css_class','white-section'),(5152,443,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(5153,443,'content_block_2_layout_title','Two Columns - Join Clubs'),(5154,443,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(5155,443,'content_block_2_custom_css_class','club-boxes'),(5156,443,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(5157,443,'content_block_3_layout_title',''),(5158,443,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(5159,443,'content_block_3_custom_css_class',''),(5160,443,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(5161,657,'content_block','a:4:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";i:3;s:10:\"text_block\";}'),(5162,657,'_content_block','field_5bbe19a7efa09'),(5163,657,'content_block_0_banner_full_width','1'),(5164,657,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(5165,657,'content_block_0_banner_size','normal'),(5166,657,'_content_block_0_banner_size','field_5bbe232929ec9'),(5167,657,'content_block_0_add_parallax_effect','0'),(5168,657,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(5169,657,'content_block_0_add_veil_over_banner','0'),(5170,657,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(5171,657,'content_block_0_banner_content_position','centered'),(5172,657,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(5173,657,'content_block_0_banner_title','Memberships'),(5174,657,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(5175,657,'content_block_0_banner_subtitle',''),(5176,657,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(5177,657,'content_block_0_banner_button_link',''),(5178,657,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(5179,657,'content_block_0_banner_button_new_tab','0'),(5180,657,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(5181,657,'content_block_0_show_down_arrow','1'),(5182,657,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(5183,657,'content_block_0_banner_image','491'),(5184,657,'_content_block_0_banner_image','field_5bbe201718faf'),(5185,657,'content_block_0_banner_image_position','center center'),(5186,657,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(5187,657,'content_block_0_banner_image_mobile','490'),(5188,657,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(5189,657,'content_block_0_banner_image_mobile_position','center center'),(5190,657,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(5191,657,'content_block_1_text_block_columns','one'),(5192,657,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(5193,657,'content_block_1_narrow_text_block_content','0'),(5194,657,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(5195,657,'content_block_1_reverse_colors','0'),(5196,657,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(5197,657,'content_block_1_enable_background_image','0'),(5198,657,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(5199,657,'content_block_1_text_block_content_col_one','<blockquote style=\"text-align: center;\">Thank you for considering a Spectra Membership</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">With each type of club you will enjoy a regular shipment of our wine for your cellar and enjoyment.\r\nYou will also enjoy complimentary tastings and VIP treatment at our winery.\r\nPlease call in advance to book your engagement.</p>'),(5200,657,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(5201,657,'content_block_2_text_block_columns','two'),(5202,657,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(5203,657,'content_block_2_narrow_text_block_content','0'),(5204,657,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(5205,657,'content_block_2_reverse_colors','0'),(5206,657,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(5207,657,'content_block_2_enable_background_image','0'),(5208,657,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(5209,657,'content_block_2_text_block_content_col_one','<img class=\"alignnone wp-image-510 size-full\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2018/10/640x400-1.jpg\" alt=\"\" width=\"640\" height=\"400\" />\r\n<h4>Spectra Wine Club</h4>\r\n<em>You will receive 48 bottles per year, split into four 12 bottle quarterly shipments.</em>\r\n\r\nTwo mixed cases of new releases, award winners, and favourites received four times per year. For wine enthusiasts, and corporate clients who entertain in style.\r\n\r\n<div class=\"c7-club-join-button\" data-club-slug=\"spectra-wine-club\"></div>\r\n'),(5210,657,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(5211,657,'content_block_2_text_block_content_col_two','<img class=\"alignnone wp-image-511 size-full\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2018/10/640x400-2.jpg\" alt=\"\" width=\"640\" height=\"400\" />\r\n<h4>Spectra Choice Club</h4>\r\n<em>You will receive 48 bottles per year, split into four 12 bottle quarterly shipments.</em>\r\n\r\nTwo mixed cases of new releases, award winners, and favourites received four times per year. For wine enthusiasts, and corporate clients who entertain in style.\r\n\r\n<div class=\"c7-club-join-button\" data-club-slug=\"spectra-wine-club\"></div>\r\n'),(5212,657,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(5213,657,'content_block_3_text_block_columns','two'),(5214,657,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(5215,657,'content_block_3_narrow_text_block_content','0'),(5216,657,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(5217,657,'content_block_3_reverse_colors','1'),(5218,657,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(5219,657,'content_block_3_enable_background_image','0'),(5220,657,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(5221,657,'content_block_3_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(5222,657,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(5223,657,'content_block_3_text_block_content_col_two','[c7-subscribe-with-name]'),(5224,657,'_content_block_3_text_block_content_col_two','field_5bbe31593920e'),(5225,657,'content_block_0_layout_title','Page Banner'),(5226,657,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(5227,657,'content_block_0_custom_css_class',''),(5228,657,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(5229,657,'content_block_1_layout_title','Spectra Quote'),(5230,657,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(5231,657,'content_block_1_custom_css_class',''),(5232,657,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(5233,657,'content_block_2_layout_title','Two Columns - Join Clubs'),(5234,657,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(5235,657,'content_block_2_custom_css_class',''),(5236,657,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(5237,657,'content_block_3_layout_title',''),(5238,657,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(5239,657,'content_block_3_custom_css_class',''),(5240,657,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(5246,659,'content_block','a:1:{i:0;s:10:\"text_block\";}'),(5247,659,'_content_block','field_5bbe19a7efa09'),(5248,659,'content_block_0_text_block_columns','one'),(5249,659,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(5250,659,'content_block_0_narrow_text_block_content','0'),(5251,659,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(5252,659,'content_block_0_reverse_colors','0'),(5253,659,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(5254,659,'content_block_0_enable_background_image','0'),(5255,659,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(5256,659,'content_block_0_text_block_content_col_one','<div id=\"c7-content\"></div>'),(5257,659,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(5258,659,'content_block_0_layout_title',''),(5259,659,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(5260,659,'content_block_0_custom_css_class',''),(5261,659,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(5284,662,'content_block_0_layout_title','Commerce7 Placeholder'),(5285,662,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(5286,662,'content_block_0_text_block_columns','one'),(5287,662,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(5288,662,'content_block_0_narrow_text_block_content','0'),(5289,662,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(5290,662,'content_block_0_reverse_colors','0'),(5291,662,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(5292,662,'content_block_0_enable_background_image','0'),(5293,662,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(5294,662,'content_block_0_custom_css_class',''),(5295,662,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(5296,662,'content_block_0_text_block_content_col_one','<div id=\"c7-content\"></div>'),(5297,662,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(5298,662,'content_block','a:1:{i:0;s:10:\"text_block\";}'),(5299,662,'_content_block','field_5bbe19a7efa09'),(5302,663,'content_block_0_text_block_columns','one'),(5303,663,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(5304,663,'content_block_0_narrow_text_block_content','0'),(5305,663,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(5306,663,'content_block_0_reverse_colors','0'),(5307,663,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(5308,663,'content_block_0_enable_background_image','0'),(5309,663,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(5310,663,'content_block_0_custom_css_class',''),(5311,663,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(5312,663,'content_block_0_text_block_content_col_one','<div id=\"c7-content\"></div>'),(5313,663,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(5314,663,'content_block','a:1:{i:0;s:10:\"text_block\";}'),(5315,663,'_content_block','field_5bbe19a7efa09'),(5316,663,'content_block_0_layout_title','Commerce 7 Content Placeholder'),(5317,663,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(5320,664,'content_block','a:1:{i:0;s:10:\"text_block\";}'),(5321,664,'_content_block','field_5bbe19a7efa09'),(5322,664,'content_block_0_text_block_columns','one'),(5323,664,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(5324,664,'content_block_0_narrow_text_block_content','1'),(5325,664,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(5326,664,'content_block_0_reverse_colors','0'),(5327,664,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(5328,664,'content_block_0_enable_background_image','0'),(5329,664,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(5330,664,'content_block_0_custom_css_class',''),(5331,664,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(5332,664,'content_block_0_text_block_content_col_one','<div id=\"c7-content\"></div>'),(5333,664,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(5334,664,'content_block_0_layout_title','Commerce 7 Content Placeholder'),(5335,664,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(5336,665,'content_block_0_layout_title','Commerce7 Placeholder'),(5337,665,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(5338,665,'content_block_0_text_block_columns','one'),(5339,665,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(5340,665,'content_block_0_narrow_text_block_content','0'),(5341,665,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(5342,665,'content_block_0_reverse_colors','0'),(5343,665,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(5344,665,'content_block_0_enable_background_image','0'),(5345,665,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(5346,665,'content_block_0_custom_css_class',''),(5347,665,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(5348,665,'content_block_0_text_block_content_col_one','<div id=\"c7-content\"></div>'),(5349,665,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(5350,665,'content_block','a:1:{i:0;s:10:\"text_block\";}'),(5351,665,'_content_block','field_5bbe19a7efa09'),(5477,670,'inline_featured_image','0'),(5478,670,'_edit_lock','1668790301:2'),(5479,670,'_edit_last','2'),(5480,670,'_wp_page_template','default'),(5481,670,'_yoast_wpseo_content_score','90'),(5482,670,'content_block_0_layout_title','Page Content'),(5483,670,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(5484,670,'content_block_0_text_block_columns','one'),(5485,670,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(5486,670,'content_block_0_narrow_text_block_content','0'),(5487,670,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(5488,670,'content_block_0_reverse_colors','0'),(5489,670,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(5490,670,'content_block_0_enable_background_image','0'),(5491,670,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(5492,670,'content_block_0_custom_css_class',''),(5493,670,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(5494,670,'content_block_0_text_block_content_col_one','<h1>MEADOWCROFT AWARDS AND RATINGS</h1>\r\nLove Meadowcroft Wines? You’re not alone. See some of our awards and ratings.\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">SUNSET INTERNATIONAL WINE COMPETITION</span></h2>\r\n<strong>DOUBLE GOLD</strong>\r\n2021 Rivino Vineyard Pinot Blanc, Mendocino County\r\n\r\n<strong>GOLD</strong>\r\n2019 Sonoma Coast Pinot Noir\r\n2021 Roussanne, Wyldvin Vineyard\r\n2020 Mae Vineyard Zinfandel\r\n2021 Pinot Gris, Mendocino County\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">CRITICS CHALLENGE</span></h2>\r\n<strong>91 POINTS, GOLD</strong>\r\n2019 Sangiovese, Speedy Creek\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">SF CHRONICLE WINE COMPETITION</span></h2>\r\n<strong>GOLD</strong>\r\n2019 Sangiovese, Speedy Creek\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">SUNSET INTERNATIONAL WINE COMPETITION</span></h2>\r\n<strong>92 POINTS, GOLD</strong>\r\n2018 Zinfandel, Louvau Vineyard\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">SONOMA COUNTY HARVEST FAIR</span></h2>\r\n<strong>GOLD</strong>\r\n2018 Zinfandel, Louvau Vineyard\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">CRITICS CHALLENGE</span></h2>\r\n<strong>94 POINTS, PLATINUM</strong>\r\n2018 Zinfandel, Louvau Vineyard\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">WINE &amp; SPIRITS MAGAZINE</span></h2>\r\n<strong>93 POINTS</strong>\r\n2018 Zinfandel, Louvau Vineyard\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">WINE &amp; SPIRITS MAGAZINE</span></h2>\r\n<strong>92 POINTS</strong>\r\n2018 Zinfandel, Speedy Creek Vineyard\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">JAMES SUCKLING WINE RATINGS</span></h2>\r\n<strong>91 POINTS</strong>\r\n2018 Cabernet Sauvignon, Spring Mountain District\r\n\r\n<em><img class=\"wp-image-934 alignleft\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/quotation-marks.png\" alt=\"Quotation marks\" width=\"100\" height=\"81\" />Crushed raspberries, ripe cherries, blackberries, dried thyme, lavender and spice box on the nose. Medium-bodied with plush tannins. Round, creamy and polished with pretty vanilla notes on the finish. Drink from 2023.</em>\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">JAMES SUCKLING WINE RATINGS</span></h2>\r\n<strong>91 POINTS</strong>\r\n2018 Cabernet Sauvignon, Mount Veeder Napa Valley</p>\r\n\r\n<em><img class=\"wp-image-934 alignleft\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/quotation-marks.png\" alt=\"Quotation marks\" width=\"100\" height=\"81\" />Dark plums, mulberries, dark chocolate and sweet spices on the nose. Medium-to full-bodied with fine tannins. Round and fruity with a chewy yet fresh finish. Drink from 2023.</em>\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">JAMES SUCKLING WINE RATINGS</span></h2>\r\n<strong>91 POINTS</strong>\r\n2019 Cru de la Ruche Malbec</p>\r\n\r\n<em><img class=\"wp-image-934 alignleft\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/quotation-marks.png\" alt=\"Quotation marks\" width=\"100\" height=\"81\" />Dark cherries, dark plums, praline, bay leaves, grilled meat and sweet spices on the nose. Full-bodied with creamy tannins. Juicy and plummy. Drink or hold.</em>\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">JAMES SUCKLING WINE RATINGS</span></h2>\r\n<strong>88 POINTS</strong>\r\n2020 Chardonnay, Taylor’s Crown</p>\r\n\r\n<em><img class=\"wp-image-934 alignleft\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/quotation-marks.png\" alt=\"Quotation marks\" width=\"100\" height=\"81\" />This is a big, powerfully constructed mountain Cab. Right now, it’s noticable for the impact of tannins, which are hard and astringent. They complicate the massive black currant, cassis, moneral and cedar flavors. The richness won’t go away while you age the wine and wait for some sediment to fall out. Best after 2011.</em>\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">WINE ENTHUSIAST</span></h2>\r\n<strong>94 POINTS</strong>\r\n2005 Mount Veeder Napa Valley Cabernet Sauvignon</p>\r\n\r\n<em><img class=\"wp-image-934 alignleft\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/quotation-marks.png\" alt=\"Quotation marks\" width=\"100\" height=\"81\" />This is a big, powerfully constructed mountain Cab. Right now, it’s noticable for the impact of tannins, which are hard and astringent. They complicate the massive black currant, cassis, moneral and cedar flavors. The richness won’t go away while you age the wine and wait for some sediment to fall out. Best after 2011.</em>\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">SF CHRONICLE WINE COMPETITION</span></h2>\r\n<strong>DOUBLE GOLD</strong>\r\n2014 Cru de la Ruche Malbec</p>\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">WINE ENTHUSIAST</span></h2>\r\n<strong>92 POINTS</strong>\r\n2014 Louvau Vineyard Viognier</p>\r\n\r\n<em><img class=\"wp-image-934 alignleft\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/quotation-marks.png\" alt=\"Quotation marks\" width=\"100\" height=\"81\" />This 100% varietal makes the case for Viognier in this appellation, expressing Golden Delicious apple and pear around a fresh, medium build of viscous texture, lemon and wild honey. Pretty and aromatic, it’s a classically fine-formed white, made in small quantities.</em>\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">WINE ENTHUSIAST</span></h2>\r\n<strong>91 POINTS</strong>\r\n2008 MT. Veeder Napa Valley Cabernet Sauvignon</p>\r\n\r\n<em><img class=\"wp-image-934 alignleft\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/quotation-marks.png\" alt=\"Quotation marks\" width=\"100\" height=\"81\" />Classic Cabernet flavors of blackberries, and cassis. Drink this elegant wine over the next six years. This Cabernet remains hefty in tannins. These tannins are soft and lusch, in fact, they’re an integrated part of the network that makes this wine so interesting. -S.H.</em>\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">WINE ENTHUSIAST</span></h2>\r\n<strong>90 POINTS</strong>\r\n2012 Speedy Creek Sangiovese</p>\r\n\r\n<em><img class=\"wp-image-934 alignleft\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/quotation-marks.png\" alt=\"Quotation marks\" width=\"100\" height=\"81\" />A 100% varietal wine, this is a rich, expressive take on the Italian stalwart, fulsome and hearty in sizable tannins and yet exuberant in red and black fruit. A note sage gives it a wild, herbal undertone before a long, flavorful finish. -V.B.</em>\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">ROBERT PARKER’S WINE ADVOCATE</span></h2>\r\n<strong>89 POINTS</strong>\r\n2015 Bonneau Vineyard Chardonnay</p>\r\n\r\n<em><img class=\"wp-image-934 alignleft\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/quotation-marks.png\" alt=\"Quotation marks\" width=\"100\" height=\"81\" />The 2015 Bonneau Vineyard Chardonnay has tropical/mango and warm apricot notes with hints of butterscotch and cedar. Medium to full bodied, the palate offers lovely freshness with a satiny texture wrapped with good balance and length</em>\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">SUNSET INT’L WINE COMPETITION</span></h2>\r\n<strong>2016 MEDAL</strong>\r\n2013 Speedy Creek Sangiovese</p>\r\n\r\n<em><img class=\"wp-image-934 alignleft\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/quotation-marks.png\" alt=\"Quotation marks\" width=\"100\" height=\"81\" />Hints of sage, violets, and spice accompany vivid plum and red cherry fruit in this expressive, big-boned wine with a forever finish.</em>\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">SUNSET INT’L WINE COMPETITION</span></h2>\r\n<strong>GOLD</strong>\r\n2014 Louvau Vineyard Viognier</p>\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">SUNSET INT’L WINE COMPETITION</span></h2>\r\n<strong>GOLD</strong>\r\n2011 Sonoma County Viognier</p>\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">SF CHRONICLE WINE COMPETITION</span></h2>\r\n<strong>GOLD</strong>\r\n2014 Sonoma County Chardonnay</p>\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">SUNSET INT’L WINE COMPETITION</span></h2>\r\n<strong>SILVER</strong>\r\n2014 Louvau Vineyard Sauvignon Blanc</p>\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">SUNSET INT’L WINE COMPETITION</span></h2>\r\n<strong>SILVER</strong>\r\n2010 Sonoma County Chardonnay</p>\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">SUNSET INT’L WINE COMPETITION</span></h2>\r\n<strong>SILVER</strong>\r\n2009 Sonoma County Zinfandel</p>\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">SF CHRONICLE WINE COMPETITION</span></h2>\r\n<strong>SILVER</strong>\r\n2012 Speedy Creek Sangiovese</p>\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">SF CHRONICLE WINE COMPETITION</span></h2>\r\n<strong>SILVER</strong>\r\n2013 Carneros Sonoma Pinot Noir</p>\r\n&nbsp;'),(5495,670,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(5496,670,'content_block','a:1:{i:0;s:10:\"text_block\";}'),(5497,670,'_content_block','field_5bbe19a7efa09'),(5498,671,'content_block_0_layout_title','Page Content'),(5499,671,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(5500,671,'content_block_0_text_block_columns','one'),(5501,671,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(5502,671,'content_block_0_narrow_text_block_content','0'),(5503,671,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(5504,671,'content_block_0_reverse_colors','0'),(5505,671,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(5506,671,'content_block_0_enable_background_image','0'),(5507,671,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(5508,671,'content_block_0_custom_css_class',''),(5509,671,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(5510,671,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">Accessibility statement</h1>\r\n<p style=\"text-align: center;\">We want everyone who visits our website to feel welcome and find the experience rewarding.</p>\r\n\r\n<h2>What are we doing?</h2>\r\nTo help us make our website a positive place for everyone, we\'ve been using the <a href=\"http://www.w3.org/TR/WCAG/\">Web Content Accessibility Guidelines (WCAG) 2.1</a>. These guidelines explain how to make web content more accessible for people with disabilities, and user friendly for everyone.\r\n\r\nThe guidelines have three levels of accessibility (A, AA and AAA). We’ve chosen Level AA as the target for our website.\r\n<h2>How are we doing?</h2>\r\nWe\'ve worked hard on the website and believe we\'ve achieved our goal of Level AA accessibility. We monitor the website regularly to maintain this, but if you do find any problems, please get in touch.\r\n<h2>Let us know what you think</h2>\r\nIf you enjoyed visiting our site, or if you had trouble with any part of it, please get in touch. We\'d like to hear from you in any of the following ways:\r\n<ul>\r\n 	<li>Email us at //Site Email//</li>\r\n 	<li>Call us on //Site Phone//</li>\r\n</ul>'),(5511,671,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(5512,671,'content_block','a:1:{i:0;s:10:\"text_block\";}'),(5513,671,'_content_block','field_5bbe19a7efa09'),(5529,445,'_wp_page_template','default'),(5530,445,'_yoast_wpseo_content_score','90'),(5531,445,'content_block_0_layout_title',''),(5532,445,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(5533,445,'content_block_0_custom_css_class',''),(5534,445,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(5547,676,'content_block','a:4:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";i:3;s:10:\"text_block\";}'),(5548,676,'_content_block','field_5bbe19a7efa09'),(5549,676,'content_block_0_banner_full_width','1'),(5550,676,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(5551,676,'content_block_0_banner_size','long'),(5552,676,'_content_block_0_banner_size','field_5bbe232929ec9'),(5553,676,'content_block_0_add_parallax_effect','0'),(5554,676,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(5555,676,'content_block_0_add_veil_over_banner','0'),(5556,676,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(5557,676,'content_block_0_banner_content_position','centered'),(5558,676,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(5559,676,'content_block_0_banner_title','A great group'),(5560,676,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(5561,676,'content_block_0_banner_subtitle','Crafting an exceptional wine experience!'),(5562,676,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(5563,676,'content_block_0_banner_button_link',''),(5564,676,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(5565,676,'content_block_0_banner_button_new_tab','0'),(5566,676,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(5567,676,'content_block_0_show_down_arrow','1'),(5568,676,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(5569,676,'content_block_0_banner_image','555'),(5570,676,'_content_block_0_banner_image','field_5bbe201718faf'),(5571,676,'content_block_0_banner_image_position','center center'),(5572,676,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(5573,676,'content_block_0_banner_image_mobile','556'),(5574,676,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(5575,676,'content_block_0_banner_image_mobile_position','center center'),(5576,676,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(5577,676,'content_block_1_text_block_columns','one'),(5578,676,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(5579,676,'content_block_1_narrow_text_block_content','0'),(5580,676,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(5581,676,'content_block_1_reverse_colors','0'),(5582,676,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(5583,676,'content_block_1_enable_background_image','0'),(5584,676,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(5585,676,'content_block_1_text_block_content_col_one','<h2 style=\"text-align: center;\">Visit Us</h2>\r\n<p style=\"text-align: center;\">Located in the heart of the Valley, 1.5 hours drive north, is Spectra.\r\nBuilt in 1975 this site became the focal point of our winemaking in the 1980s, as more fruit was sourced from the valley and its surrounds.</p>\r\n<p style=\"text-align: center;\">A visit to this winery is a unique experience, as it provides a rare insight into the engine room\r\nof Spectra from a winemaking perspective.</p>\r\n\r\n\r\n<hr />'),(5586,676,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(5587,676,'content_block_2_text_block_columns','three'),(5588,676,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(5589,676,'content_block_2_narrow_text_block_content','0'),(5590,676,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(5591,676,'content_block_2_reverse_colors','0'),(5592,676,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(5593,676,'content_block_2_enable_background_image','0'),(5594,676,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(5595,676,'content_block_2_text_block_content_col_one','<h4>Tasting Room</h4>\r\n<img class=\"alignnone size-medium wp-image-434\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2018/10/640x480-3-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nOur tasting room combines modern architectural style with the natural attributes of its historic location.'),(5596,676,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(5597,676,'content_block_2_text_block_content_col_two','<h4>Vineyard Tour</h4>\r\n<img class=\"alignnone size-medium wp-image-436\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2018/10/640x480-4-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nOur vineyards are located primarily on prime land throughout the state’s most esteemed viticultural regions.'),(5598,676,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(5599,676,'content_block_2_text_block_content_col_three','<h4>Events</h4>\r\n<img class=\"alignnone size-medium wp-image-557\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2018/10/640x480-9-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nUpcoming public events and private club member events are always a great way to connect with our winemaking team.'),(5600,676,'_content_block_2_text_block_content_col_three','field_5bbe31793920f'),(5601,676,'content_block_3_text_block_columns','two'),(5602,676,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(5603,676,'content_block_3_narrow_text_block_content','0'),(5604,676,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(5605,676,'content_block_3_reverse_colors','1'),(5606,676,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(5607,676,'content_block_3_enable_background_image','0'),(5608,676,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(5609,676,'content_block_3_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(5610,676,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(5611,676,'content_block_3_text_block_content_col_two','[c7-subscribe-with-name]'),(5612,676,'_content_block_3_text_block_content_col_two','field_5bbe31593920e'),(5613,676,'content_block_0_layout_title',''),(5614,676,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(5615,676,'content_block_0_custom_css_class',''),(5616,676,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(5617,676,'content_block_1_layout_title',''),(5618,676,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(5619,676,'content_block_1_custom_css_class',''),(5620,676,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(5621,676,'content_block_2_layout_title',''),(5622,676,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(5623,676,'content_block_2_custom_css_class',''),(5624,676,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(5625,676,'content_block_3_layout_title','Subscribe'),(5626,676,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(5627,676,'content_block_3_custom_css_class','subscribe-columns'),(5628,676,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(5629,677,'content_block','a:4:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";i:3;s:10:\"text_block\";}'),(5630,677,'_content_block','field_5bbe19a7efa09'),(5631,677,'content_block_0_banner_full_width','1'),(5632,677,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(5633,677,'content_block_0_banner_size','normal'),(5634,677,'_content_block_0_banner_size','field_5bbe232929ec9'),(5635,677,'content_block_0_add_parallax_effect','0'),(5636,677,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(5637,677,'content_block_0_add_veil_over_banner','0'),(5638,677,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(5639,677,'content_block_0_banner_content_position','centered'),(5640,677,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(5641,677,'content_block_0_banner_title','Memberships'),(5642,677,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(5643,677,'content_block_0_banner_subtitle',''),(5644,677,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(5645,677,'content_block_0_banner_button_link',''),(5646,677,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(5647,677,'content_block_0_banner_button_new_tab','0'),(5648,677,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(5649,677,'content_block_0_show_down_arrow','1'),(5650,677,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(5651,677,'content_block_0_banner_image','491'),(5652,677,'_content_block_0_banner_image','field_5bbe201718faf'),(5653,677,'content_block_0_banner_image_position','center center'),(5654,677,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(5655,677,'content_block_0_banner_image_mobile','490'),(5656,677,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(5657,677,'content_block_0_banner_image_mobile_position','center center'),(5658,677,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(5659,677,'content_block_1_text_block_columns','one'),(5660,677,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(5661,677,'content_block_1_narrow_text_block_content','0'),(5662,677,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(5663,677,'content_block_1_reverse_colors','0'),(5664,677,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(5665,677,'content_block_1_enable_background_image','0'),(5666,677,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(5667,677,'content_block_1_text_block_content_col_one','<blockquote style=\"text-align: center;\">Thank you for considering a Spectra Membership</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">With each type of club you will enjoy a regular shipment of our wine for your cellar and enjoyment.\r\nYou will also enjoy complimentary tastings and VIP treatment at our winery.\r\nPlease call in advance to book your engagement.</p>'),(5668,677,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(5669,677,'content_block_2_text_block_columns','two'),(5670,677,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(5671,677,'content_block_2_narrow_text_block_content','0'),(5672,677,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(5673,677,'content_block_2_reverse_colors','0'),(5674,677,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(5675,677,'content_block_2_enable_background_image','0'),(5676,677,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(5677,677,'content_block_2_text_block_content_col_one','<img class=\"alignnone wp-image-510 size-full\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2018/10/640x400-1.jpg\" alt=\"\" width=\"640\" height=\"400\" />\r\n<h4>Spectra Wine Club</h4>\r\n<em>You will receive 48 bottles per year, split into four 12 bottle quarterly shipments.</em>\r\n\r\nTwo mixed cases of new releases, award winners, and favourites received four times per year. For wine enthusiasts, and corporate clients who entertain in style.\r\n<div class=\"c7-club-join-button\" data-club-slug=\"spectra-wine-club\"></div>'),(5678,677,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(5679,677,'content_block_2_text_block_content_col_two','<img class=\"alignnone wp-image-511 size-full\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2018/10/640x400-2.jpg\" alt=\"\" width=\"640\" height=\"400\" />\r\n<h4>Spectra Choice Club</h4>\r\n<em>You will receive 48 bottles per year, split into four 12 bottle quarterly shipments.</em>\r\n\r\nTwo mixed cases of new releases, award winners, and favourites received four times per year. For wine enthusiasts, and corporate clients who entertain in style.\r\n<div class=\"c7-club-join-button\" data-club-slug=\"spectra-wine-club\"></div>'),(5680,677,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(5681,677,'content_block_3_text_block_columns','two'),(5682,677,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(5683,677,'content_block_3_narrow_text_block_content','0'),(5684,677,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(5685,677,'content_block_3_reverse_colors','1'),(5686,677,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(5687,677,'content_block_3_enable_background_image','0'),(5688,677,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(5689,677,'content_block_3_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(5690,677,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(5691,677,'content_block_3_text_block_content_col_two','[c7-subscribe-with-name]'),(5692,677,'_content_block_3_text_block_content_col_two','field_5bbe31593920e'),(5693,677,'content_block_0_layout_title','Page Banner'),(5694,677,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(5695,677,'content_block_0_custom_css_class',''),(5696,677,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(5697,677,'content_block_1_layout_title','Spectra Quote'),(5698,677,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(5699,677,'content_block_1_custom_css_class',''),(5700,677,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(5701,677,'content_block_2_layout_title','Two Columns - Join Clubs'),(5702,677,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(5703,677,'content_block_2_custom_css_class',''),(5704,677,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(5705,677,'content_block_3_layout_title','Subscribe'),(5706,677,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(5707,677,'content_block_3_custom_css_class','subscribe-columns'),(5708,677,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(5709,501,'content_block_0_layout_title',''),(5710,501,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(5711,501,'content_block_1_layout_title',''),(5712,501,'_content_block_1_layout_title','field_5bc11ca9a0d50-v'),(5713,501,'content_block_1_manually_enter_collection_slug','0'),(5714,501,'_content_block_1_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(5717,678,'content_block_0_text_block_columns','one'),(5718,678,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(5719,678,'content_block_0_narrow_text_block_content','0'),(5720,678,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(5721,678,'content_block_0_reverse_colors','0'),(5722,678,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(5723,678,'content_block_0_enable_background_image','0'),(5724,678,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(5725,678,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">Current Releases</h1>'),(5726,678,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(5727,678,'content_block_1_product_row_number','2up'),(5728,678,'_content_block_1_product_row_number','field_5bc11c6da0d4f'),(5729,678,'content_block_1_data_collection_slug','/current-releases'),(5730,678,'_content_block_1_data_collection_slug','field_5bc11ca9a0d50'),(5731,678,'content_block','a:3:{i:0;s:10:\"text_block\";i:1;s:18:\"product_collection\";i:2;s:10:\"text_block\";}'),(5732,678,'_content_block','field_5bbe19a7efa09'),(5733,678,'content_block_2_text_block_columns','two'),(5734,678,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(5735,678,'content_block_2_narrow_text_block_content','0'),(5736,678,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(5737,678,'content_block_2_reverse_colors','1'),(5738,678,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(5739,678,'content_block_2_enable_background_image','0'),(5740,678,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(5741,678,'content_block_2_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(5742,678,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(5743,678,'content_block_2_text_block_content_col_two','[c7-subscribe-with-name]'),(5744,678,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(5745,678,'content_block_0_custom_css_class',''),(5746,678,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(5747,678,'content_block_1_custom_css_class',''),(5748,678,'_content_block_1_custom_css_class','field_1cce1w78efa7b'),(5749,678,'content_block_1_product_display_teaser','1'),(5750,678,'_content_block_1_product_display_teaser','field_5d114505e6923'),(5751,678,'content_block_1_product_display_feature','1'),(5752,678,'_content_block_1_product_display_feature','field_5d1144d5e6922'),(5753,678,'content_block_2_custom_css_class','subscribe-columns'),(5754,678,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(5755,678,'content_block_0_layout_title',''),(5756,678,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(5757,678,'content_block_1_layout_title',''),(5758,678,'_content_block_1_layout_title','field_5bc11ca9a0d50-v'),(5759,678,'content_block_1_manually_enter_collection_slug','0'),(5760,678,'_content_block_1_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(5761,678,'content_block_2_layout_title','Subscribe'),(5762,678,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(5763,508,'content_block_0_layout_title','Intro'),(5764,508,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(5769,679,'content_block','a:3:{i:0;s:10:\"text_block\";i:1;s:18:\"product_collection\";i:2;s:10:\"text_block\";}'),(5770,679,'_content_block','field_5bbe19a7efa09'),(5771,679,'content_block_0_text_block_columns','one'),(5772,679,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(5773,679,'content_block_0_narrow_text_block_content','0'),(5774,679,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(5775,679,'content_block_0_reverse_colors','0'),(5776,679,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(5777,679,'content_block_0_enable_background_image','0'),(5778,679,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(5779,679,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">Library Wines</h1>'),(5780,679,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(5781,679,'content_block_1_product_row_number','1up'),(5782,679,'_content_block_1_product_row_number','field_5bc11c6da0d4f'),(5783,679,'content_block_1_data_collection_slug','library-wines'),(5784,679,'_content_block_1_data_collection_slug','field_5bc11ca9a0d50'),(5785,679,'content_block_2_text_block_columns','two'),(5786,679,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(5787,679,'content_block_2_narrow_text_block_content','0'),(5788,679,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(5789,679,'content_block_2_reverse_colors','1'),(5790,679,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(5791,679,'content_block_2_enable_background_image','0'),(5792,679,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(5793,679,'content_block_2_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(5794,679,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(5795,679,'content_block_2_text_block_content_col_two','[c7-subscribe-with-name]'),(5796,679,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(5797,679,'content_block_0_custom_css_class',''),(5798,679,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(5799,679,'content_block_1_manually_enter_collection_slug','0'),(5800,679,'_content_block_1_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(5801,679,'content_block_1_product_display_feature','1'),(5802,679,'_content_block_1_product_display_feature','field_5d1144d5e6922'),(5803,679,'content_block_1_product_display_teaser','0'),(5804,679,'_content_block_1_product_display_teaser','field_5d114505e6923'),(5805,679,'content_block_2_custom_css_class','subscribe-columns'),(5806,679,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(5807,679,'content_block_0_layout_title',''),(5808,679,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(5809,679,'content_block_1_layout_title',''),(5810,679,'_content_block_1_layout_title','field_5bc11ca9a0d50-v'),(5811,679,'content_block_2_layout_title','Subscribe'),(5812,679,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(5814,506,'content_block_0_layout_title',''),(5815,506,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(5816,506,'content_block_0_custom_css_class',''),(5817,506,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(5818,506,'content_block_1_layout_title',''),(5819,506,'_content_block_1_layout_title','field_5bc11ca9a0d50-v'),(5820,506,'content_block_1_manually_enter_collection_slug','0'),(5821,506,'_content_block_1_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(5822,506,'content_block_1_product_display_feature','0'),(5823,506,'_content_block_1_product_display_feature','field_5d1144d5e6922'),(5824,506,'content_block_1_product_display_teaser','1'),(5825,506,'_content_block_1_product_display_teaser','field_5d114505e6923'),(5830,680,'content_block_0_text_block_columns','one'),(5831,680,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(5832,680,'content_block_0_narrow_text_block_content','0'),(5833,680,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(5834,680,'content_block_0_reverse_colors','0'),(5835,680,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(5836,680,'content_block_0_enable_background_image','0'),(5837,680,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(5838,680,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">White Wines</h1>'),(5839,680,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(5840,680,'content_block_1_product_row_number','2up'),(5841,680,'_content_block_1_product_row_number','field_5bc11c6da0d4f'),(5842,680,'content_block_1_data_collection_slug','white-wines'),(5843,680,'_content_block_1_data_collection_slug','field_5bc11ca9a0d50'),(5844,680,'content_block_2_text_block_columns','two'),(5845,680,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(5846,680,'content_block_2_narrow_text_block_content','0'),(5847,680,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(5848,680,'content_block_2_reverse_colors','1'),(5849,680,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(5850,680,'content_block_2_enable_background_image','0'),(5851,680,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(5852,680,'content_block_2_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(5853,680,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(5854,680,'content_block_2_text_block_content_col_two','[c7-subscribe-with-name]'),(5855,680,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(5856,680,'content_block','a:3:{i:0;s:10:\"text_block\";i:1;s:18:\"product_collection\";i:2;s:10:\"text_block\";}'),(5857,680,'_content_block','field_5bbe19a7efa09'),(5858,680,'content_block_0_layout_title',''),(5859,680,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(5860,680,'content_block_0_custom_css_class',''),(5861,680,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(5862,680,'content_block_1_layout_title',''),(5863,680,'_content_block_1_layout_title','field_5bc11ca9a0d50-v'),(5864,680,'content_block_1_manually_enter_collection_slug','0'),(5865,680,'_content_block_1_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(5866,680,'content_block_1_product_display_feature','0'),(5867,680,'_content_block_1_product_display_feature','field_5d1144d5e6922'),(5868,680,'content_block_1_product_display_teaser','0'),(5869,680,'_content_block_1_product_display_teaser','field_5d114505e6923'),(5870,680,'content_block_2_layout_title','Subscribe'),(5871,680,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(5872,680,'content_block_2_custom_css_class','subscribe-columns'),(5873,680,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(5875,504,'content_block_0_layout_title',''),(5876,504,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(5877,504,'content_block_1_layout_title',''),(5878,504,'_content_block_1_layout_title','field_5bc11ca9a0d50-v'),(5879,504,'content_block_1_manually_enter_collection_slug','0'),(5880,504,'_content_block_1_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(5883,681,'content_block_0_text_block_columns','one'),(5884,681,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(5885,681,'content_block_0_narrow_text_block_content','0'),(5886,681,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(5887,681,'content_block_0_reverse_colors','0'),(5888,681,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(5889,681,'content_block_0_enable_background_image','0'),(5890,681,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(5891,681,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">Red Wines</h1>'),(5892,681,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(5893,681,'content_block_1_product_row_number','2up'),(5894,681,'_content_block_1_product_row_number','field_5bc11c6da0d4f'),(5895,681,'content_block_1_data_collection_slug','red-wines'),(5896,681,'_content_block_1_data_collection_slug','field_5bc11ca9a0d50'),(5897,681,'content_block_2_text_block_columns','two'),(5898,681,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(5899,681,'content_block_2_narrow_text_block_content','0'),(5900,681,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(5901,681,'content_block_2_reverse_colors','1'),(5902,681,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(5903,681,'content_block_2_enable_background_image','0'),(5904,681,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(5905,681,'content_block_2_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(5906,681,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(5907,681,'content_block_2_text_block_content_col_two','[c7-subscribe-with-name]'),(5908,681,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(5909,681,'content_block','a:3:{i:0;s:10:\"text_block\";i:1;s:18:\"product_collection\";i:2;s:10:\"text_block\";}'),(5910,681,'_content_block','field_5bbe19a7efa09'),(5911,681,'content_block_0_custom_css_class',''),(5912,681,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(5913,681,'content_block_1_custom_css_class',''),(5914,681,'_content_block_1_custom_css_class','field_1cce1w78efa7b'),(5915,681,'content_block_1_product_display_teaser','1'),(5916,681,'_content_block_1_product_display_teaser','field_5d114505e6923'),(5917,681,'content_block_1_product_display_feature','1'),(5918,681,'_content_block_1_product_display_feature','field_5d1144d5e6922'),(5919,681,'content_block_2_custom_css_class','subscribe-columns'),(5920,681,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(5921,681,'content_block_0_layout_title',''),(5922,681,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(5923,681,'content_block_1_layout_title',''),(5924,681,'_content_block_1_layout_title','field_5bc11ca9a0d50-v'),(5925,681,'content_block_1_manually_enter_collection_slug','0'),(5926,681,'_content_block_1_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(5927,681,'content_block_2_layout_title','Subscribe'),(5928,681,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(5931,444,'content_block_1_layout_title',''),(5932,444,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(5935,682,'content_block','a:5:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:18:\"two_column_feature\";i:3;s:18:\"two_column_feature\";i:4;s:10:\"text_block\";}'),(5936,682,'_content_block','field_5bbe19a7efa09'),(5937,682,'content_block_0_banner_full_width','1'),(5938,682,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(5939,682,'content_block_0_banner_size','normal'),(5940,682,'_content_block_0_banner_size','field_5bbe232929ec9'),(5941,682,'content_block_0_add_parallax_effect','0'),(5942,682,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(5943,682,'content_block_0_add_veil_over_banner','0'),(5944,682,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(5945,682,'content_block_0_banner_content_position','centered'),(5946,682,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(5947,682,'content_block_0_banner_title',''),(5948,682,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(5949,682,'content_block_0_banner_subtitle',''),(5950,682,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(5951,682,'content_block_0_banner_button_link',''),(5952,682,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(5953,682,'content_block_0_banner_button_new_tab','0'),(5954,682,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(5955,682,'content_block_0_show_down_arrow','1'),(5956,682,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(5957,682,'content_block_0_banner_image','514'),(5958,682,'_content_block_0_banner_image','field_5bbe201718faf'),(5959,682,'content_block_0_banner_image_position','center center'),(5960,682,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(5961,682,'content_block_0_banner_image_mobile','513'),(5962,682,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(5963,682,'content_block_0_banner_image_mobile_position','center center'),(5964,682,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(5965,682,'content_block_1_text_block_columns','one'),(5966,682,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(5967,682,'content_block_1_narrow_text_block_content','0'),(5968,682,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(5969,682,'content_block_1_reverse_colors','0'),(5970,682,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(5971,682,'content_block_1_enable_background_image','0'),(5972,682,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(5973,682,'content_block_1_text_block_content_col_one','<h2 style=\"text-align: center;\">About Us!</h2>\r\n<blockquote style=\"text-align: center;\">I try to create wines that suit our climate and our way of life - wines to drink with the food we grow, make and eat.</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">Spectra winery was realised to focus on our passion for the region and its ability to produce dry - grown and environmentally sustainable wine. Recently a new home was established on our holistic philosophy to winemaking which starts with climate, empahasises the importance on the vineyard, as well as wine\'s relation to the food we love to grow, cook, and eat.</p>'),(5974,682,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(5975,682,'content_block_2_gap_between_columns','1'),(5976,682,'_content_block_2_gap_between_columns','field_5bbe44a5ae587'),(5977,682,'content_block_2_full_width_columns','0'),(5978,682,'_content_block_2_full_width_columns','field_5bbe44c7ae588'),(5979,682,'content_block_2_veil_over_images','0'),(5980,682,'_content_block_2_veil_over_images','field_5bbe4f8f88a8a'),(5981,682,'content_block_2_left_column_background_image','515'),(5982,682,'_content_block_2_left_column_background_image','field_5bbe4452ae585'),(5983,682,'content_block_2_left_column_content','<h3>Our Vineyards</h3>'),(5984,682,'_content_block_2_left_column_content','field_5bbe4414ae582'),(5985,682,'content_block_2_left_whole_column_clickable','1'),(5986,682,'_content_block_2_left_whole_column_clickable','field_5bbe44f3ae589'),(5987,682,'content_block_2_left_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:56:\"https://www.meadowcroftwines.com/about-us/our-vineyards/\";s:6:\"target\";s:0:\"\";}'),(5988,682,'_content_block_2_left_column_button_link','field_5bbe442fae583'),(5989,682,'content_block_2_left_column_button_text','Learn More'),(5990,682,'_content_block_2_left_column_button_text','field_5bbe443dae584'),(5991,682,'content_block_2_right_column_background_image','524'),(5992,682,'_content_block_2_right_column_background_image','field_5bbe4547ae58b'),(5993,682,'content_block_2_right_column_content','<h3>Our Team</h3>'),(5994,682,'_content_block_2_right_column_content','field_5bbe4550ae58c'),(5995,682,'content_block_2_right_whole_column_clickable','1'),(5996,682,'_content_block_2_right_whole_column_clickable','field_5bbe455aae58d'),(5997,682,'content_block_2_right_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:51:\"https://www.meadowcroftwines.com/about-us/our-team/\";s:6:\"target\";s:0:\"\";}'),(5998,682,'_content_block_2_right_column_button_link','field_5bbe456bae58e'),(5999,682,'content_block_2_right_column_button_text','Meet Our Team'),(6000,682,'_content_block_2_right_column_button_text','field_5bbe4577ae58f'),(6001,682,'content_block_3_gap_between_columns','1'),(6002,682,'_content_block_3_gap_between_columns','field_5bbe44a5ae587'),(6003,682,'content_block_3_full_width_columns','0'),(6004,682,'_content_block_3_full_width_columns','field_5bbe44c7ae588'),(6005,682,'content_block_3_veil_over_images','0'),(6006,682,'_content_block_3_veil_over_images','field_5bbe4f8f88a8a'),(6007,682,'content_block_3_left_column_background_image','525'),(6008,682,'_content_block_3_left_column_background_image','field_5bbe4452ae585'),(6009,682,'content_block_3_left_column_content','<h3>Our History</h3>'),(6010,682,'_content_block_3_left_column_content','field_5bbe4414ae582'),(6011,682,'content_block_3_left_whole_column_clickable','1'),(6012,682,'_content_block_3_left_whole_column_clickable','field_5bbe44f3ae589'),(6013,682,'content_block_3_left_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:54:\"https://www.meadowcroftwines.com/about-us/our-history/\";s:6:\"target\";s:0:\"\";}'),(6014,682,'_content_block_3_left_column_button_link','field_5bbe442fae583'),(6015,682,'content_block_3_left_column_button_text','Learn More'),(6016,682,'_content_block_3_left_column_button_text','field_5bbe443dae584'),(6017,682,'content_block_3_right_column_background_image','526'),(6018,682,'_content_block_3_right_column_background_image','field_5bbe4547ae58b'),(6019,682,'content_block_3_right_column_content','<h3>Our Recipes</h3>'),(6020,682,'_content_block_3_right_column_content','field_5bbe4550ae58c'),(6021,682,'content_block_3_right_whole_column_clickable','1'),(6022,682,'_content_block_3_right_whole_column_clickable','field_5bbe455aae58d'),(6023,682,'content_block_3_right_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:54:\"https://www.meadowcroftwines.com/about-us/our-recipes/\";s:6:\"target\";s:0:\"\";}'),(6024,682,'_content_block_3_right_column_button_link','field_5bbe456bae58e'),(6025,682,'content_block_3_right_column_button_text','View Our Recipes'),(6026,682,'_content_block_3_right_column_button_text','field_5bbe4577ae58f'),(6027,682,'content_block_4_text_block_columns','two'),(6028,682,'_content_block_4_text_block_columns','field_5bbe2f81a4de0'),(6029,682,'content_block_4_narrow_text_block_content','0'),(6030,682,'_content_block_4_narrow_text_block_content','field_5bbe342e08360'),(6031,682,'content_block_4_reverse_colors','1'),(6032,682,'_content_block_4_reverse_colors','field_5bbe3027a4de1'),(6033,682,'content_block_4_enable_background_image','0'),(6034,682,'_content_block_4_enable_background_image','field_5bbe30b1a4de2'),(6035,682,'content_block_4_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(6036,682,'_content_block_4_text_block_content_col_one','field_5bbe313b3920d'),(6037,682,'content_block_4_text_block_content_col_two','[c7-subscribe-with-name]'),(6038,682,'_content_block_4_text_block_content_col_two','field_5bbe31593920e'),(6039,682,'content_block_2_left_button_column','1'),(6040,682,'_content_block_2_left_button_column','field_5bd78c465387d'),(6041,682,'content_block_2_right_button_column','1'),(6042,682,'_content_block_2_right_button_column','field_5bd78c465387e'),(6043,682,'content_block_3_left_button_column','1'),(6044,682,'_content_block_3_left_button_column','field_5bd78c465387d'),(6045,682,'content_block_3_right_button_column','1'),(6046,682,'_content_block_3_right_button_column','field_5bd78c465387e'),(6047,682,'content_block_0_custom_css_class',''),(6048,682,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(6049,682,'content_block_1_custom_css_class',''),(6050,682,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(6051,682,'content_block_4_custom_css_class','subscribe-columns'),(6052,682,'_content_block_4_custom_css_class','field_5bbe30b1a4de2-1'),(6053,682,'content_block_0_layout_title',''),(6054,682,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(6055,682,'content_block_1_layout_title',''),(6056,682,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(6057,682,'content_block_4_layout_title','Subscribe'),(6058,682,'_content_block_4_layout_title','field_5bc11ca9a0d50-s'),(6071,683,'content_block','a:4:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:8:\"timeline\";i:3;s:10:\"text_block\";}'),(6072,683,'_content_block','field_5bbe19a7efa09'),(6073,683,'content_block_0_banner_full_width','1'),(6074,683,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(6075,683,'content_block_0_banner_size','short'),(6076,683,'_content_block_0_banner_size','field_5bbe232929ec9'),(6077,683,'content_block_0_add_parallax_effect','0'),(6078,683,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(6079,683,'content_block_0_add_veil_over_banner','0'),(6080,683,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(6081,683,'content_block_0_banner_content_position','centered'),(6082,683,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(6083,683,'content_block_0_banner_title','History'),(6084,683,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(6085,683,'content_block_0_banner_subtitle','A strong legacy of refinement'),(6086,683,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(6087,683,'content_block_0_banner_button_link',''),(6088,683,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(6089,683,'content_block_0_banner_button_new_tab','0'),(6090,683,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(6091,683,'content_block_0_show_down_arrow','1'),(6092,683,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(6093,683,'content_block_0_banner_image','541'),(6094,683,'_content_block_0_banner_image','field_5bbe201718faf'),(6095,683,'content_block_0_banner_image_position','center center'),(6096,683,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(6097,683,'content_block_0_banner_image_mobile','542'),(6098,683,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(6099,683,'content_block_0_banner_image_mobile_position','center center'),(6100,683,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(6101,683,'content_block_1_text_block_columns','one'),(6102,683,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(6103,683,'content_block_1_narrow_text_block_content','0'),(6104,683,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(6105,683,'content_block_1_reverse_colors','0'),(6106,683,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(6107,683,'content_block_1_enable_background_image','0'),(6108,683,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(6109,683,'content_block_1_text_block_content_col_one','<h2 style=\"text-align: center;\">A look back into our past</h2>\r\n<blockquote style=\"text-align: center;\">I try to create wines that suit our climate and our way of life - wines to drink with the food we grow, make and eat.</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">Spectra winery was realised to focus on our passion for the region and its ability to produce dry - grown and environmentally sustainable wine. Recently a new home was established on our holistic philosophy to winemaking which starts with climate, empahasises the importance on the vineyard, as well as wine\'s relation to the food we love to grow, cook, and eat.</p>'),(6110,683,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(6111,683,'content_block_2_timeline_item_0_year','1984'),(6112,683,'_content_block_2_timeline_item_0_year','field_5bc11e0cd7b1e'),(6113,683,'content_block_2_timeline_item_0_description','Margaret and Harry Jennings purchase Spectra Winery.'),(6114,683,'_content_block_2_timeline_item_0_description','field_5bc11e27d7b1f'),(6115,683,'content_block_2_timeline_item_0_image','543'),(6116,683,'_content_block_2_timeline_item_0_image','field_5bc11e2dd7b20'),(6117,683,'content_block_2_timeline_item_1_year','1987'),(6118,683,'_content_block_2_timeline_item_1_year','field_5bc11e0cd7b1e'),(6119,683,'content_block_2_timeline_item_1_description','As the business grows, the family decides to increase production and sales expand to local vendors.'),(6120,683,'_content_block_2_timeline_item_1_description','field_5bc11e27d7b1f'),(6121,683,'content_block_2_timeline_item_1_image','544'),(6122,683,'_content_block_2_timeline_item_1_image','field_5bc11e2dd7b20'),(6123,683,'content_block_2_timeline_item_2_year','1999'),(6124,683,'_content_block_2_timeline_item_2_year','field_5bc11e0cd7b1e'),(6125,683,'content_block_2_timeline_item_2_description','With an award winning Pinot Noir, Spectra Winery becomes a leader in the wine industry.'),(6126,683,'_content_block_2_timeline_item_2_description','field_5bc11e27d7b1f'),(6127,683,'content_block_2_timeline_item_2_image','545'),(6128,683,'_content_block_2_timeline_item_2_image','field_5bc11e2dd7b20'),(6129,683,'content_block_2_timeline_item_3_year','2006'),(6130,683,'_content_block_2_timeline_item_3_year','field_5bc11e0cd7b1e'),(6131,683,'content_block_2_timeline_item_3_description','Sandra and Josh join Sprectra Winery in 2006, bringing with them a wealth of knowledge.'),(6132,683,'_content_block_2_timeline_item_3_description','field_5bc11e27d7b1f'),(6133,683,'content_block_2_timeline_item_3_image','546'),(6134,683,'_content_block_2_timeline_item_3_image','field_5bc11e2dd7b20'),(6135,683,'content_block_2_timeline_item_4_year','2011'),(6136,683,'_content_block_2_timeline_item_4_year','field_5bc11e0cd7b1e'),(6137,683,'content_block_2_timeline_item_4_description','With a new focus on sustainability, habitats for barns owl are created at Spectra winery. Rather than relying on chemicals and pesticides, barn owls are used to ensure rodents are removed from the vineyards.'),(6138,683,'_content_block_2_timeline_item_4_description','field_5bc11e27d7b1f'),(6139,683,'content_block_2_timeline_item_4_image','547'),(6140,683,'_content_block_2_timeline_item_4_image','field_5bc11e2dd7b20'),(6141,683,'content_block_2_timeline_item_5_year','2015'),(6142,683,'_content_block_2_timeline_item_5_year','field_5bc11e0cd7b1e'),(6143,683,'content_block_2_timeline_item_5_description','Spectra Winery is named American Winery of the Year.'),(6144,683,'_content_block_2_timeline_item_5_description','field_5bc11e27d7b1f'),(6145,683,'content_block_2_timeline_item_5_image','548'),(6146,683,'_content_block_2_timeline_item_5_image','field_5bc11e2dd7b20'),(6147,683,'content_block_2_timeline_item','6'),(6148,683,'_content_block_2_timeline_item','field_5bc11df7d7b1d'),(6149,683,'content_block_3_text_block_columns','two'),(6150,683,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(6151,683,'content_block_3_narrow_text_block_content','0'),(6152,683,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(6153,683,'content_block_3_reverse_colors','1'),(6154,683,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(6155,683,'content_block_3_enable_background_image','0'),(6156,683,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(6157,683,'content_block_3_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(6158,683,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(6159,683,'content_block_3_text_block_content_col_two','[c7-subscribe-with-name]'),(6160,683,'_content_block_3_text_block_content_col_two','field_5bbe31593920e'),(6161,683,'content_block_0_layout_title',''),(6162,683,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(6163,683,'content_block_0_custom_css_class',''),(6164,683,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(6165,683,'content_block_1_layout_title',''),(6166,683,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(6167,683,'content_block_1_custom_css_class',''),(6168,683,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(6169,683,'content_block_3_layout_title','Subscribe'),(6170,683,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(6171,683,'content_block_3_custom_css_class','subscribe-columns'),(6172,683,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(6187,684,'content_block','a:5:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:7:\"recipes\";i:3;s:18:\"two_column_feature\";i:4;s:10:\"text_block\";}'),(6188,684,'_content_block','field_5bbe19a7efa09'),(6189,684,'content_block_0_banner_full_width','1'),(6190,684,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(6191,684,'content_block_0_banner_size','short'),(6192,684,'_content_block_0_banner_size','field_5bbe232929ec9'),(6193,684,'content_block_0_add_parallax_effect','0'),(6194,684,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(6195,684,'content_block_0_add_veil_over_banner','0'),(6196,684,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(6197,684,'content_block_0_banner_content_position','centered'),(6198,684,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(6199,684,'content_block_0_banner_title','Recipes'),(6200,684,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(6201,684,'content_block_0_banner_subtitle','Try the best food pairings.'),(6202,684,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(6203,684,'content_block_0_banner_button_link',''),(6204,684,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(6205,684,'content_block_0_banner_button_new_tab','0'),(6206,684,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(6207,684,'content_block_0_show_down_arrow','1'),(6208,684,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(6209,684,'content_block_0_banner_image','549'),(6210,684,'_content_block_0_banner_image','field_5bbe201718faf'),(6211,684,'content_block_0_banner_image_position','center center'),(6212,684,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(6213,684,'content_block_0_banner_image_mobile','550'),(6214,684,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(6215,684,'content_block_0_banner_image_mobile_position','center center'),(6216,684,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(6217,684,'content_block_1_text_block_columns','one'),(6218,684,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(6219,684,'content_block_1_narrow_text_block_content','0'),(6220,684,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(6221,684,'content_block_1_reverse_colors','0'),(6222,684,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(6223,684,'content_block_1_enable_background_image','0'),(6224,684,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(6225,684,'content_block_1_text_block_content_col_one','<h2 style=\"text-align: center;\">Our Recipes</h2>\r\n<blockquote style=\"text-align: center;\">I try to create wines that suit our climate and our way of life - wines to drink with the food we grow, make and eat.</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">Spectra winery was realised to focus on our passion for the region and its ability to produce dry - grown and environmentally sustainable wine. Recently a new home was established on our holistic philosophy to winemaking which starts with climate, empahasises the importance on the vineyard, as well as wine\'s relation to the food we love to grow, cook, and eat.</p>'),(6226,684,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(6227,684,'content_block_2_recipes_layout','restricted'),(6228,684,'_content_block_2_recipes_layout','field_5bc51424b723f'),(6229,684,'content_block_2_recipes_have_veil','0'),(6230,684,'_content_block_2_recipes_have_veil','field_5bc5145db7240'),(6231,684,'content_block_2_hide_certain_categories',''),(6232,684,'_content_block_2_hide_certain_categories','field_5bc51a51d17ed'),(6233,684,'content_block_3_gap_between_columns','1'),(6234,684,'_content_block_3_gap_between_columns','field_5bbe44a5ae587'),(6235,684,'content_block_3_full_width_columns','0'),(6236,684,'_content_block_3_full_width_columns','field_5bbe44c7ae588'),(6237,684,'content_block_3_veil_over_images','0'),(6238,684,'_content_block_3_veil_over_images','field_5bbe4f8f88a8a'),(6239,684,'content_block_3_left_column_background_image','437'),(6240,684,'_content_block_3_left_column_background_image','field_5bbe4452ae585'),(6241,684,'content_block_3_left_column_content','<h3>Club Member Event</h3>\r\nCome pick up your shipment and enjoy.'),(6242,684,'_content_block_3_left_column_content','field_5bbe4414ae582'),(6243,684,'content_block_3_left_whole_column_clickable','1'),(6244,684,'_content_block_3_left_whole_column_clickable','field_5bbe44f3ae589'),(6245,684,'content_block_3_left_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(6246,684,'_content_block_3_left_column_button_link','field_5bbe442fae583'),(6247,684,'content_block_3_left_column_button_text','Learn More'),(6248,684,'_content_block_3_left_column_button_text','field_5bbe443dae584'),(6249,684,'content_block_3_right_column_background_image','438'),(6250,684,'_content_block_3_right_column_background_image','field_5bbe4547ae58b'),(6251,684,'content_block_3_right_column_content','<h3>Top Pick</h3>\r\nGold Medal winner for 2015!'),(6252,684,'_content_block_3_right_column_content','field_5bbe4550ae58c'),(6253,684,'content_block_3_right_whole_column_clickable','1'),(6254,684,'_content_block_3_right_whole_column_clickable','field_5bbe455aae58d'),(6255,684,'content_block_3_right_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(6256,684,'_content_block_3_right_column_button_link','field_5bbe456bae58e'),(6257,684,'content_block_3_right_column_button_text','Learn More'),(6258,684,'_content_block_3_right_column_button_text','field_5bbe4577ae58f'),(6259,684,'content_block_4_text_block_columns','two'),(6260,684,'_content_block_4_text_block_columns','field_5bbe2f81a4de0'),(6261,684,'content_block_4_narrow_text_block_content','0'),(6262,684,'_content_block_4_narrow_text_block_content','field_5bbe342e08360'),(6263,684,'content_block_4_reverse_colors','1'),(6264,684,'_content_block_4_reverse_colors','field_5bbe3027a4de1'),(6265,684,'content_block_4_enable_background_image','0'),(6266,684,'_content_block_4_enable_background_image','field_5bbe30b1a4de2'),(6267,684,'content_block_4_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(6268,684,'_content_block_4_text_block_content_col_one','field_5bbe313b3920d'),(6269,684,'content_block_4_text_block_content_col_two','[c7-subscribe-with-name]'),(6270,684,'_content_block_4_text_block_content_col_two','field_5bbe31593920e'),(6271,684,'content_block_2_space_between','withspace'),(6272,684,'_content_block_2_space_between','field_5bd77b88b7fb5'),(6273,684,'content_block_3_left_button_column','0'),(6274,684,'_content_block_3_left_button_column','field_5bd78c465387d'),(6275,684,'content_block_3_right_button_column','0'),(6276,684,'_content_block_3_right_button_column','field_5bd78c465387e'),(6277,684,'content_block_0_layout_title',''),(6278,684,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(6279,684,'content_block_0_custom_css_class',''),(6280,684,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(6281,684,'content_block_1_layout_title',''),(6282,684,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(6283,684,'content_block_1_custom_css_class',''),(6284,684,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(6285,684,'content_block_2_layout_title',''),(6286,684,'_content_block_2_layout_title','field_5bc11ca9a0d50-j'),(6287,684,'content_block_4_layout_title','Subscribe'),(6288,684,'_content_block_4_layout_title','field_5bc11ca9a0d50-s'),(6289,684,'content_block_4_custom_css_class','subscribe-columns'),(6290,684,'_content_block_4_custom_css_class','field_5bbe30b1a4de2-1'),(6291,517,'content_block_0_layout_title',''),(6292,517,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(6293,517,'content_block_0_custom_css_class',''),(6294,517,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(6295,517,'content_block_1_layout_title',''),(6296,517,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(6297,517,'content_block_1_custom_css_class',''),(6298,517,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(6299,517,'content_block_2_layout_title',''),(6300,517,'_content_block_2_layout_title','field_5bc11ca9a0d50-d'),(6301,517,'content_block_2_custom_css_class',''),(6302,517,'_content_block_2_custom_css_class','field_5bbf31b1a4de2-1'),(6303,517,'content_block_2_members_displayed_per_row','4'),(6304,517,'_content_block_2_members_displayed_per_row','field_5bc11d6da0d4f'),(6305,517,'content_block_3_layout_title','Subscribe'),(6306,517,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(6307,517,'content_block_3_custom_css_class','subscribe-columns'),(6308,517,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(6309,685,'content_block','a:4:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:12:\"team_members\";i:3;s:10:\"text_block\";}'),(6310,685,'_content_block','field_5bbe19a7efa09'),(6311,685,'content_block_0_banner_full_width','1'),(6312,685,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(6313,685,'content_block_0_banner_size','short'),(6314,685,'_content_block_0_banner_size','field_5bbe232929ec9'),(6315,685,'content_block_0_add_parallax_effect','0'),(6316,685,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(6317,685,'content_block_0_add_veil_over_banner','0'),(6318,685,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(6319,685,'content_block_0_banner_content_position','centered'),(6320,685,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(6321,685,'content_block_0_banner_title','A great group'),(6322,685,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(6323,685,'content_block_0_banner_subtitle','Crafting an exceptional wine experience!'),(6324,685,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(6325,685,'content_block_0_banner_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:56:\"https://www.meadowcroftwines.com/wines/current-releases/\";s:6:\"target\";s:0:\"\";}'),(6326,685,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(6327,685,'content_block_0_banner_button_text','Current Releases'),(6328,685,'_content_block_0_banner_button_text','field_5bbe1ba0efa0e'),(6329,685,'content_block_0_banner_button_new_tab','0'),(6330,685,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(6331,685,'content_block_0_show_down_arrow','1'),(6332,685,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(6333,685,'content_block_0_banner_image','473'),(6334,685,'_content_block_0_banner_image','field_5bbe201718faf'),(6335,685,'content_block_0_banner_image_position','center center'),(6336,685,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(6337,685,'content_block_0_banner_image_mobile','474'),(6338,685,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(6339,685,'content_block_0_banner_image_mobile_position','center center'),(6340,685,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(6341,685,'content_block_1_text_block_columns','one'),(6342,685,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(6343,685,'content_block_1_narrow_text_block_content','0'),(6344,685,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(6345,685,'content_block_1_reverse_colors','0'),(6346,685,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(6347,685,'content_block_1_enable_background_image','0'),(6348,685,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(6349,685,'content_block_1_text_block_content_col_one','<h2 style=\"text-align: center;\">Our Team</h2>\r\n<blockquote style=\"text-align: center;\">I try to create wines that suit our climate and our way of life - wines to drink with the food we grow, make and eat.</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">Spectra winery was realised to focus on our passion for the region and its ability to produce dry - grown and environmentally sustainable wine. Recently a new home was established on our holistic philosophy to winemaking which starts with climate, empahasises the importance on the vineyard, as well as wine\'s relation to the food we love to grow, cook, and eat.</p>'),(6350,685,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(6351,685,'content_block_3_text_block_columns','two'),(6352,685,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(6353,685,'content_block_3_narrow_text_block_content','0'),(6354,685,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(6355,685,'content_block_3_reverse_colors','1'),(6356,685,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(6357,685,'content_block_3_enable_background_image','0'),(6358,685,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(6359,685,'content_block_3_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(6360,685,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(6361,685,'content_block_3_text_block_content_col_two','[c7-subscribe-with-name]'),(6362,685,'_content_block_3_text_block_content_col_two','field_5bbe31593920e'),(6363,685,'content_block_0_layout_title',''),(6364,685,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(6365,685,'content_block_0_custom_css_class',''),(6366,685,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(6367,685,'content_block_1_layout_title',''),(6368,685,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(6369,685,'content_block_1_custom_css_class',''),(6370,685,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(6371,685,'content_block_2_layout_title',''),(6372,685,'_content_block_2_layout_title','field_5bc11ca9a0d50-d'),(6373,685,'content_block_2_custom_css_class',''),(6374,685,'_content_block_2_custom_css_class','field_5bbf31b1a4de2-1'),(6375,685,'content_block_2_members_displayed_per_row','4'),(6376,685,'_content_block_2_members_displayed_per_row','field_5bc11d6da0d4f'),(6377,685,'content_block_3_layout_title','Subscribe'),(6378,685,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(6379,685,'content_block_3_custom_css_class','subscribe-columns'),(6380,685,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(6381,516,'_wp_page_template','default'),(6383,516,'content_block_0_layout_title',''),(6384,516,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(6385,516,'content_block_0_custom_css_class',''),(6386,516,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(6387,516,'content_block_1_layout_title',''),(6388,516,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(6389,516,'content_block_1_custom_css_class',''),(6390,516,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(6391,516,'content_block_2_layout_title',''),(6392,516,'_content_block_2_layout_title','field_5bc11ca9a0d50-c'),(6393,516,'content_block_2_custom_css_class',''),(6394,516,'_content_block_2_custom_css_class','field_5bbf30b1a4de2-1'),(6395,516,'content_block_3_layout_title',''),(6396,516,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(6397,516,'content_block_3_custom_css_class',''),(6398,516,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(6399,516,'content_block_4_layout_title',''),(6400,516,'_content_block_4_layout_title','field_5bc11ca9a0d50-c'),(6401,516,'content_block_4_custom_css_class',''),(6402,516,'_content_block_4_custom_css_class','field_5bbf30b1a4de2-1'),(6403,516,'content_block_5_layout_title',''),(6404,516,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(6405,516,'content_block_5_custom_css_class',''),(6406,516,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(6407,516,'content_block_6_layout_title',''),(6408,516,'_content_block_6_layout_title','field_5bc11ca9a0d50-c'),(6409,516,'content_block_6_custom_css_class',''),(6410,516,'_content_block_6_custom_css_class','field_5bbf30b1a4de2-1'),(6411,516,'content_block_7_layout_title',''),(6412,516,'_content_block_7_layout_title','field_5bc11ca9a0d50-s'),(6413,516,'content_block_7_custom_css_class',''),(6414,516,'_content_block_7_custom_css_class','field_5bbe30b1a4de2-1'),(6415,516,'content_block_8_layout_title','Subscribe'),(6416,516,'_content_block_8_layout_title','field_5bc11ca9a0d50-s'),(6417,516,'content_block_8_custom_css_class','subscribe-columns'),(6418,516,'_content_block_8_custom_css_class','field_5bbe30b1a4de2-1'),(6419,686,'content_block','a:9:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:6:\"banner\";i:3;s:10:\"text_block\";i:4;s:6:\"banner\";i:5;s:10:\"text_block\";i:6;s:6:\"banner\";i:7;s:10:\"text_block\";i:8;s:10:\"text_block\";}'),(6420,686,'_content_block','field_5bbe19a7efa09'),(6421,686,'content_block_0_banner_full_width','1'),(6422,686,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(6423,686,'content_block_0_banner_size','long'),(6424,686,'_content_block_0_banner_size','field_5bbe232929ec9'),(6425,686,'content_block_0_add_parallax_effect','0'),(6426,686,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(6427,686,'content_block_0_add_veil_over_banner','0'),(6428,686,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(6429,686,'content_block_0_banner_content_position','centered'),(6430,686,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(6431,686,'content_block_0_banner_title','Our Vineyards'),(6432,686,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(6433,686,'content_block_0_banner_subtitle','A selection from the best grapes'),(6434,686,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(6435,686,'content_block_0_banner_button_link',''),(6436,686,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(6437,686,'content_block_0_banner_button_new_tab','0'),(6438,686,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(6439,686,'content_block_0_show_down_arrow','1'),(6440,686,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(6441,686,'content_block_0_banner_image','528'),(6442,686,'_content_block_0_banner_image','field_5bbe201718faf'),(6443,686,'content_block_0_banner_image_position','center center'),(6444,686,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(6445,686,'content_block_0_banner_image_mobile','529'),(6446,686,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(6447,686,'content_block_0_banner_image_mobile_position','center center'),(6448,686,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(6449,686,'content_block_1_text_block_columns','one'),(6450,686,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(6451,686,'content_block_1_narrow_text_block_content','0'),(6452,686,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(6453,686,'content_block_1_reverse_colors','0'),(6454,686,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(6455,686,'content_block_1_enable_background_image','0'),(6456,686,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(6457,686,'content_block_1_text_block_content_col_one','<h2 style=\"text-align: center;\">Viticulture</h2>\r\n<blockquote style=\"text-align: center;\">I try to create wines that suit our climate and our way of life - wines to drink with the food we grow, make and eat.</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">Spectra winery was realised to focus on our passion for the region and its ability to produce dry - grown and environmentally sustainable wine. Recently a new home was established on our holistic philosophy to winemaking which starts with climate, empahasises the importance on the vineyard, as well as wine\'s relation to the food we love to grow, cook, and eat.</p>'),(6458,686,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(6459,686,'content_block_2_banner_full_width','1'),(6460,686,'_content_block_2_banner_full_width','field_5bbe19c8efa0a'),(6461,686,'content_block_2_banner_size','long'),(6462,686,'_content_block_2_banner_size','field_5bbe232929ec9'),(6463,686,'content_block_2_add_parallax_effect','1'),(6464,686,'_content_block_2_add_parallax_effect','field_5bbe219ccb6a9'),(6465,686,'content_block_2_add_veil_over_banner','0'),(6466,686,'_content_block_2_add_veil_over_banner','field_5bbe333f39212'),(6467,686,'content_block_2_banner_content_position','centered'),(6468,686,'_content_block_2_banner_content_position','field_5bbe259b02b62'),(6469,686,'content_block_2_banner_title',''),(6470,686,'_content_block_2_banner_title','field_5bbe1b78efa0b'),(6471,686,'content_block_2_banner_subtitle',''),(6472,686,'_content_block_2_banner_subtitle','field_5bbe1b83efa0c'),(6473,686,'content_block_2_banner_button_link',''),(6474,686,'_content_block_2_banner_button_link','field_5bbe1b8cefa0d'),(6475,686,'content_block_2_banner_button_new_tab','0'),(6476,686,'_content_block_2_banner_button_new_tab','field_5bbe1e6d18fae'),(6477,686,'content_block_2_show_down_arrow','0'),(6478,686,'_content_block_2_show_down_arrow','field_5bbe24f721165'),(6479,686,'content_block_2_banner_image','484'),(6480,686,'_content_block_2_banner_image','field_5bbe201718faf'),(6481,686,'content_block_2_banner_image_position','center center'),(6482,686,'_content_block_2_banner_image_position','field_5bbe278f9fb97'),(6483,686,'content_block_2_banner_image_mobile','485'),(6484,686,'_content_block_2_banner_image_mobile','field_5bbe202818fb0'),(6485,686,'content_block_2_banner_image_mobile_position','center center'),(6486,686,'_content_block_2_banner_image_mobile_position','field_5bbe279c9fb98'),(6487,686,'content_block_3_text_block_columns','one'),(6488,686,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(6489,686,'content_block_3_narrow_text_block_content','0'),(6490,686,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(6491,686,'content_block_3_reverse_colors','0'),(6492,686,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(6493,686,'content_block_3_enable_background_image','0'),(6494,686,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(6495,686,'content_block_3_text_block_content_col_one','<h2 style=\"text-align: center;\">Vineyard 1</h2>\r\n<strong>Location:</strong> Elevated bench on the west side of the valley in the area\'s best location. Adjacent to the winery and home vineyards and Home Vineyards.\r\n\r\n<strong>Vines:</strong> Planted in 1982 with of Riesling, of Kerner, and of Cabernert. The Cabernet and some of the Riesling were recently replaced with Chardonnay, Gamay, Syrah, and Viognier\r\n\r\n<strong>Soil:</strong> Gravel and sand. Despite the proximity to both the winery and home vineyard soil types are competely different.'),(6496,686,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(6497,686,'content_block_4_banner_full_width','1'),(6498,686,'_content_block_4_banner_full_width','field_5bbe19c8efa0a'),(6499,686,'content_block_4_banner_size','long'),(6500,686,'_content_block_4_banner_size','field_5bbe232929ec9'),(6501,686,'content_block_4_add_parallax_effect','1'),(6502,686,'_content_block_4_add_parallax_effect','field_5bbe219ccb6a9'),(6503,686,'content_block_4_add_veil_over_banner','0'),(6504,686,'_content_block_4_add_veil_over_banner','field_5bbe333f39212'),(6505,686,'content_block_4_banner_content_position','centered'),(6506,686,'_content_block_4_banner_content_position','field_5bbe259b02b62'),(6507,686,'content_block_4_banner_title',''),(6508,686,'_content_block_4_banner_title','field_5bbe1b78efa0b'),(6509,686,'content_block_4_banner_subtitle',''),(6510,686,'_content_block_4_banner_subtitle','field_5bbe1b83efa0c'),(6511,686,'content_block_4_banner_button_link',''),(6512,686,'_content_block_4_banner_button_link','field_5bbe1b8cefa0d'),(6513,686,'content_block_4_banner_button_new_tab','0'),(6514,686,'_content_block_4_banner_button_new_tab','field_5bbe1e6d18fae'),(6515,686,'content_block_4_show_down_arrow','0'),(6516,686,'_content_block_4_show_down_arrow','field_5bbe24f721165'),(6517,686,'content_block_4_banner_image','486'),(6518,686,'_content_block_4_banner_image','field_5bbe201718faf'),(6519,686,'content_block_4_banner_image_position','center center'),(6520,686,'_content_block_4_banner_image_position','field_5bbe278f9fb97'),(6521,686,'content_block_4_banner_image_mobile','487'),(6522,686,'_content_block_4_banner_image_mobile','field_5bbe202818fb0'),(6523,686,'content_block_4_banner_image_mobile_position','center center'),(6524,686,'_content_block_4_banner_image_mobile_position','field_5bbe279c9fb98'),(6525,686,'content_block_5_text_block_columns','one'),(6526,686,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(6527,686,'content_block_5_narrow_text_block_content','0'),(6528,686,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(6529,686,'content_block_5_reverse_colors','0'),(6530,686,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(6531,686,'content_block_5_enable_background_image','0'),(6532,686,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(6533,686,'content_block_5_text_block_content_col_one','<h2 style=\"text-align: center;\">Vineyard 2</h2>\r\n<strong>Location:</strong> Located on the west side of the valley, in the area\'s best region. Incorporates two distinct vineyard sites, one on the west side and the other on land that slopes toward the valley bottom.\r\n\r\n<strong>Vines:</strong> Planted in 1999 this vineyard includes approximately of Merlot, each of Pinot Noir and Pinot Gris, and of Gewurztraminer. A little more than half an acre of Syrah was added in the spring of 2014.\r\n\r\n<strong>Soil:</strong> Today we own and farm a total of about and also relies on long-term contracts with some of the areas top grape growers. The winery takes great pride in its positive reputation amongst grape growers as an excellent winery partner. The respect of the growers is reflected in the quality of the fruit that they deliver to us.'),(6534,686,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(6535,686,'content_block_6_banner_full_width','1'),(6536,686,'_content_block_6_banner_full_width','field_5bbe19c8efa0a'),(6537,686,'content_block_6_banner_size','long'),(6538,686,'_content_block_6_banner_size','field_5bbe232929ec9'),(6539,686,'content_block_6_add_parallax_effect','1'),(6540,686,'_content_block_6_add_parallax_effect','field_5bbe219ccb6a9'),(6541,686,'content_block_6_add_veil_over_banner','0'),(6542,686,'_content_block_6_add_veil_over_banner','field_5bbe333f39212'),(6543,686,'content_block_6_banner_content_position','centered'),(6544,686,'_content_block_6_banner_content_position','field_5bbe259b02b62'),(6545,686,'content_block_6_banner_title',''),(6546,686,'_content_block_6_banner_title','field_5bbe1b78efa0b'),(6547,686,'content_block_6_banner_subtitle',''),(6548,686,'_content_block_6_banner_subtitle','field_5bbe1b83efa0c'),(6549,686,'content_block_6_banner_button_link',''),(6550,686,'_content_block_6_banner_button_link','field_5bbe1b8cefa0d'),(6551,686,'content_block_6_banner_button_new_tab','0'),(6552,686,'_content_block_6_banner_button_new_tab','field_5bbe1e6d18fae'),(6553,686,'content_block_6_show_down_arrow','0'),(6554,686,'_content_block_6_show_down_arrow','field_5bbe24f721165'),(6555,686,'content_block_6_banner_image','488'),(6556,686,'_content_block_6_banner_image','field_5bbe201718faf'),(6557,686,'content_block_6_banner_image_position','center center'),(6558,686,'_content_block_6_banner_image_position','field_5bbe278f9fb97'),(6559,686,'content_block_6_banner_image_mobile','489'),(6560,686,'_content_block_6_banner_image_mobile','field_5bbe202818fb0'),(6561,686,'content_block_6_banner_image_mobile_position','center center'),(6562,686,'_content_block_6_banner_image_mobile_position','field_5bbe279c9fb98'),(6563,686,'content_block_7_text_block_columns','one'),(6564,686,'_content_block_7_text_block_columns','field_5bbe2f81a4de0'),(6565,686,'content_block_7_narrow_text_block_content','0'),(6566,686,'_content_block_7_narrow_text_block_content','field_5bbe342e08360'),(6567,686,'content_block_7_reverse_colors','0'),(6568,686,'_content_block_7_reverse_colors','field_5bbe3027a4de1'),(6569,686,'content_block_7_enable_background_image','0'),(6570,686,'_content_block_7_enable_background_image','field_5bbe30b1a4de2'),(6571,686,'content_block_7_text_block_content_col_one','<h2 style=\"text-align: center;\">Vineyard 3</h2>\r\n<strong>Location:</strong> Elevated bench up against the mountain on the west side of the valley in the area’s best region. All-day and late-day sun exposure. Adjacent to the home vineyard.\r\n\r\n<strong>Vines:</strong> First planted in 1986 to Chardonnay, Pinot Noir and Merlot. Syrah was added in 2005.\r\n\r\n<strong>Soil:</strong> It’s not! It is the usual stuff vines really love: hard and rocky with fine clay interspersed. This clay results in a high moisture-holding capacity, giving the vines a natural and constant reservoir of nourishing moisture and nutrients.'),(6572,686,'_content_block_7_text_block_content_col_one','field_5bbe313b3920d'),(6573,686,'content_block_8_text_block_columns','two'),(6574,686,'_content_block_8_text_block_columns','field_5bbe2f81a4de0'),(6575,686,'content_block_8_narrow_text_block_content','0'),(6576,686,'_content_block_8_narrow_text_block_content','field_5bbe342e08360'),(6577,686,'content_block_8_reverse_colors','1'),(6578,686,'_content_block_8_reverse_colors','field_5bbe3027a4de1'),(6579,686,'content_block_8_enable_background_image','0'),(6580,686,'_content_block_8_enable_background_image','field_5bbe30b1a4de2'),(6581,686,'content_block_8_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(6582,686,'_content_block_8_text_block_content_col_one','field_5bbe313b3920d'),(6583,686,'content_block_8_text_block_content_col_two','[c7-subscribe-with-name]'),(6584,686,'_content_block_8_text_block_content_col_two','field_5bbe31593920e'),(6585,686,'content_block_0_layout_title',''),(6586,686,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(6587,686,'content_block_0_custom_css_class',''),(6588,686,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(6589,686,'content_block_1_layout_title',''),(6590,686,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(6591,686,'content_block_1_custom_css_class',''),(6592,686,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(6593,686,'content_block_2_layout_title',''),(6594,686,'_content_block_2_layout_title','field_5bc11ca9a0d50-c'),(6595,686,'content_block_2_custom_css_class',''),(6596,686,'_content_block_2_custom_css_class','field_5bbf30b1a4de2-1'),(6597,686,'content_block_3_layout_title',''),(6598,686,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(6599,686,'content_block_3_custom_css_class',''),(6600,686,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(6601,686,'content_block_4_layout_title',''),(6602,686,'_content_block_4_layout_title','field_5bc11ca9a0d50-c'),(6603,686,'content_block_4_custom_css_class',''),(6604,686,'_content_block_4_custom_css_class','field_5bbf30b1a4de2-1'),(6605,686,'content_block_5_layout_title',''),(6606,686,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(6607,686,'content_block_5_custom_css_class',''),(6608,686,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(6609,686,'content_block_6_layout_title',''),(6610,686,'_content_block_6_layout_title','field_5bc11ca9a0d50-c'),(6611,686,'content_block_6_custom_css_class',''),(6612,686,'_content_block_6_custom_css_class','field_5bbf30b1a4de2-1'),(6613,686,'content_block_7_layout_title',''),(6614,686,'_content_block_7_layout_title','field_5bc11ca9a0d50-s'),(6615,686,'content_block_7_custom_css_class',''),(6616,686,'_content_block_7_custom_css_class','field_5bbe30b1a4de2-1'),(6617,686,'content_block_8_layout_title','Subscribe'),(6618,686,'_content_block_8_layout_title','field_5bc11ca9a0d50-s'),(6619,686,'content_block_8_custom_css_class','subscribe-columns'),(6620,686,'_content_block_8_custom_css_class','field_5bbe30b1a4de2-1'),(6621,446,'_yoast_wpseo_content_score','90'),(6622,446,'content_block_0_layout_title',''),(6623,446,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(6624,446,'content_block_0_custom_css_class',''),(6625,446,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(6626,446,'content_block_1_layout_title',''),(6627,446,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(6628,446,'content_block_1_custom_css_class',''),(6629,446,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(6630,446,'content_block_2_layout_title',''),(6631,446,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(6632,446,'content_block_2_custom_css_class',''),(6633,446,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(6634,446,'content_block_3_layout_title','Subscribe'),(6635,446,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(6636,446,'content_block_3_custom_css_class','subscribe-columns'),(6637,446,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(6718,412,'content_block_0_layout_title',''),(6719,412,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(6720,412,'content_block_0_custom_css_class',''),(6721,412,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(6724,412,'content_block_2_layout_title','Top 100 Winery'),(6725,412,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(6732,688,'content_block','a:6:{i:0;s:6:\"banner\";i:1;s:20:\"three_column_feature\";i:2;s:10:\"text_block\";i:3;s:18:\"product_collection\";i:4;s:18:\"two_column_feature\";i:5;s:10:\"text_block\";}'),(6733,688,'_content_block','field_5bbe19a7efa09'),(6734,688,'content_block_0_banner_full_width','1'),(6735,688,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(6736,688,'content_block_0_banner_size','long'),(6737,688,'_content_block_0_banner_size','field_5bbe232929ec9'),(6738,688,'content_block_0_add_parallax_effect','0'),(6739,688,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(6740,688,'content_block_0_add_veil_over_banner','0'),(6741,688,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(6742,688,'content_block_0_banner_content_position','centered'),(6743,688,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(6744,688,'content_block_0_banner_title','Welcome to Spectra Winery'),(6745,688,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(6746,688,'content_block_0_banner_subtitle','CRAFTING AN EXCEPTIONAL WINE EXPERIENCE!'),(6747,688,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(6748,688,'content_block_0_banner_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:24:\"/wines/current-releases/\";s:6:\"target\";s:0:\"\";}'),(6749,688,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(6750,688,'content_block_0_banner_button_text','Current Releases'),(6751,688,'_content_block_0_banner_button_text','field_5bbe1ba0efa0e'),(6752,688,'content_block_0_banner_button_new_tab','0'),(6753,688,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(6754,688,'content_block_0_show_down_arrow','1'),(6755,688,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(6756,688,'content_block_0_banner_image','432'),(6757,688,'_content_block_0_banner_image','field_5bbe201718faf'),(6758,688,'content_block_0_banner_image_position','center center'),(6759,688,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(6760,688,'content_block_0_banner_image_mobile','433'),(6761,688,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(6762,688,'content_block_0_banner_image_mobile_position','center center'),(6763,688,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(6764,688,'content_block_1_gap_between_columns','0'),(6765,688,'_content_block_1_gap_between_columns','field_5bbe5a0e54759'),(6766,688,'content_block_1_full_width_columns','1'),(6767,688,'_content_block_1_full_width_columns','field_5bbe5a0e5475a'),(6768,688,'content_block_1_veil_over_images','0'),(6769,688,'_content_block_1_veil_over_images','field_5bbe5a0e5475b'),(6770,688,'content_block_1_first_column_background_image','434'),(6771,688,'_content_block_1_first_column_background_image','field_5bbe5a0e5475d'),(6772,688,'content_block_1_first_column_content','<h3>Shop Wine</h3>\r\nReview our current wine release.'),(6773,688,'_content_block_1_first_column_content','field_5bbe5a0e5475e'),(6774,688,'content_block_1_first_whole_column_clickable','1'),(6775,688,'_content_block_1_first_whole_column_clickable','field_5bbe5a0e5475f'),(6776,688,'content_block_1_first_column_button_url','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:23:\"/wines/current-releases\";s:6:\"target\";s:0:\"\";}'),(6777,688,'_content_block_1_first_column_button_url','field_5bbe5a0e54760'),(6778,688,'content_block_1_first_column_button_text','VIEW RELEASES'),(6779,688,'_content_block_1_first_column_button_text','field_5bbe5a0e54761'),(6780,688,'content_block_1_second_column_background_image','435'),(6781,688,'_content_block_1_second_column_background_image','field_5bbe5a0e54763'),(6782,688,'content_block_1_second_column_content','<h3>Experiences</h3>\r\nCome and experience our wines.'),(6783,688,'_content_block_1_second_column_content','field_5bbe5a0e54764'),(6784,688,'content_block_1_second_whole_column_clickable','1'),(6785,688,'_content_block_1_second_whole_column_clickable','field_5bbe5a0e54765'),(6786,688,'content_block_1_second_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:7:\"/visit/\";s:6:\"target\";s:0:\"\";}'),(6787,688,'_content_block_1_second_column_button_link','field_5bbe5a0e54766'),(6788,688,'content_block_1_second_column_button_text','BOOK TASTING'),(6789,688,'_content_block_1_second_column_button_text','field_5bbe5a0e54767'),(6790,688,'content_block_1_third_column_background_image','436'),(6791,688,'_content_block_1_third_column_background_image','field_5bbe5aa254769'),(6792,688,'content_block_1_third_column_content','<h3>Membership</h3>\r\nGreat wine, great benefits!'),(6793,688,'_content_block_1_third_column_content','field_5bbe5aae5476a'),(6794,688,'content_block_1_third_whole_column_clickable','1'),(6795,688,'_content_block_1_third_whole_column_clickable','field_5bbe5ae25476e'),(6796,688,'content_block_1_third_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:6:\"/club/\";s:6:\"target\";s:0:\"\";}'),(6797,688,'_content_block_1_third_column_button_link','field_5bbe5ac15476c'),(6798,688,'content_block_1_third_column_button_text','LEARN MORE'),(6799,688,'_content_block_1_third_column_button_text','field_5bbe5aca5476d'),(6800,688,'content_block_2_text_block_columns','one'),(6801,688,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(6802,688,'content_block_2_narrow_text_block_content','0'),(6803,688,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(6804,688,'content_block_2_reverse_colors','0'),(6805,688,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(6806,688,'content_block_2_enable_background_image','0'),(6807,688,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(6808,688,'content_block_2_text_block_content_col_one','<h2 style=\"text-align: center;\">The New Release</h2>\r\n<blockquote>I try to create wines that suit our climate and our way of life - wines to drink with the food we grow, make and eat.</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">Spectra winery was realised to focus on our passion for the region and its ability to produce dry - grown and environmentally sustainable wine. Recently a new home was established on our holistic philosophy to winemaking which starts with climate, empahasises the importance on the vineyard, as well as wine\'s relation to the food we love to grow, cook, and eat.</p>'),(6809,688,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(6810,688,'content_block_3_product_row_number','3up'),(6811,688,'_content_block_3_product_row_number','field_5bc11c6da0d4f'),(6812,688,'content_block_3_data_collection_slug','home'),(6813,688,'_content_block_3_data_collection_slug','field_5bc11ca9a0d50'),(6814,688,'content_block_4_gap_between_columns','1'),(6815,688,'_content_block_4_gap_between_columns','field_5bbe44a5ae587'),(6816,688,'content_block_4_full_width_columns','0'),(6817,688,'_content_block_4_full_width_columns','field_5bbe44c7ae588'),(6818,688,'content_block_4_veil_over_images','0'),(6819,688,'_content_block_4_veil_over_images','field_5bbe4f8f88a8a'),(6820,688,'content_block_4_left_column_background_image','437'),(6821,688,'_content_block_4_left_column_background_image','field_5bbe4452ae585'),(6822,688,'content_block_4_left_column_content','<h3>Club Member Event</h3>\r\nCome pick up your shipment and enjoy.'),(6823,688,'_content_block_4_left_column_content','field_5bbe4414ae582'),(6824,688,'content_block_4_left_whole_column_clickable','1'),(6825,688,'_content_block_4_left_whole_column_clickable','field_5bbe44f3ae589'),(6826,688,'content_block_4_left_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:7:\"/clubs/\";s:6:\"target\";s:0:\"\";}'),(6827,688,'_content_block_4_left_column_button_link','field_5bbe442fae583'),(6828,688,'content_block_4_left_column_button_text','LEARN MORE'),(6829,688,'_content_block_4_left_column_button_text','field_5bbe443dae584'),(6830,688,'content_block_4_right_column_background_image','438'),(6831,688,'_content_block_4_right_column_background_image','field_5bbe4547ae58b'),(6832,688,'content_block_4_right_column_content','&nbsp;\r\n<h3>Top Pick</h3>\r\nGold Medal winner for 2015!'),(6833,688,'_content_block_4_right_column_content','field_5bbe4550ae58c'),(6834,688,'content_block_4_right_whole_column_clickable','1'),(6835,688,'_content_block_4_right_whole_column_clickable','field_5bbe455aae58d'),(6836,688,'content_block_4_right_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:24:\"/wines/current-releases/\";s:6:\"target\";s:0:\"\";}'),(6837,688,'_content_block_4_right_column_button_link','field_5bbe456bae58e'),(6838,688,'content_block_4_right_column_button_text','LEARN MORE'),(6839,688,'_content_block_4_right_column_button_text','field_5bbe4577ae58f'),(6840,688,'content_block_5_text_block_columns','two'),(6841,688,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(6842,688,'content_block_5_narrow_text_block_content','0'),(6843,688,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(6844,688,'content_block_5_reverse_colors','1'),(6845,688,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(6846,688,'content_block_5_enable_background_image','0'),(6847,688,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(6848,688,'content_block_5_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(6849,688,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(6850,688,'content_block_5_text_block_content_col_two','[c7-subscribe-with-name]'),(6851,688,'_content_block_5_text_block_content_col_two','field_5bbe31593920e'),(6852,688,'content_block_1_first_button_column','0'),(6853,688,'_content_block_1_first_button_column','field_5bd78c465387a'),(6854,688,'content_block_1_second_button_column','0'),(6855,688,'_content_block_1_second_button_column','field_5bd78c465387b'),(6856,688,'content_block_1_third_button_column','0'),(6857,688,'_content_block_1_third_button_column','field_5bd78c465387c'),(6858,688,'content_block_3_product_display_teaser','1'),(6859,688,'_content_block_3_product_display_teaser','field_5d114505e6923'),(6860,688,'content_block_3_product_display_feature','0'),(6861,688,'_content_block_3_product_display_feature','field_5d1144d5e6922'),(6862,688,'content_block_4_left_button_column','0'),(6863,688,'_content_block_4_left_button_column','field_5bd78c465387d'),(6864,688,'content_block_4_right_button_column','0'),(6865,688,'_content_block_4_right_button_column','field_5bd78c465387e'),(6866,688,'content_block_2_custom_css_class',''),(6867,688,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(6868,688,'content_block_5_custom_css_class','subscribe-columns'),(6869,688,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(6870,688,'content_block_0_layout_title',''),(6871,688,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(6872,688,'content_block_0_custom_css_class',''),(6873,688,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(6874,688,'content_block_1_layout_title',''),(6875,688,'_content_block_1_layout_title','field_5bc11ca9a0d50-q'),(6876,688,'content_block_2_layout_title',''),(6877,688,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(6878,688,'content_block_3_layout_title',''),(6879,688,'_content_block_3_layout_title','field_5bc11ca9a0d50-v'),(6880,688,'content_block_3_manually_enter_collection_slug','0'),(6881,688,'_content_block_3_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(6882,688,'content_block_5_layout_title','Subscribe'),(6883,688,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(6884,431,'content_block_0_layout_title',''),(6885,431,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(6886,431,'content_block_0_custom_css_class',''),(6887,431,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(6888,431,'content_block_1_layout_title','Page Title + Button'),(6889,431,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(6896,689,'content_block','a:5:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:18:\"product_collection\";i:3;s:18:\"two_column_feature\";i:4;s:10:\"text_block\";}'),(6897,689,'_content_block','field_5bbe19a7efa09'),(6898,689,'content_block_0_banner_full_width','1'),(6899,689,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(6900,689,'content_block_0_banner_size','long'),(6901,689,'_content_block_0_banner_size','field_5bbe232929ec9'),(6902,689,'content_block_0_add_parallax_effect','0'),(6903,689,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(6904,689,'content_block_0_add_veil_over_banner','0'),(6905,689,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(6906,689,'content_block_0_banner_content_position','centered'),(6907,689,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(6908,689,'content_block_0_banner_title','Welcome to Spectra Winery'),(6909,689,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(6910,689,'content_block_0_banner_subtitle','CRAFTING AN EXCEPTIONAL WINE EXPERIENCE!'),(6911,689,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(6912,689,'content_block_0_banner_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:24:\"/wines/current-releases/\";s:6:\"target\";s:0:\"\";}'),(6913,689,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(6914,689,'content_block_0_banner_button_text','Current Releases'),(6915,689,'_content_block_0_banner_button_text','field_5bbe1ba0efa0e'),(6916,689,'content_block_0_banner_button_new_tab','0'),(6917,689,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(6918,689,'content_block_0_show_down_arrow','1'),(6919,689,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(6920,689,'content_block_0_banner_image','476'),(6921,689,'_content_block_0_banner_image','field_5bbe201718faf'),(6922,689,'content_block_0_banner_image_position','center center'),(6923,689,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(6924,689,'content_block_0_banner_image_mobile','477'),(6925,689,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(6926,689,'content_block_0_banner_image_mobile_position','center center'),(6927,689,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(6928,689,'content_block_1_text_block_columns','one'),(6929,689,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(6930,689,'content_block_1_narrow_text_block_content','0'),(6931,689,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(6932,689,'content_block_1_reverse_colors','0'),(6933,689,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(6934,689,'content_block_1_enable_background_image','0'),(6935,689,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(6936,689,'content_block_1_text_block_content_col_one','<h2 style=\"text-align: center;\">The New Release</h2>\r\n<blockquote>I try to create wines that suit our climate and our way of life - wines to drink with the food we grow, make and eat.</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">Spectra winery was realised to focus on our passion for the region and its ability to produce dry - grown and environmentally sustainable wine. Recently a new home was established on our holistic philosophy to winemaking which starts with climate, empahasises the importance on the vineyard, as well as wine\'s relation to the food we love to grow, cook, and eat.</p>'),(6937,689,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(6938,689,'content_block_2_product_row_number','3up'),(6939,689,'_content_block_2_product_row_number','field_5bc11c6da0d4f'),(6940,689,'content_block_2_data_collection_slug','home'),(6941,689,'_content_block_2_data_collection_slug','field_5bc11ca9a0d50'),(6942,689,'content_block_3_gap_between_columns','0'),(6943,689,'_content_block_3_gap_between_columns','field_5bbe44a5ae587'),(6944,689,'content_block_3_full_width_columns','0'),(6945,689,'_content_block_3_full_width_columns','field_5bbe44c7ae588'),(6946,689,'content_block_3_veil_over_images','0'),(6947,689,'_content_block_3_veil_over_images','field_5bbe4f8f88a8a'),(6948,689,'content_block_3_left_column_background_image','437'),(6949,689,'_content_block_3_left_column_background_image','field_5bbe4452ae585'),(6950,689,'content_block_3_left_column_content','<h3>Club Member Event</h3>\r\nCome pick up your shipment and enjoy.'),(6951,689,'_content_block_3_left_column_content','field_5bbe4414ae582'),(6952,689,'content_block_3_left_whole_column_clickable','1'),(6953,689,'_content_block_3_left_whole_column_clickable','field_5bbe44f3ae589'),(6954,689,'content_block_3_left_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:7:\"/clubs/\";s:6:\"target\";s:0:\"\";}'),(6955,689,'_content_block_3_left_column_button_link','field_5bbe442fae583'),(6956,689,'content_block_3_left_column_button_text','LEARN MORE'),(6957,689,'_content_block_3_left_column_button_text','field_5bbe443dae584'),(6958,689,'content_block_3_right_column_background_image','438'),(6959,689,'_content_block_3_right_column_background_image','field_5bbe4547ae58b'),(6960,689,'content_block_3_right_column_content','&nbsp;\r\n<h3>Top Pick</h3>\r\nGold Medal winner for 2015!'),(6961,689,'_content_block_3_right_column_content','field_5bbe4550ae58c'),(6962,689,'content_block_3_right_whole_column_clickable','1'),(6963,689,'_content_block_3_right_whole_column_clickable','field_5bbe455aae58d'),(6964,689,'content_block_3_right_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:24:\"/wines/current-releases/\";s:6:\"target\";s:0:\"\";}'),(6965,689,'_content_block_3_right_column_button_link','field_5bbe456bae58e'),(6966,689,'content_block_3_right_column_button_text','LEARN MORE'),(6967,689,'_content_block_3_right_column_button_text','field_5bbe4577ae58f'),(6968,689,'content_block_2_product_display_teaser','1'),(6969,689,'_content_block_2_product_display_teaser','field_5d114505e6923'),(6970,689,'content_block_2_product_display_feature','0'),(6971,689,'_content_block_2_product_display_feature','field_5d1144d5e6922'),(6972,689,'content_block_3_left_button_column','0'),(6973,689,'_content_block_3_left_button_column','field_5bd78c465387d'),(6974,689,'content_block_3_right_button_column','0'),(6975,689,'_content_block_3_right_button_column','field_5bd78c465387e'),(6976,689,'content_block_4_text_block_columns','one'),(6977,689,'_content_block_4_text_block_columns','field_5bbe2f81a4de0'),(6978,689,'content_block_4_narrow_text_block_content','1'),(6979,689,'_content_block_4_narrow_text_block_content','field_5bbe342e08360'),(6980,689,'content_block_4_reverse_colors','1'),(6981,689,'_content_block_4_reverse_colors','field_5bbe3027a4de1'),(6982,689,'content_block_4_enable_background_image','0'),(6983,689,'_content_block_4_enable_background_image','field_5bbe30b1a4de2'),(6984,689,'content_block_4_text_block_content_col_one','<h3 style=\"text-align: center;\">Stay in touch</h3>\r\n<p style=\"text-align: center;\">We have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!</p>\r\n\r\n<div style=\"text-align: center;\">[c7-subscribe]</div>'),(6985,689,'_content_block_4_text_block_content_col_one','field_5bbe313b3920d'),(6986,689,'content_block_1_custom_css_class',''),(6987,689,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(6988,689,'content_block_4_custom_css_class','subscribe-columns'),(6989,689,'_content_block_4_custom_css_class','field_5bbe30b1a4de2-1'),(6990,689,'content_block_0_layout_title',''),(6991,689,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(6992,689,'content_block_0_custom_css_class',''),(6993,689,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(6994,689,'content_block_1_layout_title',''),(6995,689,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(6996,689,'content_block_2_layout_title',''),(6997,689,'_content_block_2_layout_title','field_5bc11ca9a0d50-v'),(6998,689,'content_block_2_manually_enter_collection_slug','0'),(6999,689,'_content_block_2_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(7000,689,'content_block_4_layout_title','Subscribe'),(7001,689,'_content_block_4_layout_title','field_5bc11ca9a0d50-s'),(7040,690,'content_block','a:8:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:6:\"banner\";i:3;s:10:\"text_block\";i:4;s:18:\"product_collection\";i:5;s:6:\"banner\";i:6;s:10:\"text_block\";i:7;s:10:\"text_block\";}'),(7041,690,'_content_block','field_5bbe19a7efa09'),(7042,690,'content_block_0_banner_full_width','1'),(7043,690,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(7044,690,'content_block_0_banner_size','long'),(7045,690,'_content_block_0_banner_size','field_5bbe232929ec9'),(7046,690,'content_block_0_add_parallax_effect','0'),(7047,690,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(7048,690,'content_block_0_add_veil_over_banner','0'),(7049,690,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(7050,690,'content_block_0_banner_content_position','centered'),(7051,690,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(7052,690,'content_block_0_banner_title','Welcome to Spectra Winery'),(7053,690,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(7054,690,'content_block_0_banner_subtitle','CRAFTING AN EXCEPTIONAL WINE EXPERIENCE!'),(7055,690,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(7056,690,'content_block_0_banner_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:24:\"/wines/current-releases/\";s:6:\"target\";s:0:\"\";}'),(7057,690,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(7058,690,'content_block_0_banner_button_text','Current Releases'),(7059,690,'_content_block_0_banner_button_text','field_5bbe1ba0efa0e'),(7060,690,'content_block_0_banner_button_new_tab','0'),(7061,690,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(7062,690,'content_block_0_show_down_arrow','1'),(7063,690,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(7064,690,'content_block_0_banner_image','484'),(7065,690,'_content_block_0_banner_image','field_5bbe201718faf'),(7066,690,'content_block_0_banner_image_position','center center'),(7067,690,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(7068,690,'content_block_0_banner_image_mobile','485'),(7069,690,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(7070,690,'content_block_0_banner_image_mobile_position','center center'),(7071,690,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(7072,690,'content_block_1_text_block_columns','one'),(7073,690,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(7074,690,'content_block_1_narrow_text_block_content','0'),(7075,690,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(7076,690,'content_block_1_reverse_colors','0'),(7077,690,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(7078,690,'content_block_1_enable_background_image','0'),(7079,690,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(7080,690,'content_block_1_text_block_content_col_one','<h2 style=\"text-align: center;\">The New Release</h2>\r\n<blockquote style=\"text-align: center;\">I try to create wines that suit our climate and our way of life - wines to drink with the food we grow, make and eat.</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">Spectra winery was realised to focus on our passion for the region and its ability to produce dry - grown and environmentally sustainable wine. Recently a new home was established on our holistic philosophy to winemaking which starts with climate, empahasises the importance on the vineyard, as well as wine\'s relation to the food we love to grow, cook, and eat.</p>'),(7081,690,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(7082,690,'content_block_2_banner_full_width','1'),(7083,690,'_content_block_2_banner_full_width','field_5bbe19c8efa0a'),(7084,690,'content_block_2_banner_size','normal'),(7085,690,'_content_block_2_banner_size','field_5bbe232929ec9'),(7086,690,'content_block_2_add_parallax_effect','1'),(7087,690,'_content_block_2_add_parallax_effect','field_5bbe219ccb6a9'),(7088,690,'content_block_2_add_veil_over_banner','0'),(7089,690,'_content_block_2_add_veil_over_banner','field_5bbe333f39212'),(7090,690,'content_block_2_banner_content_position','centered'),(7091,690,'_content_block_2_banner_content_position','field_5bbe259b02b62'),(7092,690,'content_block_2_banner_title',''),(7093,690,'_content_block_2_banner_title','field_5bbe1b78efa0b'),(7094,690,'content_block_2_banner_subtitle',''),(7095,690,'_content_block_2_banner_subtitle','field_5bbe1b83efa0c'),(7096,690,'content_block_2_banner_button_link',''),(7097,690,'_content_block_2_banner_button_link','field_5bbe1b8cefa0d'),(7098,690,'content_block_2_banner_button_new_tab','0'),(7099,690,'_content_block_2_banner_button_new_tab','field_5bbe1e6d18fae'),(7100,690,'content_block_2_show_down_arrow','0'),(7101,690,'_content_block_2_show_down_arrow','field_5bbe24f721165'),(7102,690,'content_block_2_banner_image','486'),(7103,690,'_content_block_2_banner_image','field_5bbe201718faf'),(7104,690,'content_block_2_banner_image_position','center center'),(7105,690,'_content_block_2_banner_image_position','field_5bbe278f9fb97'),(7106,690,'content_block_2_banner_image_mobile','487'),(7107,690,'_content_block_2_banner_image_mobile','field_5bbe202818fb0'),(7108,690,'content_block_2_banner_image_mobile_position','center center'),(7109,690,'_content_block_2_banner_image_mobile_position','field_5bbe279c9fb98'),(7110,690,'content_block_3_text_block_columns','one'),(7111,690,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(7112,690,'content_block_3_narrow_text_block_content','0'),(7113,690,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(7114,690,'content_block_3_reverse_colors','0'),(7115,690,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(7116,690,'content_block_3_enable_background_image','0'),(7117,690,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(7118,690,'content_block_3_text_block_content_col_one','<h2 style=\"text-align: center;\">Current Releases</h2>'),(7119,690,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(7120,690,'content_block_4_product_row_number','2up'),(7121,690,'_content_block_4_product_row_number','field_5bc11c6da0d4f'),(7122,690,'content_block_4_data_collection_slug','homepage-2up'),(7123,690,'_content_block_4_data_collection_slug','field_5bc11ca9a0d50'),(7124,690,'content_block_5_banner_full_width','1'),(7125,690,'_content_block_5_banner_full_width','field_5bbe19c8efa0a'),(7126,690,'content_block_5_banner_size','normal'),(7127,690,'_content_block_5_banner_size','field_5bbe232929ec9'),(7128,690,'content_block_5_add_parallax_effect','1'),(7129,690,'_content_block_5_add_parallax_effect','field_5bbe219ccb6a9'),(7130,690,'content_block_5_add_veil_over_banner','0'),(7131,690,'_content_block_5_add_veil_over_banner','field_5bbe333f39212'),(7132,690,'content_block_5_banner_content_position','centered'),(7133,690,'_content_block_5_banner_content_position','field_5bbe259b02b62'),(7134,690,'content_block_5_banner_title',''),(7135,690,'_content_block_5_banner_title','field_5bbe1b78efa0b'),(7136,690,'content_block_5_banner_subtitle',''),(7137,690,'_content_block_5_banner_subtitle','field_5bbe1b83efa0c'),(7138,690,'content_block_5_banner_button_link',''),(7139,690,'_content_block_5_banner_button_link','field_5bbe1b8cefa0d'),(7140,690,'content_block_5_banner_button_new_tab','0'),(7141,690,'_content_block_5_banner_button_new_tab','field_5bbe1e6d18fae'),(7142,690,'content_block_5_show_down_arrow','0'),(7143,690,'_content_block_5_show_down_arrow','field_5bbe24f721165'),(7144,690,'content_block_5_banner_image','488'),(7145,690,'_content_block_5_banner_image','field_5bbe201718faf'),(7146,690,'content_block_5_banner_image_position','center center'),(7147,690,'_content_block_5_banner_image_position','field_5bbe278f9fb97'),(7148,690,'content_block_5_banner_image_mobile','489'),(7149,690,'_content_block_5_banner_image_mobile','field_5bbe202818fb0'),(7150,690,'content_block_5_banner_image_mobile_position','center center'),(7151,690,'_content_block_5_banner_image_mobile_position','field_5bbe279c9fb98'),(7152,690,'content_block_6_text_block_columns','one'),(7153,690,'_content_block_6_text_block_columns','field_5bbe2f81a4de0'),(7154,690,'content_block_6_narrow_text_block_content','0'),(7155,690,'_content_block_6_narrow_text_block_content','field_5bbe342e08360'),(7156,690,'content_block_6_reverse_colors','0'),(7157,690,'_content_block_6_reverse_colors','field_5bbe3027a4de1'),(7158,690,'content_block_6_enable_background_image','0'),(7159,690,'_content_block_6_enable_background_image','field_5bbe30b1a4de2'),(7160,690,'content_block_6_text_block_content_col_one','<h2 style=\"text-align: center;\">The art of making wine</h2>\r\nGuided by the vision of our founders, our winemaker combines intuition and technical knowldege with the combined perspective of grower and winemaker. From tasting grapes to sorting and extended aging in new oak barrels, each stage of the winemaking process is uses the same meticulous consideration and attention. After 18 months, the wine is bottled and held an additional 15 months until release in the fall of each year.'),(7161,690,'_content_block_6_text_block_content_col_one','field_5bbe313b3920d'),(7162,690,'content_block_7_text_block_columns','one'),(7163,690,'_content_block_7_text_block_columns','field_5bbe2f81a4de0'),(7164,690,'content_block_7_narrow_text_block_content','1'),(7165,690,'_content_block_7_narrow_text_block_content','field_5bbe342e08360'),(7166,690,'content_block_7_reverse_colors','1'),(7167,690,'_content_block_7_reverse_colors','field_5bbe3027a4de1'),(7168,690,'content_block_7_enable_background_image','0'),(7169,690,'_content_block_7_enable_background_image','field_5bbe30b1a4de2'),(7170,690,'content_block_7_text_block_content_col_one','<h3 style=\"text-align: center;\">Newsletter</h3>\r\n<p style=\"text-align: center;\">Guided by the vision of our founders, our winemaker, Michael Silacci, combines intuition and technical acumen with the dual perspective of viticulturist and winemaker.</p>\r\n\r\n<div style=\"text-align: center;\">[c7-subscribe]</div>'),(7171,690,'_content_block_7_text_block_content_col_one','field_5bbe313b3920d'),(7172,690,'content_block_0_layout_title',''),(7173,690,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(7174,690,'content_block_0_custom_css_class',''),(7175,690,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(7176,690,'content_block_1_layout_title',''),(7177,690,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(7178,690,'content_block_1_custom_css_class',''),(7179,690,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(7180,690,'content_block_2_layout_title',''),(7181,690,'_content_block_2_layout_title','field_5bc11ca9a0d50-c'),(7182,690,'content_block_2_custom_css_class',''),(7183,690,'_content_block_2_custom_css_class','field_5bbf30b1a4de2-1'),(7184,690,'content_block_3_layout_title',''),(7185,690,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(7186,690,'content_block_3_custom_css_class',''),(7187,690,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(7188,690,'content_block_4_layout_title',''),(7189,690,'_content_block_4_layout_title','field_5bc11ca9a0d50-v'),(7190,690,'content_block_4_manually_enter_collection_slug','0'),(7191,690,'_content_block_4_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(7192,690,'content_block_4_product_display_feature','0'),(7193,690,'_content_block_4_product_display_feature','field_5d1144d5e6922'),(7194,690,'content_block_4_product_display_teaser','0'),(7195,690,'_content_block_4_product_display_teaser','field_5d114505e6923'),(7196,690,'content_block_5_layout_title',''),(7197,690,'_content_block_5_layout_title','field_5bc11ca9a0d50-c'),(7198,690,'content_block_5_custom_css_class',''),(7199,690,'_content_block_5_custom_css_class','field_5bbf30b1a4de2-1'),(7200,690,'content_block_6_layout_title',''),(7201,690,'_content_block_6_layout_title','field_5bc11ca9a0d50-s'),(7202,690,'content_block_6_custom_css_class',''),(7203,690,'_content_block_6_custom_css_class','field_5bbe30b1a4de2-1'),(7204,690,'content_block_7_layout_title','Subscribe'),(7205,690,'_content_block_7_layout_title','field_5bc11ca9a0d50-s'),(7206,690,'content_block_7_custom_css_class','subscribe-columns'),(7207,690,'_content_block_7_custom_css_class','field_5bbe30b1a4de2-1'),(7232,691,'content_block','a:5:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:18:\"product_collection\";i:3;s:19:\"complex_image_block\";i:4;s:10:\"text_block\";}'),(7233,691,'_content_block','field_5bbe19a7efa09'),(7234,691,'content_block_0_banner_full_width','1'),(7235,691,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(7236,691,'content_block_0_banner_size','long'),(7237,691,'_content_block_0_banner_size','field_5bbe232929ec9'),(7238,691,'content_block_0_add_parallax_effect','0'),(7239,691,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(7240,691,'content_block_0_add_veil_over_banner','0'),(7241,691,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(7242,691,'content_block_0_banner_content_position','centered'),(7243,691,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(7244,691,'content_block_0_banner_title','Welcome to Spectra Winery'),(7245,691,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(7246,691,'content_block_0_banner_subtitle','CRAFTING AN EXCEPTIONAL WINE EXPERIENCE!'),(7247,691,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(7248,691,'content_block_0_banner_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:24:\"/wines/current-releases/\";s:6:\"target\";s:0:\"\";}'),(7249,691,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(7250,691,'content_block_0_banner_button_text','Current Releases'),(7251,691,'_content_block_0_banner_button_text','field_5bbe1ba0efa0e'),(7252,691,'content_block_0_banner_button_new_tab','0'),(7253,691,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(7254,691,'content_block_0_show_down_arrow','1'),(7255,691,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(7256,691,'content_block_0_banner_image','491'),(7257,691,'_content_block_0_banner_image','field_5bbe201718faf'),(7258,691,'content_block_0_banner_image_position','center center'),(7259,691,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(7260,691,'content_block_0_banner_image_mobile','490'),(7261,691,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(7262,691,'content_block_0_banner_image_mobile_position','center center'),(7263,691,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(7264,691,'content_block_1_text_block_columns','one'),(7265,691,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(7266,691,'content_block_1_narrow_text_block_content','0'),(7267,691,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(7268,691,'content_block_1_reverse_colors','0'),(7269,691,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(7270,691,'content_block_1_enable_background_image','0'),(7271,691,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(7272,691,'content_block_1_text_block_content_col_one','<h2 style=\"text-align: center;\">Current Releases</h2>'),(7273,691,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(7274,691,'content_block_2_product_row_number','2up'),(7275,691,'_content_block_2_product_row_number','field_5bc11c6da0d4f'),(7276,691,'content_block_2_data_collection_slug','homepage-2up'),(7277,691,'_content_block_2_data_collection_slug','field_5bc11ca9a0d50'),(7278,691,'content_block_3_large_image_left_or_right','left'),(7279,691,'_content_block_3_large_image_left_or_right','field_5bc63468e4a47'),(7280,691,'content_block_3_large_image','492'),(7281,691,'_content_block_3_large_image','field_5bc63495e4a48'),(7282,691,'content_block_3_first_smaller_image','493'),(7283,691,'_content_block_3_first_smaller_image','field_5bc634cbe4a4b'),(7284,691,'content_block_3_second_smaller_image','494'),(7285,691,'_content_block_3_second_smaller_image','field_5bc634e0e4a4c'),(7286,691,'content_block_4_text_block_columns','two'),(7287,691,'_content_block_4_text_block_columns','field_5bbe2f81a4de0'),(7288,691,'content_block_4_narrow_text_block_content','0'),(7289,691,'_content_block_4_narrow_text_block_content','field_5bbe342e08360'),(7290,691,'content_block_4_reverse_colors','1'),(7291,691,'_content_block_4_reverse_colors','field_5bbe3027a4de1'),(7292,691,'content_block_4_enable_background_image','0'),(7293,691,'_content_block_4_enable_background_image','field_5bbe30b1a4de2'),(7294,691,'content_block_4_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(7295,691,'_content_block_4_text_block_content_col_one','field_5bbe313b3920d'),(7296,691,'content_block_4_text_block_content_col_two','[c7-subscribe-with-name]'),(7297,691,'_content_block_4_text_block_content_col_two','field_5bbe31593920e'),(7298,691,'content_block_0_layout_title',''),(7299,691,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(7300,691,'content_block_0_custom_css_class',''),(7301,691,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(7302,691,'content_block_1_layout_title',''),(7303,691,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(7304,691,'content_block_1_custom_css_class',''),(7305,691,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(7306,691,'content_block_2_layout_title',''),(7307,691,'_content_block_2_layout_title','field_5bc11ca9a0d50-v'),(7308,691,'content_block_2_manually_enter_collection_slug','0'),(7309,691,'_content_block_2_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(7310,691,'content_block_2_product_display_feature','0'),(7311,691,'_content_block_2_product_display_feature','field_5d1144d5e6922'),(7312,691,'content_block_2_product_display_teaser','0'),(7313,691,'_content_block_2_product_display_teaser','field_5d114505e6923'),(7314,691,'content_block_3_layout_title',''),(7315,691,'_content_block_3_layout_title','field_5bc11ca9a0d50-n'),(7316,691,'content_block_4_layout_title','Subscribe'),(7317,691,'_content_block_4_layout_title','field_5bc11ca9a0d50-s'),(7318,691,'content_block_4_custom_css_class','subscribe-columns'),(7319,691,'_content_block_4_custom_css_class','field_5bbe30b1a4de2-1'),(7358,692,'content_block','a:5:{i:0;s:10:\"text_block\";i:1;s:18:\"product_collection\";i:2;s:19:\"four_column_feature\";i:3;s:19:\"four_column_feature\";i:4;s:10:\"text_block\";}'),(7359,692,'_content_block','field_5bbe19a7efa09'),(7360,692,'content_block_0_text_block_columns','one'),(7361,692,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(7362,692,'content_block_0_narrow_text_block_content','0'),(7363,692,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(7364,692,'content_block_0_reverse_colors','0'),(7365,692,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(7366,692,'content_block_0_enable_background_image','0'),(7367,692,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(7368,692,'content_block_0_text_block_content_col_one','<h2 style=\"text-align: center;\">The New Release</h2>\r\n<blockquote>I try to create wines that suit our climate and our way of life - wines to drink with the food we grow, make and eat.</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">Spectra winery was realised to focus on our passion for the region and its ability to produce dry - grown and environmentally sustainable wine. Recently a new home was established on our holistic philosophy to winemaking which starts with climate, empahasises the importance on the vineyard, as well as wine\'s relation to the food we love to grow, cook, and eat.</p>'),(7369,692,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(7370,692,'content_block_1_product_row_number','2up'),(7371,692,'_content_block_1_product_row_number','field_5bc11c6da0d4f'),(7372,692,'content_block_1_data_collection_slug','homepage-2up'),(7373,692,'_content_block_1_data_collection_slug','field_5bc11ca9a0d50'),(7374,692,'content_block_2_gap_between_columns','0'),(7375,692,'_content_block_2_gap_between_columns','field_5bbe658610062'),(7376,692,'content_block_2_full_width_columns','1'),(7377,692,'_content_block_2_full_width_columns','field_5bbe658610063'),(7378,692,'content_block_2_veil_over_images','0'),(7379,692,'_content_block_2_veil_over_images','field_5bbe658610064'),(7380,692,'content_block_2_first_column_background_image','435'),(7381,692,'_content_block_2_first_column_background_image','field_5bbe658610066'),(7382,692,'content_block_2_first_column_content',''),(7383,692,'_content_block_2_first_column_content','field_5bbe658610067'),(7384,692,'content_block_2_first_whole_column_clickable','0'),(7385,692,'_content_block_2_first_whole_column_clickable','field_5bbe658610068'),(7386,692,'content_block_2_first_column_button_url','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(7387,692,'_content_block_2_first_column_button_url','field_5bbe658610069'),(7388,692,'content_block_2_first_column_button_text','Test'),(7389,692,'_content_block_2_first_column_button_text','field_5bbe65861006a'),(7390,692,'content_block_2_second_column_background_image','495'),(7391,692,'_content_block_2_second_column_background_image','field_5bbe65861006c'),(7392,692,'content_block_2_second_column_content',''),(7393,692,'_content_block_2_second_column_content','field_5bbe65861006d'),(7394,692,'content_block_2_second_whole_column_clickable','0'),(7395,692,'_content_block_2_second_whole_column_clickable','field_5bbe65861006e'),(7396,692,'content_block_2_second_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(7397,692,'_content_block_2_second_column_button_link','field_5bbe65861006f'),(7398,692,'content_block_2_second_column_button_text','Test'),(7399,692,'_content_block_2_second_column_button_text','field_5bbe658610070'),(7400,692,'content_block_2_third_column_background_image','496'),(7401,692,'_content_block_2_third_column_background_image','field_5bbe658610072'),(7402,692,'content_block_2_third_column_content',''),(7403,692,'_content_block_2_third_column_content','field_5bbe658610073'),(7404,692,'content_block_2_third_whole_column_clickable','0'),(7405,692,'_content_block_2_third_whole_column_clickable','field_5bbe658610074'),(7406,692,'content_block_2_third_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(7407,692,'_content_block_2_third_column_button_link','field_5bbe658610075'),(7408,692,'content_block_2_third_column_button_text','Test'),(7409,692,'_content_block_2_third_column_button_text','field_5bbe658610076'),(7410,692,'content_block_2_fourth_column_background_image','497'),(7411,692,'_content_block_2_fourth_column_background_image','field_5bbe659d10078'),(7412,692,'content_block_2_fourth_column_content',''),(7413,692,'_content_block_2_fourth_column_content','field_5bbe65bb10079'),(7414,692,'content_block_2_fourth_whole_column_clickable','0'),(7415,692,'_content_block_2_fourth_whole_column_clickable','field_5bbe65cb1007a'),(7416,692,'content_block_2_fourth_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(7417,692,'_content_block_2_fourth_column_button_link','field_5bbe65d41007b'),(7418,692,'content_block_2_fourth_column_button_text','Test'),(7419,692,'_content_block_2_fourth_column_button_text','field_5bbe65e11007c'),(7420,692,'content_block_3_gap_between_columns','0'),(7421,692,'_content_block_3_gap_between_columns','field_5bbe658610062'),(7422,692,'content_block_3_full_width_columns','1'),(7423,692,'_content_block_3_full_width_columns','field_5bbe658610063'),(7424,692,'content_block_3_veil_over_images','0'),(7425,692,'_content_block_3_veil_over_images','field_5bbe658610064'),(7426,692,'content_block_3_first_column_background_image','438'),(7427,692,'_content_block_3_first_column_background_image','field_5bbe658610066'),(7428,692,'content_block_3_first_column_content',''),(7429,692,'_content_block_3_first_column_content','field_5bbe658610067'),(7430,692,'content_block_3_first_whole_column_clickable','0'),(7431,692,'_content_block_3_first_whole_column_clickable','field_5bbe658610068'),(7432,692,'content_block_3_first_column_button_url','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(7433,692,'_content_block_3_first_column_button_url','field_5bbe658610069'),(7434,692,'content_block_3_first_column_button_text','Test'),(7435,692,'_content_block_3_first_column_button_text','field_5bbe65861006a'),(7436,692,'content_block_3_second_column_background_image','437'),(7437,692,'_content_block_3_second_column_background_image','field_5bbe65861006c'),(7438,692,'content_block_3_second_column_content',''),(7439,692,'_content_block_3_second_column_content','field_5bbe65861006d'),(7440,692,'content_block_3_second_whole_column_clickable','0'),(7441,692,'_content_block_3_second_whole_column_clickable','field_5bbe65861006e'),(7442,692,'content_block_3_second_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(7443,692,'_content_block_3_second_column_button_link','field_5bbe65861006f'),(7444,692,'content_block_3_second_column_button_text','Test'),(7445,692,'_content_block_3_second_column_button_text','field_5bbe658610070'),(7446,692,'content_block_3_third_column_background_image','498'),(7447,692,'_content_block_3_third_column_background_image','field_5bbe658610072'),(7448,692,'content_block_3_third_column_content',''),(7449,692,'_content_block_3_third_column_content','field_5bbe658610073'),(7450,692,'content_block_3_third_whole_column_clickable','0'),(7451,692,'_content_block_3_third_whole_column_clickable','field_5bbe658610074'),(7452,692,'content_block_3_third_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(7453,692,'_content_block_3_third_column_button_link','field_5bbe658610075'),(7454,692,'content_block_3_third_column_button_text','Test'),(7455,692,'_content_block_3_third_column_button_text','field_5bbe658610076'),(7456,692,'content_block_3_fourth_column_background_image','499'),(7457,692,'_content_block_3_fourth_column_background_image','field_5bbe659d10078'),(7458,692,'content_block_3_fourth_column_content',''),(7459,692,'_content_block_3_fourth_column_content','field_5bbe65bb10079'),(7460,692,'content_block_3_fourth_whole_column_clickable','0'),(7461,692,'_content_block_3_fourth_whole_column_clickable','field_5bbe65cb1007a'),(7462,692,'content_block_3_fourth_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(7463,692,'_content_block_3_fourth_column_button_link','field_5bbe65d41007b'),(7464,692,'content_block_3_fourth_column_button_text','Test'),(7465,692,'_content_block_3_fourth_column_button_text','field_5bbe65e11007c'),(7466,692,'content_block_4_text_block_columns','two'),(7467,692,'_content_block_4_text_block_columns','field_5bbe2f81a4de0'),(7468,692,'content_block_4_narrow_text_block_content','0'),(7469,692,'_content_block_4_narrow_text_block_content','field_5bbe342e08360'),(7470,692,'content_block_4_reverse_colors','1'),(7471,692,'_content_block_4_reverse_colors','field_5bbe3027a4de1'),(7472,692,'content_block_4_enable_background_image','1'),(7473,692,'_content_block_4_enable_background_image','field_5bbe30b1a4de2'),(7474,692,'content_block_4_parallax_effect_on_image','0'),(7475,692,'_content_block_4_parallax_effect_on_image','field_5bbe319b39211'),(7476,692,'content_block_4_text_block_content_col_one','<h3>Get some news</h3>\r\nFour meticulously hedged vineyard parcels form the Opus One estate. Here, the vineyard team cultivates five traditional Bordeaux grape varieties with experience, passion and dedication. This essential human touch brings forth the characteristics of each vintage through a balance of delicate coaxing and gentle restraint.'),(7477,692,'_content_block_4_text_block_content_col_one','field_5bbe313b3920d'),(7478,692,'content_block_4_text_block_content_col_two','[c7-subscribe-with-name]'),(7479,692,'_content_block_4_text_block_content_col_two','field_5bbe31593920e'),(7480,692,'content_block_4_background_image','484'),(7481,692,'_content_block_4_background_image','field_5bbe2eb1a4ddb'),(7482,692,'content_block_4_background_image_position','center center'),(7483,692,'_content_block_4_background_image_position','field_5bbe2eb1a4ddc'),(7484,692,'content_block_4_background_image_mobile','485'),(7485,692,'_content_block_4_background_image_mobile','field_5bbe3b5e5f6f8'),(7486,692,'content_block_4_background_image_position_mobile','center center'),(7487,692,'_content_block_4_background_image_position_mobile','field_5bbe3b695f6f9'),(7488,692,'content_block_0_layout_title',''),(7489,692,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(7490,692,'content_block_0_custom_css_class',''),(7491,692,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(7492,692,'content_block_1_layout_title',''),(7493,692,'_content_block_1_layout_title','field_5bc11ca9a0d50-v'),(7494,692,'content_block_1_manually_enter_collection_slug','0'),(7495,692,'_content_block_1_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(7496,692,'content_block_1_product_display_feature','0'),(7497,692,'_content_block_1_product_display_feature','field_5d1144d5e6922'),(7498,692,'content_block_1_product_display_teaser','0'),(7499,692,'_content_block_1_product_display_teaser','field_5d114505e6923'),(7500,692,'content_block_2_layout_title',''),(7501,692,'_content_block_2_layout_title','field_5bc11ca9a0d50-k'),(7502,692,'content_block_2_first_button_column','0'),(7503,692,'_content_block_2_first_button_column','field_5bd78c465387f'),(7504,692,'content_block_2_second_button_column','0'),(7505,692,'_content_block_2_second_button_column','field_5bd78c465387g'),(7506,692,'content_block_2_third_button_column','0'),(7507,692,'_content_block_2_third_button_column','field_5bd78c465387h'),(7508,692,'content_block_2_fourth_button_column','0'),(7509,692,'_content_block_2_fourth_button_column','field_5bd78c465387i'),(7510,692,'content_block_3_layout_title',''),(7511,692,'_content_block_3_layout_title','field_5bc11ca9a0d50-k'),(7512,692,'content_block_3_first_button_column','0'),(7513,692,'_content_block_3_first_button_column','field_5bd78c465387f'),(7514,692,'content_block_3_second_button_column','0'),(7515,692,'_content_block_3_second_button_column','field_5bd78c465387g'),(7516,692,'content_block_3_third_button_column','0'),(7517,692,'_content_block_3_third_button_column','field_5bd78c465387h'),(7518,692,'content_block_3_fourth_button_column','0'),(7519,692,'_content_block_3_fourth_button_column','field_5bd78c465387i'),(7520,692,'content_block_4_layout_title','Subscribe'),(7521,692,'_content_block_4_layout_title','field_5bc11ca9a0d50-s'),(7522,692,'content_block_4_custom_css_class','subscribe-columns'),(7523,692,'_content_block_4_custom_css_class','field_5bbe30b1a4de2-1'),(7544,693,'content_block','a:4:{i:0;s:5:\"video\";i:1;s:10:\"text_block\";i:2;s:18:\"product_collection\";i:3;s:10:\"text_block\";}'),(7545,693,'_content_block','field_5bbe19a7efa09'),(7546,693,'content_block_0_video_width','full'),(7547,693,'_content_block_0_video_width','field_5bbe75793d323'),(7548,693,'content_block_0_autoplay_video','1'),(7549,693,'_content_block_0_autoplay_video','field_5bbe7f869a2a7'),(7550,693,'content_block_0_video_source','Local'),(7551,693,'_content_block_0_video_source','field_5bbe74973d31d'),(7552,693,'content_block_0_local_video','500'),(7553,693,'_content_block_0_local_video','field_5bbe74c83d31e'),(7554,693,'content_block_0_video_cover_image','486'),(7555,693,'_content_block_0_video_cover_image','field_5bbe75d33d326'),(7556,693,'content_block_0_video_cover_image_mobile','487'),(7557,693,'_content_block_0_video_cover_image_mobile','field_5bbe765b3d327'),(7558,693,'content_block_1_text_block_columns','one'),(7559,693,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(7560,693,'content_block_1_narrow_text_block_content','0'),(7561,693,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(7562,693,'content_block_1_reverse_colors','0'),(7563,693,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(7564,693,'content_block_1_enable_background_image','0'),(7565,693,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(7566,693,'content_block_1_text_block_content_col_one','<h2 style=\"text-align: center;\">The New Release</h2>\r\n<blockquote>I try to create wines that suit our climate and our way of life - wines to drink with the food we grow, make and eat.</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">Spectra winery was realised to focus on our passion for the region and its ability to produce dry - grown and environmentally sustainable wine. Recently a new home was established on our holistic philosophy to winemaking which starts with climate, empahasises the importance on the vineyard, as well as wine\'s relation to the food we love to grow, cook, and eat.</p>'),(7567,693,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(7568,693,'content_block_2_product_row_number','3up'),(7569,693,'_content_block_2_product_row_number','field_5bc11c6da0d4f'),(7570,693,'content_block_2_data_collection_slug','home'),(7571,693,'_content_block_2_data_collection_slug','field_5bc11ca9a0d50'),(7572,693,'content_block_3_text_block_columns','two'),(7573,693,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(7574,693,'content_block_3_narrow_text_block_content','0'),(7575,693,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(7576,693,'content_block_3_reverse_colors','1'),(7577,693,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(7578,693,'content_block_3_enable_background_image','1'),(7579,693,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(7580,693,'content_block_3_parallax_effect_on_image','0'),(7581,693,'_content_block_3_parallax_effect_on_image','field_5bbe319b39211'),(7582,693,'content_block_3_text_block_content_col_one','<h3>Get some news</h3>\r\nFour meticulously hedged vineyard parcels form the Opus One estate. Here, the vineyard team cultivates five traditional Bordeaux grape varieties with experience, passion and dedication. This essential human touch brings forth the characteristics of each vintage through a balance of delicate coaxing and gentle restraint.'),(7583,693,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(7584,693,'content_block_3_text_block_content_col_two','[c7-subscribe-with-name]'),(7585,693,'_content_block_3_text_block_content_col_two','field_5bbe31593920e'),(7586,693,'content_block_3_background_image','484'),(7587,693,'_content_block_3_background_image','field_5bbe2eb1a4ddb'),(7588,693,'content_block_3_background_image_position','center center'),(7589,693,'_content_block_3_background_image_position','field_5bbe2eb1a4ddc'),(7590,693,'content_block_3_background_image_mobile','485'),(7591,693,'_content_block_3_background_image_mobile','field_5bbe3b5e5f6f8'),(7592,693,'content_block_3_background_image_position_mobile','center center'),(7593,693,'_content_block_3_background_image_position_mobile','field_5bbe3b695f6f9'),(7594,693,'content_block_0_layout_title',''),(7595,693,'_content_block_0_layout_title','field_5bc11ca9a0d50-u'),(7596,693,'content_block_1_layout_title',''),(7597,693,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(7598,693,'content_block_1_custom_css_class',''),(7599,693,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(7600,693,'content_block_2_layout_title',''),(7601,693,'_content_block_2_layout_title','field_5bc11ca9a0d50-v'),(7602,693,'content_block_2_manually_enter_collection_slug','0'),(7603,693,'_content_block_2_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(7604,693,'content_block_2_product_display_feature','0'),(7605,693,'_content_block_2_product_display_feature','field_5d1144d5e6922'),(7606,693,'content_block_2_product_display_teaser','0'),(7607,693,'_content_block_2_product_display_teaser','field_5d114505e6923'),(7608,693,'content_block_3_layout_title','Subscribe'),(7609,693,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(7610,693,'content_block_3_custom_css_class','subscribe-columns'),(7611,693,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(7793,702,'content_block_0_text_block_columns','one'),(7794,702,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(7795,702,'content_block_0_narrow_text_block_content','0'),(7796,702,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(7797,702,'content_block_0_reverse_colors','0'),(7798,702,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(7799,702,'content_block_0_enable_background_image','0'),(7800,702,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(7801,702,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">Red Wines</h1>'),(7802,702,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(7803,702,'content_block_1_product_row_number','3up'),(7804,702,'_content_block_1_product_row_number','field_5bc11c6da0d4f'),(7805,702,'content_block_1_data_collection_slug','red-wines'),(7806,702,'_content_block_1_data_collection_slug','field_5bc11ca9a0d50'),(7807,702,'content_block_2_text_block_columns','two'),(7808,702,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(7809,702,'content_block_2_narrow_text_block_content','0'),(7810,702,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(7811,702,'content_block_2_reverse_colors','1'),(7812,702,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(7813,702,'content_block_2_enable_background_image','0'),(7814,702,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(7815,702,'content_block_2_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(7816,702,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(7817,702,'content_block_2_text_block_content_col_two','[c7-subscribe-with-name]'),(7818,702,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(7819,702,'content_block','a:3:{i:0;s:10:\"text_block\";i:1;s:18:\"product_collection\";i:2;s:10:\"text_block\";}'),(7820,702,'_content_block','field_5bbe19a7efa09'),(7821,702,'content_block_0_custom_css_class',''),(7822,702,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(7823,702,'content_block_1_custom_css_class',''),(7824,702,'_content_block_1_custom_css_class','field_1cce1w78efa7b'),(7825,702,'content_block_1_product_display_teaser','1'),(7826,702,'_content_block_1_product_display_teaser','field_5d114505e6923'),(7827,702,'content_block_1_product_display_feature','1'),(7828,702,'_content_block_1_product_display_feature','field_5d1144d5e6922'),(7829,702,'content_block_2_custom_css_class','subscribe-columns'),(7830,702,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(7831,702,'content_block_0_layout_title',''),(7832,702,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(7833,702,'content_block_1_layout_title',''),(7834,702,'_content_block_1_layout_title','field_5bc11ca9a0d50-v'),(7835,702,'content_block_1_manually_enter_collection_slug','0'),(7836,702,'_content_block_1_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(7837,702,'content_block_2_layout_title','Subscribe'),(7838,702,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(8000,706,'content_block','a:4:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";i:3;s:10:\"text_block\";}'),(8001,706,'_content_block','field_5bbe19a7efa09'),(8002,706,'content_block_0_banner_full_width','1'),(8003,706,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(8004,706,'content_block_0_banner_size','short'),(8005,706,'_content_block_0_banner_size','field_5bbe232929ec9'),(8006,706,'content_block_0_add_parallax_effect','0'),(8007,706,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(8008,706,'content_block_0_add_veil_over_banner','0'),(8009,706,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(8010,706,'content_block_0_banner_content_position','centered'),(8011,706,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(8012,706,'content_block_0_banner_title',''),(8013,706,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(8014,706,'content_block_0_banner_subtitle',''),(8015,706,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(8016,706,'content_block_0_banner_button_link',''),(8017,706,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(8018,706,'content_block_0_banner_button_new_tab','0'),(8019,706,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(8020,706,'content_block_0_show_down_arrow','1'),(8021,706,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(8022,706,'content_block_0_banner_image','473'),(8023,706,'_content_block_0_banner_image','field_5bbe201718faf'),(8024,706,'content_block_0_banner_image_position','center center'),(8025,706,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(8026,706,'content_block_0_banner_image_mobile','474'),(8027,706,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(8028,706,'content_block_0_banner_image_mobile_position','center center'),(8029,706,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(8030,706,'content_block_1_text_block_columns','one'),(8031,706,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(8032,706,'content_block_1_narrow_text_block_content','0'),(8033,706,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(8034,706,'content_block_1_reverse_colors','0'),(8035,706,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(8036,706,'content_block_1_enable_background_image','0'),(8037,706,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(8038,706,'content_block_1_text_block_content_col_one','<h2 style=\"text-align: center;\">Contact Us</h2>\r\n<p style=\"text-align: center;\">We invite you to visit us to taste our current wines in our open, scenic setting.\r\nSpectra is conveniently located minutes from both downtown the valley.</p>\r\n\r\n\r\n<hr />'),(8039,706,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(8040,706,'content_block_2_text_block_columns','two'),(8041,706,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(8042,706,'content_block_2_narrow_text_block_content','0'),(8043,706,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(8044,706,'content_block_2_reverse_colors','0'),(8045,706,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(8046,706,'content_block_2_enable_background_image','0'),(8047,706,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(8048,706,'content_block_2_text_block_content_col_one','<h4>Visting Hours</h4>\r\nWe are open everyday from 10am to 6pm\r\n\r\nTastings are available between 10am and 3pm\r\n<strong>$20 per person</strong>.\r\n\r\nTours and Tastings are available at 10am, 1pm, and 3pm\r\n<strong>$85 per person</strong>.\r\n\r\nFor large parties (10 or more) or special requests, please contact us directly at <a href=\"tel:707-576-8080\">(707) 576-8080</a> or <a href=\"mailto: orders@spectrawinery.com\">orders@spectrawinery.com</a>.\r\n\r\nSpectra Winery\r\n9999 The Best Street\r\nSan Francisco, CA 94016\r\n(888) 888-8080'),(8049,706,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(8050,706,'content_block_2_text_block_content_col_two','<div class=\"c7-form-wrapper\" data-form-code=\"contact-us\"></div>\r\n<div class=\"c7-form-wrapper\" data-form-code=\"everything-form\"></div>'),(8051,706,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(8052,706,'content_block_3_text_block_columns','two'),(8053,706,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(8054,706,'content_block_3_narrow_text_block_content','0'),(8055,706,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(8056,706,'content_block_3_reverse_colors','1'),(8057,706,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(8058,706,'content_block_3_enable_background_image','0'),(8059,706,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(8060,706,'content_block_3_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(8061,706,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(8062,706,'content_block_3_text_block_content_col_two','[c7-subscribe-with-name]'),(8063,706,'_content_block_3_text_block_content_col_two','field_5bbe31593920e'),(8064,706,'content_block_0_layout_title',''),(8065,706,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(8066,706,'content_block_0_custom_css_class',''),(8067,706,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(8068,706,'content_block_1_layout_title',''),(8069,706,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(8070,706,'content_block_1_custom_css_class',''),(8071,706,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(8072,706,'content_block_2_layout_title',''),(8073,706,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(8074,706,'content_block_2_custom_css_class',''),(8075,706,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(8076,706,'content_block_3_layout_title','Subscribe'),(8077,706,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(8078,706,'content_block_3_custom_css_class','subscribe-columns'),(8079,706,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(8080,707,'content_block','a:4:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";i:3;s:10:\"text_block\";}'),(8081,707,'_content_block','field_5bbe19a7efa09'),(8082,707,'content_block_0_banner_full_width','1'),(8083,707,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(8084,707,'content_block_0_banner_size','short'),(8085,707,'_content_block_0_banner_size','field_5bbe232929ec9'),(8086,707,'content_block_0_add_parallax_effect','0'),(8087,707,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(8088,707,'content_block_0_add_veil_over_banner','0'),(8089,707,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(8090,707,'content_block_0_banner_content_position','centered'),(8091,707,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(8092,707,'content_block_0_banner_title',''),(8093,707,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(8094,707,'content_block_0_banner_subtitle',''),(8095,707,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(8096,707,'content_block_0_banner_button_link',''),(8097,707,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(8098,707,'content_block_0_banner_button_new_tab','0'),(8099,707,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(8100,707,'content_block_0_show_down_arrow','1'),(8101,707,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(8102,707,'content_block_0_banner_image','473'),(8103,707,'_content_block_0_banner_image','field_5bbe201718faf'),(8104,707,'content_block_0_banner_image_position','center center'),(8105,707,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(8106,707,'content_block_0_banner_image_mobile','474'),(8107,707,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(8108,707,'content_block_0_banner_image_mobile_position','center center'),(8109,707,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(8110,707,'content_block_1_text_block_columns','one'),(8111,707,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(8112,707,'content_block_1_narrow_text_block_content','0'),(8113,707,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(8114,707,'content_block_1_reverse_colors','0'),(8115,707,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(8116,707,'content_block_1_enable_background_image','0'),(8117,707,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(8118,707,'content_block_1_text_block_content_col_one','<h2 style=\"text-align: center;\">Contact Us</h2>\r\n<p style=\"text-align: center;\">We invite you to visit us to taste our current wines in our open, scenic setting.\r\nSpectra is conveniently located minutes from both downtown the valley.</p>\r\n\r\n\r\n<hr />'),(8119,707,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(8120,707,'content_block_2_text_block_columns','two'),(8121,707,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(8122,707,'content_block_2_narrow_text_block_content','0'),(8123,707,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(8124,707,'content_block_2_reverse_colors','0'),(8125,707,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(8126,707,'content_block_2_enable_background_image','0'),(8127,707,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(8128,707,'content_block_2_text_block_content_col_one','<h4>Visting Hours</h4>\r\nWe are open everyday from 10am to 6pm\r\n\r\nTastings are available between 10am and 3pm\r\n<strong>$20 per person</strong>.\r\n\r\nTours and Tastings are available at 10am, 1pm, and 3pm\r\n<strong>$85 per person</strong>.\r\n\r\nFor large parties (10 or more) or special requests, please contact us directly at <a href=\"tel:707-576-8080\">(707) 576-8080</a> or <a href=\"mailto: orders@spectrawinery.com\">orders@spectrawinery.com</a>.\r\n\r\nSpectra Winery\r\n9999 The Best Street\r\nSan Francisco, CA 94016\r\n(888) 888-8080'),(8129,707,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(8130,707,'content_block_2_text_block_content_col_two','<div class=\"c7-form-wrapper\" data-form-code=\"contact-us\"></div>'),(8131,707,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(8132,707,'content_block_3_text_block_columns','two'),(8133,707,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(8134,707,'content_block_3_narrow_text_block_content','0'),(8135,707,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(8136,707,'content_block_3_reverse_colors','1'),(8137,707,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(8138,707,'content_block_3_enable_background_image','0'),(8139,707,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(8140,707,'content_block_3_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(8141,707,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(8142,707,'content_block_3_text_block_content_col_two','[c7-subscribe-with-name]'),(8143,707,'_content_block_3_text_block_content_col_two','field_5bbe31593920e'),(8144,707,'content_block_0_layout_title',''),(8145,707,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(8146,707,'content_block_0_custom_css_class',''),(8147,707,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(8148,707,'content_block_1_layout_title',''),(8149,707,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(8150,707,'content_block_1_custom_css_class',''),(8151,707,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(8152,707,'content_block_2_layout_title',''),(8153,707,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(8154,707,'content_block_2_custom_css_class',''),(8155,707,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(8156,707,'content_block_3_layout_title','Subscribe'),(8157,707,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(8158,707,'content_block_3_custom_css_class','subscribe-columns'),(8159,707,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(8160,708,'content_block','a:4:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";i:3;s:10:\"text_block\";}'),(8161,708,'_content_block','field_5bbe19a7efa09'),(8162,708,'content_block_0_banner_full_width','1'),(8163,708,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(8164,708,'content_block_0_banner_size','short'),(8165,708,'_content_block_0_banner_size','field_5bbe232929ec9'),(8166,708,'content_block_0_add_parallax_effect','0'),(8167,708,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(8168,708,'content_block_0_add_veil_over_banner','0'),(8169,708,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(8170,708,'content_block_0_banner_content_position','centered'),(8171,708,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(8172,708,'content_block_0_banner_title',''),(8173,708,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(8174,708,'content_block_0_banner_subtitle',''),(8175,708,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(8176,708,'content_block_0_banner_button_link',''),(8177,708,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(8178,708,'content_block_0_banner_button_new_tab','0'),(8179,708,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(8180,708,'content_block_0_show_down_arrow','1'),(8181,708,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(8182,708,'content_block_0_banner_image','473'),(8183,708,'_content_block_0_banner_image','field_5bbe201718faf'),(8184,708,'content_block_0_banner_image_position','center center'),(8185,708,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(8186,708,'content_block_0_banner_image_mobile','474'),(8187,708,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(8188,708,'content_block_0_banner_image_mobile_position','center center'),(8189,708,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(8190,708,'content_block_1_text_block_columns','one'),(8191,708,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(8192,708,'content_block_1_narrow_text_block_content','0'),(8193,708,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(8194,708,'content_block_1_reverse_colors','0'),(8195,708,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(8196,708,'content_block_1_enable_background_image','0'),(8197,708,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(8198,708,'content_block_1_text_block_content_col_one','<h2 style=\"text-align: center;\">Contact Us</h2>\r\n<p style=\"text-align: center;\">We invite you to visit us to taste our current wines in our open, scenic setting.\r\nSpectra is conveniently located minutes from both downtown the valley.</p>\r\n\r\n\r\n<hr />'),(8199,708,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(8200,708,'content_block_2_text_block_columns','two'),(8201,708,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(8202,708,'content_block_2_narrow_text_block_content','0'),(8203,708,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(8204,708,'content_block_2_reverse_colors','0'),(8205,708,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(8206,708,'content_block_2_enable_background_image','0'),(8207,708,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(8208,708,'content_block_2_text_block_content_col_one','<h4>Visting Hours</h4>\r\nWe are open everyday from 10am to 6pm\r\n\r\nTastings are available between 10am and 3pm\r\n<strong>$20 per person</strong>.\r\n\r\nTours and Tastings are available at 10am, 1pm, and 3pm\r\n<strong>$85 per person</strong>.\r\n\r\nFor large parties (10 or more) or special requests, please contact us directly at <a href=\"tel:707-576-8080\">(707) 576-8080</a> or <a href=\"mailto: orders@spectrawinery.com\">orders@spectrawinery.com</a>.\r\n\r\nSpectra Winery\r\n9999 The Best Street\r\nSan Francisco, CA 94016\r\n(888) 888-8080'),(8209,708,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(8210,708,'content_block_2_text_block_content_col_two','<div class=\"c7-form-wrapper\" data-form-code=\"contact-us\"></div>\r\n<div class=\"c7-form-wrapper\" data-form-code=\"everything-form\"></div>'),(8211,708,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(8212,708,'content_block_3_text_block_columns','two'),(8213,708,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(8214,708,'content_block_3_narrow_text_block_content','0'),(8215,708,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(8216,708,'content_block_3_reverse_colors','1'),(8217,708,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(8218,708,'content_block_3_enable_background_image','0'),(8219,708,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(8220,708,'content_block_3_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(8221,708,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(8222,708,'content_block_3_text_block_content_col_two','[c7-subscribe-with-name]'),(8223,708,'_content_block_3_text_block_content_col_two','field_5bbe31593920e'),(8224,708,'content_block_0_layout_title',''),(8225,708,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(8226,708,'content_block_0_custom_css_class',''),(8227,708,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(8228,708,'content_block_1_layout_title',''),(8229,708,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(8230,708,'content_block_1_custom_css_class',''),(8231,708,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(8232,708,'content_block_2_layout_title',''),(8233,708,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(8234,708,'content_block_2_custom_css_class',''),(8235,708,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(8236,708,'content_block_3_layout_title','Subscribe'),(8237,708,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(8238,708,'content_block_3_custom_css_class','subscribe-columns'),(8239,708,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(8240,709,'content_block','a:4:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";i:3;s:10:\"text_block\";}'),(8241,709,'_content_block','field_5bbe19a7efa09'),(8242,709,'content_block_0_banner_full_width','1'),(8243,709,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(8244,709,'content_block_0_banner_size','short'),(8245,709,'_content_block_0_banner_size','field_5bbe232929ec9'),(8246,709,'content_block_0_add_parallax_effect','0'),(8247,709,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(8248,709,'content_block_0_add_veil_over_banner','0'),(8249,709,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(8250,709,'content_block_0_banner_content_position','centered'),(8251,709,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(8252,709,'content_block_0_banner_title',''),(8253,709,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(8254,709,'content_block_0_banner_subtitle',''),(8255,709,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(8256,709,'content_block_0_banner_button_link',''),(8257,709,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(8258,709,'content_block_0_banner_button_new_tab','0'),(8259,709,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(8260,709,'content_block_0_show_down_arrow','1'),(8261,709,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(8262,709,'content_block_0_banner_image','473'),(8263,709,'_content_block_0_banner_image','field_5bbe201718faf'),(8264,709,'content_block_0_banner_image_position','center center'),(8265,709,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(8266,709,'content_block_0_banner_image_mobile','474'),(8267,709,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(8268,709,'content_block_0_banner_image_mobile_position','center center'),(8269,709,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(8270,709,'content_block_1_text_block_columns','one'),(8271,709,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(8272,709,'content_block_1_narrow_text_block_content','0'),(8273,709,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(8274,709,'content_block_1_reverse_colors','0'),(8275,709,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(8276,709,'content_block_1_enable_background_image','0'),(8277,709,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(8278,709,'content_block_1_text_block_content_col_one','<h2 style=\"text-align: center;\">Contact Us</h2>\r\n<p style=\"text-align: center;\">We invite you to visit us to taste our current wines in our open, scenic setting.\r\nSpectra is conveniently located minutes from both downtown the valley.</p>\r\n\r\n\r\n<hr />'),(8279,709,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(8280,709,'content_block_2_text_block_columns','two'),(8281,709,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(8282,709,'content_block_2_narrow_text_block_content','0'),(8283,709,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(8284,709,'content_block_2_reverse_colors','0'),(8285,709,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(8286,709,'content_block_2_enable_background_image','0'),(8287,709,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(8288,709,'content_block_2_text_block_content_col_one','<h4>Visting Hours</h4>\r\nWe are open everyday from 10am to 6pm\r\n\r\nTastings are available between 10am and 3pm\r\n<strong>$20 per person</strong>.\r\n\r\nTours and Tastings are available at 10am, 1pm, and 3pm\r\n<strong>$85 per person</strong>.\r\n\r\nFor large parties (10 or more) or special requests, please contact us directly at <a href=\"tel:707-576-8080\">(707) 576-8080</a> or <a href=\"mailto: orders@spectrawinery.com\">orders@spectrawinery.com</a>.\r\n\r\nSpectra Winery\r\n9999 The Best Street\r\nSan Francisco, CA 94016\r\n(888) 888-8080'),(8289,709,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(8290,709,'content_block_2_text_block_content_col_two','<div class=\"c7-form-wrapper\" data-form-code=\"contact-us\"></div>'),(8291,709,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(8292,709,'content_block_3_text_block_columns','two'),(8293,709,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(8294,709,'content_block_3_narrow_text_block_content','0'),(8295,709,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(8296,709,'content_block_3_reverse_colors','1'),(8297,709,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(8298,709,'content_block_3_enable_background_image','0'),(8299,709,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(8300,709,'content_block_3_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(8301,709,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(8302,709,'content_block_3_text_block_content_col_two','[c7-subscribe-with-name]'),(8303,709,'_content_block_3_text_block_content_col_two','field_5bbe31593920e'),(8304,709,'content_block_0_layout_title',''),(8305,709,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(8306,709,'content_block_0_custom_css_class',''),(8307,709,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(8308,709,'content_block_1_layout_title',''),(8309,709,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(8310,709,'content_block_1_custom_css_class',''),(8311,709,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(8312,709,'content_block_2_layout_title',''),(8313,709,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(8314,709,'content_block_2_custom_css_class',''),(8315,709,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(8316,709,'content_block_3_layout_title','Subscribe'),(8317,709,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(8318,709,'content_block_3_custom_css_class','subscribe-columns'),(8319,709,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(8323,712,'content_block_0_text_block_columns','one'),(8324,712,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(8325,712,'content_block_0_narrow_text_block_content','0'),(8326,712,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(8327,712,'content_block_0_reverse_colors','0'),(8328,712,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(8329,712,'content_block_0_enable_background_image','0'),(8330,712,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(8331,712,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">White Wines</h1>'),(8332,712,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(8333,712,'content_block_1_product_row_number','6up'),(8334,712,'_content_block_1_product_row_number','field_5bc11c6da0d4f'),(8335,712,'content_block_1_data_collection_slug','white-wines'),(8336,712,'_content_block_1_data_collection_slug','field_5bc11ca9a0d50'),(8337,712,'content_block_2_text_block_columns','two'),(8338,712,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(8339,712,'content_block_2_narrow_text_block_content','0'),(8340,712,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(8341,712,'content_block_2_reverse_colors','1'),(8342,712,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(8343,712,'content_block_2_enable_background_image','0'),(8344,712,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(8345,712,'content_block_2_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(8346,712,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(8347,712,'content_block_2_text_block_content_col_two','[c7-subscribe-with-name]'),(8348,712,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(8349,712,'content_block','a:3:{i:0;s:10:\"text_block\";i:1;s:18:\"product_collection\";i:2;s:10:\"text_block\";}'),(8350,712,'_content_block','field_5bbe19a7efa09'),(8351,712,'content_block_0_layout_title',''),(8352,712,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(8353,712,'content_block_0_custom_css_class',''),(8354,712,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(8355,712,'content_block_1_layout_title',''),(8356,712,'_content_block_1_layout_title','field_5bc11ca9a0d50-v'),(8357,712,'content_block_1_manually_enter_collection_slug','0'),(8358,712,'_content_block_1_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(8359,712,'content_block_1_product_display_feature','0'),(8360,712,'_content_block_1_product_display_feature','field_5d1144d5e6922'),(8361,712,'content_block_1_product_display_teaser','0'),(8362,712,'_content_block_1_product_display_teaser','field_5d114505e6923'),(8363,712,'content_block_2_layout_title','Subscribe'),(8364,712,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(8365,712,'content_block_2_custom_css_class','subscribe-columns'),(8366,712,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(8367,713,'content_block_0_text_block_columns','one'),(8368,713,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(8369,713,'content_block_0_narrow_text_block_content','0'),(8370,713,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(8371,713,'content_block_0_reverse_colors','0'),(8372,713,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(8373,713,'content_block_0_enable_background_image','0'),(8374,713,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(8375,713,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">White Wines</h1>'),(8376,713,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(8377,713,'content_block_1_product_row_number','4up'),(8378,713,'_content_block_1_product_row_number','field_5bc11c6da0d4f'),(8379,713,'content_block_1_data_collection_slug','white-wines'),(8380,713,'_content_block_1_data_collection_slug','field_5bc11ca9a0d50'),(8381,713,'content_block_2_text_block_columns','two'),(8382,713,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(8383,713,'content_block_2_narrow_text_block_content','0'),(8384,713,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(8385,713,'content_block_2_reverse_colors','1'),(8386,713,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(8387,713,'content_block_2_enable_background_image','0'),(8388,713,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(8389,713,'content_block_2_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(8390,713,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(8391,713,'content_block_2_text_block_content_col_two','[c7-subscribe-with-name]'),(8392,713,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(8393,713,'content_block','a:3:{i:0;s:10:\"text_block\";i:1;s:18:\"product_collection\";i:2;s:10:\"text_block\";}'),(8394,713,'_content_block','field_5bbe19a7efa09'),(8395,713,'content_block_0_layout_title',''),(8396,713,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(8397,713,'content_block_0_custom_css_class',''),(8398,713,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(8399,713,'content_block_1_layout_title',''),(8400,713,'_content_block_1_layout_title','field_5bc11ca9a0d50-v'),(8401,713,'content_block_1_manually_enter_collection_slug','0'),(8402,713,'_content_block_1_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(8403,713,'content_block_1_product_display_feature','0'),(8404,713,'_content_block_1_product_display_feature','field_5d1144d5e6922'),(8405,713,'content_block_1_product_display_teaser','0'),(8406,713,'_content_block_1_product_display_teaser','field_5d114505e6923'),(8407,713,'content_block_2_layout_title','Subscribe'),(8408,713,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(8409,713,'content_block_2_custom_css_class','subscribe-columns'),(8410,713,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(8411,714,'content_block_0_text_block_columns','one'),(8412,714,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(8413,714,'content_block_0_narrow_text_block_content','0'),(8414,714,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(8415,714,'content_block_0_reverse_colors','0'),(8416,714,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(8417,714,'content_block_0_enable_background_image','0'),(8418,714,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(8419,714,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">White Wines</h1>'),(8420,714,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(8421,714,'content_block_1_product_row_number','2up'),(8422,714,'_content_block_1_product_row_number','field_5bc11c6da0d4f'),(8423,714,'content_block_1_data_collection_slug','white-wines'),(8424,714,'_content_block_1_data_collection_slug','field_5bc11ca9a0d50'),(8425,714,'content_block_2_text_block_columns','two'),(8426,714,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(8427,714,'content_block_2_narrow_text_block_content','0'),(8428,714,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(8429,714,'content_block_2_reverse_colors','1'),(8430,714,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(8431,714,'content_block_2_enable_background_image','0'),(8432,714,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(8433,714,'content_block_2_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(8434,714,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(8435,714,'content_block_2_text_block_content_col_two','[c7-subscribe-with-name]'),(8436,714,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(8437,714,'content_block','a:3:{i:0;s:10:\"text_block\";i:1;s:18:\"product_collection\";i:2;s:10:\"text_block\";}'),(8438,714,'_content_block','field_5bbe19a7efa09'),(8439,714,'content_block_0_layout_title',''),(8440,714,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(8441,714,'content_block_0_custom_css_class',''),(8442,714,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(8443,714,'content_block_1_layout_title',''),(8444,714,'_content_block_1_layout_title','field_5bc11ca9a0d50-v'),(8445,714,'content_block_1_manually_enter_collection_slug','0'),(8446,714,'_content_block_1_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(8447,714,'content_block_1_product_display_feature','0'),(8448,714,'_content_block_1_product_display_feature','field_5d1144d5e6922'),(8449,714,'content_block_1_product_display_teaser','0'),(8450,714,'_content_block_1_product_display_teaser','field_5d114505e6923'),(8451,714,'content_block_2_layout_title','Subscribe'),(8452,714,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(8453,714,'content_block_2_custom_css_class','subscribe-columns'),(8454,714,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(8464,716,'content_block','a:6:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:18:\"two_column_feature\";i:3;s:18:\"two_column_feature\";i:4;s:10:\"text_block\";i:5;s:14:\"commerce7_form\";}'),(8465,716,'_content_block','field_5bbe19a7efa09'),(8466,716,'content_block_0_banner_full_width','1'),(8467,716,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(8468,716,'content_block_0_banner_size','normal'),(8469,716,'_content_block_0_banner_size','field_5bbe232929ec9'),(8470,716,'content_block_0_add_parallax_effect','0'),(8471,716,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(8472,716,'content_block_0_add_veil_over_banner','0'),(8473,716,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(8474,716,'content_block_0_banner_content_position','centered'),(8475,716,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(8476,716,'content_block_0_banner_title',''),(8477,716,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(8478,716,'content_block_0_banner_subtitle',''),(8479,716,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(8480,716,'content_block_0_banner_button_link',''),(8481,716,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(8482,716,'content_block_0_banner_button_new_tab','0'),(8483,716,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(8484,716,'content_block_0_show_down_arrow','1'),(8485,716,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(8486,716,'content_block_0_banner_image','514'),(8487,716,'_content_block_0_banner_image','field_5bbe201718faf'),(8488,716,'content_block_0_banner_image_position','center center'),(8489,716,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(8490,716,'content_block_0_banner_image_mobile','513'),(8491,716,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(8492,716,'content_block_0_banner_image_mobile_position','center center'),(8493,716,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(8494,716,'content_block_1_text_block_columns','one'),(8495,716,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(8496,716,'content_block_1_narrow_text_block_content','0'),(8497,716,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(8498,716,'content_block_1_reverse_colors','0'),(8499,716,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(8500,716,'content_block_1_enable_background_image','0'),(8501,716,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(8502,716,'content_block_1_text_block_content_col_one','<h2 style=\"text-align: center;\">About Us!</h2>\r\n<blockquote style=\"text-align: center;\">I try to create wines that suit our climate and our way of life - wines to drink with the food we grow, make and eat.</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">Spectra winery was realised to focus on our passion for the region and its ability to produce dry - grown and environmentally sustainable wine. Recently a new home was established on our holistic philosophy to winemaking which starts with climate, empahasises the importance on the vineyard, as well as wine\'s relation to the food we love to grow, cook, and eat.</p>'),(8503,716,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(8504,716,'content_block_2_gap_between_columns','1'),(8505,716,'_content_block_2_gap_between_columns','field_5bbe44a5ae587'),(8506,716,'content_block_2_full_width_columns','0'),(8507,716,'_content_block_2_full_width_columns','field_5bbe44c7ae588'),(8508,716,'content_block_2_veil_over_images','0'),(8509,716,'_content_block_2_veil_over_images','field_5bbe4f8f88a8a'),(8510,716,'content_block_2_left_column_background_image','515'),(8511,716,'_content_block_2_left_column_background_image','field_5bbe4452ae585'),(8512,716,'content_block_2_left_column_content','<h3>Our Vineyards</h3>'),(8513,716,'_content_block_2_left_column_content','field_5bbe4414ae582'),(8514,716,'content_block_2_left_whole_column_clickable','1'),(8515,716,'_content_block_2_left_whole_column_clickable','field_5bbe44f3ae589'),(8516,716,'content_block_2_left_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:56:\"https://www.meadowcroftwines.com/about-us/our-vineyards/\";s:6:\"target\";s:0:\"\";}'),(8517,716,'_content_block_2_left_column_button_link','field_5bbe442fae583'),(8518,716,'content_block_2_left_column_button_text','Learn More'),(8519,716,'_content_block_2_left_column_button_text','field_5bbe443dae584'),(8520,716,'content_block_2_right_column_background_image','524'),(8521,716,'_content_block_2_right_column_background_image','field_5bbe4547ae58b'),(8522,716,'content_block_2_right_column_content','<h3>Our Team</h3>'),(8523,716,'_content_block_2_right_column_content','field_5bbe4550ae58c'),(8524,716,'content_block_2_right_whole_column_clickable','1'),(8525,716,'_content_block_2_right_whole_column_clickable','field_5bbe455aae58d'),(8526,716,'content_block_2_right_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:51:\"https://www.meadowcroftwines.com/about-us/our-team/\";s:6:\"target\";s:0:\"\";}'),(8527,716,'_content_block_2_right_column_button_link','field_5bbe456bae58e'),(8528,716,'content_block_2_right_column_button_text','Meet Our Team'),(8529,716,'_content_block_2_right_column_button_text','field_5bbe4577ae58f'),(8530,716,'content_block_3_gap_between_columns','1'),(8531,716,'_content_block_3_gap_between_columns','field_5bbe44a5ae587'),(8532,716,'content_block_3_full_width_columns','0'),(8533,716,'_content_block_3_full_width_columns','field_5bbe44c7ae588'),(8534,716,'content_block_3_veil_over_images','0'),(8535,716,'_content_block_3_veil_over_images','field_5bbe4f8f88a8a'),(8536,716,'content_block_3_left_column_background_image','525'),(8537,716,'_content_block_3_left_column_background_image','field_5bbe4452ae585'),(8538,716,'content_block_3_left_column_content','<h3>Our History</h3>'),(8539,716,'_content_block_3_left_column_content','field_5bbe4414ae582'),(8540,716,'content_block_3_left_whole_column_clickable','1'),(8541,716,'_content_block_3_left_whole_column_clickable','field_5bbe44f3ae589'),(8542,716,'content_block_3_left_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:54:\"https://www.meadowcroftwines.com/about-us/our-history/\";s:6:\"target\";s:0:\"\";}'),(8543,716,'_content_block_3_left_column_button_link','field_5bbe442fae583'),(8544,716,'content_block_3_left_column_button_text','Learn More'),(8545,716,'_content_block_3_left_column_button_text','field_5bbe443dae584'),(8546,716,'content_block_3_right_column_background_image','526'),(8547,716,'_content_block_3_right_column_background_image','field_5bbe4547ae58b'),(8548,716,'content_block_3_right_column_content','<h3>Our Recipes</h3>'),(8549,716,'_content_block_3_right_column_content','field_5bbe4550ae58c'),(8550,716,'content_block_3_right_whole_column_clickable','1'),(8551,716,'_content_block_3_right_whole_column_clickable','field_5bbe455aae58d'),(8552,716,'content_block_3_right_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:54:\"https://www.meadowcroftwines.com/about-us/our-recipes/\";s:6:\"target\";s:0:\"\";}'),(8553,716,'_content_block_3_right_column_button_link','field_5bbe456bae58e'),(8554,716,'content_block_3_right_column_button_text','View Our Recipes'),(8555,716,'_content_block_3_right_column_button_text','field_5bbe4577ae58f'),(8556,716,'content_block_4_text_block_columns','two'),(8557,716,'_content_block_4_text_block_columns','field_5bbe2f81a4de0'),(8558,716,'content_block_4_narrow_text_block_content','0'),(8559,716,'_content_block_4_narrow_text_block_content','field_5bbe342e08360'),(8560,716,'content_block_4_reverse_colors','1'),(8561,716,'_content_block_4_reverse_colors','field_5bbe3027a4de1'),(8562,716,'content_block_4_enable_background_image','0'),(8563,716,'_content_block_4_enable_background_image','field_5bbe30b1a4de2'),(8564,716,'content_block_4_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(8565,716,'_content_block_4_text_block_content_col_one','field_5bbe313b3920d'),(8566,716,'content_block_4_text_block_content_col_two','[c7-subscribe-with-name]'),(8567,716,'_content_block_4_text_block_content_col_two','field_5bbe31593920e'),(8568,716,'content_block_2_left_button_column','1'),(8569,716,'_content_block_2_left_button_column','field_5bd78c465387d'),(8570,716,'content_block_2_right_button_column','1'),(8571,716,'_content_block_2_right_button_column','field_5bd78c465387e'),(8572,716,'content_block_3_left_button_column','1'),(8573,716,'_content_block_3_left_button_column','field_5bd78c465387d'),(8574,716,'content_block_3_right_button_column','1'),(8575,716,'_content_block_3_right_button_column','field_5bd78c465387e'),(8576,716,'content_block_0_custom_css_class',''),(8577,716,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(8578,716,'content_block_1_custom_css_class',''),(8579,716,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(8580,716,'content_block_4_custom_css_class','subscribe-columns'),(8581,716,'_content_block_4_custom_css_class','field_5bbe30b1a4de2-1'),(8582,716,'content_block_0_layout_title',''),(8583,716,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(8584,716,'content_block_1_layout_title',''),(8585,716,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(8586,716,'content_block_4_layout_title','Subscribe'),(8587,716,'_content_block_4_layout_title','field_5bc11ca9a0d50-s'),(8588,716,'content_block_5_layout_title',''),(8589,716,'_content_block_5_layout_title','field_5bc11ca9a0d50-b'),(8590,716,'content_block_5_subscribe_form','0'),(8591,716,'_content_block_5_subscribe_form','field_5d111ba10754c'),(8592,716,'content_block_5_form_code','test'),(8593,716,'_content_block_5_form_code','field_5d111c000754e'),(8594,716,'content_block_5_custom_css_class',''),(8595,716,'_content_block_5_custom_css_class','field_5d111c000753e'),(8598,719,'content_block','a:1:{i:0;s:10:\"text_block\";}'),(8599,719,'_content_block','field_5bbe19a7efa09'),(8600,719,'content_block_0_text_block_columns','one'),(8601,719,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(8602,719,'content_block_0_narrow_text_block_content','0'),(8603,719,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(8604,719,'content_block_0_reverse_colors','0'),(8605,719,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(8606,719,'content_block_0_enable_background_image','0'),(8607,719,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(8608,719,'content_block_0_text_block_content_col_one','[c7_content]'),(8609,719,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(8610,719,'content_block_0_layout_title',''),(8611,719,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(8612,719,'content_block_0_custom_css_class',''),(8613,719,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(8620,720,'content_block_0_text_block_columns','one'),(8621,720,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(8622,720,'content_block_0_narrow_text_block_content','0'),(8623,720,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(8624,720,'content_block_0_reverse_colors','0'),(8625,720,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(8626,720,'content_block_0_enable_background_image','0'),(8627,720,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(8628,720,'content_block_0_text_block_content_col_one','[c7_content]'),(8629,720,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(8630,720,'content_block','a:1:{i:0;s:10:\"text_block\";}'),(8631,720,'_content_block','field_5bbe19a7efa09'),(8632,720,'content_block_0_layout_title',''),(8633,720,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(8634,720,'content_block_0_custom_css_class',''),(8635,720,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(8642,721,'content_block_0_text_block_columns','one'),(8643,721,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(8644,721,'content_block_0_narrow_text_block_content','0'),(8645,721,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(8646,721,'content_block_0_reverse_colors','0'),(8647,721,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(8648,721,'content_block_0_enable_background_image','0'),(8649,721,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(8650,721,'content_block_0_text_block_content_col_one','[c7_content]'),(8651,721,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(8652,721,'content_block','a:1:{i:0;s:10:\"text_block\";}'),(8653,721,'_content_block','field_5bbe19a7efa09'),(8654,721,'content_block_0_layout_title',''),(8655,721,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(8656,721,'content_block_0_custom_css_class',''),(8657,721,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(8658,722,'content_block','a:1:{i:0;s:10:\"text_block\";}'),(8659,722,'_content_block','field_5bbe19a7efa09'),(8660,722,'content_block_0_text_block_columns','one'),(8661,722,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(8662,722,'content_block_0_narrow_text_block_content','1'),(8663,722,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(8664,722,'content_block_0_reverse_colors','0'),(8665,722,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(8666,722,'content_block_0_enable_background_image','0'),(8667,722,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(8668,722,'content_block_0_custom_css_class',''),(8669,722,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(8670,722,'content_block_0_text_block_content_col_one','[c7_content]'),(8671,722,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(8672,722,'content_block_0_layout_title','Commerce 7 Content Placeholder'),(8673,722,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(8674,723,'content_block_0_text_block_columns','one'),(8675,723,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(8676,723,'content_block_0_narrow_text_block_content','0'),(8677,723,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(8678,723,'content_block_0_reverse_colors','0'),(8679,723,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(8680,723,'content_block_0_enable_background_image','0'),(8681,723,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(8682,723,'content_block_0_custom_css_class',''),(8683,723,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(8684,723,'content_block_0_text_block_content_col_one','[c7_content]'),(8685,723,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(8686,723,'content_block','a:1:{i:0;s:10:\"text_block\";}'),(8687,723,'_content_block','field_5bbe19a7efa09'),(8688,723,'content_block_0_layout_title','Commerce 7 Content Placeholder'),(8689,723,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(8690,724,'content_block_0_layout_title','Commerce7 Placeholder'),(8691,724,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(8692,724,'content_block_0_text_block_columns','one'),(8693,724,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(8694,724,'content_block_0_narrow_text_block_content','0'),(8695,724,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(8696,724,'content_block_0_reverse_colors','0'),(8697,724,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(8698,724,'content_block_0_enable_background_image','0'),(8699,724,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(8700,724,'content_block_0_custom_css_class',''),(8701,724,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(8702,724,'content_block_0_text_block_content_col_one','[c7_content]'),(8703,724,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(8704,724,'content_block','a:1:{i:0;s:10:\"text_block\";}'),(8705,724,'_content_block','field_5bbe19a7efa09'),(8706,725,'content_block',''),(8707,725,'_content_block','field_5bbe19a7efa09'),(8708,726,'inline_featured_image','0'),(8709,726,'_edit_lock','1730323256:2'),(8710,726,'_edit_last','2'),(8711,726,'_wp_page_template','default'),(8712,726,'content_block','a:4:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";i:3;s:10:\"text_block\";}'),(8713,726,'_content_block','field_5bbe19a7efa09'),(8714,727,'content_block',''),(8715,727,'_content_block','field_5bbe19a7efa09'),(8717,729,'content_block','a:4:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";i:3;s:10:\"text_block\";}'),(8718,729,'_content_block','field_5bbe19a7efa09'),(8719,729,'content_block_0_banner_full_width','1'),(8720,729,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(8721,729,'content_block_0_banner_size','normal'),(8722,729,'_content_block_0_banner_size','field_5bbe232929ec9'),(8723,729,'content_block_0_add_parallax_effect','0'),(8724,729,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(8725,729,'content_block_0_add_veil_over_banner','0'),(8726,729,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(8727,729,'content_block_0_banner_content_position','centered'),(8728,729,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(8729,729,'content_block_0_banner_title','Memberships'),(8730,729,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(8731,729,'content_block_0_banner_subtitle',''),(8732,729,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(8733,729,'content_block_0_banner_button_link',''),(8734,729,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(8735,729,'content_block_0_banner_button_new_tab','0'),(8736,729,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(8737,729,'content_block_0_show_down_arrow','1'),(8738,729,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(8739,729,'content_block_0_banner_image','491'),(8740,729,'_content_block_0_banner_image','field_5bbe201718faf'),(8741,729,'content_block_0_banner_image_position','center center'),(8742,729,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(8743,729,'content_block_0_banner_image_mobile','490'),(8744,729,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(8745,729,'content_block_0_banner_image_mobile_position','center center'),(8746,729,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(8747,729,'content_block_1_text_block_columns','one'),(8748,729,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(8749,729,'content_block_1_narrow_text_block_content','0'),(8750,729,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(8751,729,'content_block_1_reverse_colors','0'),(8752,729,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(8753,729,'content_block_1_enable_background_image','0'),(8754,729,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(8755,729,'content_block_1_text_block_content_col_one','<blockquote style=\"text-align: center;\">Thank you for considering a Spectra Membership</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">With each type of club you will enjoy a regular shipment of our wine for your cellar and enjoyment.\r\nYou will also enjoy complimentary tastings and VIP treatment at our winery.\r\nPlease call in advance to book your engagement.</p>'),(8756,729,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(8757,729,'content_block_2_text_block_columns','two'),(8758,729,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(8759,729,'content_block_2_narrow_text_block_content','0'),(8760,729,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(8761,729,'content_block_2_reverse_colors','0'),(8762,729,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(8763,729,'content_block_2_enable_background_image','0'),(8764,729,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(8765,729,'content_block_2_text_block_content_col_one','<img class=\"alignnone wp-image-510 size-full\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2018/10/640x400-1.jpg\" alt=\"\" width=\"640\" height=\"400\" />\r\n<h4>Spectra Wine Club</h4>\r\n<em>You will receive 48 bottles per year, split into four 12 bottle quarterly shipments.</em>\r\n\r\nTwo mixed cases of new releases, award winners, and favourites received four times per year. For wine enthusiasts, and corporate clients who entertain in style.\r\n\r\n[club_button slug=\"spectra-wine-club\"]'),(8766,729,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(8767,729,'content_block_2_text_block_content_col_two','<img class=\"alignnone wp-image-511 size-full\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2018/10/640x400-2.jpg\" alt=\"\" width=\"640\" height=\"400\" />\r\n<h4>Spectra Choice Club</h4>\r\n<em>You will receive 48 bottles per year, split into four 12 bottle quarterly shipments.</em>\r\n\r\nTwo mixed cases of new releases, award winners, and favourites received four times per year. For wine enthusiasts, and corporate clients who entertain in style.\r\n\r\n[club_button slug=\"spectra-choice-club\"]'),(8768,729,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(8769,729,'content_block_3_text_block_columns','two'),(8770,729,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(8771,729,'content_block_3_narrow_text_block_content','0'),(8772,729,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(8773,729,'content_block_3_reverse_colors','1'),(8774,729,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(8775,729,'content_block_3_enable_background_image','0'),(8776,729,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(8777,729,'content_block_3_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(8778,729,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(8779,729,'content_block_3_text_block_content_col_two','[c7-subscribe-with-name]'),(8780,729,'_content_block_3_text_block_content_col_two','field_5bbe31593920e'),(8781,729,'content_block_0_layout_title','Page Banner'),(8782,729,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(8783,729,'content_block_0_custom_css_class',''),(8784,729,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(8785,729,'content_block_1_layout_title','Spectra Quote'),(8786,729,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(8787,729,'content_block_1_custom_css_class',''),(8788,729,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(8789,729,'content_block_2_layout_title','Two Columns - Join Clubs'),(8790,729,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(8791,729,'content_block_2_custom_css_class',''),(8792,729,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(8793,729,'content_block_3_layout_title','Subscribe'),(8794,729,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(8795,729,'content_block_3_custom_css_class','subscribe-columns'),(8796,729,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(8797,730,'content_block','a:4:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";i:3;s:10:\"text_block\";}'),(8798,730,'_content_block','field_5bbe19a7efa09'),(8799,730,'content_block_0_banner_full_width','1'),(8800,730,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(8801,730,'content_block_0_banner_size','normal'),(8802,730,'_content_block_0_banner_size','field_5bbe232929ec9'),(8803,730,'content_block_0_add_parallax_effect','0'),(8804,730,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(8805,730,'content_block_0_add_veil_over_banner','0'),(8806,730,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(8807,730,'content_block_0_banner_content_position','centered'),(8808,730,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(8809,730,'content_block_0_banner_title','Memberships'),(8810,730,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(8811,730,'content_block_0_banner_subtitle',''),(8812,730,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(8813,730,'content_block_0_banner_button_link',''),(8814,730,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(8815,730,'content_block_0_banner_button_new_tab','0'),(8816,730,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(8817,730,'content_block_0_show_down_arrow','1'),(8818,730,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(8819,730,'content_block_0_banner_image','491'),(8820,730,'_content_block_0_banner_image','field_5bbe201718faf'),(8821,730,'content_block_0_banner_image_position','center center'),(8822,730,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(8823,730,'content_block_0_banner_image_mobile','490'),(8824,730,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(8825,730,'content_block_0_banner_image_mobile_position','center center'),(8826,730,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(8827,730,'content_block_1_text_block_columns','one'),(8828,730,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(8829,730,'content_block_1_narrow_text_block_content','0'),(8830,730,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(8831,730,'content_block_1_reverse_colors','0'),(8832,730,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(8833,730,'content_block_1_enable_background_image','0'),(8834,730,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(8835,730,'content_block_1_text_block_content_col_one','<blockquote style=\"text-align: center;\">Thank you for considering a Spectra Membership</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">With each type of club you will enjoy a regular shipment of our wine for your cellar and enjoyment.\r\nYou will also enjoy complimentary tastings and VIP treatment at our winery.\r\nPlease call in advance to book your engagement.</p>'),(8836,730,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(8837,730,'content_block_2_text_block_columns','two'),(8838,730,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(8839,730,'content_block_2_narrow_text_block_content','0'),(8840,730,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(8841,730,'content_block_2_reverse_colors','0'),(8842,730,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(8843,730,'content_block_2_enable_background_image','0'),(8844,730,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(8845,730,'content_block_2_text_block_content_col_one','<img class=\"alignnone wp-image-510 size-full\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2018/10/640x400-1.jpg\" alt=\"\" width=\"640\" height=\"400\" />\r\n<h4>Spectra Wine Club</h4>\r\n<em>You will receive 48 bottles per year, split into four 12 bottle quarterly shipments.</em>\r\n\r\nTwo mixed cases of new releases, award winners, and favourites received four times per year. For wine enthusiasts, and corporate clients who entertain in style.\r\n\r\n[club_button slug=\"spectra-wine-club\"]'),(8846,730,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(8847,730,'content_block_2_text_block_content_col_two','<img class=\"alignnone wp-image-511 size-full\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2018/10/640x400-2.jpg\" alt=\"\" width=\"640\" height=\"400\" />\r\n<h4>Spectra Choice Club</h4>\r\n<em>You will receive 48 bottles per year, split into four 12 bottle quarterly shipments.</em>\r\n\r\nTwo mixed cases of new releases, award winners, and favourites received four times per year. For wine enthusiasts, and corporate clients who entertain in style.\r\n\r\n[club_dropdown_button titles=\"Choice Club,Premium Club\" links=\"/club/premium,/club/choice\" join_btn_text=\"Sign Up Today\" ]'),(8848,730,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(8849,730,'content_block_3_text_block_columns','two'),(8850,730,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(8851,730,'content_block_3_narrow_text_block_content','0'),(8852,730,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(8853,730,'content_block_3_reverse_colors','1'),(8854,730,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(8855,730,'content_block_3_enable_background_image','0'),(8856,730,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(8857,730,'content_block_3_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(8858,730,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(8859,730,'content_block_3_text_block_content_col_two','[c7-subscribe-with-name]'),(8860,730,'_content_block_3_text_block_content_col_two','field_5bbe31593920e'),(8861,730,'content_block_0_layout_title','Page Banner'),(8862,730,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(8863,730,'content_block_0_custom_css_class',''),(8864,730,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(8865,730,'content_block_1_layout_title','Spectra Quote'),(8866,730,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(8867,730,'content_block_1_custom_css_class',''),(8868,730,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(8869,730,'content_block_2_layout_title','Two Columns - Join Clubs'),(8870,730,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(8871,730,'content_block_2_custom_css_class',''),(8872,730,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(8873,730,'content_block_3_layout_title','Subscribe'),(8874,730,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(8875,730,'content_block_3_custom_css_class','subscribe-columns'),(8876,730,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(8877,731,'content_block','a:4:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";i:3;s:10:\"text_block\";}'),(8878,731,'_content_block','field_5bbe19a7efa09'),(8879,731,'content_block_0_banner_full_width','1'),(8880,731,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(8881,731,'content_block_0_banner_size','normal'),(8882,731,'_content_block_0_banner_size','field_5bbe232929ec9'),(8883,731,'content_block_0_add_parallax_effect','0'),(8884,731,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(8885,731,'content_block_0_add_veil_over_banner','0'),(8886,731,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(8887,731,'content_block_0_banner_content_position','centered'),(8888,731,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(8889,731,'content_block_0_banner_title','Memberships'),(8890,731,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(8891,731,'content_block_0_banner_subtitle',''),(8892,731,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(8893,731,'content_block_0_banner_button_link',''),(8894,731,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(8895,731,'content_block_0_banner_button_new_tab','0'),(8896,731,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(8897,731,'content_block_0_show_down_arrow','1'),(8898,731,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(8899,731,'content_block_0_banner_image','491'),(8900,731,'_content_block_0_banner_image','field_5bbe201718faf'),(8901,731,'content_block_0_banner_image_position','center center'),(8902,731,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(8903,731,'content_block_0_banner_image_mobile','490'),(8904,731,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(8905,731,'content_block_0_banner_image_mobile_position','center center'),(8906,731,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(8907,731,'content_block_1_text_block_columns','one'),(8908,731,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(8909,731,'content_block_1_narrow_text_block_content','0'),(8910,731,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(8911,731,'content_block_1_reverse_colors','0'),(8912,731,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(8913,731,'content_block_1_enable_background_image','0'),(8914,731,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(8915,731,'content_block_1_text_block_content_col_one','<blockquote style=\"text-align: center;\">Thank you for considering a Spectra Membership</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">With each type of club you will enjoy a regular shipment of our wine for your cellar and enjoyment.\r\nYou will also enjoy complimentary tastings and VIP treatment at our winery.\r\nPlease call in advance to book your engagement.</p>'),(8916,731,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(8917,731,'content_block_2_text_block_columns','two'),(8918,731,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(8919,731,'content_block_2_narrow_text_block_content','0'),(8920,731,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(8921,731,'content_block_2_reverse_colors','0'),(8922,731,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(8923,731,'content_block_2_enable_background_image','0'),(8924,731,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(8925,731,'content_block_2_text_block_content_col_one','<img class=\"alignnone wp-image-510 size-full\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2018/10/640x400-1.jpg\" alt=\"\" width=\"640\" height=\"400\" />\r\n<h4>Premium Club</h4>\r\n<em>You will receive 48 bottles per year, split into four 12 bottle quarterly shipments.</em>\r\n\r\nTwo mixed cases of new releases, award winners, and favourites received four times per year. For wine enthusiasts, and corporate clients who entertain in style.\r\n\r\n[club_button slug=\"premium\"]'),(8926,731,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(8927,731,'content_block_2_text_block_content_col_two','<img class=\"alignnone wp-image-511 size-full\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2018/10/640x400-2.jpg\" alt=\"\" width=\"640\" height=\"400\" />\r\n<h4>Choice Club</h4>\r\n<em>You will receive 48 bottles per year, split into four 12 bottle quarterly shipments.</em>\r\n\r\nTwo mixed cases of new releases, award winners, and favourites received four times per year. For wine enthusiasts, and corporate clients who entertain in style.\r\n\r\n[club_dropdown_button titles=\"Choice Club,Premium Club\" links=\"/club/premium,/club/choice\" join_btn_text=\"Sign Up Today\" ]'),(8928,731,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(8929,731,'content_block_3_text_block_columns','two'),(8930,731,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(8931,731,'content_block_3_narrow_text_block_content','0'),(8932,731,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(8933,731,'content_block_3_reverse_colors','1'),(8934,731,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(8935,731,'content_block_3_enable_background_image','0'),(8936,731,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(8937,731,'content_block_3_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(8938,731,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(8939,731,'content_block_3_text_block_content_col_two','[c7-subscribe-with-name]'),(8940,731,'_content_block_3_text_block_content_col_two','field_5bbe31593920e'),(8941,731,'content_block_0_layout_title','Page Banner'),(8942,731,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(8943,731,'content_block_0_custom_css_class',''),(8944,731,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(8945,731,'content_block_1_layout_title','Spectra Quote'),(8946,731,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(8947,731,'content_block_1_custom_css_class',''),(8948,731,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(8949,731,'content_block_2_layout_title','Two Columns - Join Clubs'),(8950,731,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(8951,731,'content_block_2_custom_css_class',''),(8952,731,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(8953,731,'content_block_3_layout_title','Subscribe'),(8954,731,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(8955,731,'content_block_3_custom_css_class','subscribe-columns'),(8956,731,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(8957,732,'content_block','a:4:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";i:3;s:10:\"text_block\";}'),(8958,732,'_content_block','field_5bbe19a7efa09'),(8959,732,'content_block_0_banner_full_width','1'),(8960,732,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(8961,732,'content_block_0_banner_size','normal'),(8962,732,'_content_block_0_banner_size','field_5bbe232929ec9'),(8963,732,'content_block_0_add_parallax_effect','0'),(8964,732,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(8965,732,'content_block_0_add_veil_over_banner','0'),(8966,732,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(8967,732,'content_block_0_banner_content_position','centered'),(8968,732,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(8969,732,'content_block_0_banner_title','Memberships'),(8970,732,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(8971,732,'content_block_0_banner_subtitle',''),(8972,732,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(8973,732,'content_block_0_banner_button_link',''),(8974,732,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(8975,732,'content_block_0_banner_button_new_tab','0'),(8976,732,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(8977,732,'content_block_0_show_down_arrow','1'),(8978,732,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(8979,732,'content_block_0_banner_image','491'),(8980,732,'_content_block_0_banner_image','field_5bbe201718faf'),(8981,732,'content_block_0_banner_image_position','center center'),(8982,732,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(8983,732,'content_block_0_banner_image_mobile','490'),(8984,732,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(8985,732,'content_block_0_banner_image_mobile_position','center center'),(8986,732,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(8987,732,'content_block_1_text_block_columns','one'),(8988,732,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(8989,732,'content_block_1_narrow_text_block_content','0'),(8990,732,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(8991,732,'content_block_1_reverse_colors','0'),(8992,732,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(8993,732,'content_block_1_enable_background_image','0'),(8994,732,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(8995,732,'content_block_1_text_block_content_col_one','<blockquote style=\"text-align: center;\">Thank you for considering a Spectra Membership</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">With each type of club you will enjoy a regular shipment of our wine for your cellar and enjoyment.\r\nYou will also enjoy complimentary tastings and VIP treatment at our winery.\r\nPlease call in advance to book your engagement.</p>'),(8996,732,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(8997,732,'content_block_2_text_block_columns','two'),(8998,732,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(8999,732,'content_block_2_narrow_text_block_content','0'),(9000,732,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(9001,732,'content_block_2_reverse_colors','0'),(9002,732,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(9003,732,'content_block_2_enable_background_image','0'),(9004,732,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(9005,732,'content_block_2_text_block_content_col_one','<img class=\"alignnone wp-image-510 size-full\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2018/10/640x400-1.jpg\" alt=\"\" width=\"640\" height=\"400\" />\r\n<h4>Premium Club</h4>\r\n<em>You will receive 48 bottles per year, split into four 12 bottle quarterly shipments.</em>\r\n\r\nTwo mixed cases of new releases, award winners, and favourites received four times per year. For wine enthusiasts, and corporate clients who entertain in style.\r\n\r\n[club_button slug=\"premium\"]'),(9006,732,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(9007,732,'content_block_2_text_block_content_col_two','<img class=\"alignnone wp-image-511 size-full\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2018/10/640x400-2.jpg\" alt=\"\" width=\"640\" height=\"400\" />\r\n<h4>Choice Club</h4>\r\n<em>You will receive 48 bottles per year, split into four 12 bottle quarterly shipments.</em>\r\n\r\nTwo mixed cases of new releases, award winners, and favourites received four times per year. For wine enthusiasts, and corporate clients who entertain in style.\r\n\r\n[club_dropdown_button titles=\"Choice Club,Premium Club\" links=\"https://www.meadowcroftwines.com/club/premium,https://www.meadowcroftwines.com/club/choice\"]'),(9008,732,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(9009,732,'content_block_3_text_block_columns','two'),(9010,732,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(9011,732,'content_block_3_narrow_text_block_content','0'),(9012,732,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(9013,732,'content_block_3_reverse_colors','1'),(9014,732,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(9015,732,'content_block_3_enable_background_image','0'),(9016,732,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(9017,732,'content_block_3_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(9018,732,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(9019,732,'content_block_3_text_block_content_col_two','[c7-subscribe-with-name]'),(9020,732,'_content_block_3_text_block_content_col_two','field_5bbe31593920e'),(9021,732,'content_block_0_layout_title','Page Banner'),(9022,732,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(9023,732,'content_block_0_custom_css_class',''),(9024,732,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(9025,732,'content_block_1_layout_title','Spectra Quote'),(9026,732,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(9027,732,'content_block_1_custom_css_class',''),(9028,732,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(9029,732,'content_block_2_layout_title','Two Columns - Join Clubs'),(9030,732,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(9031,732,'content_block_2_custom_css_class',''),(9032,732,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(9033,732,'content_block_3_layout_title','Subscribe'),(9034,732,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(9035,732,'content_block_3_custom_css_class','subscribe-columns'),(9036,732,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(9037,733,'content_block','a:6:{i:0;s:6:\"banner\";i:1;s:20:\"three_column_feature\";i:2;s:10:\"text_block\";i:3;s:18:\"product_collection\";i:4;s:18:\"two_column_feature\";i:5;s:10:\"text_block\";}'),(9038,733,'_content_block','field_5bbe19a7efa09'),(9039,733,'content_block_0_banner_full_width','1'),(9040,733,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(9041,733,'content_block_0_banner_size','long'),(9042,733,'_content_block_0_banner_size','field_5bbe232929ec9'),(9043,733,'content_block_0_add_parallax_effect','0'),(9044,733,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(9045,733,'content_block_0_add_veil_over_banner','0'),(9046,733,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(9047,733,'content_block_0_banner_content_position','centered'),(9048,733,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(9049,733,'content_block_0_banner_title','Welcome to Spectra Winery'),(9050,733,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(9051,733,'content_block_0_banner_subtitle','CRAFTING AN EXCEPTIONAL WINE EXPERIENCE!'),(9052,733,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(9053,733,'content_block_0_banner_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:24:\"/wines/current-releases/\";s:6:\"target\";s:0:\"\";}'),(9054,733,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(9055,733,'content_block_0_banner_button_text','Current Releases'),(9056,733,'_content_block_0_banner_button_text','field_5bbe1ba0efa0e'),(9057,733,'content_block_0_banner_button_new_tab','0'),(9058,733,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(9059,733,'content_block_0_show_down_arrow','1'),(9060,733,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(9061,733,'content_block_0_banner_image','432'),(9062,733,'_content_block_0_banner_image','field_5bbe201718faf'),(9063,733,'content_block_0_banner_image_position','center center'),(9064,733,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(9065,733,'content_block_0_banner_image_mobile','433'),(9066,733,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(9067,733,'content_block_0_banner_image_mobile_position','center center'),(9068,733,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(9069,733,'content_block_1_gap_between_columns','0'),(9070,733,'_content_block_1_gap_between_columns','field_5bbe5a0e54759'),(9071,733,'content_block_1_full_width_columns','1'),(9072,733,'_content_block_1_full_width_columns','field_5bbe5a0e5475a'),(9073,733,'content_block_1_veil_over_images','0'),(9074,733,'_content_block_1_veil_over_images','field_5bbe5a0e5475b'),(9075,733,'content_block_1_first_column_background_image','434'),(9076,733,'_content_block_1_first_column_background_image','field_5bbe5a0e5475d'),(9077,733,'content_block_1_first_column_content','<h3>Shop Wine</h3>\r\nReview our current wine release.'),(9078,733,'_content_block_1_first_column_content','field_5bbe5a0e5475e'),(9079,733,'content_block_1_first_whole_column_clickable','1'),(9080,733,'_content_block_1_first_whole_column_clickable','field_5bbe5a0e5475f'),(9081,733,'content_block_1_first_column_button_url','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:23:\"/wines/current-releases\";s:6:\"target\";s:0:\"\";}'),(9082,733,'_content_block_1_first_column_button_url','field_5bbe5a0e54760'),(9083,733,'content_block_1_first_column_button_text','VIEW RELEASES'),(9084,733,'_content_block_1_first_column_button_text','field_5bbe5a0e54761'),(9085,733,'content_block_1_second_column_background_image','435'),(9086,733,'_content_block_1_second_column_background_image','field_5bbe5a0e54763'),(9087,733,'content_block_1_second_column_content','<h3>Experiences</h3>\r\nCome and experience our wines.'),(9088,733,'_content_block_1_second_column_content','field_5bbe5a0e54764'),(9089,733,'content_block_1_second_whole_column_clickable','1'),(9090,733,'_content_block_1_second_whole_column_clickable','field_5bbe5a0e54765'),(9091,733,'content_block_1_second_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:7:\"/visit/\";s:6:\"target\";s:0:\"\";}'),(9092,733,'_content_block_1_second_column_button_link','field_5bbe5a0e54766'),(9093,733,'content_block_1_second_column_button_text','BOOK TASTING'),(9094,733,'_content_block_1_second_column_button_text','field_5bbe5a0e54767'),(9095,733,'content_block_1_third_column_background_image','436'),(9096,733,'_content_block_1_third_column_background_image','field_5bbe5aa254769'),(9097,733,'content_block_1_third_column_content','<h3>Membership</h3>\r\nGreat wine, great benefits!'),(9098,733,'_content_block_1_third_column_content','field_5bbe5aae5476a'),(9099,733,'content_block_1_third_whole_column_clickable','1'),(9100,733,'_content_block_1_third_whole_column_clickable','field_5bbe5ae25476e'),(9101,733,'content_block_1_third_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:6:\"/club/\";s:6:\"target\";s:0:\"\";}'),(9102,733,'_content_block_1_third_column_button_link','field_5bbe5ac15476c'),(9103,733,'content_block_1_third_column_button_text','LEARN MORE'),(9104,733,'_content_block_1_third_column_button_text','field_5bbe5aca5476d'),(9105,733,'content_block_2_text_block_columns','one'),(9106,733,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(9107,733,'content_block_2_narrow_text_block_content','0'),(9108,733,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(9109,733,'content_block_2_reverse_colors','0'),(9110,733,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(9111,733,'content_block_2_enable_background_image','0'),(9112,733,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(9113,733,'content_block_2_text_block_content_col_one','<h2 style=\"text-align: center;\">The New Release</h2>\r\n<blockquote>I try to create wines that suit our climate and our way of life - wines to drink with the food we grow, make and eat.</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">Spectra winery was realised to focus on our passion for the region and its ability to produce dry - grown and environmentally sustainable wine. Recently a new home was established on our holistic philosophy to winemaking which starts with climate, empahasises the importance on the vineyard, as well as wine\'s relation to the food we love to grow, cook, and eat.</p>'),(9114,733,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(9115,733,'content_block_3_product_row_number','3up'),(9116,733,'_content_block_3_product_row_number','field_5bc11c6da0d4f'),(9117,733,'content_block_3_data_collection_slug','home'),(9118,733,'_content_block_3_data_collection_slug','field_5bc11ca9a0d50'),(9119,733,'content_block_4_gap_between_columns','1'),(9120,733,'_content_block_4_gap_between_columns','field_5bbe44a5ae587'),(9121,733,'content_block_4_full_width_columns','1'),(9122,733,'_content_block_4_full_width_columns','field_5bbe44c7ae588'),(9123,733,'content_block_4_veil_over_images','0'),(9124,733,'_content_block_4_veil_over_images','field_5bbe4f8f88a8a'),(9125,733,'content_block_4_left_column_background_image','437'),(9126,733,'_content_block_4_left_column_background_image','field_5bbe4452ae585'),(9127,733,'content_block_4_left_column_content','<h3>Club Member Event</h3>\r\nCome pick up your shipment and enjoy.'),(9128,733,'_content_block_4_left_column_content','field_5bbe4414ae582'),(9129,733,'content_block_4_left_whole_column_clickable','1'),(9130,733,'_content_block_4_left_whole_column_clickable','field_5bbe44f3ae589'),(9131,733,'content_block_4_left_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:7:\"/clubs/\";s:6:\"target\";s:0:\"\";}'),(9132,733,'_content_block_4_left_column_button_link','field_5bbe442fae583'),(9133,733,'content_block_4_left_column_button_text','LEARN MORE'),(9134,733,'_content_block_4_left_column_button_text','field_5bbe443dae584'),(9135,733,'content_block_4_right_column_background_image','438'),(9136,733,'_content_block_4_right_column_background_image','field_5bbe4547ae58b'),(9137,733,'content_block_4_right_column_content','&nbsp;\r\n<h3>Top Pick</h3>\r\nGold Medal winner for 2015!'),(9138,733,'_content_block_4_right_column_content','field_5bbe4550ae58c'),(9139,733,'content_block_4_right_whole_column_clickable','1'),(9140,733,'_content_block_4_right_whole_column_clickable','field_5bbe455aae58d'),(9141,733,'content_block_4_right_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:24:\"/wines/current-releases/\";s:6:\"target\";s:0:\"\";}'),(9142,733,'_content_block_4_right_column_button_link','field_5bbe456bae58e'),(9143,733,'content_block_4_right_column_button_text','LEARN MORE'),(9144,733,'_content_block_4_right_column_button_text','field_5bbe4577ae58f'),(9145,733,'content_block_5_text_block_columns','two'),(9146,733,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(9147,733,'content_block_5_narrow_text_block_content','0'),(9148,733,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(9149,733,'content_block_5_reverse_colors','1'),(9150,733,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(9151,733,'content_block_5_enable_background_image','0'),(9152,733,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(9153,733,'content_block_5_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(9154,733,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(9155,733,'content_block_5_text_block_content_col_two','[c7-subscribe-with-name]'),(9156,733,'_content_block_5_text_block_content_col_two','field_5bbe31593920e'),(9157,733,'content_block_1_first_button_column','0'),(9158,733,'_content_block_1_first_button_column','field_5bd78c465387a'),(9159,733,'content_block_1_second_button_column','0'),(9160,733,'_content_block_1_second_button_column','field_5bd78c465387b'),(9161,733,'content_block_1_third_button_column','0'),(9162,733,'_content_block_1_third_button_column','field_5bd78c465387c'),(9163,733,'content_block_3_product_display_teaser','1'),(9164,733,'_content_block_3_product_display_teaser','field_5d114505e6923'),(9165,733,'content_block_3_product_display_feature','0'),(9166,733,'_content_block_3_product_display_feature','field_5d1144d5e6922'),(9167,733,'content_block_4_left_button_column','0'),(9168,733,'_content_block_4_left_button_column','field_5bd78c465387d'),(9169,733,'content_block_4_right_button_column','0'),(9170,733,'_content_block_4_right_button_column','field_5bd78c465387e'),(9171,733,'content_block_2_custom_css_class',''),(9172,733,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(9173,733,'content_block_5_custom_css_class','subscribe-columns'),(9174,733,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(9175,733,'content_block_0_layout_title',''),(9176,733,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(9177,733,'content_block_0_custom_css_class',''),(9178,733,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(9179,733,'content_block_1_layout_title',''),(9180,733,'_content_block_1_layout_title','field_5bc11ca9a0d50-q'),(9181,733,'content_block_2_layout_title',''),(9182,733,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(9183,733,'content_block_3_layout_title',''),(9184,733,'_content_block_3_layout_title','field_5bc11ca9a0d50-v'),(9185,733,'content_block_3_manually_enter_collection_slug','0'),(9186,733,'_content_block_3_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(9187,733,'content_block_5_layout_title','Subscribe'),(9188,733,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(9189,734,'content_block','a:6:{i:0;s:6:\"banner\";i:1;s:20:\"three_column_feature\";i:2;s:10:\"text_block\";i:3;s:18:\"product_collection\";i:4;s:18:\"two_column_feature\";i:5;s:10:\"text_block\";}'),(9190,734,'_content_block','field_5bbe19a7efa09'),(9191,734,'content_block_0_banner_full_width','1'),(9192,734,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(9193,734,'content_block_0_banner_size','long'),(9194,734,'_content_block_0_banner_size','field_5bbe232929ec9'),(9195,734,'content_block_0_add_parallax_effect','0'),(9196,734,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(9197,734,'content_block_0_add_veil_over_banner','0'),(9198,734,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(9199,734,'content_block_0_banner_content_position','centered'),(9200,734,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(9201,734,'content_block_0_banner_title','Welcome to Spectra Winery'),(9202,734,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(9203,734,'content_block_0_banner_subtitle','CRAFTING AN EXCEPTIONAL WINE EXPERIENCE!'),(9204,734,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(9205,734,'content_block_0_banner_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:24:\"/wines/current-releases/\";s:6:\"target\";s:0:\"\";}'),(9206,734,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(9207,734,'content_block_0_banner_button_text','Current Releases'),(9208,734,'_content_block_0_banner_button_text','field_5bbe1ba0efa0e'),(9209,734,'content_block_0_banner_button_new_tab','0'),(9210,734,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(9211,734,'content_block_0_show_down_arrow','1'),(9212,734,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(9213,734,'content_block_0_banner_image','432'),(9214,734,'_content_block_0_banner_image','field_5bbe201718faf'),(9215,734,'content_block_0_banner_image_position','center center'),(9216,734,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(9217,734,'content_block_0_banner_image_mobile','433'),(9218,734,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(9219,734,'content_block_0_banner_image_mobile_position','center center'),(9220,734,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(9221,734,'content_block_1_gap_between_columns','0'),(9222,734,'_content_block_1_gap_between_columns','field_5bbe5a0e54759'),(9223,734,'content_block_1_full_width_columns','1'),(9224,734,'_content_block_1_full_width_columns','field_5bbe5a0e5475a'),(9225,734,'content_block_1_veil_over_images','0'),(9226,734,'_content_block_1_veil_over_images','field_5bbe5a0e5475b'),(9227,734,'content_block_1_first_column_background_image','434'),(9228,734,'_content_block_1_first_column_background_image','field_5bbe5a0e5475d'),(9229,734,'content_block_1_first_column_content','<h3>Shop Wine</h3>\r\nReview our current wine release.'),(9230,734,'_content_block_1_first_column_content','field_5bbe5a0e5475e'),(9231,734,'content_block_1_first_whole_column_clickable','1'),(9232,734,'_content_block_1_first_whole_column_clickable','field_5bbe5a0e5475f'),(9233,734,'content_block_1_first_column_button_url','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:23:\"/wines/current-releases\";s:6:\"target\";s:0:\"\";}'),(9234,734,'_content_block_1_first_column_button_url','field_5bbe5a0e54760'),(9235,734,'content_block_1_first_column_button_text','VIEW RELEASES'),(9236,734,'_content_block_1_first_column_button_text','field_5bbe5a0e54761'),(9237,734,'content_block_1_second_column_background_image','435'),(9238,734,'_content_block_1_second_column_background_image','field_5bbe5a0e54763'),(9239,734,'content_block_1_second_column_content','<h3>Experiences</h3>\r\nCome and experience our wines.'),(9240,734,'_content_block_1_second_column_content','field_5bbe5a0e54764'),(9241,734,'content_block_1_second_whole_column_clickable','1'),(9242,734,'_content_block_1_second_whole_column_clickable','field_5bbe5a0e54765'),(9243,734,'content_block_1_second_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:7:\"/visit/\";s:6:\"target\";s:0:\"\";}'),(9244,734,'_content_block_1_second_column_button_link','field_5bbe5a0e54766'),(9245,734,'content_block_1_second_column_button_text','BOOK TASTING'),(9246,734,'_content_block_1_second_column_button_text','field_5bbe5a0e54767'),(9247,734,'content_block_1_third_column_background_image','436'),(9248,734,'_content_block_1_third_column_background_image','field_5bbe5aa254769'),(9249,734,'content_block_1_third_column_content','<h3>Membership</h3>\r\nGreat wine, great benefits!'),(9250,734,'_content_block_1_third_column_content','field_5bbe5aae5476a'),(9251,734,'content_block_1_third_whole_column_clickable','1'),(9252,734,'_content_block_1_third_whole_column_clickable','field_5bbe5ae25476e'),(9253,734,'content_block_1_third_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:6:\"/club/\";s:6:\"target\";s:0:\"\";}'),(9254,734,'_content_block_1_third_column_button_link','field_5bbe5ac15476c'),(9255,734,'content_block_1_third_column_button_text','LEARN MORE'),(9256,734,'_content_block_1_third_column_button_text','field_5bbe5aca5476d'),(9257,734,'content_block_2_text_block_columns','one'),(9258,734,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(9259,734,'content_block_2_narrow_text_block_content','0'),(9260,734,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(9261,734,'content_block_2_reverse_colors','0'),(9262,734,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(9263,734,'content_block_2_enable_background_image','0'),(9264,734,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(9265,734,'content_block_2_text_block_content_col_one','<h2 style=\"text-align: center;\">The New Release</h2>\r\n<blockquote>I try to create wines that suit our climate and our way of life - wines to drink with the food we grow, make and eat.</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">Spectra winery was realised to focus on our passion for the region and its ability to produce dry - grown and environmentally sustainable wine. Recently a new home was established on our holistic philosophy to winemaking which starts with climate, empahasises the importance on the vineyard, as well as wine\'s relation to the food we love to grow, cook, and eat.</p>'),(9266,734,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(9267,734,'content_block_3_product_row_number','3up'),(9268,734,'_content_block_3_product_row_number','field_5bc11c6da0d4f'),(9269,734,'content_block_3_data_collection_slug','home'),(9270,734,'_content_block_3_data_collection_slug','field_5bc11ca9a0d50'),(9271,734,'content_block_4_gap_between_columns','1'),(9272,734,'_content_block_4_gap_between_columns','field_5bbe44a5ae587'),(9273,734,'content_block_4_full_width_columns','0'),(9274,734,'_content_block_4_full_width_columns','field_5bbe44c7ae588'),(9275,734,'content_block_4_veil_over_images','1'),(9276,734,'_content_block_4_veil_over_images','field_5bbe4f8f88a8a'),(9277,734,'content_block_4_left_column_background_image','437'),(9278,734,'_content_block_4_left_column_background_image','field_5bbe4452ae585'),(9279,734,'content_block_4_left_column_content','<h3>Club Member Event</h3>\r\nCome pick up your shipment and enjoy.'),(9280,734,'_content_block_4_left_column_content','field_5bbe4414ae582'),(9281,734,'content_block_4_left_whole_column_clickable','1'),(9282,734,'_content_block_4_left_whole_column_clickable','field_5bbe44f3ae589'),(9283,734,'content_block_4_left_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:7:\"/clubs/\";s:6:\"target\";s:0:\"\";}'),(9284,734,'_content_block_4_left_column_button_link','field_5bbe442fae583'),(9285,734,'content_block_4_left_column_button_text','LEARN MORE'),(9286,734,'_content_block_4_left_column_button_text','field_5bbe443dae584'),(9287,734,'content_block_4_right_column_background_image','438'),(9288,734,'_content_block_4_right_column_background_image','field_5bbe4547ae58b'),(9289,734,'content_block_4_right_column_content','&nbsp;\r\n<h3>Top Pick</h3>\r\nGold Medal winner for 2015!'),(9290,734,'_content_block_4_right_column_content','field_5bbe4550ae58c'),(9291,734,'content_block_4_right_whole_column_clickable','1'),(9292,734,'_content_block_4_right_whole_column_clickable','field_5bbe455aae58d'),(9293,734,'content_block_4_right_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:24:\"/wines/current-releases/\";s:6:\"target\";s:0:\"\";}'),(9294,734,'_content_block_4_right_column_button_link','field_5bbe456bae58e'),(9295,734,'content_block_4_right_column_button_text','LEARN MORE'),(9296,734,'_content_block_4_right_column_button_text','field_5bbe4577ae58f'),(9297,734,'content_block_5_text_block_columns','two'),(9298,734,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(9299,734,'content_block_5_narrow_text_block_content','0'),(9300,734,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(9301,734,'content_block_5_reverse_colors','1'),(9302,734,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(9303,734,'content_block_5_enable_background_image','0'),(9304,734,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(9305,734,'content_block_5_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(9306,734,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(9307,734,'content_block_5_text_block_content_col_two','[c7-subscribe-with-name]'),(9308,734,'_content_block_5_text_block_content_col_two','field_5bbe31593920e'),(9309,734,'content_block_1_first_button_column','0'),(9310,734,'_content_block_1_first_button_column','field_5bd78c465387a'),(9311,734,'content_block_1_second_button_column','0'),(9312,734,'_content_block_1_second_button_column','field_5bd78c465387b'),(9313,734,'content_block_1_third_button_column','0'),(9314,734,'_content_block_1_third_button_column','field_5bd78c465387c'),(9315,734,'content_block_3_product_display_teaser','1'),(9316,734,'_content_block_3_product_display_teaser','field_5d114505e6923'),(9317,734,'content_block_3_product_display_feature','0'),(9318,734,'_content_block_3_product_display_feature','field_5d1144d5e6922'),(9319,734,'content_block_4_left_button_column','0'),(9320,734,'_content_block_4_left_button_column','field_5bd78c465387d'),(9321,734,'content_block_4_right_button_column','0'),(9322,734,'_content_block_4_right_button_column','field_5bd78c465387e'),(9323,734,'content_block_2_custom_css_class',''),(9324,734,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(9325,734,'content_block_5_custom_css_class','subscribe-columns'),(9326,734,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(9327,734,'content_block_0_layout_title',''),(9328,734,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(9329,734,'content_block_0_custom_css_class',''),(9330,734,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(9331,734,'content_block_1_layout_title',''),(9332,734,'_content_block_1_layout_title','field_5bc11ca9a0d50-q'),(9333,734,'content_block_2_layout_title',''),(9334,734,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(9335,734,'content_block_3_layout_title',''),(9336,734,'_content_block_3_layout_title','field_5bc11ca9a0d50-v'),(9337,734,'content_block_3_manually_enter_collection_slug','0'),(9338,734,'_content_block_3_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(9339,734,'content_block_5_layout_title','Subscribe'),(9340,734,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(9341,735,'content_block','a:6:{i:0;s:6:\"banner\";i:1;s:20:\"three_column_feature\";i:2;s:10:\"text_block\";i:3;s:18:\"product_collection\";i:4;s:18:\"two_column_feature\";i:5;s:10:\"text_block\";}'),(9342,735,'_content_block','field_5bbe19a7efa09'),(9343,735,'content_block_0_banner_full_width','1'),(9344,735,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(9345,735,'content_block_0_banner_size','long'),(9346,735,'_content_block_0_banner_size','field_5bbe232929ec9'),(9347,735,'content_block_0_add_parallax_effect','0'),(9348,735,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(9349,735,'content_block_0_add_veil_over_banner','0'),(9350,735,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(9351,735,'content_block_0_banner_content_position','centered'),(9352,735,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(9353,735,'content_block_0_banner_title','Welcome to Spectra Winery'),(9354,735,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(9355,735,'content_block_0_banner_subtitle','CRAFTING AN EXCEPTIONAL WINE EXPERIENCE!'),(9356,735,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(9357,735,'content_block_0_banner_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:24:\"/wines/current-releases/\";s:6:\"target\";s:0:\"\";}'),(9358,735,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(9359,735,'content_block_0_banner_button_text','Current Releases'),(9360,735,'_content_block_0_banner_button_text','field_5bbe1ba0efa0e'),(9361,735,'content_block_0_banner_button_new_tab','0'),(9362,735,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(9363,735,'content_block_0_show_down_arrow','1'),(9364,735,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(9365,735,'content_block_0_banner_image','432'),(9366,735,'_content_block_0_banner_image','field_5bbe201718faf'),(9367,735,'content_block_0_banner_image_position','center center'),(9368,735,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(9369,735,'content_block_0_banner_image_mobile','433'),(9370,735,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(9371,735,'content_block_0_banner_image_mobile_position','center center'),(9372,735,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(9373,735,'content_block_1_gap_between_columns','0'),(9374,735,'_content_block_1_gap_between_columns','field_5bbe5a0e54759'),(9375,735,'content_block_1_full_width_columns','1'),(9376,735,'_content_block_1_full_width_columns','field_5bbe5a0e5475a'),(9377,735,'content_block_1_veil_over_images','0'),(9378,735,'_content_block_1_veil_over_images','field_5bbe5a0e5475b'),(9379,735,'content_block_1_first_column_background_image','434'),(9380,735,'_content_block_1_first_column_background_image','field_5bbe5a0e5475d'),(9381,735,'content_block_1_first_column_content','<h3>Shop Wine</h3>\r\nReview our current wine release.'),(9382,735,'_content_block_1_first_column_content','field_5bbe5a0e5475e'),(9383,735,'content_block_1_first_whole_column_clickable','1'),(9384,735,'_content_block_1_first_whole_column_clickable','field_5bbe5a0e5475f'),(9385,735,'content_block_1_first_column_button_url','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:23:\"/wines/current-releases\";s:6:\"target\";s:0:\"\";}'),(9386,735,'_content_block_1_first_column_button_url','field_5bbe5a0e54760'),(9387,735,'content_block_1_first_column_button_text','VIEW RELEASES'),(9388,735,'_content_block_1_first_column_button_text','field_5bbe5a0e54761'),(9389,735,'content_block_1_second_column_background_image','435'),(9390,735,'_content_block_1_second_column_background_image','field_5bbe5a0e54763'),(9391,735,'content_block_1_second_column_content','<h3>Experiences</h3>\r\nCome and experience our wines.'),(9392,735,'_content_block_1_second_column_content','field_5bbe5a0e54764'),(9393,735,'content_block_1_second_whole_column_clickable','1'),(9394,735,'_content_block_1_second_whole_column_clickable','field_5bbe5a0e54765'),(9395,735,'content_block_1_second_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:7:\"/visit/\";s:6:\"target\";s:0:\"\";}'),(9396,735,'_content_block_1_second_column_button_link','field_5bbe5a0e54766'),(9397,735,'content_block_1_second_column_button_text','BOOK TASTING'),(9398,735,'_content_block_1_second_column_button_text','field_5bbe5a0e54767'),(9399,735,'content_block_1_third_column_background_image','436'),(9400,735,'_content_block_1_third_column_background_image','field_5bbe5aa254769'),(9401,735,'content_block_1_third_column_content','<h3>Membership</h3>\r\nGreat wine, great benefits!'),(9402,735,'_content_block_1_third_column_content','field_5bbe5aae5476a'),(9403,735,'content_block_1_third_whole_column_clickable','1'),(9404,735,'_content_block_1_third_whole_column_clickable','field_5bbe5ae25476e'),(9405,735,'content_block_1_third_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:6:\"/club/\";s:6:\"target\";s:0:\"\";}'),(9406,735,'_content_block_1_third_column_button_link','field_5bbe5ac15476c'),(9407,735,'content_block_1_third_column_button_text','LEARN MORE'),(9408,735,'_content_block_1_third_column_button_text','field_5bbe5aca5476d'),(9409,735,'content_block_2_text_block_columns','one'),(9410,735,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(9411,735,'content_block_2_narrow_text_block_content','0'),(9412,735,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(9413,735,'content_block_2_reverse_colors','0'),(9414,735,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(9415,735,'content_block_2_enable_background_image','0'),(9416,735,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(9417,735,'content_block_2_text_block_content_col_one','<h2 style=\"text-align: center;\">The New Release</h2>\r\n<blockquote>I try to create wines that suit our climate and our way of life - wines to drink with the food we grow, make and eat.</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">Spectra winery was realised to focus on our passion for the region and its ability to produce dry - grown and environmentally sustainable wine. Recently a new home was established on our holistic philosophy to winemaking which starts with climate, empahasises the importance on the vineyard, as well as wine\'s relation to the food we love to grow, cook, and eat.</p>'),(9418,735,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(9419,735,'content_block_3_product_row_number','3up'),(9420,735,'_content_block_3_product_row_number','field_5bc11c6da0d4f'),(9421,735,'content_block_3_data_collection_slug','home'),(9422,735,'_content_block_3_data_collection_slug','field_5bc11ca9a0d50'),(9423,735,'content_block_4_gap_between_columns','1'),(9424,735,'_content_block_4_gap_between_columns','field_5bbe44a5ae587'),(9425,735,'content_block_4_full_width_columns','0'),(9426,735,'_content_block_4_full_width_columns','field_5bbe44c7ae588'),(9427,735,'content_block_4_veil_over_images','1'),(9428,735,'_content_block_4_veil_over_images','field_5bbe4f8f88a8a'),(9429,735,'content_block_4_left_column_background_image','437'),(9430,735,'_content_block_4_left_column_background_image','field_5bbe4452ae585'),(9431,735,'content_block_4_left_column_content','<h3>Club Member Event</h3>\r\nCome pick up your shipment and enjoy.'),(9432,735,'_content_block_4_left_column_content','field_5bbe4414ae582'),(9433,735,'content_block_4_left_whole_column_clickable','1'),(9434,735,'_content_block_4_left_whole_column_clickable','field_5bbe44f3ae589'),(9435,735,'content_block_4_left_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:7:\"/clubs/\";s:6:\"target\";s:0:\"\";}'),(9436,735,'_content_block_4_left_column_button_link','field_5bbe442fae583'),(9437,735,'content_block_4_left_column_button_text','LEARN MORE'),(9438,735,'_content_block_4_left_column_button_text','field_5bbe443dae584'),(9439,735,'content_block_4_right_column_background_image','438'),(9440,735,'_content_block_4_right_column_background_image','field_5bbe4547ae58b'),(9441,735,'content_block_4_right_column_content','<h3>Top Pick</h3>\r\nGold Medal winner for 2015!'),(9442,735,'_content_block_4_right_column_content','field_5bbe4550ae58c'),(9443,735,'content_block_4_right_whole_column_clickable','1'),(9444,735,'_content_block_4_right_whole_column_clickable','field_5bbe455aae58d'),(9445,735,'content_block_4_right_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:24:\"/wines/current-releases/\";s:6:\"target\";s:0:\"\";}'),(9446,735,'_content_block_4_right_column_button_link','field_5bbe456bae58e'),(9447,735,'content_block_4_right_column_button_text','LEARN MORE'),(9448,735,'_content_block_4_right_column_button_text','field_5bbe4577ae58f'),(9449,735,'content_block_5_text_block_columns','two'),(9450,735,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(9451,735,'content_block_5_narrow_text_block_content','0'),(9452,735,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(9453,735,'content_block_5_reverse_colors','1'),(9454,735,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(9455,735,'content_block_5_enable_background_image','0'),(9456,735,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(9457,735,'content_block_5_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(9458,735,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(9459,735,'content_block_5_text_block_content_col_two','[c7-subscribe-with-name]'),(9460,735,'_content_block_5_text_block_content_col_two','field_5bbe31593920e'),(9461,735,'content_block_1_first_button_column','0'),(9462,735,'_content_block_1_first_button_column','field_5bd78c465387a'),(9463,735,'content_block_1_second_button_column','0'),(9464,735,'_content_block_1_second_button_column','field_5bd78c465387b'),(9465,735,'content_block_1_third_button_column','0'),(9466,735,'_content_block_1_third_button_column','field_5bd78c465387c'),(9467,735,'content_block_3_product_display_teaser','1'),(9468,735,'_content_block_3_product_display_teaser','field_5d114505e6923'),(9469,735,'content_block_3_product_display_feature','0'),(9470,735,'_content_block_3_product_display_feature','field_5d1144d5e6922'),(9471,735,'content_block_4_left_button_column','1'),(9472,735,'_content_block_4_left_button_column','field_5bd78c465387d'),(9473,735,'content_block_4_right_button_column','1'),(9474,735,'_content_block_4_right_button_column','field_5bd78c465387e'),(9475,735,'content_block_2_custom_css_class',''),(9476,735,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(9477,735,'content_block_5_custom_css_class','subscribe-columns'),(9478,735,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(9479,735,'content_block_0_layout_title',''),(9480,735,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(9481,735,'content_block_0_custom_css_class',''),(9482,735,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(9483,735,'content_block_1_layout_title',''),(9484,735,'_content_block_1_layout_title','field_5bc11ca9a0d50-q'),(9485,735,'content_block_2_layout_title',''),(9486,735,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(9487,735,'content_block_3_layout_title',''),(9488,735,'_content_block_3_layout_title','field_5bc11ca9a0d50-v'),(9489,735,'content_block_3_manually_enter_collection_slug','0'),(9490,735,'_content_block_3_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(9491,735,'content_block_5_layout_title','Subscribe'),(9492,735,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(9493,736,'content_block','a:6:{i:0;s:6:\"banner\";i:1;s:20:\"three_column_feature\";i:2;s:10:\"text_block\";i:3;s:18:\"product_collection\";i:4;s:18:\"two_column_feature\";i:5;s:10:\"text_block\";}'),(9494,736,'_content_block','field_5bbe19a7efa09'),(9495,736,'content_block_0_banner_full_width','1'),(9496,736,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(9497,736,'content_block_0_banner_size','long'),(9498,736,'_content_block_0_banner_size','field_5bbe232929ec9'),(9499,736,'content_block_0_add_parallax_effect','0'),(9500,736,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(9501,736,'content_block_0_add_veil_over_banner','0'),(9502,736,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(9503,736,'content_block_0_banner_content_position','centered'),(9504,736,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(9505,736,'content_block_0_banner_title','Welcome to Spectra Winery'),(9506,736,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(9507,736,'content_block_0_banner_subtitle','CRAFTING AN EXCEPTIONAL WINE EXPERIENCE!'),(9508,736,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(9509,736,'content_block_0_banner_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:24:\"/wines/current-releases/\";s:6:\"target\";s:0:\"\";}'),(9510,736,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(9511,736,'content_block_0_banner_button_text','Current Releases'),(9512,736,'_content_block_0_banner_button_text','field_5bbe1ba0efa0e'),(9513,736,'content_block_0_banner_button_new_tab','0'),(9514,736,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(9515,736,'content_block_0_show_down_arrow','1'),(9516,736,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(9517,736,'content_block_0_banner_image','432'),(9518,736,'_content_block_0_banner_image','field_5bbe201718faf'),(9519,736,'content_block_0_banner_image_position','center center'),(9520,736,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(9521,736,'content_block_0_banner_image_mobile','433'),(9522,736,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(9523,736,'content_block_0_banner_image_mobile_position','center center'),(9524,736,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(9525,736,'content_block_1_gap_between_columns','0'),(9526,736,'_content_block_1_gap_between_columns','field_5bbe5a0e54759'),(9527,736,'content_block_1_full_width_columns','1'),(9528,736,'_content_block_1_full_width_columns','field_5bbe5a0e5475a'),(9529,736,'content_block_1_veil_over_images','0'),(9530,736,'_content_block_1_veil_over_images','field_5bbe5a0e5475b'),(9531,736,'content_block_1_first_column_background_image','434'),(9532,736,'_content_block_1_first_column_background_image','field_5bbe5a0e5475d'),(9533,736,'content_block_1_first_column_content','<h3>Shop Wine</h3>\r\nReview our current wine release.'),(9534,736,'_content_block_1_first_column_content','field_5bbe5a0e5475e'),(9535,736,'content_block_1_first_whole_column_clickable','1'),(9536,736,'_content_block_1_first_whole_column_clickable','field_5bbe5a0e5475f'),(9537,736,'content_block_1_first_column_button_url','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:23:\"/wines/current-releases\";s:6:\"target\";s:0:\"\";}'),(9538,736,'_content_block_1_first_column_button_url','field_5bbe5a0e54760'),(9539,736,'content_block_1_first_column_button_text','VIEW RELEASES'),(9540,736,'_content_block_1_first_column_button_text','field_5bbe5a0e54761'),(9541,736,'content_block_1_second_column_background_image','435'),(9542,736,'_content_block_1_second_column_background_image','field_5bbe5a0e54763'),(9543,736,'content_block_1_second_column_content','<h3>Experiences</h3>\r\nCome and experience our wines.'),(9544,736,'_content_block_1_second_column_content','field_5bbe5a0e54764'),(9545,736,'content_block_1_second_whole_column_clickable','1'),(9546,736,'_content_block_1_second_whole_column_clickable','field_5bbe5a0e54765'),(9547,736,'content_block_1_second_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:7:\"/visit/\";s:6:\"target\";s:0:\"\";}'),(9548,736,'_content_block_1_second_column_button_link','field_5bbe5a0e54766'),(9549,736,'content_block_1_second_column_button_text','BOOK TASTING'),(9550,736,'_content_block_1_second_column_button_text','field_5bbe5a0e54767'),(9551,736,'content_block_1_third_column_background_image','436'),(9552,736,'_content_block_1_third_column_background_image','field_5bbe5aa254769'),(9553,736,'content_block_1_third_column_content','<h3>Membership</h3>\r\nGreat wine, great benefits!'),(9554,736,'_content_block_1_third_column_content','field_5bbe5aae5476a'),(9555,736,'content_block_1_third_whole_column_clickable','1'),(9556,736,'_content_block_1_third_whole_column_clickable','field_5bbe5ae25476e'),(9557,736,'content_block_1_third_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:6:\"/club/\";s:6:\"target\";s:0:\"\";}'),(9558,736,'_content_block_1_third_column_button_link','field_5bbe5ac15476c'),(9559,736,'content_block_1_third_column_button_text','LEARN MORE'),(9560,736,'_content_block_1_third_column_button_text','field_5bbe5aca5476d'),(9561,736,'content_block_2_text_block_columns','one'),(9562,736,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(9563,736,'content_block_2_narrow_text_block_content','0'),(9564,736,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(9565,736,'content_block_2_reverse_colors','0'),(9566,736,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(9567,736,'content_block_2_enable_background_image','0'),(9568,736,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(9569,736,'content_block_2_text_block_content_col_one','<h2 style=\"text-align: center;\">The New Release</h2>\r\n<blockquote>I try to create wines that suit our climate and our way of life - wines to drink with the food we grow, make and eat.</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">Spectra winery was realised to focus on our passion for the region and its ability to produce dry - grown and environmentally sustainable wine. Recently a new home was established on our holistic philosophy to winemaking which starts with climate, empahasises the importance on the vineyard, as well as wine\'s relation to the food we love to grow, cook, and eat.</p>'),(9570,736,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(9571,736,'content_block_3_product_row_number','3up'),(9572,736,'_content_block_3_product_row_number','field_5bc11c6da0d4f'),(9573,736,'content_block_3_data_collection_slug','home'),(9574,736,'_content_block_3_data_collection_slug','field_5bc11ca9a0d50'),(9575,736,'content_block_4_gap_between_columns','1'),(9576,736,'_content_block_4_gap_between_columns','field_5bbe44a5ae587'),(9577,736,'content_block_4_full_width_columns','0'),(9578,736,'_content_block_4_full_width_columns','field_5bbe44c7ae588'),(9579,736,'content_block_4_veil_over_images','1'),(9580,736,'_content_block_4_veil_over_images','field_5bbe4f8f88a8a'),(9581,736,'content_block_4_left_column_background_image','437'),(9582,736,'_content_block_4_left_column_background_image','field_5bbe4452ae585'),(9583,736,'content_block_4_left_column_content','<h3>Club Member Event</h3>\r\nCome pick up your shipment and enjoy.'),(9584,736,'_content_block_4_left_column_content','field_5bbe4414ae582'),(9585,736,'content_block_4_left_whole_column_clickable','1'),(9586,736,'_content_block_4_left_whole_column_clickable','field_5bbe44f3ae589'),(9587,736,'content_block_4_left_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:7:\"/clubs/\";s:6:\"target\";s:0:\"\";}'),(9588,736,'_content_block_4_left_column_button_link','field_5bbe442fae583'),(9589,736,'content_block_4_left_column_button_text','LEARN MORE'),(9590,736,'_content_block_4_left_column_button_text','field_5bbe443dae584'),(9591,736,'content_block_4_right_column_background_image','438'),(9592,736,'_content_block_4_right_column_background_image','field_5bbe4547ae58b'),(9593,736,'content_block_4_right_column_content','<h3>Top Pick</h3>\r\nGold Medal winner for 2015!'),(9594,736,'_content_block_4_right_column_content','field_5bbe4550ae58c'),(9595,736,'content_block_4_right_whole_column_clickable','1'),(9596,736,'_content_block_4_right_whole_column_clickable','field_5bbe455aae58d'),(9597,736,'content_block_4_right_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:24:\"/wines/current-releases/\";s:6:\"target\";s:0:\"\";}'),(9598,736,'_content_block_4_right_column_button_link','field_5bbe456bae58e'),(9599,736,'content_block_4_right_column_button_text','LEARN MORE'),(9600,736,'_content_block_4_right_column_button_text','field_5bbe4577ae58f'),(9601,736,'content_block_5_text_block_columns','two'),(9602,736,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(9603,736,'content_block_5_narrow_text_block_content','0'),(9604,736,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(9605,736,'content_block_5_reverse_colors','1'),(9606,736,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(9607,736,'content_block_5_enable_background_image','0'),(9608,736,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(9609,736,'content_block_5_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(9610,736,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(9611,736,'content_block_5_text_block_content_col_two','[c7-subscribe-with-name]'),(9612,736,'_content_block_5_text_block_content_col_two','field_5bbe31593920e'),(9613,736,'content_block_1_first_button_column','0'),(9614,736,'_content_block_1_first_button_column','field_5bd78c465387a'),(9615,736,'content_block_1_second_button_column','0'),(9616,736,'_content_block_1_second_button_column','field_5bd78c465387b'),(9617,736,'content_block_1_third_button_column','0'),(9618,736,'_content_block_1_third_button_column','field_5bd78c465387c'),(9619,736,'content_block_3_product_display_teaser','1'),(9620,736,'_content_block_3_product_display_teaser','field_5d114505e6923'),(9621,736,'content_block_3_product_display_feature','0'),(9622,736,'_content_block_3_product_display_feature','field_5d1144d5e6922'),(9623,736,'content_block_4_left_button_column','1'),(9624,736,'_content_block_4_left_button_column','field_5bd78c465387d'),(9625,736,'content_block_4_right_button_column','1'),(9626,736,'_content_block_4_right_button_column','field_5bd78c465387e'),(9627,736,'content_block_2_custom_css_class',''),(9628,736,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(9629,736,'content_block_5_custom_css_class','subscribe-columns'),(9630,736,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(9631,736,'content_block_0_layout_title',''),(9632,736,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(9633,736,'content_block_0_custom_css_class',''),(9634,736,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(9635,736,'content_block_1_layout_title',''),(9636,736,'_content_block_1_layout_title','field_5bc11ca9a0d50-q'),(9637,736,'content_block_2_layout_title',''),(9638,736,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(9639,736,'content_block_3_layout_title',''),(9640,736,'_content_block_3_layout_title','field_5bc11ca9a0d50-v'),(9641,736,'content_block_3_manually_enter_collection_slug','0'),(9642,736,'_content_block_3_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(9643,736,'content_block_5_layout_title','Subscribe'),(9644,736,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(9664,743,'content_block','a:6:{i:0;s:10:\"text_block\";i:1;s:10:\"text_block\";i:2;s:18:\"text_image_feature\";i:3;s:10:\"text_block\";i:4;s:18:\"text_image_feature\";i:5;s:10:\"text_block\";}'),(9665,743,'_content_block','field_5bbe19a7efa09'),(9666,743,'content_block_0_text_block_columns','one'),(9667,743,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(9668,743,'content_block_0_narrow_text_block_content','0'),(9669,743,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(9670,743,'content_block_0_reverse_colors','0'),(9671,743,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(9672,743,'content_block_0_enable_background_image','0'),(9673,743,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(9674,743,'content_block_0_custom_css_class',''),(9675,743,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(9676,743,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">Visiting</h1>\r\n<h2 style=\"text-align: center;\">Book a Tour or Tasting Reservation</h2>\r\n<p style=\"text-align: center;\">A visit to this winery is a unique experience, as it provides a rare insight into the engine room of Spectra from a winemaking perspective.</p>'),(9677,743,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(9678,743,'content_block_1_text_block_columns','one'),(9679,743,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(9680,743,'content_block_1_narrow_text_block_content','0'),(9681,743,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(9682,743,'content_block_1_reverse_colors','0'),(9683,743,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(9684,743,'content_block_1_enable_background_image','0'),(9685,743,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(9686,743,'content_block_1_custom_css_class',''),(9687,743,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(9688,743,'content_block_1_text_block_content_col_one','<hr />'),(9689,743,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(9690,743,'content_block_2_output_code','0'),(9691,743,'_content_block_2_output_code','field_5c37de3f6091bdc'),(9692,743,'content_block_2_image_side','0'),(9693,743,'_content_block_2_image_side','field_5bbe7070c2491'),(9694,743,'content_block_2_image','496'),(9695,743,'_content_block_2_image','field_5bbe6eb3c96c0'),(9696,743,'content_block_2_text_content','<h3>Tasting</h3>\r\n<div class=\"c7-reservation-availability\" data-reservation-type-slug=\"tasting\"></div>'),(9697,743,'_content_block_2_text_content','field_5bbe6f90c96c1'),(9698,743,'content_block_2_button_text',''),(9699,743,'_content_block_2_button_text','field_5bbe6fa4c96c2'),(9700,743,'content_block_3_text_block_columns','one'),(9701,743,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(9702,743,'content_block_3_narrow_text_block_content','0'),(9703,743,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(9704,743,'content_block_3_reverse_colors','0'),(9705,743,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(9706,743,'content_block_3_enable_background_image','0'),(9707,743,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(9708,743,'content_block_3_custom_css_class',''),(9709,743,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(9710,743,'content_block_3_text_block_content_col_one','<hr />'),(9711,743,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(9712,743,'content_block_4_output_code','0'),(9713,743,'_content_block_4_output_code','field_5c37de3f6091bdc'),(9714,743,'content_block_4_image_side','0'),(9715,743,'_content_block_4_image_side','field_5bbe7070c2491'),(9716,743,'content_block_4_image','543'),(9717,743,'_content_block_4_image','field_5bbe6eb3c96c0'),(9718,743,'content_block_4_text_content','<h3>Tours</h3>\r\n<div class=\"c7-reservation-availability\" data-reservation-type-slug=\"tour\"></div>'),(9719,743,'_content_block_4_text_content','field_5bbe6f90c96c1'),(9720,743,'content_block_4_button_text',''),(9721,743,'_content_block_4_button_text','field_5bbe6fa4c96c2'),(9722,743,'content_block_5_text_block_columns','one'),(9723,743,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(9724,743,'content_block_5_narrow_text_block_content','0'),(9725,743,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(9726,743,'content_block_5_reverse_colors','0'),(9727,743,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(9728,743,'content_block_5_enable_background_image','0'),(9729,743,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(9730,743,'content_block_5_custom_css_class',''),(9731,743,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(9732,743,'content_block_5_text_block_content_col_one','<hr />\r\n<p style=\"text-align: center;\">For large parties (10 or more) or special requests, please contact us directly at (707) 576-8080 or orders@spectrawinery.com.</p>'),(9733,743,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(9734,743,'content_block_0_layout_title','Page Title and Intro'),(9735,743,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(9736,743,'content_block_1_layout_title','Divider'),(9737,743,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(9738,743,'content_block_2_layout_title','Reservation Option 1'),(9739,743,'_content_block_2_layout_title','field_5bc11ca9a0d50-a'),(9740,743,'content_block_3_layout_title','Divider'),(9741,743,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(9742,743,'content_block_4_layout_title','Reservation Option 2'),(9743,743,'_content_block_4_layout_title','field_5bc11ca9a0d50-a'),(9744,743,'content_block_5_layout_title','Bottom Content'),(9745,743,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(9749,747,'content_block','a:4:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";i:3;s:10:\"text_block\";}'),(9750,747,'_content_block','field_5bbe19a7efa09'),(9751,747,'content_block_0_banner_full_width','1'),(9752,747,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(9753,747,'content_block_0_banner_size','normal'),(9754,747,'_content_block_0_banner_size','field_5bbe232929ec9'),(9755,747,'content_block_0_add_parallax_effect','0'),(9756,747,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(9757,747,'content_block_0_add_veil_over_banner','0'),(9758,747,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(9759,747,'content_block_0_banner_content_position','centered'),(9760,747,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(9761,747,'content_block_0_banner_title','Memberships'),(9762,747,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(9763,747,'content_block_0_banner_subtitle',''),(9764,747,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(9765,747,'content_block_0_banner_button_link',''),(9766,747,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(9767,747,'content_block_0_banner_button_new_tab','0'),(9768,747,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(9769,747,'content_block_0_show_down_arrow','1'),(9770,747,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(9771,747,'content_block_0_banner_image','491'),(9772,747,'_content_block_0_banner_image','field_5bbe201718faf'),(9773,747,'content_block_0_banner_image_position','center center'),(9774,747,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(9775,747,'content_block_0_banner_image_mobile','490'),(9776,747,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(9777,747,'content_block_0_banner_image_mobile_position','center center'),(9778,747,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(9779,747,'content_block_1_text_block_columns','one'),(9780,747,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(9781,747,'content_block_1_narrow_text_block_content','0'),(9782,747,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(9783,747,'content_block_1_reverse_colors','0'),(9784,747,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(9785,747,'content_block_1_enable_background_image','0'),(9786,747,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(9787,747,'content_block_1_text_block_content_col_one','<blockquote style=\"text-align: center;\">Thank you for considering a Spectra Membership</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">With each type of club you will enjoy a regular shipment of our wine for your cellar and enjoyment.\r\nYou will also enjoy complimentary tastings and VIP treatment at our winery.\r\nPlease call in advance to book your engagement.</p>'),(9788,747,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(9789,747,'content_block_2_text_block_columns','two'),(9790,747,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(9791,747,'content_block_2_narrow_text_block_content','0'),(9792,747,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(9793,747,'content_block_2_reverse_colors','0'),(9794,747,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(9795,747,'content_block_2_enable_background_image','0'),(9796,747,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(9797,747,'content_block_2_text_block_content_col_one','<img class=\"alignnone wp-image-510 size-full\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2018/10/640x400-1.jpg\" alt=\"\" width=\"640\" height=\"400\" />\r\n<h4>Premium Club</h4>\r\n<em>You will receive 48 bottles per year, split into four 12 bottle quarterly shipments.</em>\r\n\r\nTwo mixed cases of new releases, award winners, and favourites received four times per year. For wine enthusiasts, and corporate clients who entertain in style.\r\n\r\n[club_button slug=\"premium\"]'),(9798,747,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(9799,747,'content_block_2_text_block_content_col_two','<img class=\"alignnone wp-image-511 size-full\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2018/10/640x400-2.jpg\" alt=\"\" width=\"640\" height=\"400\" />\r\n<h4>Choice Club</h4>\r\n<em>You will receive 48 bottles per year, split into four 12 bottle quarterly shipments.</em>\r\n\r\nTwo mixed cases of new releases, award winners, and favourites received four times per year. For wine enthusiasts, and corporate clients who entertain in style.\r\n\r\n[club_dropdown_button titles=\"Premium Club,Choice Club\" links=\"https://www.meadowcroftwines.com/club/premium,https://www.meadowcroftwines.com/club/choice\"]'),(9800,747,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(9801,747,'content_block_3_text_block_columns','two'),(9802,747,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(9803,747,'content_block_3_narrow_text_block_content','0'),(9804,747,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(9805,747,'content_block_3_reverse_colors','1'),(9806,747,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(9807,747,'content_block_3_enable_background_image','0'),(9808,747,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(9809,747,'content_block_3_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(9810,747,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(9811,747,'content_block_3_text_block_content_col_two','[c7-subscribe-with-name]'),(9812,747,'_content_block_3_text_block_content_col_two','field_5bbe31593920e'),(9813,747,'content_block_0_layout_title','Page Banner'),(9814,747,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(9815,747,'content_block_0_custom_css_class',''),(9816,747,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(9817,747,'content_block_1_layout_title','Spectra Quote'),(9818,747,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(9819,747,'content_block_1_custom_css_class',''),(9820,747,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(9821,747,'content_block_2_layout_title','Two Columns - Join Clubs'),(9822,747,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(9823,747,'content_block_2_custom_css_class',''),(9824,747,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(9825,747,'content_block_3_layout_title','Subscribe'),(9826,747,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(9827,747,'content_block_3_custom_css_class','subscribe-columns'),(9828,747,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(9852,751,'content_block_0_layout_title','Quick Order'),(9853,751,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(9854,751,'content_block_0_text_block_columns','one'),(9855,751,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(9856,751,'content_block_0_narrow_text_block_content','0'),(9857,751,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(9858,751,'content_block_0_reverse_colors','0'),(9859,751,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(9860,751,'content_block_0_enable_background_image','0'),(9861,751,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(9862,751,'content_block_0_custom_css_class',''),(9863,751,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(9864,751,'content_block_0_text_block_content_col_one','<div id=\"c7-quick-shop-ff\" data-collection-slug=\"current-releases\"></div>'),(9865,751,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(9866,751,'content_block','a:1:{i:0;s:10:\"text_block\";}'),(9867,751,'_content_block','field_5bbe19a7efa09'),(9868,752,'content_block_0_layout_title','Quick Order'),(9869,752,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(9870,752,'content_block_0_text_block_columns','one'),(9871,752,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(9872,752,'content_block_0_narrow_text_block_content','0'),(9873,752,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(9874,752,'content_block_0_reverse_colors','0'),(9875,752,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(9876,752,'content_block_0_enable_background_image','0'),(9877,752,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(9878,752,'content_block_0_custom_css_class',''),(9879,752,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(9880,752,'content_block_0_text_block_content_col_one','<div id=\"c7-quick-shop\" data-collection-slug=\"current-releases\"></div>'),(9881,752,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(9882,752,'content_block','a:1:{i:0;s:10:\"text_block\";}'),(9883,752,'_content_block','field_5bbe19a7efa09'),(9885,754,'content_block_0_text_block_columns','one'),(9886,754,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(9887,754,'content_block_0_narrow_text_block_content','0'),(9888,754,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(9889,754,'content_block_0_reverse_colors','0'),(9890,754,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(9891,754,'content_block_0_enable_background_image','0'),(9892,754,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(9893,754,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">Current Releases</h1>'),(9894,754,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(9895,754,'content_block_1_product_row_number','2up'),(9896,754,'_content_block_1_product_row_number','field_5bc11c6da0d4f'),(9897,754,'content_block_1_data_collection_slug','current-releases'),(9898,754,'_content_block_1_data_collection_slug','field_5bc11ca9a0d50'),(9899,754,'content_block','a:3:{i:0;s:10:\"text_block\";i:1;s:18:\"product_collection\";i:2;s:10:\"text_block\";}'),(9900,754,'_content_block','field_5bbe19a7efa09'),(9901,754,'content_block_2_text_block_columns','two'),(9902,754,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(9903,754,'content_block_2_narrow_text_block_content','0'),(9904,754,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(9905,754,'content_block_2_reverse_colors','1'),(9906,754,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(9907,754,'content_block_2_enable_background_image','0'),(9908,754,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(9909,754,'content_block_2_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(9910,754,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(9911,754,'content_block_2_text_block_content_col_two','[c7-subscribe-with-name]'),(9912,754,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(9913,754,'content_block_0_custom_css_class',''),(9914,754,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(9915,754,'content_block_1_custom_css_class',''),(9916,754,'_content_block_1_custom_css_class','field_1cce1w78efa7b'),(9917,754,'content_block_1_product_display_teaser','1'),(9918,754,'_content_block_1_product_display_teaser','field_5d114505e6923'),(9919,754,'content_block_1_product_display_feature','1'),(9920,754,'_content_block_1_product_display_feature','field_5d1144d5e6922'),(9921,754,'content_block_2_custom_css_class','subscribe-columns'),(9922,754,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(9923,754,'content_block_0_layout_title',''),(9924,754,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(9925,754,'content_block_1_layout_title',''),(9926,754,'_content_block_1_layout_title','field_5bc11ca9a0d50-v'),(9927,754,'content_block_1_manually_enter_collection_slug','0'),(9928,754,'_content_block_1_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(9929,754,'content_block_2_layout_title','Subscribe'),(9930,754,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(9967,759,'_menu_item_type','post_type'),(9968,759,'_menu_item_menu_item_parent','0'),(9969,759,'_menu_item_object_id','501'),(9970,759,'_menu_item_object','page'),(9971,759,'_menu_item_target',''),(9972,759,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9973,759,'_menu_item_xfn',''),(9974,759,'_menu_item_url',''),(10009,767,'content_block','a:6:{i:0;s:10:\"text_block\";i:1;s:10:\"text_block\";i:2;s:18:\"text_image_feature\";i:3;s:10:\"text_block\";i:4;s:18:\"text_image_feature\";i:5;s:10:\"text_block\";}'),(10010,767,'_content_block','field_5bbe19a7efa09'),(10011,767,'content_block_0_text_block_columns','one'),(10012,767,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(10013,767,'content_block_0_narrow_text_block_content','0'),(10014,767,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(10015,767,'content_block_0_reverse_colors','0'),(10016,767,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(10017,767,'content_block_0_enable_background_image','0'),(10018,767,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(10019,767,'content_block_0_custom_css_class',''),(10020,767,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(10021,767,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">Visiting</h1>\r\n<h2 style=\"text-align: center;\">Book a Tour or Tasting Reservation</h2>\r\n<p style=\"text-align: center;\">A visit to this winery is a unique experience, as it provides a rare insight into the engine room of Spectra from a winemaking perspective.</p>'),(10022,767,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(10023,767,'content_block_1_text_block_columns','one'),(10024,767,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(10025,767,'content_block_1_narrow_text_block_content','0'),(10026,767,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(10027,767,'content_block_1_reverse_colors','0'),(10028,767,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(10029,767,'content_block_1_enable_background_image','0'),(10030,767,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(10031,767,'content_block_1_custom_css_class',''),(10032,767,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(10033,767,'content_block_1_text_block_content_col_one','<hr />'),(10034,767,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(10035,767,'content_block_2_output_code','0'),(10036,767,'_content_block_2_output_code','field_5c37de3f6091bdc'),(10037,767,'content_block_2_image_side','0'),(10038,767,'_content_block_2_image_side','field_5bbe7070c2491'),(10039,767,'content_block_2_image','496'),(10040,767,'_content_block_2_image','field_5bbe6eb3c96c0'),(10041,767,'content_block_2_text_content','<h3>Tasting</h3>\r\n<div class=\"c7-reservation-availability\" data-reservation-type-slug=\"tasting\"></div>'),(10042,767,'_content_block_2_text_content','field_5bbe6f90c96c1'),(10043,767,'content_block_2_button_text',''),(10044,767,'_content_block_2_button_text','field_5bbe6fa4c96c2'),(10045,767,'content_block_3_text_block_columns','one'),(10046,767,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(10047,767,'content_block_3_narrow_text_block_content','0'),(10048,767,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(10049,767,'content_block_3_reverse_colors','0'),(10050,767,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(10051,767,'content_block_3_enable_background_image','0'),(10052,767,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(10053,767,'content_block_3_custom_css_class',''),(10054,767,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(10055,767,'content_block_3_text_block_content_col_one','<hr />'),(10056,767,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(10057,767,'content_block_4_output_code','0'),(10058,767,'_content_block_4_output_code','field_5c37de3f6091bdc'),(10059,767,'content_block_4_image_side','0'),(10060,767,'_content_block_4_image_side','field_5bbe7070c2491'),(10061,767,'content_block_4_image','543'),(10062,767,'_content_block_4_image','field_5bbe6eb3c96c0'),(10063,767,'content_block_4_text_content','<h3>Tours</h3>\r\n<div class=\"c7-reservation-availability\" data-reservation-type-slug=\"tour\"></div>'),(10064,767,'_content_block_4_text_content','field_5bbe6f90c96c1'),(10065,767,'content_block_4_button_text',''),(10066,767,'_content_block_4_button_text','field_5bbe6fa4c96c2'),(10067,767,'content_block_5_text_block_columns','one'),(10068,767,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(10069,767,'content_block_5_narrow_text_block_content','0'),(10070,767,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(10071,767,'content_block_5_reverse_colors','0'),(10072,767,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(10073,767,'content_block_5_enable_background_image','0'),(10074,767,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(10075,767,'content_block_5_custom_css_class',''),(10076,767,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(10077,767,'content_block_5_text_block_content_col_one','<hr />\r\n<p style=\"text-align: center;\">For large parties (10 or more) or special requests, please contact us directly at (707) 576-8080 or orders@spectrawinery.com.</p>'),(10078,767,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(10079,767,'content_block_0_layout_title','Page Title and Intro'),(10080,767,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(10081,767,'content_block_1_layout_title','Divider'),(10082,767,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(10083,767,'content_block_2_layout_title',''),(10084,767,'_content_block_2_layout_title','field_5bc11ca9a0d50-a'),(10085,767,'content_block_3_layout_title','Divider'),(10086,767,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(10087,767,'content_block_4_layout_title','Reservation Option 2'),(10088,767,'_content_block_4_layout_title','field_5bc11ca9a0d50-a'),(10089,767,'content_block_5_layout_title','Bottom Content'),(10090,767,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(10091,768,'content_block','a:6:{i:0;s:10:\"text_block\";i:1;s:10:\"text_block\";i:2;s:18:\"text_image_feature\";i:3;s:10:\"text_block\";i:4;s:18:\"text_image_feature\";i:5;s:10:\"text_block\";}'),(10092,768,'_content_block','field_5bbe19a7efa09'),(10093,768,'content_block_0_text_block_columns','one'),(10094,768,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(10095,768,'content_block_0_narrow_text_block_content','0'),(10096,768,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(10097,768,'content_block_0_reverse_colors','0'),(10098,768,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(10099,768,'content_block_0_enable_background_image','0'),(10100,768,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(10101,768,'content_block_0_custom_css_class',''),(10102,768,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(10103,768,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">Visiting</h1>\r\n<h2 style=\"text-align: center;\">Book a Tour or Tasting Reservation</h2>\r\n<p style=\"text-align: center;\">A visit to this winery is a unique experience, as it provides a rare insight into the engine room of Spectra from a winemaking perspective.</p>'),(10104,768,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(10105,768,'content_block_1_text_block_columns','one'),(10106,768,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(10107,768,'content_block_1_narrow_text_block_content','0'),(10108,768,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(10109,768,'content_block_1_reverse_colors','0'),(10110,768,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(10111,768,'content_block_1_enable_background_image','0'),(10112,768,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(10113,768,'content_block_1_custom_css_class',''),(10114,768,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(10115,768,'content_block_1_text_block_content_col_one','<hr />'),(10116,768,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(10117,768,'content_block_2_output_code','0'),(10118,768,'_content_block_2_output_code','field_5c37de3f6091bdc'),(10119,768,'content_block_2_image_side','0'),(10120,768,'_content_block_2_image_side','field_5bbe7070c2491'),(10121,768,'content_block_2_image','496'),(10122,768,'_content_block_2_image','field_5bbe6eb3c96c0'),(10123,768,'content_block_2_text_content','<h3>Tasting</h3>\r\n<div class=\"c7-reservation-availability\" data-reservation-type-slug=\"tasting\"></div>'),(10124,768,'_content_block_2_text_content','field_5bbe6f90c96c1'),(10125,768,'content_block_2_button_text',''),(10126,768,'_content_block_2_button_text','field_5bbe6fa4c96c2'),(10127,768,'content_block_3_text_block_columns','one'),(10128,768,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(10129,768,'content_block_3_narrow_text_block_content','0'),(10130,768,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(10131,768,'content_block_3_reverse_colors','0'),(10132,768,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(10133,768,'content_block_3_enable_background_image','0'),(10134,768,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(10135,768,'content_block_3_custom_css_class',''),(10136,768,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(10137,768,'content_block_3_text_block_content_col_one','<hr />'),(10138,768,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(10139,768,'content_block_4_output_code','0'),(10140,768,'_content_block_4_output_code','field_5c37de3f6091bdc'),(10141,768,'content_block_4_image_side','0'),(10142,768,'_content_block_4_image_side','field_5bbe7070c2491'),(10143,768,'content_block_4_image','543'),(10144,768,'_content_block_4_image','field_5bbe6eb3c96c0'),(10145,768,'content_block_4_text_content','<h3>Tours</h3>\r\n<div class=\"c7-reservation-availability\" data-reservation-type-slug=\"tour\"></div>'),(10146,768,'_content_block_4_text_content','field_5bbe6f90c96c1'),(10147,768,'content_block_4_button_text',''),(10148,768,'_content_block_4_button_text','field_5bbe6fa4c96c2'),(10149,768,'content_block_5_text_block_columns','one'),(10150,768,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(10151,768,'content_block_5_narrow_text_block_content','0'),(10152,768,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(10153,768,'content_block_5_reverse_colors','0'),(10154,768,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(10155,768,'content_block_5_enable_background_image','0'),(10156,768,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(10157,768,'content_block_5_custom_css_class',''),(10158,768,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(10159,768,'content_block_5_text_block_content_col_one','<hr />\r\n<p style=\"text-align: center;\">For large parties (10 or more) or special requests, please contact us directly at (707) 576-8080 or orders@spectrawinery.com.</p>'),(10160,768,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(10161,768,'content_block_0_layout_title','Page Title and Intro'),(10162,768,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(10163,768,'content_block_1_layout_title','Divider'),(10164,768,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(10165,768,'content_block_2_layout_title','Reservation Option 1'),(10166,768,'_content_block_2_layout_title','field_5bc11ca9a0d50-a'),(10167,768,'content_block_3_layout_title','Divider'),(10168,768,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(10169,768,'content_block_4_layout_title','Reservation Option 2'),(10170,768,'_content_block_4_layout_title','field_5bc11ca9a0d50-a'),(10171,768,'content_block_5_layout_title','Bottom Content'),(10172,768,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(10174,412,'content_block_0_banner_button_link_description','Join our mailing list to receive 200 loyalty points to use towards your first order!'),(10175,412,'_content_block_0_banner_button_link_description','field_5bbf30b1a4de2-1b'),(10176,412,'content_block_0_banner_image_description',''),(10177,412,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(10234,770,'content_block','a:5:{i:0;s:6:\"banner\";i:1;s:20:\"three_column_feature\";i:2;s:10:\"text_block\";i:3;s:18:\"two_column_feature\";i:4;s:10:\"text_block\";}'),(10235,770,'_content_block','field_5bbe19a7efa09'),(10236,770,'content_block_0_banner_full_width','1'),(10237,770,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(10238,770,'content_block_0_banner_size','long'),(10239,770,'_content_block_0_banner_size','field_5bbe232929ec9'),(10240,770,'content_block_0_add_parallax_effect','0'),(10241,770,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(10242,770,'content_block_0_add_veil_over_banner','0'),(10243,770,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(10244,770,'content_block_0_banner_content_position','centered'),(10245,770,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(10246,770,'content_block_0_banner_title','Welcome to Spectra Winery'),(10247,770,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(10248,770,'content_block_0_banner_subtitle','CRAFTING AN EXCEPTIONAL WINE EXPERIENCE!'),(10249,770,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(10250,770,'content_block_0_banner_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:24:\"/wines/current-releases/\";s:6:\"target\";s:0:\"\";}'),(10251,770,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(10252,770,'content_block_0_banner_button_text','Current Releases'),(10253,770,'_content_block_0_banner_button_text','field_5bbe1ba0efa0e'),(10254,770,'content_block_0_banner_button_new_tab','0'),(10255,770,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(10256,770,'content_block_0_show_down_arrow','1'),(10257,770,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(10258,770,'content_block_0_banner_image','432'),(10259,770,'_content_block_0_banner_image','field_5bbe201718faf'),(10260,770,'content_block_0_banner_image_position','center center'),(10261,770,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(10262,770,'content_block_0_banner_image_mobile','433'),(10263,770,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(10264,770,'content_block_0_banner_image_mobile_position','center center'),(10265,770,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(10266,770,'content_block_1_gap_between_columns','0'),(10267,770,'_content_block_1_gap_between_columns','field_5bbe5a0e54759'),(10268,770,'content_block_1_full_width_columns','1'),(10269,770,'_content_block_1_full_width_columns','field_5bbe5a0e5475a'),(10270,770,'content_block_1_veil_over_images','0'),(10271,770,'_content_block_1_veil_over_images','field_5bbe5a0e5475b'),(10272,770,'content_block_1_first_column_background_image','434'),(10273,770,'_content_block_1_first_column_background_image','field_5bbe5a0e5475d'),(10274,770,'content_block_1_first_column_content','<h3>Shop Wine</h3>\r\nReview our current wine release.'),(10275,770,'_content_block_1_first_column_content','field_5bbe5a0e5475e'),(10276,770,'content_block_1_first_whole_column_clickable','1'),(10277,770,'_content_block_1_first_whole_column_clickable','field_5bbe5a0e5475f'),(10278,770,'content_block_1_first_column_button_url','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:23:\"/wines/current-releases\";s:6:\"target\";s:0:\"\";}'),(10279,770,'_content_block_1_first_column_button_url','field_5bbe5a0e54760'),(10280,770,'content_block_1_first_column_button_text','VIEW RELEASES'),(10281,770,'_content_block_1_first_column_button_text','field_5bbe5a0e54761'),(10282,770,'content_block_1_second_column_background_image','435'),(10283,770,'_content_block_1_second_column_background_image','field_5bbe5a0e54763'),(10284,770,'content_block_1_second_column_content','<h3>Experiences</h3>\r\nCome and experience our wines.'),(10285,770,'_content_block_1_second_column_content','field_5bbe5a0e54764'),(10286,770,'content_block_1_second_whole_column_clickable','1'),(10287,770,'_content_block_1_second_whole_column_clickable','field_5bbe5a0e54765'),(10288,770,'content_block_1_second_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:7:\"/visit/\";s:6:\"target\";s:0:\"\";}'),(10289,770,'_content_block_1_second_column_button_link','field_5bbe5a0e54766'),(10290,770,'content_block_1_second_column_button_text','BOOK TASTING'),(10291,770,'_content_block_1_second_column_button_text','field_5bbe5a0e54767'),(10292,770,'content_block_1_third_column_background_image','436'),(10293,770,'_content_block_1_third_column_background_image','field_5bbe5aa254769'),(10294,770,'content_block_1_third_column_content','<h3>Membership</h3>\r\nGreat wine, great benefits!'),(10295,770,'_content_block_1_third_column_content','field_5bbe5aae5476a'),(10296,770,'content_block_1_third_whole_column_clickable','1'),(10297,770,'_content_block_1_third_whole_column_clickable','field_5bbe5ae25476e'),(10298,770,'content_block_1_third_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:6:\"/club/\";s:6:\"target\";s:0:\"\";}'),(10299,770,'_content_block_1_third_column_button_link','field_5bbe5ac15476c'),(10300,770,'content_block_1_third_column_button_text','LEARN MORE'),(10301,770,'_content_block_1_third_column_button_text','field_5bbe5aca5476d'),(10302,770,'content_block_2_text_block_columns','one'),(10303,770,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(10304,770,'content_block_2_narrow_text_block_content','0'),(10305,770,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(10306,770,'content_block_2_reverse_colors','0'),(10307,770,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(10308,770,'content_block_2_enable_background_image','0'),(10309,770,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(10310,770,'content_block_2_text_block_content_col_one','<h2 style=\"text-align: center;\">The New Release</h2>\r\n<blockquote>I try to create wines that suit our climate and our way of life - wines to drink with the food we grow, make and eat.</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">Spectra winery was realised to focus on our passion for the region and its ability to produce dry - grown and environmentally sustainable wine. Recently a new home was established on our holistic philosophy to winemaking which starts with climate, empahasises the importance on the vineyard, as well as wine\'s relation to the food we love to grow, cook, and eat.</p>'),(10311,770,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(10312,770,'content_block_1_first_button_column','0'),(10313,770,'_content_block_1_first_button_column','field_5bd78c465387a'),(10314,770,'content_block_1_second_button_column','0'),(10315,770,'_content_block_1_second_button_column','field_5bd78c465387b'),(10316,770,'content_block_1_third_button_column','0'),(10317,770,'_content_block_1_third_button_column','field_5bd78c465387c'),(10318,770,'content_block_2_custom_css_class',''),(10319,770,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(10320,770,'content_block_0_layout_title',''),(10321,770,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(10322,770,'content_block_0_custom_css_class',''),(10323,770,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(10324,770,'content_block_1_layout_title',''),(10325,770,'_content_block_1_layout_title','field_5bc11ca9a0d50-q'),(10326,770,'content_block_2_layout_title',''),(10327,770,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(10328,770,'content_block_0_banner_button_link_description',''),(10329,770,'_content_block_0_banner_button_link_description','field_5bbf30b1a4de2-1b'),(10330,770,'content_block_0_banner_image_description',''),(10331,770,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(10332,770,'content_block_3_gap_between_columns','1'),(10333,770,'_content_block_3_gap_between_columns','field_5bbe44a5ae587'),(10334,770,'content_block_3_content_below_images','0'),(10335,770,'_content_block_3_content_below_images','field_5bbe44a5ae587a'),(10336,770,'content_block_3_full_width_columns','0'),(10337,770,'_content_block_3_full_width_columns','field_5bbe44c7ae588'),(10338,770,'content_block_3_veil_over_images','1'),(10339,770,'_content_block_3_veil_over_images','field_5bbe4f8f88a8a'),(10340,770,'content_block_3_left_column_background_image','437'),(10341,770,'_content_block_3_left_column_background_image','field_5bbe4452ae585'),(10342,770,'content_block_3_left_column_image_description_text',''),(10343,770,'_content_block_3_left_column_image_description_text','field_5bbe443dae584ab'),(10344,770,'content_block_3_left_column_content','<h3>Club Member Event</h3>\r\nCome pick up your shipment and enjoy.'),(10345,770,'_content_block_3_left_column_content','field_5bbe4414ae582'),(10346,770,'content_block_3_left_button_column','1'),(10347,770,'_content_block_3_left_button_column','field_5bd78c465387d'),(10348,770,'content_block_3_left_whole_column_clickable','1'),(10349,770,'_content_block_3_left_whole_column_clickable','field_5bbe44f3ae589'),(10350,770,'content_block_3_left_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:7:\"/clubs/\";s:6:\"target\";s:0:\"\";}'),(10351,770,'_content_block_3_left_column_button_link','field_5bbe442fae583'),(10352,770,'content_block_3_left_column_button_text','LEARN MORE'),(10353,770,'_content_block_3_left_column_button_text','field_5bbe443dae584'),(10354,770,'content_block_3_left_column_button_description_text',''),(10355,770,'_content_block_3_left_column_button_description_text','field_5bbe443dae584a'),(10356,770,'content_block_3_right_column_background_image','438'),(10357,770,'_content_block_3_right_column_background_image','field_5bbe4547ae58b'),(10358,770,'content_block_3_right_column_image_description_text',''),(10359,770,'_content_block_3_right_column_image_description_text','field_5bbe443dae584ac'),(10360,770,'content_block_3_right_column_content','<h3>Top Pick</h3>\r\nGold Medal winner for 2015!'),(10361,770,'_content_block_3_right_column_content','field_5bbe4550ae58c'),(10362,770,'content_block_3_right_button_column','1'),(10363,770,'_content_block_3_right_button_column','field_5bd78c465387e'),(10364,770,'content_block_3_right_whole_column_clickable','1'),(10365,770,'_content_block_3_right_whole_column_clickable','field_5bbe455aae58d'),(10366,770,'content_block_3_right_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:24:\"/wines/current-releases/\";s:6:\"target\";s:0:\"\";}'),(10367,770,'_content_block_3_right_column_button_link','field_5bbe456bae58e'),(10368,770,'content_block_3_right_column_button_text','LEARN MORE'),(10369,770,'_content_block_3_right_column_button_text','field_5bbe4577ae58f'),(10370,770,'content_block_3_right_column_button_description_text',''),(10371,770,'_content_block_3_right_column_button_description_text','field_5bbe443dae584b'),(10372,770,'content_block_4_layout_title','Subscribe'),(10373,770,'_content_block_4_layout_title','field_5bc11ca9a0d50-s'),(10374,770,'content_block_4_text_block_columns','two'),(10375,770,'_content_block_4_text_block_columns','field_5bbe2f81a4de0'),(10376,770,'content_block_4_narrow_text_block_content','0'),(10377,770,'_content_block_4_narrow_text_block_content','field_5bbe342e08360'),(10378,770,'content_block_4_reverse_colors','1'),(10379,770,'_content_block_4_reverse_colors','field_5bbe3027a4de1'),(10380,770,'content_block_4_enable_background_image','0'),(10381,770,'_content_block_4_enable_background_image','field_5bbe30b1a4de2'),(10382,770,'content_block_4_custom_css_class','subscribe-columns'),(10383,770,'_content_block_4_custom_css_class','field_5bbe30b1a4de2-1'),(10384,770,'content_block_4_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(10385,770,'_content_block_4_text_block_content_col_one','field_5bbe313b3920d'),(10386,770,'content_block_4_text_block_content_col_two','[c7-subscribe-with-name]'),(10387,770,'_content_block_4_text_block_content_col_two','field_5bbe31593920e'),(10456,772,'content_block','a:6:{i:0;s:6:\"banner\";i:1;s:20:\"three_column_feature\";i:2;s:10:\"text_block\";i:3;s:18:\"product_collection\";i:4;s:18:\"two_column_feature\";i:5;s:10:\"text_block\";}'),(10457,772,'_content_block','field_5bbe19a7efa09'),(10458,772,'content_block_0_banner_full_width','1'),(10459,772,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(10460,772,'content_block_0_banner_size','long'),(10461,772,'_content_block_0_banner_size','field_5bbe232929ec9'),(10462,772,'content_block_0_add_parallax_effect','0'),(10463,772,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(10464,772,'content_block_0_add_veil_over_banner','0'),(10465,772,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(10466,772,'content_block_0_banner_content_position','centered'),(10467,772,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(10468,772,'content_block_0_banner_title','Welcome to Spectra Winery'),(10469,772,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(10470,772,'content_block_0_banner_subtitle','CRAFTING AN EXCEPTIONAL WINE EXPERIENCE!'),(10471,772,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(10472,772,'content_block_0_banner_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:24:\"/wines/current-releases/\";s:6:\"target\";s:0:\"\";}'),(10473,772,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(10474,772,'content_block_0_banner_button_text','Current Releases'),(10475,772,'_content_block_0_banner_button_text','field_5bbe1ba0efa0e'),(10476,772,'content_block_0_banner_button_new_tab','0'),(10477,772,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(10478,772,'content_block_0_show_down_arrow','1'),(10479,772,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(10480,772,'content_block_0_banner_image','432'),(10481,772,'_content_block_0_banner_image','field_5bbe201718faf'),(10482,772,'content_block_0_banner_image_position','center center'),(10483,772,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(10484,772,'content_block_0_banner_image_mobile','433'),(10485,772,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(10486,772,'content_block_0_banner_image_mobile_position','center center'),(10487,772,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(10488,772,'content_block_1_gap_between_columns','0'),(10489,772,'_content_block_1_gap_between_columns','field_5bbe5a0e54759'),(10490,772,'content_block_1_full_width_columns','1'),(10491,772,'_content_block_1_full_width_columns','field_5bbe5a0e5475a'),(10492,772,'content_block_1_veil_over_images','0'),(10493,772,'_content_block_1_veil_over_images','field_5bbe5a0e5475b'),(10494,772,'content_block_1_first_column_background_image','434'),(10495,772,'_content_block_1_first_column_background_image','field_5bbe5a0e5475d'),(10496,772,'content_block_1_first_column_content','<h3>Shop Wine</h3>\r\nReview our current wine release.'),(10497,772,'_content_block_1_first_column_content','field_5bbe5a0e5475e'),(10498,772,'content_block_1_first_whole_column_clickable','1'),(10499,772,'_content_block_1_first_whole_column_clickable','field_5bbe5a0e5475f'),(10500,772,'content_block_1_first_column_button_url','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:23:\"/wines/current-releases\";s:6:\"target\";s:0:\"\";}'),(10501,772,'_content_block_1_first_column_button_url','field_5bbe5a0e54760'),(10502,772,'content_block_1_first_column_button_text','VIEW RELEASES'),(10503,772,'_content_block_1_first_column_button_text','field_5bbe5a0e54761'),(10504,772,'content_block_1_second_column_background_image','435'),(10505,772,'_content_block_1_second_column_background_image','field_5bbe5a0e54763'),(10506,772,'content_block_1_second_column_content','<h3>Experiences</h3>\r\nCome and experience our wines.'),(10507,772,'_content_block_1_second_column_content','field_5bbe5a0e54764'),(10508,772,'content_block_1_second_whole_column_clickable','1'),(10509,772,'_content_block_1_second_whole_column_clickable','field_5bbe5a0e54765'),(10510,772,'content_block_1_second_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:7:\"/visit/\";s:6:\"target\";s:0:\"\";}'),(10511,772,'_content_block_1_second_column_button_link','field_5bbe5a0e54766'),(10512,772,'content_block_1_second_column_button_text','BOOK TASTING'),(10513,772,'_content_block_1_second_column_button_text','field_5bbe5a0e54767'),(10514,772,'content_block_1_third_column_background_image','436'),(10515,772,'_content_block_1_third_column_background_image','field_5bbe5aa254769'),(10516,772,'content_block_1_third_column_content','<h3>Membership</h3>\r\nGreat wine, great benefits!'),(10517,772,'_content_block_1_third_column_content','field_5bbe5aae5476a'),(10518,772,'content_block_1_third_whole_column_clickable','1'),(10519,772,'_content_block_1_third_whole_column_clickable','field_5bbe5ae25476e'),(10520,772,'content_block_1_third_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:6:\"/club/\";s:6:\"target\";s:0:\"\";}'),(10521,772,'_content_block_1_third_column_button_link','field_5bbe5ac15476c'),(10522,772,'content_block_1_third_column_button_text','LEARN MORE'),(10523,772,'_content_block_1_third_column_button_text','field_5bbe5aca5476d'),(10524,772,'content_block_2_text_block_columns','one'),(10525,772,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(10526,772,'content_block_2_narrow_text_block_content','0'),(10527,772,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(10528,772,'content_block_2_reverse_colors','0'),(10529,772,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(10530,772,'content_block_2_enable_background_image','0'),(10531,772,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(10532,772,'content_block_2_text_block_content_col_one','<h2 style=\"text-align: center;\">The New Release</h2>\r\n<blockquote>I try to create wines that suit our climate and our way of life - wines to drink with the food we grow, make and eat.</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">Spectra winery was realised to focus on our passion for the region and its ability to produce dry - grown and environmentally sustainable wine. Recently a new home was established on our holistic philosophy to winemaking which starts with climate, empahasises the importance on the vineyard, as well as wine\'s relation to the food we love to grow, cook, and eat.</p>'),(10533,772,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(10534,772,'content_block_1_first_button_column','0'),(10535,772,'_content_block_1_first_button_column','field_5bd78c465387a'),(10536,772,'content_block_1_second_button_column','0'),(10537,772,'_content_block_1_second_button_column','field_5bd78c465387b'),(10538,772,'content_block_1_third_button_column','0'),(10539,772,'_content_block_1_third_button_column','field_5bd78c465387c'),(10540,772,'content_block_2_custom_css_class',''),(10541,772,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(10542,772,'content_block_0_layout_title',''),(10543,772,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(10544,772,'content_block_0_custom_css_class',''),(10545,772,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(10546,772,'content_block_1_layout_title',''),(10547,772,'_content_block_1_layout_title','field_5bc11ca9a0d50-q'),(10548,772,'content_block_2_layout_title',''),(10549,772,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(10550,772,'content_block_0_banner_button_link_description',''),(10551,772,'_content_block_0_banner_button_link_description','field_5bbf30b1a4de2-1b'),(10552,772,'content_block_0_banner_image_description',''),(10553,772,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(10554,772,'content_block_3_layout_title','Homepage Products'),(10555,772,'_content_block_3_layout_title','field_5bc11ca9a0d50-v'),(10556,772,'content_block_3_product_row_number','3up'),(10557,772,'_content_block_3_product_row_number','field_5bc11c6da0d4f'),(10558,772,'content_block_3_data_collection_slug','home'),(10559,772,'_content_block_3_data_collection_slug','field_5bc11ca9a0d50'),(10560,772,'content_block_3_manually_enter_collection_slug','0'),(10561,772,'_content_block_3_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(10562,772,'content_block_3_product_display_feature','0'),(10563,772,'_content_block_3_product_display_feature','field_5d1144d5e6922'),(10564,772,'content_block_3_product_display_teaser','0'),(10565,772,'_content_block_3_product_display_teaser','field_5d114505e6923'),(10566,772,'content_block_4_gap_between_columns','1'),(10567,772,'_content_block_4_gap_between_columns','field_5bbe44a5ae587'),(10568,772,'content_block_4_content_below_images','0'),(10569,772,'_content_block_4_content_below_images','field_5bbe44a5ae587a'),(10570,772,'content_block_4_full_width_columns','0'),(10571,772,'_content_block_4_full_width_columns','field_5bbe44c7ae588'),(10572,772,'content_block_4_veil_over_images','1'),(10573,772,'_content_block_4_veil_over_images','field_5bbe4f8f88a8a'),(10574,772,'content_block_4_left_column_background_image','437'),(10575,772,'_content_block_4_left_column_background_image','field_5bbe4452ae585'),(10576,772,'content_block_4_left_column_image_description_text',''),(10577,772,'_content_block_4_left_column_image_description_text','field_5bbe443dae584ab'),(10578,772,'content_block_4_left_column_content','<h3>Club Member Event</h3>\r\nCome pick up your shipment and enjoy.'),(10579,772,'_content_block_4_left_column_content','field_5bbe4414ae582'),(10580,772,'content_block_4_left_button_column','1'),(10581,772,'_content_block_4_left_button_column','field_5bd78c465387d'),(10582,772,'content_block_4_left_whole_column_clickable','1'),(10583,772,'_content_block_4_left_whole_column_clickable','field_5bbe44f3ae589'),(10584,772,'content_block_4_left_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:7:\"/clubs/\";s:6:\"target\";s:0:\"\";}'),(10585,772,'_content_block_4_left_column_button_link','field_5bbe442fae583'),(10586,772,'content_block_4_left_column_button_text','LEARN MORE'),(10587,772,'_content_block_4_left_column_button_text','field_5bbe443dae584'),(10588,772,'content_block_4_left_column_button_description_text',''),(10589,772,'_content_block_4_left_column_button_description_text','field_5bbe443dae584a'),(10590,772,'content_block_4_right_column_background_image','438'),(10591,772,'_content_block_4_right_column_background_image','field_5bbe4547ae58b'),(10592,772,'content_block_4_right_column_image_description_text',''),(10593,772,'_content_block_4_right_column_image_description_text','field_5bbe443dae584ac'),(10594,772,'content_block_4_right_column_content','<h3>Top Pick</h3>\r\nGold Medal winner for 2015!'),(10595,772,'_content_block_4_right_column_content','field_5bbe4550ae58c'),(10596,772,'content_block_4_right_button_column','1'),(10597,772,'_content_block_4_right_button_column','field_5bd78c465387e'),(10598,772,'content_block_4_right_whole_column_clickable','1'),(10599,772,'_content_block_4_right_whole_column_clickable','field_5bbe455aae58d'),(10600,772,'content_block_4_right_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:24:\"/wines/current-releases/\";s:6:\"target\";s:0:\"\";}'),(10601,772,'_content_block_4_right_column_button_link','field_5bbe456bae58e'),(10602,772,'content_block_4_right_column_button_text','LEARN MORE'),(10603,772,'_content_block_4_right_column_button_text','field_5bbe4577ae58f'),(10604,772,'content_block_4_right_column_button_description_text',''),(10605,772,'_content_block_4_right_column_button_description_text','field_5bbe443dae584b'),(10606,772,'content_block_5_layout_title','Subscribe'),(10607,772,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(10608,772,'content_block_5_text_block_columns','two'),(10609,772,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(10610,772,'content_block_5_narrow_text_block_content','0'),(10611,772,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(10612,772,'content_block_5_reverse_colors','1'),(10613,772,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(10614,772,'content_block_5_enable_background_image','0'),(10615,772,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(10616,772,'content_block_5_custom_css_class','subscribe-columns'),(10617,772,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(10618,772,'content_block_5_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(10619,772,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(10620,772,'content_block_5_text_block_content_col_two','[c7-subscribe-with-name]'),(10621,772,'_content_block_5_text_block_content_col_two','field_5bbe31593920e'),(10672,778,'content_block','a:6:{i:0;s:10:\"text_block\";i:1;s:10:\"text_block\";i:2;s:18:\"text_image_feature\";i:3;s:10:\"text_block\";i:4;s:18:\"text_image_feature\";i:5;s:10:\"text_block\";}'),(10673,778,'_content_block','field_5bbe19a7efa09'),(10674,778,'content_block_0_text_block_columns','one'),(10675,778,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(10676,778,'content_block_0_narrow_text_block_content','0'),(10677,778,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(10678,778,'content_block_0_reverse_colors','0'),(10679,778,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(10680,778,'content_block_0_enable_background_image','0'),(10681,778,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(10682,778,'content_block_0_custom_css_class',''),(10683,778,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(10684,778,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">Visiting</h1>\r\n<h2 style=\"text-align: center;\">Book a Tour or Tasting Reservation</h2>\r\n<p style=\"text-align: center;\">A visit to this winery is a unique experience, as it provides a rare insight into the engine room of Spectra from a winemaking perspective.</p>'),(10685,778,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(10686,778,'content_block_1_text_block_columns','one'),(10687,778,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(10688,778,'content_block_1_narrow_text_block_content','0'),(10689,778,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(10690,778,'content_block_1_reverse_colors','0'),(10691,778,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(10692,778,'content_block_1_enable_background_image','0'),(10693,778,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(10694,778,'content_block_1_custom_css_class',''),(10695,778,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(10696,778,'content_block_1_text_block_content_col_one','<hr />'),(10697,778,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(10698,778,'content_block_2_output_code','0'),(10699,778,'_content_block_2_output_code','field_5c37de3f6091bdc'),(10700,778,'content_block_2_image_side','0'),(10701,778,'_content_block_2_image_side','field_5bbe7070c2491'),(10702,778,'content_block_2_image','496'),(10703,778,'_content_block_2_image','field_5bbe6eb3c96c0'),(10704,778,'content_block_2_text_content','<h3>Tasting</h3>\r\n<div class=\"c7-reservation-availability\" data-reservation-type-slug=\"tasting\"></div>'),(10705,778,'_content_block_2_text_content','field_5bbe6f90c96c1'),(10706,778,'content_block_2_button_text',''),(10707,778,'_content_block_2_button_text','field_5bbe6fa4c96c2'),(10708,778,'content_block_3_text_block_columns','one'),(10709,778,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(10710,778,'content_block_3_narrow_text_block_content','0'),(10711,778,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(10712,778,'content_block_3_reverse_colors','0'),(10713,778,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(10714,778,'content_block_3_enable_background_image','0'),(10715,778,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(10716,778,'content_block_3_custom_css_class',''),(10717,778,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(10718,778,'content_block_3_text_block_content_col_one','<hr />'),(10719,778,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(10720,778,'content_block_4_output_code','0'),(10721,778,'_content_block_4_output_code','field_5c37de3f6091bdc'),(10722,778,'content_block_4_image_side','0'),(10723,778,'_content_block_4_image_side','field_5bbe7070c2491'),(10724,778,'content_block_4_image','543'),(10725,778,'_content_block_4_image','field_5bbe6eb3c96c0'),(10726,778,'content_block_4_text_content','<h3>Tours</h3>\r\n<div class=\"c7-reservation-availability\" data-reservation-type-slug=\"tour\"></div>'),(10727,778,'_content_block_4_text_content','field_5bbe6f90c96c1'),(10728,778,'content_block_4_button_text',''),(10729,778,'_content_block_4_button_text','field_5bbe6fa4c96c2'),(10730,778,'content_block_5_text_block_columns','one'),(10731,778,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(10732,778,'content_block_5_narrow_text_block_content','0'),(10733,778,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(10734,778,'content_block_5_reverse_colors','0'),(10735,778,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(10736,778,'content_block_5_enable_background_image','0'),(10737,778,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(10738,778,'content_block_5_custom_css_class',''),(10739,778,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(10740,778,'content_block_5_text_block_content_col_one','<hr />\r\n<p style=\"text-align: center;\">For large parties (10 or more) or special requests, please contact us directly at (707) 576-8080 or orders@spectrawinery.com.</p>'),(10741,778,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(10742,778,'content_block_0_layout_title','Page Title and Intro'),(10743,778,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(10744,778,'content_block_1_layout_title','Divider'),(10745,778,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(10746,778,'content_block_2_layout_title','Reservation Option 1'),(10747,778,'_content_block_2_layout_title','field_5bc11ca9a0d50-a'),(10748,778,'content_block_3_layout_title','Divider'),(10749,778,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(10750,778,'content_block_4_layout_title','Reservation Option 2'),(10751,778,'_content_block_4_layout_title','field_5bc11ca9a0d50-a'),(10752,778,'content_block_5_layout_title','Bottom Content'),(10753,778,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(10754,516,'content_block_0_banner_image_description',''),(10755,516,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(10756,516,'content_block_2_banner_image_description',''),(10757,516,'_content_block_2_banner_image_description','field_5bbf30b1a4de2-1a'),(10758,516,'content_block_4_banner_image_description',''),(10759,516,'_content_block_4_banner_image_description','field_5bbf30b1a4de2-1a'),(10760,516,'content_block_6_banner_image_description',''),(10761,516,'_content_block_6_banner_image_description','field_5bbf30b1a4de2-1a'),(10762,780,'content_block','a:9:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:6:\"banner\";i:3;s:10:\"text_block\";i:4;s:6:\"banner\";i:5;s:10:\"text_block\";i:6;s:6:\"banner\";i:7;s:10:\"text_block\";i:8;s:10:\"text_block\";}'),(10763,780,'_content_block','field_5bbe19a7efa09'),(10764,780,'content_block_0_banner_full_width','1'),(10765,780,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(10766,780,'content_block_0_banner_size','long'),(10767,780,'_content_block_0_banner_size','field_5bbe232929ec9'),(10768,780,'content_block_0_add_parallax_effect','0'),(10769,780,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(10770,780,'content_block_0_add_veil_over_banner','0'),(10771,780,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(10772,780,'content_block_0_banner_content_position','centered'),(10773,780,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(10774,780,'content_block_0_banner_title','Our Vineyards'),(10775,780,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(10776,780,'content_block_0_banner_subtitle','A selection from the best grapes'),(10777,780,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(10778,780,'content_block_0_banner_button_link',''),(10779,780,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(10780,780,'content_block_0_banner_button_new_tab','0'),(10781,780,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(10782,780,'content_block_0_show_down_arrow','1'),(10783,780,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(10784,780,'content_block_0_banner_image','528'),(10785,780,'_content_block_0_banner_image','field_5bbe201718faf'),(10786,780,'content_block_0_banner_image_position','center center'),(10787,780,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(10788,780,'content_block_0_banner_image_mobile','529'),(10789,780,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(10790,780,'content_block_0_banner_image_mobile_position','center center'),(10791,780,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(10792,780,'content_block_1_text_block_columns','one'),(10793,780,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(10794,780,'content_block_1_narrow_text_block_content','0'),(10795,780,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(10796,780,'content_block_1_reverse_colors','0'),(10797,780,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(10798,780,'content_block_1_enable_background_image','0'),(10799,780,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(10800,780,'content_block_1_text_block_content_col_one','<h2 style=\"text-align: center;\">Viticulture</h2>\r\n<blockquote style=\"text-align: center;\">I try to create wines that suit our climate and our way of life - wines to drink with the food we grow, make and eat.</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">Spectra winery was realised to focus on our passion for the region and its ability to produce dry - grown and environmentally sustainable wine. Recently a new home was established on our holistic philosophy to winemaking which starts with climate, empahasises the importance on the vineyard, as well as wine\'s relation to the food we love to grow, cook, and eat.</p>'),(10801,780,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(10802,780,'content_block_2_banner_full_width','1'),(10803,780,'_content_block_2_banner_full_width','field_5bbe19c8efa0a'),(10804,780,'content_block_2_banner_size','long'),(10805,780,'_content_block_2_banner_size','field_5bbe232929ec9'),(10806,780,'content_block_2_add_parallax_effect','1'),(10807,780,'_content_block_2_add_parallax_effect','field_5bbe219ccb6a9'),(10808,780,'content_block_2_add_veil_over_banner','0'),(10809,780,'_content_block_2_add_veil_over_banner','field_5bbe333f39212'),(10810,780,'content_block_2_banner_content_position','centered'),(10811,780,'_content_block_2_banner_content_position','field_5bbe259b02b62'),(10812,780,'content_block_2_banner_title',''),(10813,780,'_content_block_2_banner_title','field_5bbe1b78efa0b'),(10814,780,'content_block_2_banner_subtitle',''),(10815,780,'_content_block_2_banner_subtitle','field_5bbe1b83efa0c'),(10816,780,'content_block_2_banner_button_link',''),(10817,780,'_content_block_2_banner_button_link','field_5bbe1b8cefa0d'),(10818,780,'content_block_2_banner_button_new_tab','0'),(10819,780,'_content_block_2_banner_button_new_tab','field_5bbe1e6d18fae'),(10820,780,'content_block_2_show_down_arrow','0'),(10821,780,'_content_block_2_show_down_arrow','field_5bbe24f721165'),(10822,780,'content_block_2_banner_image','484'),(10823,780,'_content_block_2_banner_image','field_5bbe201718faf'),(10824,780,'content_block_2_banner_image_position','center center'),(10825,780,'_content_block_2_banner_image_position','field_5bbe278f9fb97'),(10826,780,'content_block_2_banner_image_mobile','485'),(10827,780,'_content_block_2_banner_image_mobile','field_5bbe202818fb0'),(10828,780,'content_block_2_banner_image_mobile_position','center center'),(10829,780,'_content_block_2_banner_image_mobile_position','field_5bbe279c9fb98'),(10830,780,'content_block_3_text_block_columns','one'),(10831,780,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(10832,780,'content_block_3_narrow_text_block_content','0'),(10833,780,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(10834,780,'content_block_3_reverse_colors','0'),(10835,780,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(10836,780,'content_block_3_enable_background_image','0'),(10837,780,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(10838,780,'content_block_3_text_block_content_col_one','<h2 style=\"text-align: center;\">Vineyard 1</h2>\r\n<strong>Location:</strong> Elevated bench on the west side of the valley in the area\'s best location. Adjacent to the winery and home vineyards and Home Vineyards.\r\n\r\n<strong>Vines:</strong> Planted in 1982 with of Riesling, of Kerner, and of Cabernert. The Cabernet and some of the Riesling were recently replaced with Chardonnay, Gamay, Syrah, and Viognier\r\n\r\n<strong>Soil:</strong> Gravel and sand. Despite the proximity to both the winery and home vineyard soil types are completely different.'),(10839,780,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(10840,780,'content_block_4_banner_full_width','1'),(10841,780,'_content_block_4_banner_full_width','field_5bbe19c8efa0a'),(10842,780,'content_block_4_banner_size','long'),(10843,780,'_content_block_4_banner_size','field_5bbe232929ec9'),(10844,780,'content_block_4_add_parallax_effect','1'),(10845,780,'_content_block_4_add_parallax_effect','field_5bbe219ccb6a9'),(10846,780,'content_block_4_add_veil_over_banner','0'),(10847,780,'_content_block_4_add_veil_over_banner','field_5bbe333f39212'),(10848,780,'content_block_4_banner_content_position','centered'),(10849,780,'_content_block_4_banner_content_position','field_5bbe259b02b62'),(10850,780,'content_block_4_banner_title',''),(10851,780,'_content_block_4_banner_title','field_5bbe1b78efa0b'),(10852,780,'content_block_4_banner_subtitle',''),(10853,780,'_content_block_4_banner_subtitle','field_5bbe1b83efa0c'),(10854,780,'content_block_4_banner_button_link',''),(10855,780,'_content_block_4_banner_button_link','field_5bbe1b8cefa0d'),(10856,780,'content_block_4_banner_button_new_tab','0'),(10857,780,'_content_block_4_banner_button_new_tab','field_5bbe1e6d18fae'),(10858,780,'content_block_4_show_down_arrow','0'),(10859,780,'_content_block_4_show_down_arrow','field_5bbe24f721165'),(10860,780,'content_block_4_banner_image','486'),(10861,780,'_content_block_4_banner_image','field_5bbe201718faf'),(10862,780,'content_block_4_banner_image_position','center center'),(10863,780,'_content_block_4_banner_image_position','field_5bbe278f9fb97'),(10864,780,'content_block_4_banner_image_mobile','487'),(10865,780,'_content_block_4_banner_image_mobile','field_5bbe202818fb0'),(10866,780,'content_block_4_banner_image_mobile_position','center center'),(10867,780,'_content_block_4_banner_image_mobile_position','field_5bbe279c9fb98'),(10868,780,'content_block_5_text_block_columns','one'),(10869,780,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(10870,780,'content_block_5_narrow_text_block_content','0'),(10871,780,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(10872,780,'content_block_5_reverse_colors','0'),(10873,780,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(10874,780,'content_block_5_enable_background_image','0'),(10875,780,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(10876,780,'content_block_5_text_block_content_col_one','<h2 style=\"text-align: center;\">Vineyard 2</h2>\r\n<strong>Location:</strong> Located on the west side of the valley, in the area\'s best region. Incorporates two distinct vineyard sites, one on the west side and the other on land that slopes toward the valley bottom.\r\n\r\n<strong>Vines:</strong> Planted in 1999 this vineyard includes approximately of Merlot, each of Pinot Noir and Pinot Gris, and of Gewurztraminer. A little more than half an acre of Syrah was added in the spring of 2014.\r\n\r\n<strong>Soil:</strong> Today we own and farm a total of about and also relies on long-term contracts with some of the areas top grape growers. The winery takes great pride in its positive reputation amongst grape growers as an excellent winery partner. The respect of the growers is reflected in the quality of the fruit that they deliver to us.'),(10877,780,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(10878,780,'content_block_6_banner_full_width','1'),(10879,780,'_content_block_6_banner_full_width','field_5bbe19c8efa0a'),(10880,780,'content_block_6_banner_size','long'),(10881,780,'_content_block_6_banner_size','field_5bbe232929ec9'),(10882,780,'content_block_6_add_parallax_effect','1'),(10883,780,'_content_block_6_add_parallax_effect','field_5bbe219ccb6a9'),(10884,780,'content_block_6_add_veil_over_banner','0'),(10885,780,'_content_block_6_add_veil_over_banner','field_5bbe333f39212'),(10886,780,'content_block_6_banner_content_position','centered'),(10887,780,'_content_block_6_banner_content_position','field_5bbe259b02b62'),(10888,780,'content_block_6_banner_title',''),(10889,780,'_content_block_6_banner_title','field_5bbe1b78efa0b'),(10890,780,'content_block_6_banner_subtitle',''),(10891,780,'_content_block_6_banner_subtitle','field_5bbe1b83efa0c'),(10892,780,'content_block_6_banner_button_link',''),(10893,780,'_content_block_6_banner_button_link','field_5bbe1b8cefa0d'),(10894,780,'content_block_6_banner_button_new_tab','0'),(10895,780,'_content_block_6_banner_button_new_tab','field_5bbe1e6d18fae'),(10896,780,'content_block_6_show_down_arrow','0'),(10897,780,'_content_block_6_show_down_arrow','field_5bbe24f721165'),(10898,780,'content_block_6_banner_image','488'),(10899,780,'_content_block_6_banner_image','field_5bbe201718faf'),(10900,780,'content_block_6_banner_image_position','center center'),(10901,780,'_content_block_6_banner_image_position','field_5bbe278f9fb97'),(10902,780,'content_block_6_banner_image_mobile','489'),(10903,780,'_content_block_6_banner_image_mobile','field_5bbe202818fb0'),(10904,780,'content_block_6_banner_image_mobile_position','center center'),(10905,780,'_content_block_6_banner_image_mobile_position','field_5bbe279c9fb98'),(10906,780,'content_block_7_text_block_columns','one'),(10907,780,'_content_block_7_text_block_columns','field_5bbe2f81a4de0'),(10908,780,'content_block_7_narrow_text_block_content','0'),(10909,780,'_content_block_7_narrow_text_block_content','field_5bbe342e08360'),(10910,780,'content_block_7_reverse_colors','0'),(10911,780,'_content_block_7_reverse_colors','field_5bbe3027a4de1'),(10912,780,'content_block_7_enable_background_image','0'),(10913,780,'_content_block_7_enable_background_image','field_5bbe30b1a4de2'),(10914,780,'content_block_7_text_block_content_col_one','<h2 style=\"text-align: center;\">Vineyard 3</h2>\r\n<strong>Location:</strong> Elevated bench up against the mountain on the west side of the valley in the area’s best region. All-day and late-day sun exposure. Adjacent to the home vineyard.\r\n\r\n<strong>Vines:</strong> First planted in 1986 to Chardonnay, Pinot Noir and Merlot. Syrah was added in 2005.\r\n\r\n<strong>Soil:</strong> It’s not! It is the usual stuff vines really love: hard and rocky with fine clay interspersed. This clay results in a high moisture-holding capacity, giving the vines a natural and constant reservoir of nourishing moisture and nutrients.'),(10915,780,'_content_block_7_text_block_content_col_one','field_5bbe313b3920d'),(10916,780,'content_block_8_text_block_columns','two'),(10917,780,'_content_block_8_text_block_columns','field_5bbe2f81a4de0'),(10918,780,'content_block_8_narrow_text_block_content','0'),(10919,780,'_content_block_8_narrow_text_block_content','field_5bbe342e08360'),(10920,780,'content_block_8_reverse_colors','1'),(10921,780,'_content_block_8_reverse_colors','field_5bbe3027a4de1'),(10922,780,'content_block_8_enable_background_image','0'),(10923,780,'_content_block_8_enable_background_image','field_5bbe30b1a4de2'),(10924,780,'content_block_8_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(10925,780,'_content_block_8_text_block_content_col_one','field_5bbe313b3920d'),(10926,780,'content_block_8_text_block_content_col_two','[c7-subscribe-with-name]'),(10927,780,'_content_block_8_text_block_content_col_two','field_5bbe31593920e'),(10928,780,'content_block_0_layout_title',''),(10929,780,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(10930,780,'content_block_0_custom_css_class',''),(10931,780,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(10932,780,'content_block_1_layout_title',''),(10933,780,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(10934,780,'content_block_1_custom_css_class',''),(10935,780,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(10936,780,'content_block_2_layout_title',''),(10937,780,'_content_block_2_layout_title','field_5bc11ca9a0d50-c'),(10938,780,'content_block_2_custom_css_class',''),(10939,780,'_content_block_2_custom_css_class','field_5bbf30b1a4de2-1'),(10940,780,'content_block_3_layout_title',''),(10941,780,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(10942,780,'content_block_3_custom_css_class',''),(10943,780,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(10944,780,'content_block_4_layout_title',''),(10945,780,'_content_block_4_layout_title','field_5bc11ca9a0d50-c'),(10946,780,'content_block_4_custom_css_class',''),(10947,780,'_content_block_4_custom_css_class','field_5bbf30b1a4de2-1'),(10948,780,'content_block_5_layout_title',''),(10949,780,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(10950,780,'content_block_5_custom_css_class',''),(10951,780,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(10952,780,'content_block_6_layout_title',''),(10953,780,'_content_block_6_layout_title','field_5bc11ca9a0d50-c'),(10954,780,'content_block_6_custom_css_class',''),(10955,780,'_content_block_6_custom_css_class','field_5bbf30b1a4de2-1'),(10956,780,'content_block_7_layout_title',''),(10957,780,'_content_block_7_layout_title','field_5bc11ca9a0d50-s'),(10958,780,'content_block_7_custom_css_class',''),(10959,780,'_content_block_7_custom_css_class','field_5bbe30b1a4de2-1'),(10960,780,'content_block_8_layout_title','Subscribe'),(10961,780,'_content_block_8_layout_title','field_5bc11ca9a0d50-s'),(10962,780,'content_block_8_custom_css_class','subscribe-columns'),(10963,780,'_content_block_8_custom_css_class','field_5bbe30b1a4de2-1'),(10964,780,'content_block_0_banner_image_description',''),(10965,780,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(10966,780,'content_block_2_banner_image_description',''),(10967,780,'_content_block_2_banner_image_description','field_5bbf30b1a4de2-1a'),(10968,780,'content_block_4_banner_image_description',''),(10969,780,'_content_block_4_banner_image_description','field_5bbf30b1a4de2-1a'),(10970,780,'content_block_6_banner_image_description',''),(10971,780,'_content_block_6_banner_image_description','field_5bbf30b1a4de2-1a'),(10975,784,'content_block_0_text_block_columns','one'),(10976,784,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(10977,784,'content_block_0_narrow_text_block_content','0'),(10978,784,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(10979,784,'content_block_0_reverse_colors','0'),(10980,784,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(10981,784,'content_block_0_enable_background_image','0'),(10982,784,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(10983,784,'content_block_0_custom_css_class',''),(10984,784,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(10985,784,'content_block_0_text_block_content_col_one','[c7_content]'),(10986,784,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(10987,784,'content_block','a:1:{i:0;s:10:\"text_block\";}'),(10988,784,'_content_block','field_5bbe19a7efa09'),(10989,784,'content_block_0_layout_title','Commerce 7 Content Placeholder'),(10990,784,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(10991,785,'content_block',''),(10992,785,'_content_block','field_5bbe19a7efa09'),(11011,790,'content_block','a:4:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:8:\"timeline\";i:3;s:10:\"text_block\";}'),(11012,790,'_content_block','field_5bbe19a7efa09'),(11013,790,'content_block_0_banner_full_width','1'),(11014,790,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(11015,790,'content_block_0_banner_size','short'),(11016,790,'_content_block_0_banner_size','field_5bbe232929ec9'),(11017,790,'content_block_0_add_parallax_effect','0'),(11018,790,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(11019,790,'content_block_0_add_veil_over_banner','0'),(11020,790,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(11021,790,'content_block_0_banner_content_position','centered'),(11022,790,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(11023,790,'content_block_0_banner_title','History'),(11024,790,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(11025,790,'content_block_0_banner_subtitle','A strong legacy of refinement'),(11026,790,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(11027,790,'content_block_0_banner_button_link',''),(11028,790,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(11029,790,'content_block_0_banner_button_new_tab','0'),(11030,790,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(11031,790,'content_block_0_show_down_arrow','1'),(11032,790,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(11033,790,'content_block_0_banner_image','541'),(11034,790,'_content_block_0_banner_image','field_5bbe201718faf'),(11035,790,'content_block_0_banner_image_position','center center'),(11036,790,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(11037,790,'content_block_0_banner_image_mobile','542'),(11038,790,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(11039,790,'content_block_0_banner_image_mobile_position','center center'),(11040,790,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(11041,790,'content_block_1_text_block_columns','one'),(11042,790,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(11043,790,'content_block_1_narrow_text_block_content','0'),(11044,790,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(11045,790,'content_block_1_reverse_colors','0'),(11046,790,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(11047,790,'content_block_1_enable_background_image','0'),(11048,790,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(11049,790,'content_block_1_text_block_content_col_one','<h2 style=\"text-align: center;\">A look back into our past</h2>\r\n<blockquote style=\"text-align: center;\">I try to create wines that suit our climate and our way of life - wines to drink with the food we grow, make and eat.</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">Spectra winery was realised to focus on our passion for the region and its ability to produce dry - grown and environmentally sustainable wine. Recently a new home was established on our holistic philosophy to winemaking which starts with climate, empahasises the importance on the vineyard, as well as wine\'s relation to the food we love to grow, cook, and eat.</p>'),(11050,790,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(11051,790,'content_block_2_timeline_item_0_year','1984'),(11052,790,'_content_block_2_timeline_item_0_year','field_5bc11e0cd7b1e'),(11053,790,'content_block_2_timeline_item_0_description','Margaret and Harry Jennings purchase Spectra Winery.'),(11054,790,'_content_block_2_timeline_item_0_description','field_5bc11e27d7b1f'),(11055,790,'content_block_2_timeline_item_0_image','543'),(11056,790,'_content_block_2_timeline_item_0_image','field_5bc11e2dd7b20'),(11057,790,'content_block_2_timeline_item_1_year','1987'),(11058,790,'_content_block_2_timeline_item_1_year','field_5bc11e0cd7b1e'),(11059,790,'content_block_2_timeline_item_1_description','As the business grows, the family decides to increase production and sales expand to local vendors.'),(11060,790,'_content_block_2_timeline_item_1_description','field_5bc11e27d7b1f'),(11061,790,'content_block_2_timeline_item_1_image','544'),(11062,790,'_content_block_2_timeline_item_1_image','field_5bc11e2dd7b20'),(11063,790,'content_block_2_timeline_item_2_year','1999'),(11064,790,'_content_block_2_timeline_item_2_year','field_5bc11e0cd7b1e'),(11065,790,'content_block_2_timeline_item_2_description','With an award winning Pinot Noir, Spectra Winery becomes a leader in the wine industry.'),(11066,790,'_content_block_2_timeline_item_2_description','field_5bc11e27d7b1f'),(11067,790,'content_block_2_timeline_item_2_image','545'),(11068,790,'_content_block_2_timeline_item_2_image','field_5bc11e2dd7b20'),(11069,790,'content_block_2_timeline_item_3_year','2006'),(11070,790,'_content_block_2_timeline_item_3_year','field_5bc11e0cd7b1e'),(11071,790,'content_block_2_timeline_item_3_description','Sandra and Josh join Sprectra Winery in 2006, bringing with them a wealth of knowledge.'),(11072,790,'_content_block_2_timeline_item_3_description','field_5bc11e27d7b1f'),(11073,790,'content_block_2_timeline_item_3_image','546'),(11074,790,'_content_block_2_timeline_item_3_image','field_5bc11e2dd7b20'),(11075,790,'content_block_2_timeline_item_4_year','2011'),(11076,790,'_content_block_2_timeline_item_4_year','field_5bc11e0cd7b1e'),(11077,790,'content_block_2_timeline_item_4_description','With a new focus on sustainability, habitats for barns owl are created at Spectra winery. Rather than relying on chemicals and pesticides, barn owls are used to ensure rodents are removed from the vineyards.'),(11078,790,'_content_block_2_timeline_item_4_description','field_5bc11e27d7b1f'),(11079,790,'content_block_2_timeline_item_4_image','547'),(11080,790,'_content_block_2_timeline_item_4_image','field_5bc11e2dd7b20'),(11081,790,'content_block_2_timeline_item_5_year','2015'),(11082,790,'_content_block_2_timeline_item_5_year','field_5bc11e0cd7b1e'),(11083,790,'content_block_2_timeline_item_5_description','Spectra Winery is named American Winery of the Year.'),(11084,790,'_content_block_2_timeline_item_5_description','field_5bc11e27d7b1f'),(11085,790,'content_block_2_timeline_item_5_image','548'),(11086,790,'_content_block_2_timeline_item_5_image','field_5bc11e2dd7b20'),(11087,790,'content_block_2_timeline_item','6'),(11088,790,'_content_block_2_timeline_item','field_5bc11df7d7b1d'),(11089,790,'content_block_3_text_block_columns','two'),(11090,790,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(11091,790,'content_block_3_narrow_text_block_content','0'),(11092,790,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(11093,790,'content_block_3_reverse_colors','1'),(11094,790,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(11095,790,'content_block_3_enable_background_image','0'),(11096,790,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(11097,790,'content_block_3_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(11098,790,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(11099,790,'content_block_3_text_block_content_col_two','[c7-subscribe-with-name]'),(11100,790,'_content_block_3_text_block_content_col_two','field_5bbe31593920e'),(11101,790,'content_block_0_layout_title',''),(11102,790,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(11103,790,'content_block_0_custom_css_class',''),(11104,790,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(11105,790,'content_block_1_layout_title',''),(11106,790,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(11107,790,'content_block_1_custom_css_class',''),(11108,790,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(11109,790,'content_block_3_layout_title','Subscribe'),(11110,790,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(11111,790,'content_block_3_custom_css_class','subscribe-columns'),(11112,790,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(11113,790,'content_block_0_banner_image_description',''),(11114,790,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(11115,790,'content_block_2_timeline_item_0_image_description',''),(11116,790,'_content_block_2_timeline_item_0_image_description','field_5bc11e2dd7b20-1'),(11117,790,'content_block_2_timeline_item_1_image_description',''),(11118,790,'_content_block_2_timeline_item_1_image_description','field_5bc11e2dd7b20-1'),(11119,790,'content_block_2_timeline_item_2_image_description',''),(11120,790,'_content_block_2_timeline_item_2_image_description','field_5bc11e2dd7b20-1'),(11121,790,'content_block_2_timeline_item_3_image_description',''),(11122,790,'_content_block_2_timeline_item_3_image_description','field_5bc11e2dd7b20-1'),(11123,790,'content_block_2_timeline_item_4_image_description',''),(11124,790,'_content_block_2_timeline_item_4_image_description','field_5bc11e2dd7b20-1'),(11125,790,'content_block_2_timeline_item_5_image_description',''),(11126,790,'_content_block_2_timeline_item_5_image_description','field_5bc11e2dd7b20-1'),(11127,446,'content_block_0_banner_image_description',''),(11128,446,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(11129,791,'content_block','a:4:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";i:3;s:10:\"text_block\";}'),(11130,791,'_content_block','field_5bbe19a7efa09'),(11131,791,'content_block_0_banner_full_width','1'),(11132,791,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(11133,791,'content_block_0_banner_size','short'),(11134,791,'_content_block_0_banner_size','field_5bbe232929ec9'),(11135,791,'content_block_0_add_parallax_effect','0'),(11136,791,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(11137,791,'content_block_0_add_veil_over_banner','0'),(11138,791,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(11139,791,'content_block_0_banner_content_position','centered'),(11140,791,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(11141,791,'content_block_0_banner_title',''),(11142,791,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(11143,791,'content_block_0_banner_subtitle',''),(11144,791,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(11145,791,'content_block_0_banner_button_link',''),(11146,791,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(11147,791,'content_block_0_banner_button_new_tab','0'),(11148,791,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(11149,791,'content_block_0_show_down_arrow','1'),(11150,791,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(11151,791,'content_block_0_banner_image','473'),(11152,791,'_content_block_0_banner_image','field_5bbe201718faf'),(11153,791,'content_block_0_banner_image_position','center center'),(11154,791,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(11155,791,'content_block_0_banner_image_mobile','474'),(11156,791,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(11157,791,'content_block_0_banner_image_mobile_position','center center'),(11158,791,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(11159,791,'content_block_1_text_block_columns','one'),(11160,791,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(11161,791,'content_block_1_narrow_text_block_content','0'),(11162,791,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(11163,791,'content_block_1_reverse_colors','0'),(11164,791,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(11165,791,'content_block_1_enable_background_image','0'),(11166,791,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(11167,791,'content_block_1_text_block_content_col_one','<h2 style=\"text-align: center;\">Contact Us</h2>\r\n<p style=\"text-align: center;\">We invite you to visit us to taste our current wines in our open, scenic setting.\r\nSpectra is conveniently located minutes from both downtown the valley.</p>\r\n\r\n\r\n<hr />'),(11168,791,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(11169,791,'content_block_2_text_block_columns','two'),(11170,791,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(11171,791,'content_block_2_narrow_text_block_content','0'),(11172,791,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(11173,791,'content_block_2_reverse_colors','0'),(11174,791,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(11175,791,'content_block_2_enable_background_image','0'),(11176,791,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(11177,791,'content_block_2_text_block_content_col_one','<h4>Visting Hours</h4>\r\nWe are open everyday from 10am to 6pm\r\n\r\nTastings are available between 10am and 3pm\r\n<strong>$20 per person</strong>.\r\n\r\nTours and Tastings are available at 10am, 1pm, and 3pm\r\n<strong>$85 per person</strong>.\r\n\r\nFor large parties (10 or more) or special requests, please contact us directly at <a href=\"tel:707-576-8080\">(707) 576-8080</a> or <a href=\"mailto: orders@spectrawinery.com\">orders@spectrawinery.com</a>.\r\n\r\nSpectra Winery\r\n9999 The Best Street\r\nSan Francisco, CA 94016\r\n(888) 888-8080'),(11178,791,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(11179,791,'content_block_2_text_block_content_col_two','<div class=\"c7-form-wrapper\" data-form-code=\"contact-us\"></div>'),(11180,791,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(11181,791,'content_block_3_text_block_columns','two'),(11182,791,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(11183,791,'content_block_3_narrow_text_block_content','0'),(11184,791,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(11185,791,'content_block_3_reverse_colors','1'),(11186,791,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(11187,791,'content_block_3_enable_background_image','0'),(11188,791,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(11189,791,'content_block_3_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(11190,791,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(11191,791,'content_block_3_text_block_content_col_two','[c7-subscribe-with-name]'),(11192,791,'_content_block_3_text_block_content_col_two','field_5bbe31593920e'),(11193,791,'content_block_0_layout_title',''),(11194,791,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(11195,791,'content_block_0_custom_css_class',''),(11196,791,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(11197,791,'content_block_1_layout_title',''),(11198,791,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(11199,791,'content_block_1_custom_css_class',''),(11200,791,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(11201,791,'content_block_2_layout_title',''),(11202,791,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(11203,791,'content_block_2_custom_css_class',''),(11204,791,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(11205,791,'content_block_3_layout_title','Subscribe'),(11206,791,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(11207,791,'content_block_3_custom_css_class','subscribe-columns'),(11208,791,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(11209,791,'content_block_0_banner_image_description',''),(11210,791,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(11361,804,'club_list',''),(11362,804,'_club_list','field_5bd8cf7450938'),(11363,804,'content_block_0_text_block_columns','one'),(11364,804,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(11365,804,'content_block_0_narrow_text_block_content','0'),(11366,804,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(11367,804,'content_block_0_reverse_colors','0'),(11368,804,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(11369,804,'content_block_0_enable_background_image','0'),(11370,804,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(11371,804,'content_block_0_text_block_content_col_one','Welcome club member!'),(11372,804,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(11373,804,'content_block','a:1:{i:0;s:10:\"text_block\";}'),(11374,804,'_content_block','field_5bbe19a7efa09'),(11375,804,'group_list','a:1:{i:0;s:36:\"b523586f-f04f-4359-8ed5-230487e7c7a6\";}'),(11376,804,'_group_list','field_5bd8cf7450938a'),(11377,804,'content_block_0_layout_title',''),(11378,804,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(11379,804,'content_block_0_custom_css_class',''),(11380,804,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(11381,805,'club_list','a:1:{i:0;s:36:\"315d603a-dd83-449b-aac4-f14c6825535d\";}'),(11382,805,'_club_list','field_5bd8cf7450938'),(11383,805,'content_block_0_text_block_columns','one'),(11384,805,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(11385,805,'content_block_0_narrow_text_block_content','0'),(11386,805,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(11387,805,'content_block_0_reverse_colors','0'),(11388,805,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(11389,805,'content_block_0_enable_background_image','0'),(11390,805,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(11391,805,'content_block_0_text_block_content_col_one','Welcome club member!'),(11392,805,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(11393,805,'content_block','a:1:{i:0;s:10:\"text_block\";}'),(11394,805,'_content_block','field_5bbe19a7efa09'),(11395,805,'group_list','a:1:{i:0;s:36:\"b523586f-f04f-4359-8ed5-230487e7c7a6\";}'),(11396,805,'_group_list','field_5bd8cf7450938a'),(11397,805,'content_block_0_layout_title',''),(11398,805,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(11399,805,'content_block_0_custom_css_class',''),(11400,805,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(11401,806,'club_list','a:1:{i:0;s:36:\"edc4818e-6ac4-4ecc-aac0-ff999a727bfd\";}'),(11402,806,'_club_list','field_5bd8cf7450938'),(11403,806,'content_block_0_text_block_columns','one'),(11404,806,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(11405,806,'content_block_0_narrow_text_block_content','0'),(11406,806,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(11407,806,'content_block_0_reverse_colors','0'),(11408,806,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(11409,806,'content_block_0_enable_background_image','0'),(11410,806,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(11411,806,'content_block_0_text_block_content_col_one','Welcome club member!'),(11412,806,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(11413,806,'content_block','a:1:{i:0;s:10:\"text_block\";}'),(11414,806,'_content_block','field_5bbe19a7efa09'),(11415,806,'group_list','a:1:{i:0;s:36:\"b523586f-f04f-4359-8ed5-230487e7c7a6\";}'),(11416,806,'_group_list','field_5bd8cf7450938a'),(11417,806,'content_block_0_layout_title',''),(11418,806,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(11419,806,'content_block_0_custom_css_class',''),(11420,806,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(11421,807,'club_list','a:1:{i:0;s:36:\"315d603a-dd83-449b-aac4-f14c6825535d\";}'),(11422,807,'_club_list','field_5bd8cf7450938'),(11423,807,'content_block_0_text_block_columns','one'),(11424,807,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(11425,807,'content_block_0_narrow_text_block_content','0'),(11426,807,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(11427,807,'content_block_0_reverse_colors','0'),(11428,807,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(11429,807,'content_block_0_enable_background_image','0'),(11430,807,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(11431,807,'content_block_0_text_block_content_col_one','Welcome club member!'),(11432,807,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(11433,807,'content_block','a:1:{i:0;s:10:\"text_block\";}'),(11434,807,'_content_block','field_5bbe19a7efa09'),(11435,807,'group_list','a:1:{i:0;s:36:\"b523586f-f04f-4359-8ed5-230487e7c7a6\";}'),(11436,807,'_group_list','field_5bd8cf7450938a'),(11437,807,'content_block_0_layout_title',''),(11438,807,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(11439,807,'content_block_0_custom_css_class',''),(11440,807,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(11474,815,'content_block','a:5:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:7:\"recipes\";i:3;s:18:\"two_column_feature\";i:4;s:10:\"text_block\";}'),(11475,815,'_content_block','field_5bbe19a7efa09'),(11476,815,'content_block_0_banner_full_width','1'),(11477,815,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(11478,815,'content_block_0_banner_size','short'),(11479,815,'_content_block_0_banner_size','field_5bbe232929ec9'),(11480,815,'content_block_0_add_parallax_effect','0'),(11481,815,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(11482,815,'content_block_0_add_veil_over_banner','0'),(11483,815,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(11484,815,'content_block_0_banner_content_position','centered'),(11485,815,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(11486,815,'content_block_0_banner_title','Recipes'),(11487,815,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(11488,815,'content_block_0_banner_subtitle','Try the best food pairings.'),(11489,815,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(11490,815,'content_block_0_banner_button_link',''),(11491,815,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(11492,815,'content_block_0_banner_button_new_tab','0'),(11493,815,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(11494,815,'content_block_0_show_down_arrow','1'),(11495,815,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(11496,815,'content_block_0_banner_image','549'),(11497,815,'_content_block_0_banner_image','field_5bbe201718faf'),(11498,815,'content_block_0_banner_image_position','center center'),(11499,815,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(11500,815,'content_block_0_banner_image_mobile','550'),(11501,815,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(11502,815,'content_block_0_banner_image_mobile_position','center center'),(11503,815,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(11504,815,'content_block_1_text_block_columns','one'),(11505,815,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(11506,815,'content_block_1_narrow_text_block_content','0'),(11507,815,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(11508,815,'content_block_1_reverse_colors','0'),(11509,815,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(11510,815,'content_block_1_enable_background_image','0'),(11511,815,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(11512,815,'content_block_1_text_block_content_col_one','<h2 style=\"text-align: center;\">Our Recipes</h2>\r\n<blockquote style=\"text-align: center;\">I try to create wines that suit our climate and our way of life - wines to drink with the food we grow, make and eat.</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">Spectra winery was realised to focus on our passion for the region and its ability to produce dry - grown and environmentally sustainable wine. Recently a new home was established on our holistic philosophy to winemaking which starts with climate, empahasises the importance on the vineyard, as well as wine\'s relation to the food we love to grow, cook, and eat.</p>'),(11513,815,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(11514,815,'content_block_2_recipes_layout','restricted'),(11515,815,'_content_block_2_recipes_layout','field_5bc51424b723f'),(11516,815,'content_block_2_recipes_have_veil','0'),(11517,815,'_content_block_2_recipes_have_veil','field_5bc5145db7240'),(11518,815,'content_block_2_hide_certain_categories','a:1:{i:0;s:1:\"3\";}'),(11519,815,'_content_block_2_hide_certain_categories','field_5bc51a51d17ed'),(11520,815,'content_block_3_gap_between_columns','1'),(11521,815,'_content_block_3_gap_between_columns','field_5bbe44a5ae587'),(11522,815,'content_block_3_full_width_columns','0'),(11523,815,'_content_block_3_full_width_columns','field_5bbe44c7ae588'),(11524,815,'content_block_3_veil_over_images','0'),(11525,815,'_content_block_3_veil_over_images','field_5bbe4f8f88a8a'),(11526,815,'content_block_3_left_column_background_image','437'),(11527,815,'_content_block_3_left_column_background_image','field_5bbe4452ae585'),(11528,815,'content_block_3_left_column_content','<h3>Club Member Event</h3>\r\nCome pick up your shipment and enjoy.'),(11529,815,'_content_block_3_left_column_content','field_5bbe4414ae582'),(11530,815,'content_block_3_left_whole_column_clickable','1'),(11531,815,'_content_block_3_left_whole_column_clickable','field_5bbe44f3ae589'),(11532,815,'content_block_3_left_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(11533,815,'_content_block_3_left_column_button_link','field_5bbe442fae583'),(11534,815,'content_block_3_left_column_button_text','Learn More'),(11535,815,'_content_block_3_left_column_button_text','field_5bbe443dae584'),(11536,815,'content_block_3_right_column_background_image','438'),(11537,815,'_content_block_3_right_column_background_image','field_5bbe4547ae58b'),(11538,815,'content_block_3_right_column_content','<h3>Top Pick</h3>\r\nGold Medal winner for 2015!'),(11539,815,'_content_block_3_right_column_content','field_5bbe4550ae58c'),(11540,815,'content_block_3_right_whole_column_clickable','1'),(11541,815,'_content_block_3_right_whole_column_clickable','field_5bbe455aae58d'),(11542,815,'content_block_3_right_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(11543,815,'_content_block_3_right_column_button_link','field_5bbe456bae58e'),(11544,815,'content_block_3_right_column_button_text','Learn More'),(11545,815,'_content_block_3_right_column_button_text','field_5bbe4577ae58f'),(11546,815,'content_block_4_text_block_columns','two'),(11547,815,'_content_block_4_text_block_columns','field_5bbe2f81a4de0'),(11548,815,'content_block_4_narrow_text_block_content','0'),(11549,815,'_content_block_4_narrow_text_block_content','field_5bbe342e08360'),(11550,815,'content_block_4_reverse_colors','1'),(11551,815,'_content_block_4_reverse_colors','field_5bbe3027a4de1'),(11552,815,'content_block_4_enable_background_image','0'),(11553,815,'_content_block_4_enable_background_image','field_5bbe30b1a4de2'),(11554,815,'content_block_4_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(11555,815,'_content_block_4_text_block_content_col_one','field_5bbe313b3920d'),(11556,815,'content_block_4_text_block_content_col_two','[c7-subscribe-with-name]'),(11557,815,'_content_block_4_text_block_content_col_two','field_5bbe31593920e'),(11558,815,'content_block_2_space_between','withspace'),(11559,815,'_content_block_2_space_between','field_5bd77b88b7fb5'),(11560,815,'content_block_3_left_button_column','0'),(11561,815,'_content_block_3_left_button_column','field_5bd78c465387d'),(11562,815,'content_block_3_right_button_column','0'),(11563,815,'_content_block_3_right_button_column','field_5bd78c465387e'),(11564,815,'content_block_0_layout_title',''),(11565,815,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(11566,815,'content_block_0_custom_css_class',''),(11567,815,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(11568,815,'content_block_1_layout_title',''),(11569,815,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(11570,815,'content_block_1_custom_css_class',''),(11571,815,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(11572,815,'content_block_2_layout_title',''),(11573,815,'_content_block_2_layout_title','field_5bc11ca9a0d50-j'),(11574,815,'content_block_4_layout_title','Subscribe'),(11575,815,'_content_block_4_layout_title','field_5bc11ca9a0d50-s'),(11576,815,'content_block_4_custom_css_class','subscribe-columns'),(11577,815,'_content_block_4_custom_css_class','field_5bbe30b1a4de2-1'),(11578,815,'content_block_0_banner_image_description',''),(11579,815,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(11580,815,'content_block_3_content_below_images','0'),(11581,815,'_content_block_3_content_below_images','field_5bbe44a5ae587a'),(11582,815,'content_block_3_left_column_image_description_text',''),(11583,815,'_content_block_3_left_column_image_description_text','field_5bbe443dae584ab'),(11584,815,'content_block_3_right_column_image_description_text',''),(11585,815,'_content_block_3_right_column_image_description_text','field_5bbe443dae584ac'),(11586,816,'content_block','a:5:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:7:\"recipes\";i:3;s:18:\"two_column_feature\";i:4;s:10:\"text_block\";}'),(11587,816,'_content_block','field_5bbe19a7efa09'),(11588,816,'content_block_0_banner_full_width','1'),(11589,816,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(11590,816,'content_block_0_banner_size','short'),(11591,816,'_content_block_0_banner_size','field_5bbe232929ec9'),(11592,816,'content_block_0_add_parallax_effect','0'),(11593,816,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(11594,816,'content_block_0_add_veil_over_banner','0'),(11595,816,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(11596,816,'content_block_0_banner_content_position','centered'),(11597,816,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(11598,816,'content_block_0_banner_title','Recipes'),(11599,816,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(11600,816,'content_block_0_banner_subtitle','Try the best food pairings.'),(11601,816,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(11602,816,'content_block_0_banner_button_link',''),(11603,816,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(11604,816,'content_block_0_banner_button_new_tab','0'),(11605,816,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(11606,816,'content_block_0_show_down_arrow','1'),(11607,816,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(11608,816,'content_block_0_banner_image','549'),(11609,816,'_content_block_0_banner_image','field_5bbe201718faf'),(11610,816,'content_block_0_banner_image_position','center center'),(11611,816,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(11612,816,'content_block_0_banner_image_mobile','550'),(11613,816,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(11614,816,'content_block_0_banner_image_mobile_position','center center'),(11615,816,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(11616,816,'content_block_1_text_block_columns','one'),(11617,816,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(11618,816,'content_block_1_narrow_text_block_content','0'),(11619,816,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(11620,816,'content_block_1_reverse_colors','0'),(11621,816,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(11622,816,'content_block_1_enable_background_image','0'),(11623,816,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(11624,816,'content_block_1_text_block_content_col_one','<h2 style=\"text-align: center;\">Our Recipes</h2>\r\n<blockquote style=\"text-align: center;\">I try to create wines that suit our climate and our way of life - wines to drink with the food we grow, make and eat.</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">Spectra winery was realised to focus on our passion for the region and its ability to produce dry - grown and environmentally sustainable wine. Recently a new home was established on our holistic philosophy to winemaking which starts with climate, empahasises the importance on the vineyard, as well as wine\'s relation to the food we love to grow, cook, and eat.</p>'),(11625,816,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(11626,816,'content_block_2_recipes_layout','restricted'),(11627,816,'_content_block_2_recipes_layout','field_5bc51424b723f'),(11628,816,'content_block_2_recipes_have_veil','0'),(11629,816,'_content_block_2_recipes_have_veil','field_5bc5145db7240'),(11630,816,'content_block_2_hide_certain_categories',''),(11631,816,'_content_block_2_hide_certain_categories','field_5bc51a51d17ed'),(11632,816,'content_block_3_gap_between_columns','1'),(11633,816,'_content_block_3_gap_between_columns','field_5bbe44a5ae587'),(11634,816,'content_block_3_full_width_columns','0'),(11635,816,'_content_block_3_full_width_columns','field_5bbe44c7ae588'),(11636,816,'content_block_3_veil_over_images','0'),(11637,816,'_content_block_3_veil_over_images','field_5bbe4f8f88a8a'),(11638,816,'content_block_3_left_column_background_image','437'),(11639,816,'_content_block_3_left_column_background_image','field_5bbe4452ae585'),(11640,816,'content_block_3_left_column_content','<h3>Club Member Event</h3>\r\nCome pick up your shipment and enjoy.'),(11641,816,'_content_block_3_left_column_content','field_5bbe4414ae582'),(11642,816,'content_block_3_left_whole_column_clickable','1'),(11643,816,'_content_block_3_left_whole_column_clickable','field_5bbe44f3ae589'),(11644,816,'content_block_3_left_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(11645,816,'_content_block_3_left_column_button_link','field_5bbe442fae583'),(11646,816,'content_block_3_left_column_button_text','Learn More'),(11647,816,'_content_block_3_left_column_button_text','field_5bbe443dae584'),(11648,816,'content_block_3_right_column_background_image','438'),(11649,816,'_content_block_3_right_column_background_image','field_5bbe4547ae58b'),(11650,816,'content_block_3_right_column_content','<h3>Top Pick</h3>\r\nGold Medal winner for 2015!'),(11651,816,'_content_block_3_right_column_content','field_5bbe4550ae58c'),(11652,816,'content_block_3_right_whole_column_clickable','1'),(11653,816,'_content_block_3_right_whole_column_clickable','field_5bbe455aae58d'),(11654,816,'content_block_3_right_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(11655,816,'_content_block_3_right_column_button_link','field_5bbe456bae58e'),(11656,816,'content_block_3_right_column_button_text','Learn More'),(11657,816,'_content_block_3_right_column_button_text','field_5bbe4577ae58f'),(11658,816,'content_block_4_text_block_columns','two'),(11659,816,'_content_block_4_text_block_columns','field_5bbe2f81a4de0'),(11660,816,'content_block_4_narrow_text_block_content','0'),(11661,816,'_content_block_4_narrow_text_block_content','field_5bbe342e08360'),(11662,816,'content_block_4_reverse_colors','1'),(11663,816,'_content_block_4_reverse_colors','field_5bbe3027a4de1'),(11664,816,'content_block_4_enable_background_image','0'),(11665,816,'_content_block_4_enable_background_image','field_5bbe30b1a4de2'),(11666,816,'content_block_4_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(11667,816,'_content_block_4_text_block_content_col_one','field_5bbe313b3920d'),(11668,816,'content_block_4_text_block_content_col_two','[c7-subscribe-with-name]'),(11669,816,'_content_block_4_text_block_content_col_two','field_5bbe31593920e'),(11670,816,'content_block_2_space_between','withspace'),(11671,816,'_content_block_2_space_between','field_5bd77b88b7fb5'),(11672,816,'content_block_3_left_button_column','0'),(11673,816,'_content_block_3_left_button_column','field_5bd78c465387d'),(11674,816,'content_block_3_right_button_column','0'),(11675,816,'_content_block_3_right_button_column','field_5bd78c465387e'),(11676,816,'content_block_0_layout_title',''),(11677,816,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(11678,816,'content_block_0_custom_css_class',''),(11679,816,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(11680,816,'content_block_1_layout_title',''),(11681,816,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(11682,816,'content_block_1_custom_css_class',''),(11683,816,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(11684,816,'content_block_2_layout_title',''),(11685,816,'_content_block_2_layout_title','field_5bc11ca9a0d50-j'),(11686,816,'content_block_4_layout_title','Subscribe'),(11687,816,'_content_block_4_layout_title','field_5bc11ca9a0d50-s'),(11688,816,'content_block_4_custom_css_class','subscribe-columns'),(11689,816,'_content_block_4_custom_css_class','field_5bbe30b1a4de2-1'),(11690,816,'content_block_0_banner_image_description',''),(11691,816,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(11692,816,'content_block_3_content_below_images','0'),(11693,816,'_content_block_3_content_below_images','field_5bbe44a5ae587a'),(11694,816,'content_block_3_left_column_image_description_text',''),(11695,816,'_content_block_3_left_column_image_description_text','field_5bbe443dae584ab'),(11696,816,'content_block_3_right_column_image_description_text',''),(11697,816,'_content_block_3_right_column_image_description_text','field_5bbe443dae584ac'),(11735,824,'content_block','a:5:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:18:\"two_column_feature\";i:3;s:18:\"two_column_feature\";i:4;s:10:\"text_block\";}'),(11736,824,'_content_block','field_5bbe19a7efa09'),(11737,824,'content_block_0_banner_full_width','1'),(11738,824,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(11739,824,'content_block_0_banner_size','normal'),(11740,824,'_content_block_0_banner_size','field_5bbe232929ec9'),(11741,824,'content_block_0_add_parallax_effect','0'),(11742,824,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(11743,824,'content_block_0_add_veil_over_banner','0'),(11744,824,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(11745,824,'content_block_0_banner_content_position','centered'),(11746,824,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(11747,824,'content_block_0_banner_title',''),(11748,824,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(11749,824,'content_block_0_banner_subtitle',''),(11750,824,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(11751,824,'content_block_0_banner_button_link',''),(11752,824,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(11753,824,'content_block_0_banner_button_new_tab','0'),(11754,824,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(11755,824,'content_block_0_show_down_arrow','1'),(11756,824,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(11757,824,'content_block_0_banner_image','514'),(11758,824,'_content_block_0_banner_image','field_5bbe201718faf'),(11759,824,'content_block_0_banner_image_position','center center'),(11760,824,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(11761,824,'content_block_0_banner_image_mobile','513'),(11762,824,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(11763,824,'content_block_0_banner_image_mobile_position','center center'),(11764,824,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(11765,824,'content_block_1_text_block_columns','one'),(11766,824,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(11767,824,'content_block_1_narrow_text_block_content','0'),(11768,824,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(11769,824,'content_block_1_reverse_colors','0'),(11770,824,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(11771,824,'content_block_1_enable_background_image','0'),(11772,824,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(11773,824,'content_block_1_text_block_content_col_one','<h2 style=\"text-align: center;\">About Us!</h2>\r\n<blockquote style=\"text-align: center;\">I try to create wines that suit our climate and our way of life - wines to drink with the food we grow, make and eat.</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">Spectra winery was realised to focus on our passion for the region and its ability to produce dry - grown and environmentally sustainable wine. Recently a new home was established on our holistic philosophy to winemaking which starts with climate, empahasises the importance on the vineyard, as well as wine\'s relation to the food we love to grow, cook, and eat.</p>'),(11774,824,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(11775,824,'content_block_2_gap_between_columns','1'),(11776,824,'_content_block_2_gap_between_columns','field_5bbe44a5ae587'),(11777,824,'content_block_2_full_width_columns','0'),(11778,824,'_content_block_2_full_width_columns','field_5bbe44c7ae588'),(11779,824,'content_block_2_veil_over_images','0'),(11780,824,'_content_block_2_veil_over_images','field_5bbe4f8f88a8a'),(11781,824,'content_block_2_left_column_background_image','515'),(11782,824,'_content_block_2_left_column_background_image','field_5bbe4452ae585'),(11783,824,'content_block_2_left_column_content','<h3>Our Vineyards</h3>'),(11784,824,'_content_block_2_left_column_content','field_5bbe4414ae582'),(11785,824,'content_block_2_left_whole_column_clickable','1'),(11786,824,'_content_block_2_left_whole_column_clickable','field_5bbe44f3ae589'),(11787,824,'content_block_2_left_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:56:\"https://www.meadowcroftwines.com/about-us/our-vineyards/\";s:6:\"target\";s:0:\"\";}'),(11788,824,'_content_block_2_left_column_button_link','field_5bbe442fae583'),(11789,824,'content_block_2_left_column_button_text','Learn More'),(11790,824,'_content_block_2_left_column_button_text','field_5bbe443dae584'),(11791,824,'content_block_2_right_column_background_image','524'),(11792,824,'_content_block_2_right_column_background_image','field_5bbe4547ae58b'),(11793,824,'content_block_2_right_column_content','<h3>Our Team</h3>'),(11794,824,'_content_block_2_right_column_content','field_5bbe4550ae58c'),(11795,824,'content_block_2_right_whole_column_clickable','1'),(11796,824,'_content_block_2_right_whole_column_clickable','field_5bbe455aae58d'),(11797,824,'content_block_2_right_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:51:\"https://www.meadowcroftwines.com/about-us/our-team/\";s:6:\"target\";s:0:\"\";}'),(11798,824,'_content_block_2_right_column_button_link','field_5bbe456bae58e'),(11799,824,'content_block_2_right_column_button_text','Meet Our Team'),(11800,824,'_content_block_2_right_column_button_text','field_5bbe4577ae58f'),(11801,824,'content_block_3_gap_between_columns','1'),(11802,824,'_content_block_3_gap_between_columns','field_5bbe44a5ae587'),(11803,824,'content_block_3_full_width_columns','0'),(11804,824,'_content_block_3_full_width_columns','field_5bbe44c7ae588'),(11805,824,'content_block_3_veil_over_images','0'),(11806,824,'_content_block_3_veil_over_images','field_5bbe4f8f88a8a'),(11807,824,'content_block_3_left_column_background_image','525'),(11808,824,'_content_block_3_left_column_background_image','field_5bbe4452ae585'),(11809,824,'content_block_3_left_column_content','<h3>Our History</h3>'),(11810,824,'_content_block_3_left_column_content','field_5bbe4414ae582'),(11811,824,'content_block_3_left_whole_column_clickable','1'),(11812,824,'_content_block_3_left_whole_column_clickable','field_5bbe44f3ae589'),(11813,824,'content_block_3_left_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:54:\"https://www.meadowcroftwines.com/about-us/our-history/\";s:6:\"target\";s:0:\"\";}'),(11814,824,'_content_block_3_left_column_button_link','field_5bbe442fae583'),(11815,824,'content_block_3_left_column_button_text','Learn More'),(11816,824,'_content_block_3_left_column_button_text','field_5bbe443dae584'),(11817,824,'content_block_3_right_column_background_image','526'),(11818,824,'_content_block_3_right_column_background_image','field_5bbe4547ae58b'),(11819,824,'content_block_3_right_column_content','<h3>Our Recipes</h3>'),(11820,824,'_content_block_3_right_column_content','field_5bbe4550ae58c'),(11821,824,'content_block_3_right_whole_column_clickable','1'),(11822,824,'_content_block_3_right_whole_column_clickable','field_5bbe455aae58d'),(11823,824,'content_block_3_right_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:54:\"https://www.meadowcroftwines.com/about-us/our-recipes/\";s:6:\"target\";s:0:\"\";}'),(11824,824,'_content_block_3_right_column_button_link','field_5bbe456bae58e'),(11825,824,'content_block_3_right_column_button_text','View Our Recipes'),(11826,824,'_content_block_3_right_column_button_text','field_5bbe4577ae58f'),(11827,824,'content_block_4_text_block_columns','two'),(11828,824,'_content_block_4_text_block_columns','field_5bbe2f81a4de0'),(11829,824,'content_block_4_narrow_text_block_content','0'),(11830,824,'_content_block_4_narrow_text_block_content','field_5bbe342e08360'),(11831,824,'content_block_4_reverse_colors','1'),(11832,824,'_content_block_4_reverse_colors','field_5bbe3027a4de1'),(11833,824,'content_block_4_enable_background_image','0'),(11834,824,'_content_block_4_enable_background_image','field_5bbe30b1a4de2'),(11835,824,'content_block_4_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(11836,824,'_content_block_4_text_block_content_col_one','field_5bbe313b3920d'),(11837,824,'content_block_4_text_block_content_col_two','[c7-subscribe-with-name]'),(11838,824,'_content_block_4_text_block_content_col_two','field_5bbe31593920e'),(11839,824,'content_block_2_left_button_column','1'),(11840,824,'_content_block_2_left_button_column','field_5bd78c465387d'),(11841,824,'content_block_2_right_button_column','1'),(11842,824,'_content_block_2_right_button_column','field_5bd78c465387e'),(11843,824,'content_block_3_left_button_column','1'),(11844,824,'_content_block_3_left_button_column','field_5bd78c465387d'),(11845,824,'content_block_3_right_button_column','1'),(11846,824,'_content_block_3_right_button_column','field_5bd78c465387e'),(11847,824,'content_block_0_custom_css_class',''),(11848,824,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(11849,824,'content_block_1_custom_css_class',''),(11850,824,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(11851,824,'content_block_4_custom_css_class','subscribe-columns'),(11852,824,'_content_block_4_custom_css_class','field_5bbe30b1a4de2-1'),(11853,824,'content_block_0_layout_title',''),(11854,824,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(11855,824,'content_block_1_layout_title',''),(11856,824,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(11857,824,'content_block_4_layout_title','Subscribe'),(11858,824,'_content_block_4_layout_title','field_5bc11ca9a0d50-s'),(11859,824,'content_block_0_banner_image_description',''),(11860,824,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(11861,824,'content_block_2_content_below_images','0'),(11862,824,'_content_block_2_content_below_images','field_5bbe44a5ae587a'),(11863,824,'content_block_2_left_column_image_description_text',''),(11864,824,'_content_block_2_left_column_image_description_text','field_5bbe443dae584ab'),(11865,824,'content_block_2_left_column_button_description_text',''),(11866,824,'_content_block_2_left_column_button_description_text','field_5bbe443dae584a'),(11867,824,'content_block_2_right_column_image_description_text',''),(11868,824,'_content_block_2_right_column_image_description_text','field_5bbe443dae584ac'),(11869,824,'content_block_2_right_column_button_description_text',''),(11870,824,'_content_block_2_right_column_button_description_text','field_5bbe443dae584b'),(11871,824,'content_block_3_content_below_images','0'),(11872,824,'_content_block_3_content_below_images','field_5bbe44a5ae587a'),(11873,824,'content_block_3_left_column_image_description_text',''),(11874,824,'_content_block_3_left_column_image_description_text','field_5bbe443dae584ab'),(11875,824,'content_block_3_left_column_button_description_text',''),(11876,824,'_content_block_3_left_column_button_description_text','field_5bbe443dae584a'),(11877,824,'content_block_3_right_column_image_description_text',''),(11878,824,'_content_block_3_right_column_image_description_text','field_5bbe443dae584ac'),(11879,824,'content_block_3_right_column_button_description_text',''),(11880,824,'_content_block_3_right_column_button_description_text','field_5bbe443dae584b'),(11886,829,'content_block','a:6:{i:0;s:6:\"banner\";i:1;s:20:\"three_column_feature\";i:2;s:10:\"text_block\";i:3;s:18:\"product_collection\";i:4;s:18:\"two_column_feature\";i:5;s:10:\"text_block\";}'),(11887,829,'_content_block','field_5bbe19a7efa09'),(11888,829,'content_block_0_banner_full_width','1'),(11889,829,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(11890,829,'content_block_0_banner_size','long'),(11891,829,'_content_block_0_banner_size','field_5bbe232929ec9'),(11892,829,'content_block_0_add_parallax_effect','0'),(11893,829,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(11894,829,'content_block_0_add_veil_over_banner','0'),(11895,829,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(11896,829,'content_block_0_banner_content_position','centered'),(11897,829,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(11898,829,'content_block_0_banner_title','Welcome to Spectra Winery'),(11899,829,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(11900,829,'content_block_0_banner_subtitle','CRAFTING AN EXCEPTIONAL WINE EXPERIENCE!'),(11901,829,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(11902,829,'content_block_0_banner_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:24:\"/wines/current-releases/\";s:6:\"target\";s:0:\"\";}'),(11903,829,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(11904,829,'content_block_0_banner_button_text','Current Releases'),(11905,829,'_content_block_0_banner_button_text','field_5bbe1ba0efa0e'),(11906,829,'content_block_0_banner_button_new_tab','0'),(11907,829,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(11908,829,'content_block_0_show_down_arrow','1'),(11909,829,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(11910,829,'content_block_0_banner_image','432'),(11911,829,'_content_block_0_banner_image','field_5bbe201718faf'),(11912,829,'content_block_0_banner_image_position','center center'),(11913,829,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(11914,829,'content_block_0_banner_image_mobile','433'),(11915,829,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(11916,829,'content_block_0_banner_image_mobile_position','center center'),(11917,829,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(11918,829,'content_block_1_gap_between_columns','0'),(11919,829,'_content_block_1_gap_between_columns','field_5bbe5a0e54759'),(11920,829,'content_block_1_full_width_columns','1'),(11921,829,'_content_block_1_full_width_columns','field_5bbe5a0e5475a'),(11922,829,'content_block_1_veil_over_images','0'),(11923,829,'_content_block_1_veil_over_images','field_5bbe5a0e5475b'),(11924,829,'content_block_1_first_column_background_image','434'),(11925,829,'_content_block_1_first_column_background_image','field_5bbe5a0e5475d'),(11926,829,'content_block_1_first_column_content','<h3>Shop Wine</h3>\r\nReview our current wine release.'),(11927,829,'_content_block_1_first_column_content','field_5bbe5a0e5475e'),(11928,829,'content_block_1_first_whole_column_clickable','1'),(11929,829,'_content_block_1_first_whole_column_clickable','field_5bbe5a0e5475f'),(11930,829,'content_block_1_first_column_button_url','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:23:\"/wines/current-releases\";s:6:\"target\";s:0:\"\";}'),(11931,829,'_content_block_1_first_column_button_url','field_5bbe5a0e54760'),(11932,829,'content_block_1_first_column_button_text','VIEW RELEASES'),(11933,829,'_content_block_1_first_column_button_text','field_5bbe5a0e54761'),(11934,829,'content_block_1_second_column_background_image','435'),(11935,829,'_content_block_1_second_column_background_image','field_5bbe5a0e54763'),(11936,829,'content_block_1_second_column_content','<h3>Experiences</h3>\r\nCome and experience our wines.'),(11937,829,'_content_block_1_second_column_content','field_5bbe5a0e54764'),(11938,829,'content_block_1_second_whole_column_clickable','1'),(11939,829,'_content_block_1_second_whole_column_clickable','field_5bbe5a0e54765'),(11940,829,'content_block_1_second_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:7:\"/visit/\";s:6:\"target\";s:0:\"\";}'),(11941,829,'_content_block_1_second_column_button_link','field_5bbe5a0e54766'),(11942,829,'content_block_1_second_column_button_text','BOOK TASTING'),(11943,829,'_content_block_1_second_column_button_text','field_5bbe5a0e54767'),(11944,829,'content_block_1_third_column_background_image','436'),(11945,829,'_content_block_1_third_column_background_image','field_5bbe5aa254769'),(11946,829,'content_block_1_third_column_content','<h3>Membership</h3>\r\nGreat wine, great benefits!'),(11947,829,'_content_block_1_third_column_content','field_5bbe5aae5476a'),(11948,829,'content_block_1_third_whole_column_clickable','1'),(11949,829,'_content_block_1_third_whole_column_clickable','field_5bbe5ae25476e'),(11950,829,'content_block_1_third_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:6:\"/club/\";s:6:\"target\";s:0:\"\";}'),(11951,829,'_content_block_1_third_column_button_link','field_5bbe5ac15476c'),(11952,829,'content_block_1_third_column_button_text','LEARN MORE'),(11953,829,'_content_block_1_third_column_button_text','field_5bbe5aca5476d'),(11954,829,'content_block_2_text_block_columns','one'),(11955,829,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(11956,829,'content_block_2_narrow_text_block_content','0'),(11957,829,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(11958,829,'content_block_2_reverse_colors','0'),(11959,829,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(11960,829,'content_block_2_enable_background_image','0'),(11961,829,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(11962,829,'content_block_2_text_block_content_col_one','<h2 style=\"text-align: center;\">The New Release</h2>\r\n<blockquote>I try to create wines that suit our climate and our way of life - wines to drink with the food we grow, make and eat.</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">Spectra winery was realised to focus on our passion for the region and its ability to produce dry - grown and environmentally sustainable wine. Recently a new home was established on our holistic philosophy to winemaking which starts with climate, empahasises the importance on the vineyard, as well as wine\'s relation to the food we love to grow, cook, and eat.</p>'),(11963,829,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(11964,829,'content_block_1_first_button_column','0'),(11965,829,'_content_block_1_first_button_column','field_5bd78c465387a'),(11966,829,'content_block_1_second_button_column','0'),(11967,829,'_content_block_1_second_button_column','field_5bd78c465387b'),(11968,829,'content_block_1_third_button_column','0'),(11969,829,'_content_block_1_third_button_column','field_5bd78c465387c'),(11970,829,'content_block_2_custom_css_class',''),(11971,829,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(11972,829,'content_block_0_layout_title',''),(11973,829,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(11974,829,'content_block_0_custom_css_class',''),(11975,829,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(11976,829,'content_block_1_layout_title',''),(11977,829,'_content_block_1_layout_title','field_5bc11ca9a0d50-q'),(11978,829,'content_block_2_layout_title',''),(11979,829,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(11980,829,'content_block_0_banner_button_link_description',''),(11981,829,'_content_block_0_banner_button_link_description','field_5bbf30b1a4de2-1b'),(11982,829,'content_block_0_banner_image_description',''),(11983,829,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(11984,829,'content_block_3_layout_title','Homepage Products'),(11985,829,'_content_block_3_layout_title','field_5bc11ca9a0d50-v'),(11986,829,'content_block_3_product_row_number','3up'),(11987,829,'_content_block_3_product_row_number','field_5bc11c6da0d4f'),(11988,829,'content_block_3_data_collection_slug','home'),(11989,829,'_content_block_3_data_collection_slug','field_5bc11ca9a0d50'),(11990,829,'content_block_3_manually_enter_collection_slug','0'),(11991,829,'_content_block_3_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(11992,829,'content_block_3_product_display_feature','0'),(11993,829,'_content_block_3_product_display_feature','field_5d1144d5e6922'),(11994,829,'content_block_3_product_display_teaser','0'),(11995,829,'_content_block_3_product_display_teaser','field_5d114505e6923'),(11996,829,'content_block_4_gap_between_columns','1'),(11997,829,'_content_block_4_gap_between_columns','field_5bbe44a5ae587'),(11998,829,'content_block_4_content_below_images','0'),(11999,829,'_content_block_4_content_below_images','field_5bbe44a5ae587a'),(12000,829,'content_block_4_full_width_columns','0'),(12001,829,'_content_block_4_full_width_columns','field_5bbe44c7ae588'),(12002,829,'content_block_4_veil_over_images','1'),(12003,829,'_content_block_4_veil_over_images','field_5bbe4f8f88a8a'),(12004,829,'content_block_4_left_column_background_image','437'),(12005,829,'_content_block_4_left_column_background_image','field_5bbe4452ae585'),(12006,829,'content_block_4_left_column_image_description_text','People laughing'),(12007,829,'_content_block_4_left_column_image_description_text','field_5bbe443dae584ab'),(12008,829,'content_block_4_left_column_content','<h3>Club Member Event</h3>\r\nCome pick up your shipment and enjoy.'),(12009,829,'_content_block_4_left_column_content','field_5bbe4414ae582'),(12010,829,'content_block_4_left_button_column','1'),(12011,829,'_content_block_4_left_button_column','field_5bd78c465387d'),(12012,829,'content_block_4_left_whole_column_clickable','1'),(12013,829,'_content_block_4_left_whole_column_clickable','field_5bbe44f3ae589'),(12014,829,'content_block_4_left_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:7:\"/clubs/\";s:6:\"target\";s:0:\"\";}'),(12015,829,'_content_block_4_left_column_button_link','field_5bbe442fae583'),(12016,829,'content_block_4_left_column_button_text','LEARN MORE'),(12017,829,'_content_block_4_left_column_button_text','field_5bbe443dae584'),(12018,829,'content_block_4_left_column_button_description_text',''),(12019,829,'_content_block_4_left_column_button_description_text','field_5bbe443dae584a'),(12020,829,'content_block_4_right_column_background_image','438'),(12021,829,'_content_block_4_right_column_background_image','field_5bbe4547ae58b'),(12022,829,'content_block_4_right_column_image_description_text','3 wine classes'),(12023,829,'_content_block_4_right_column_image_description_text','field_5bbe443dae584ac'),(12024,829,'content_block_4_right_column_content','<h3>Top Pick</h3>\r\nGold Medal winner for 2015!'),(12025,829,'_content_block_4_right_column_content','field_5bbe4550ae58c'),(12026,829,'content_block_4_right_button_column','1'),(12027,829,'_content_block_4_right_button_column','field_5bd78c465387e'),(12028,829,'content_block_4_right_whole_column_clickable','1'),(12029,829,'_content_block_4_right_whole_column_clickable','field_5bbe455aae58d'),(12030,829,'content_block_4_right_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:24:\"/wines/current-releases/\";s:6:\"target\";s:0:\"\";}'),(12031,829,'_content_block_4_right_column_button_link','field_5bbe456bae58e'),(12032,829,'content_block_4_right_column_button_text','LEARN MORE'),(12033,829,'_content_block_4_right_column_button_text','field_5bbe4577ae58f'),(12034,829,'content_block_4_right_column_button_description_text',''),(12035,829,'_content_block_4_right_column_button_description_text','field_5bbe443dae584b'),(12036,829,'content_block_5_layout_title','Subscribe'),(12037,829,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(12038,829,'content_block_5_text_block_columns','two'),(12039,829,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(12040,829,'content_block_5_narrow_text_block_content','0'),(12041,829,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(12042,829,'content_block_5_reverse_colors','1'),(12043,829,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(12044,829,'content_block_5_enable_background_image','0'),(12045,829,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(12046,829,'content_block_5_custom_css_class','subscribe-columns'),(12047,829,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(12048,829,'content_block_5_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(12049,829,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(12050,829,'content_block_5_text_block_content_col_two','[c7-subscribe-with-name]'),(12051,829,'_content_block_5_text_block_content_col_two','field_5bbe31593920e'),(12052,830,'content_block','a:5:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:18:\"two_column_feature\";i:3;s:18:\"two_column_feature\";i:4;s:10:\"text_block\";}'),(12053,830,'_content_block','field_5bbe19a7efa09'),(12054,830,'content_block_0_banner_full_width','1'),(12055,830,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(12056,830,'content_block_0_banner_size','normal'),(12057,830,'_content_block_0_banner_size','field_5bbe232929ec9'),(12058,830,'content_block_0_add_parallax_effect','0'),(12059,830,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(12060,830,'content_block_0_add_veil_over_banner','0'),(12061,830,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(12062,830,'content_block_0_banner_content_position','centered'),(12063,830,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(12064,830,'content_block_0_banner_title',''),(12065,830,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(12066,830,'content_block_0_banner_subtitle',''),(12067,830,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(12068,830,'content_block_0_banner_button_link',''),(12069,830,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(12070,830,'content_block_0_banner_button_new_tab','0'),(12071,830,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(12072,830,'content_block_0_show_down_arrow','1'),(12073,830,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(12074,830,'content_block_0_banner_image','514'),(12075,830,'_content_block_0_banner_image','field_5bbe201718faf'),(12076,830,'content_block_0_banner_image_position','center center'),(12077,830,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(12078,830,'content_block_0_banner_image_mobile','513'),(12079,830,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(12080,830,'content_block_0_banner_image_mobile_position','center center'),(12081,830,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(12082,830,'content_block_1_text_block_columns','one'),(12083,830,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(12084,830,'content_block_1_narrow_text_block_content','0'),(12085,830,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(12086,830,'content_block_1_reverse_colors','0'),(12087,830,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(12088,830,'content_block_1_enable_background_image','0'),(12089,830,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(12090,830,'content_block_1_text_block_content_col_one','<h2 style=\"text-align: center;\">About Us</h2>\r\n<blockquote style=\"text-align: center;\">I try to create wines that suit our climate and our way of life - wines to drink with the food we grow, make and eat.</blockquote>\r\n<cite> - Spectra</cite>\r\n<p style=\"text-align: center;\">Spectra winery was realised to focus on our passion for the region and its ability to produce dry - grown and environmentally sustainable wine. Recently a new home was established on our holistic philosophy to winemaking which starts with climate, empahasises the importance on the vineyard, as well as wine\'s relation to the food we love to grow, cook, and eat.</p>'),(12091,830,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(12092,830,'content_block_2_gap_between_columns','1'),(12093,830,'_content_block_2_gap_between_columns','field_5bbe44a5ae587'),(12094,830,'content_block_2_full_width_columns','0'),(12095,830,'_content_block_2_full_width_columns','field_5bbe44c7ae588'),(12096,830,'content_block_2_veil_over_images','0'),(12097,830,'_content_block_2_veil_over_images','field_5bbe4f8f88a8a'),(12098,830,'content_block_2_left_column_background_image','515'),(12099,830,'_content_block_2_left_column_background_image','field_5bbe4452ae585'),(12100,830,'content_block_2_left_column_content','<h3>Our Vineyards</h3>'),(12101,830,'_content_block_2_left_column_content','field_5bbe4414ae582'),(12102,830,'content_block_2_left_whole_column_clickable','1'),(12103,830,'_content_block_2_left_whole_column_clickable','field_5bbe44f3ae589'),(12104,830,'content_block_2_left_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:56:\"https://www.meadowcroftwines.com/about-us/our-vineyards/\";s:6:\"target\";s:0:\"\";}'),(12105,830,'_content_block_2_left_column_button_link','field_5bbe442fae583'),(12106,830,'content_block_2_left_column_button_text','Learn More'),(12107,830,'_content_block_2_left_column_button_text','field_5bbe443dae584'),(12108,830,'content_block_2_right_column_background_image','524'),(12109,830,'_content_block_2_right_column_background_image','field_5bbe4547ae58b'),(12110,830,'content_block_2_right_column_content','<h3>Our Team</h3>'),(12111,830,'_content_block_2_right_column_content','field_5bbe4550ae58c'),(12112,830,'content_block_2_right_whole_column_clickable','1'),(12113,830,'_content_block_2_right_whole_column_clickable','field_5bbe455aae58d'),(12114,830,'content_block_2_right_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:51:\"https://www.meadowcroftwines.com/about-us/our-team/\";s:6:\"target\";s:0:\"\";}'),(12115,830,'_content_block_2_right_column_button_link','field_5bbe456bae58e'),(12116,830,'content_block_2_right_column_button_text','Meet Our Team'),(12117,830,'_content_block_2_right_column_button_text','field_5bbe4577ae58f'),(12118,830,'content_block_3_gap_between_columns','1'),(12119,830,'_content_block_3_gap_between_columns','field_5bbe44a5ae587'),(12120,830,'content_block_3_full_width_columns','0'),(12121,830,'_content_block_3_full_width_columns','field_5bbe44c7ae588'),(12122,830,'content_block_3_veil_over_images','0'),(12123,830,'_content_block_3_veil_over_images','field_5bbe4f8f88a8a'),(12124,830,'content_block_3_left_column_background_image','525'),(12125,830,'_content_block_3_left_column_background_image','field_5bbe4452ae585'),(12126,830,'content_block_3_left_column_content','<h3>Our History</h3>'),(12127,830,'_content_block_3_left_column_content','field_5bbe4414ae582'),(12128,830,'content_block_3_left_whole_column_clickable','1'),(12129,830,'_content_block_3_left_whole_column_clickable','field_5bbe44f3ae589'),(12130,830,'content_block_3_left_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:54:\"https://www.meadowcroftwines.com/about-us/our-history/\";s:6:\"target\";s:0:\"\";}'),(12131,830,'_content_block_3_left_column_button_link','field_5bbe442fae583'),(12132,830,'content_block_3_left_column_button_text','Learn More'),(12133,830,'_content_block_3_left_column_button_text','field_5bbe443dae584'),(12134,830,'content_block_3_right_column_background_image','526'),(12135,830,'_content_block_3_right_column_background_image','field_5bbe4547ae58b'),(12136,830,'content_block_3_right_column_content','<h3>Our Recipes</h3>'),(12137,830,'_content_block_3_right_column_content','field_5bbe4550ae58c'),(12138,830,'content_block_3_right_whole_column_clickable','1'),(12139,830,'_content_block_3_right_whole_column_clickable','field_5bbe455aae58d'),(12140,830,'content_block_3_right_column_button_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:54:\"https://www.meadowcroftwines.com/about-us/our-recipes/\";s:6:\"target\";s:0:\"\";}'),(12141,830,'_content_block_3_right_column_button_link','field_5bbe456bae58e'),(12142,830,'content_block_3_right_column_button_text','View Our Recipes'),(12143,830,'_content_block_3_right_column_button_text','field_5bbe4577ae58f'),(12144,830,'content_block_4_text_block_columns','two'),(12145,830,'_content_block_4_text_block_columns','field_5bbe2f81a4de0'),(12146,830,'content_block_4_narrow_text_block_content','0'),(12147,830,'_content_block_4_narrow_text_block_content','field_5bbe342e08360'),(12148,830,'content_block_4_reverse_colors','1'),(12149,830,'_content_block_4_reverse_colors','field_5bbe3027a4de1'),(12150,830,'content_block_4_enable_background_image','0'),(12151,830,'_content_block_4_enable_background_image','field_5bbe30b1a4de2'),(12152,830,'content_block_4_text_block_content_col_one','&nbsp;\r\n<h3>Stay in touch</h3>\r\nWe have a quarterly newsletter to help everyone stay connected. Sign up and keep up to date on upcoming wine releases and winery events. You don\'t want to miss out!'),(12153,830,'_content_block_4_text_block_content_col_one','field_5bbe313b3920d'),(12154,830,'content_block_4_text_block_content_col_two','[c7-subscribe-with-name]'),(12155,830,'_content_block_4_text_block_content_col_two','field_5bbe31593920e'),(12156,830,'content_block_2_left_button_column','1'),(12157,830,'_content_block_2_left_button_column','field_5bd78c465387d'),(12158,830,'content_block_2_right_button_column','1'),(12159,830,'_content_block_2_right_button_column','field_5bd78c465387e'),(12160,830,'content_block_3_left_button_column','1'),(12161,830,'_content_block_3_left_button_column','field_5bd78c465387d'),(12162,830,'content_block_3_right_button_column','1'),(12163,830,'_content_block_3_right_button_column','field_5bd78c465387e'),(12164,830,'content_block_0_custom_css_class',''),(12165,830,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(12166,830,'content_block_1_custom_css_class',''),(12167,830,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(12168,830,'content_block_4_custom_css_class','subscribe-columns'),(12169,830,'_content_block_4_custom_css_class','field_5bbe30b1a4de2-1'),(12170,830,'content_block_0_layout_title',''),(12171,830,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(12172,830,'content_block_1_layout_title',''),(12173,830,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(12174,830,'content_block_4_layout_title','Subscribe'),(12175,830,'_content_block_4_layout_title','field_5bc11ca9a0d50-s'),(12176,830,'content_block_0_banner_image_description',''),(12177,830,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(12178,830,'content_block_2_content_below_images','0'),(12179,830,'_content_block_2_content_below_images','field_5bbe44a5ae587a'),(12180,830,'content_block_2_left_column_image_description_text',''),(12181,830,'_content_block_2_left_column_image_description_text','field_5bbe443dae584ab'),(12182,830,'content_block_2_left_column_button_description_text',''),(12183,830,'_content_block_2_left_column_button_description_text','field_5bbe443dae584a'),(12184,830,'content_block_2_right_column_image_description_text',''),(12185,830,'_content_block_2_right_column_image_description_text','field_5bbe443dae584ac'),(12186,830,'content_block_2_right_column_button_description_text',''),(12187,830,'_content_block_2_right_column_button_description_text','field_5bbe443dae584b'),(12188,830,'content_block_3_content_below_images','0'),(12189,830,'_content_block_3_content_below_images','field_5bbe44a5ae587a'),(12190,830,'content_block_3_left_column_image_description_text',''),(12191,830,'_content_block_3_left_column_image_description_text','field_5bbe443dae584ab'),(12192,830,'content_block_3_left_column_button_description_text',''),(12193,830,'_content_block_3_left_column_button_description_text','field_5bbe443dae584a'),(12194,830,'content_block_3_right_column_image_description_text',''),(12195,830,'_content_block_3_right_column_image_description_text','field_5bbe443dae584ac'),(12196,830,'content_block_3_right_column_button_description_text',''),(12197,830,'_content_block_3_right_column_button_description_text','field_5bbe443dae584b'),(12226,843,'content_block_0_text_block_columns','one'),(12227,843,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(12228,843,'content_block_0_narrow_text_block_content','0'),(12229,843,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(12230,843,'content_block_0_reverse_colors','0'),(12231,843,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(12232,843,'content_block_0_enable_background_image','0'),(12233,843,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(12234,843,'content_block_0_text_block_content_col_one','[c7_content]'),(12235,843,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(12236,843,'content_block','a:1:{i:0;s:10:\"text_block\";}'),(12237,843,'_content_block','field_5bbe19a7efa09'),(12238,843,'content_block_0_layout_title',''),(12239,843,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(12240,843,'content_block_0_custom_css_class',''),(12241,843,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(12242,567,'_yoast_wpseo_estimated-reading-time-minutes','0'),(12243,567,'content_block_0_layout_title',''),(12244,567,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(12245,844,'content_block_0_text_block_columns','one'),(12246,844,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(12247,844,'content_block_0_narrow_text_block_content','0'),(12248,844,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(12249,844,'content_block_0_reverse_colors','0'),(12250,844,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(12251,844,'content_block_0_enable_background_image','0'),(12252,844,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(12253,844,'content_block_0_text_block_content_col_one','[c7_content]'),(12254,844,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(12255,844,'content_block','a:1:{i:0;s:10:\"text_block\";}'),(12256,844,'_content_block','field_5bbe19a7efa09'),(12257,844,'content_block_0_custom_css_class',''),(12258,844,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(12259,844,'content_block_0_layout_title',''),(12260,844,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(12279,446,'_yoast_wpseo_estimated-reading-time-minutes',''),(12313,412,'_yoast_wpseo_estimated-reading-time-minutes','4'),(12314,412,'_yoast_wpseo_wordproof_timestamp',''),(12357,853,'_wp_attached_file','2022/11/bee.jpg'),(12358,853,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:15:\"2022/11/bee.jpg\";s:8:\"filesize\";i:65885;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"bee-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19446;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"bee-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12055;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12359,853,'_wp_attachment_image_alt','Closeup of gold bee logo on Meadowcroft wine label'),(12360,854,'_wp_attached_file','2022/11/visit.jpg'),(12361,854,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:664;s:4:\"file\";s:17:\"2022/11/visit.jpg\";s:8:\"filesize\";i:137450;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"visit-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21161;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"visit-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11465;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"visit-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85311;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1626430297\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"38\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(12362,854,'_wp_attachment_image_alt','People toasting with wine'),(12363,855,'_wp_attached_file','2022/11/vineyard-work.jpg'),(12364,855,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:25:\"2022/11/vineyard-work.jpg\";s:8:\"filesize\";i:81132;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"vineyard-work-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23712;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"vineyard-work-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11768;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12365,855,'_wp_attachment_image_alt','Workers in vineyard before sunset'),(12372,412,'content_block_2_column_size','equal'),(12373,412,'_content_block_2_column_size','field_columnsize'),(12374,412,'content_block_2_text_block_content_col_two','<img class=\"alignnone wp-image-854 aligncenter\" src=\"/wp-content/uploads/2022/11/visit-300x199.jpg\" alt=\"People toasting with wine\" width=\"380\" height=\"253\" />\r\n<h3 style=\"text-align: center;\">VISIT US</h3>\r\n<p style=\"text-align: center;\">Open Daily until 5:00 p.m\r\n23574 Arnold Drive\r\nSonoma, CA 95476</p>\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"/tasting-room/\">TASTING ROOM INFO</a></p>'),(12375,412,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(12376,412,'content_block_2_text_block_content_col_three','<img class=\"alignnone wp-image-1051 aligncenter\" src=\"/wp-content/uploads/2022/11/club.jpg\" alt=\"Red and white Meadowcroft wines on table\" width=\"380\" height=\"253\" />\r\n<h3 style=\"text-align: center;\">JOIN THE CLUB</h3>\r\n<p style=\"text-align: center;\">Receive only the wines you want when you want them. Customize shipments and delivery frequency. Skip shipments as needed.</p>\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"/wine-club/\">CHECK OUT THE CLUB</a></p>'),(12377,412,'_content_block_2_text_block_content_col_three','field_5bbe31793920f'),(12396,412,'content_block_1_layout_title','3 Columns'),(12397,412,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(12398,412,'content_block_1_text_block_columns','three'),(12399,412,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(12400,412,'content_block_1_column_size','equal'),(12401,412,'_content_block_1_column_size','field_columnsize'),(12402,412,'content_block_1_narrow_text_block_content','0'),(12403,412,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(12404,412,'content_block_1_reverse_colors','0'),(12405,412,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(12406,412,'content_block_1_enable_background_image','0'),(12407,412,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(12408,412,'content_block_1_custom_css_class',''),(12409,412,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(12410,412,'content_block_1_text_block_content_col_one','<img class=\"alignnone wp-image-853 aligncenter\" src=\"/wp-content/uploads/2022/11/bee-300x200.jpg\" alt=\"Closeup of gold bee logo on Meadowcroft wine label\" width=\"380\" height=\"253\" />\r\n<h3 style=\"text-align: center;\">ONLINE STORE</h3>\r\n<p style=\"text-align: center;\">Acquire current release Meadowcroft wines, including Cabernet Sauvignon, Zinfandel, Pinot Noir and Chardonnay</p>\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"/wines/\">GO TO ONLINE STORE</a></p>'),(12411,412,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(12412,412,'content_block_1_text_block_content_col_two','<img class=\"alignnone wp-image-854 aligncenter\" src=\"/wp-content/uploads/2022/11/visit-300x199.jpg\" alt=\"People toasting with wine\" width=\"380\" height=\"253\" />\r\n<h3 style=\"text-align: center;\">VISIT US</h3>\r\n<p style=\"text-align: center;\">Open Daily until 5:00 p.m\r\n23574 Arnold Drive\r\nSonoma, CA 95476</p>\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"/tasting-room/\">TASTING ROOM INFO</a></p>'),(12413,412,'_content_block_1_text_block_content_col_two','field_5bbe31593920e'),(12414,412,'content_block_1_text_block_content_col_three','<img class=\"alignnone wp-image-1051 aligncenter\" src=\"/wp-content/uploads/2022/11/club.jpg\" alt=\"Red and white Meadowcroft wines on table\" width=\"380\" height=\"253\" />\r\n<h3 style=\"text-align: center;\">JOIN THE CLUB</h3>\r\n<p style=\"text-align: center;\">Receive only the wines you want when you want them. Customize shipments and delivery frequency. Skip shipments as needed.</p>\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"/wine-club/\">CHECK OUT THE CLUB</a></p>'),(12415,412,'_content_block_1_text_block_content_col_three','field_5bbe31793920f'),(12452,863,'_wp_attached_file','2022/11/Meadowcroft-Wines-Short-Vineyard-opt.mp4'),(12453,863,'_wp_attachment_metadata','a:10:{s:7:\"bitrate\";i:6787108;s:8:\"filesize\";i:16993405;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:20;s:16:\"length_formatted\";s:4:\"0:20\";s:5:\"width\";i:1800;s:6:\"height\";i:850;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:17:\"created_timestamp\";i:1486683602;}'),(12454,864,'_wp_attached_file','2022/11/harvest.jpg'),(12455,864,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:19:\"2022/11/harvest.jpg\";s:8:\"filesize\";i:1197884;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"harvest-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36133;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"harvest-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:339411;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"harvest-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15923;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"harvest-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:204220;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"harvest-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:637477;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:20:\"harvest-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:435115;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12456,864,'_wp_attachment_image_alt','Vineyard during harvest'),(12457,865,'_wp_attached_file','2022/11/harvest-mobile.jpg'),(12458,865,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:26:\"2022/11/harvest-mobile.jpg\";s:8:\"filesize\";i:732202;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"harvest-mobile-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41190;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"harvest-mobile-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:338747;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"harvest-mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16179;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"harvest-mobile-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:338747;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12459,865,'_wp_attachment_image_alt','Vineyard during harvest'),(12510,866,'_wp_attached_file','2022/11/Top_100_Winner_Gold-1-1.png'),(12511,866,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:612;s:6:\"height\";i:282;s:4:\"file\";s:35:\"2022/11/Top_100_Winner_Gold-1-1.png\";s:8:\"filesize\";i:12675;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Top_100_Winner_Gold-1-1-300x138.png\";s:5:\"width\";i:300;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25504;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Top_100_Winner_Gold-1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26944;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12512,866,'_wp_attachment_image_alt','Top 100 Winery Logo'),(12513,867,'_wp_attached_file','2022/11/footer.jpg'),(12514,867,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:544;s:4:\"file\";s:18:\"2022/11/footer.jpg\";s:8:\"filesize\";i:250439;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"footer-300x82.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:82;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9962;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"footer-1024x279.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:279;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77203;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"footer-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9013;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"footer-768x209.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47753;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:19:\"footer-1536x418.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:418;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149112;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"footer-1200x326.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:326;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100184;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12515,867,'_wp_attachment_image_alt',''),(12587,501,'_yoast_wpseo_estimated-reading-time-minutes','0'),(12588,501,'_yoast_wpseo_wordproof_timestamp',''),(12591,506,'_yoast_wpseo_estimated-reading-time-minutes','1'),(12592,506,'_yoast_wpseo_wordproof_timestamp',''),(12595,504,'_yoast_wpseo_estimated-reading-time-minutes','2'),(12596,504,'_yoast_wpseo_wordproof_timestamp',''),(12610,508,'_yoast_wpseo_estimated-reading-time-minutes','13'),(12611,508,'_yoast_wpseo_wordproof_timestamp',''),(12660,880,'_menu_item_type','post_type'),(12661,880,'_menu_item_menu_item_parent','0'),(12662,880,'_menu_item_object_id','637'),(12663,880,'_menu_item_object','page'),(12664,880,'_menu_item_target',''),(12665,880,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12666,880,'_menu_item_xfn',''),(12667,880,'_menu_item_url',''),(12669,456,'_wp_old_date','2018-10-23'),(12670,759,'_wp_old_date','2020-04-03'),(12678,881,'_wp_attached_file','2022/11/visit-1.jpg'),(12679,881,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:19:\"2022/11/visit-1.jpg\";s:8:\"filesize\";i:420367;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"visit-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20640;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"visit-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122481;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"visit-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10984;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"visit-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80092;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"visit-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:218053;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:20:\"visit-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153530;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12680,881,'_wp_attachment_image_alt','Wines and wine glasses on counter in tasting room'),(12681,882,'_wp_attached_file','2022/11/visit-mobile.jpg'),(12682,882,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:24:\"2022/11/visit-mobile.jpg\";s:8:\"filesize\";i:238262;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"visit-mobile-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19761;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"visit-mobile-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108498;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"visit-mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10688;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"visit-mobile-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108498;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12683,882,'_wp_attachment_image_alt','Wines and wine glasses on counter in tasting room'),(12684,445,'content_block_0_banner_image_description',''),(12685,445,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(12690,445,'_yoast_wpseo_estimated-reading-time-minutes','7'),(12691,445,'_yoast_wpseo_wordproof_timestamp',''),(12692,883,'_wp_attached_file','2022/11/tasting-room.jpg'),(12693,883,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:566;s:6:\"height\";i:400;s:4:\"file\";s:24:\"2022/11/tasting-room.jpg\";s:8:\"filesize\";i:143949;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"tasting-room-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28885;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"tasting-room-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13725;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12694,883,'_wp_attachment_image_alt','People toasting with white wine'),(12714,445,'content_block_3_layout_title','Experiences Sub-Title'),(12715,445,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(12716,445,'content_block_3_text_block_columns','one'),(12717,445,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(12718,445,'content_block_3_column_size','equal'),(12719,445,'_content_block_3_column_size','field_columnsize'),(12720,445,'content_block_3_narrow_text_block_content','0'),(12721,445,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(12722,445,'content_block_3_reverse_colors','0'),(12723,445,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(12724,445,'content_block_3_enable_background_image','0'),(12725,445,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(12726,445,'content_block_3_custom_css_class','no-padding'),(12727,445,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(12728,445,'content_block_3_text_block_content_col_one','<hr />\r\n<p class=\"metatitle\" style=\"text-align: center;\">SONOMA VALLEY</p>\r\n\r\n<h2 style=\"text-align: center;\">WINE TASTING EXPERIENCES</h2>\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/09/DigitalGeneralBrochure.pdf\">PDF Brochure</a></p>'),(12729,445,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(12730,445,'content_block_3_text_block_content_col_two','<h3 style=\"text-align: center;\"><span class=\"h4\">SEATED TASTINGS</span></h3>\r\nEnjoy a serene setting in the heart of Sonoma Valley as you taste a flight of 4 wines, poured tableside by your designated wine expert. Wine selections vary seasonally.\r\n<p style=\"text-align: center;\">ADVANCED RESERVATIONS REQUIRED.\r\n$25/person</p>\r\n\r\n<div class=\"c7-reservation-availability\" style=\"text-align: center;\" data-reservation-type-slug=\"seated-tasting\"></div>'),(12731,445,'_content_block_3_text_block_content_col_two','field_5bbe31593920e'),(12732,445,'content_block_4_layout_title','Seated Tastings'),(12733,445,'_content_block_4_layout_title','field_5bc11ca9a0d50-s'),(12734,445,'content_block_4_text_block_columns','two'),(12735,445,'_content_block_4_text_block_columns','field_5bbe2f81a4de0'),(12736,445,'content_block_4_column_size','equal'),(12737,445,'_content_block_4_column_size','field_columnsize'),(12738,445,'content_block_4_narrow_text_block_content','0'),(12739,445,'_content_block_4_narrow_text_block_content','field_5bbe342e08360'),(12740,445,'content_block_4_reverse_colors','0'),(12741,445,'_content_block_4_reverse_colors','field_5bbe3027a4de1'),(12742,445,'content_block_4_enable_background_image','0'),(12743,445,'_content_block_4_enable_background_image','field_5bbe30b1a4de2'),(12744,445,'content_block_4_custom_css_class','no-padding'),(12745,445,'_content_block_4_custom_css_class','field_5bbe30b1a4de2-1'),(12746,445,'content_block_4_text_block_content_col_one','<img class=\"wp-image-885 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/seated-300x212.jpg\" alt=\"Woman pouring red wine into glass\" width=\"500\" height=\"353\" />'),(12747,445,'_content_block_4_text_block_content_col_one','field_5bbe313b3920d'),(12748,445,'content_block_4_text_block_content_col_two','<h3 style=\"text-align: center;\"><span class=\"h4\">SEATED TASTINGS</span></h3>\r\nEnjoy a serene setting in the heart of Sonoma Valley as you taste a flight of 4 wines, poured tableside by your designated wine expert. Wine selections vary seasonally.\r\n<p style=\"text-align: center;\">ADVANCED RESERVATIONS RECOMMENDED\r\n$25/person (up to 6 guests)</p>\r\n<p style=\"text-align: center;\"><strong>Walk-Ins welcome as possible.  Please call us at (707)934-4090 for last minute or same-day appointments.</strong></p>\r\n\r\n<div class=\"c7-reservation-availability\" style=\"text-align: center;\" data-reservation-type-slug=\"seated-tasting\"></div>'),(12749,445,'_content_block_4_text_block_content_col_two','field_5bbe31593920e'),(12750,885,'_wp_attached_file','2022/11/seated.jpg'),(12751,885,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:566;s:6:\"height\";i:400;s:4:\"file\";s:18:\"2022/11/seated.jpg\";s:8:\"filesize\";i:79382;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"seated-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19841;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"seated-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10879;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12752,885,'_wp_attachment_image_alt','Woman pouring red wine into glass'),(12753,886,'_wp_attached_file','2022/11/member.jpg'),(12754,886,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:566;s:6:\"height\";i:400;s:4:\"file\";s:18:\"2022/11/member.jpg\";s:8:\"filesize\";i:95002;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"member-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21946;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"member-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11520;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12755,886,'_wp_attachment_image_alt','Lineup of Meadowcroft wine bottles'),(12756,887,'_wp_attached_file','2022/11/taste.jpg'),(12757,887,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:566;s:6:\"height\";i:400;s:4:\"file\";s:17:\"2022/11/taste.jpg\";s:8:\"filesize\";i:155785;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"taste-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30228;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"taste-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13521;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12758,887,'_wp_attachment_image_alt','Meadowcroft team toasting with wine'),(12759,445,'content_block_5_layout_title','Member Tastings'),(12760,445,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(12761,445,'content_block_5_text_block_columns','two'),(12762,445,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(12763,445,'content_block_5_column_size','equal'),(12764,445,'_content_block_5_column_size','field_columnsize'),(12765,445,'content_block_5_narrow_text_block_content','0'),(12766,445,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(12767,445,'content_block_5_reverse_colors','0'),(12768,445,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(12769,445,'content_block_5_enable_background_image','0'),(12770,445,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(12771,445,'content_block_5_custom_css_class','no-padding'),(12772,445,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(12773,445,'content_block_5_text_block_content_col_one','<img class=\"wp-image-886 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/member-300x212.jpg\" alt=\"Lineup of Meadowcroft wine bottles\" width=\"500\" height=\"353\" />'),(12774,445,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(12775,445,'content_block_5_text_block_content_col_two','<h3 style=\"text-align: center;\"><span class=\"h4\">MEMBER TASTINGS</span></h3>\r\nOur Bee Team will guide you through a selection of 4 special wines, chosen specifically for our members. Wine selections vary seasonally.\r\n<p style=\"text-align: center;\">ADVANCED RESERVATIONS ARE RECOMMENDED\r\nMembers Receive Complimentary Tastings</p>\r\n<p style=\"text-align: center;\"><strong>Please call us at (707)934-4090 for last minute or same-day appointments.</strong></p>\r\n\r\n<div class=\"c7-reservation-availability\" style=\"text-align: center;\" data-reservation-type-slug=\"seated-tasting\"></div>'),(12776,445,'_content_block_5_text_block_content_col_two','field_5bbe31593920e'),(12777,445,'content_block_6_layout_title','A Perfect Blend'),(12778,445,'_content_block_6_layout_title','field_5bc11ca9a0d50-s'),(12779,445,'content_block_6_text_block_columns','two'),(12780,445,'_content_block_6_text_block_columns','field_5bbe2f81a4de0'),(12781,445,'content_block_6_column_size','equal'),(12782,445,'_content_block_6_column_size','field_columnsize'),(12783,445,'content_block_6_narrow_text_block_content','0'),(12784,445,'_content_block_6_narrow_text_block_content','field_5bbe342e08360'),(12785,445,'content_block_6_reverse_colors','0'),(12786,445,'_content_block_6_reverse_colors','field_5bbe3027a4de1'),(12787,445,'content_block_6_enable_background_image','0'),(12788,445,'_content_block_6_enable_background_image','field_5bbe30b1a4de2'),(12789,445,'content_block_6_custom_css_class','no-padding'),(12790,445,'_content_block_6_custom_css_class','field_5bbe30b1a4de2-1'),(12791,445,'content_block_6_text_block_content_col_one','<img class=\"wp-image-888 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/blend-240x300.jpg\" alt=\"Red wine being poured into two glasses\" width=\"500\" height=\"625\" />'),(12792,445,'_content_block_6_text_block_content_col_one','field_5bbe313b3920d'),(12793,445,'content_block_6_text_block_content_col_two','<h3 style=\"text-align: center;\"><a href=\"#a-perfect-blend\"><span class=\"h4\">A PERFECT BLEND</span></a></h3>\r\nLearn the art and science of winemaking! Start with a stroll through the stunning <a href=\"https://www.cornerstonesonoma.com/\">Cornerstone Gardens</a> to learn about Meadowcroft’s unique winemaking perspective, along with the special history of Sonoma. Then, we’ll blend wines that have been aged in separate oak barrels to make a classic red Bordeaux style blend of cabernet sauvignon, cabernet franc, and merlot. Experiment putting together different blending components using your 5 senses. When your blend is just right, you’ll label and cork your own 750ml bottle of your perfect blend to take home. This is an experience that you’ll never forget! Includes a selection of locally sourced cheese &amp; accompaniments.\r\n\r\nWe welcome corporate groups, team building events and large parties.  <a href=\"mailto:tastingroom@meadowcroftwines.com\">Contact us</a> to discuss your needs and we will help you to plan the perfect experience.\r\n<p style=\"text-align: center;\">3 DAYS ADVANCED RESERVATIONS ARE REQUIRED\r\n$125/person | $100/member</p>\r\n\r\n<div class=\"c7-reservation-availability\" style=\"text-align: center;\" data-reservation-type-slug=\"a-perfect-blend\"></div>'),(12794,445,'_content_block_6_text_block_content_col_two','field_5bbe31593920e'),(12795,888,'_wp_attached_file','2022/11/blend.jpg'),(12796,888,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:500;s:4:\"file\";s:17:\"2022/11/blend.jpg\";s:8:\"filesize\";i:71181;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"blend-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20744;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"blend-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10474;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12797,888,'_wp_attachment_image_alt','Red wine being poured into two glasses'),(12798,445,'content_block_7_layout_title','Balloon & Blending'),(12799,445,'_content_block_7_layout_title','field_5bc11ca9a0d50-s'),(12800,445,'content_block_7_text_block_columns','two'),(12801,445,'_content_block_7_text_block_columns','field_5bbe2f81a4de0'),(12802,445,'content_block_7_column_size','equal'),(12803,445,'_content_block_7_column_size','field_columnsize'),(12804,445,'content_block_7_narrow_text_block_content','0'),(12805,445,'_content_block_7_narrow_text_block_content','field_5bbe342e08360'),(12806,445,'content_block_7_reverse_colors','0'),(12807,445,'_content_block_7_reverse_colors','field_5bbe3027a4de1'),(12808,445,'content_block_7_enable_background_image','0'),(12809,445,'_content_block_7_enable_background_image','field_5bbe30b1a4de2'),(12810,445,'content_block_7_custom_css_class','no-padding'),(12811,445,'_content_block_7_custom_css_class','field_5bbe30b1a4de2-1'),(12812,445,'content_block_7_text_block_content_col_one','<img class=\"size-full wp-image-1546 aligncenter\" src=\"/wp-content/uploads/2023/02/balloon-2.jpg\" alt=\"Balloon over vineyard \" width=\"500\" height=\"1000\" />'),(12813,445,'_content_block_7_text_block_content_col_one','field_5bbe313b3920d'),(12814,445,'content_block_7_text_block_content_col_two','<h3 style=\"text-align: center;\"><span class=\"h4\">BALLOON &amp; BLENDING</span></h3>\r\nWe’ve partnered with <a href=\"https://sonomaballooning.com/\">Sonoma Ballooning</a> in Sonoma Valley to bring a unique, cultural experience your way! Enjoy a magical sunrise join-in flight with <a href=\"https://sonomaballooning.com/\">Sonoma Ballooning</a>, and after your post-flight champagne toast, continue your Sonoma wine country adventure with Meadowcroft Wines’ Blending Seminar.\r\n\r\nSince no two hot air balloon rides are ever the same and you’ll be creating your own special blend of wine afterward, it’s safe to say that this is truly a one-of-a-kind experience that you’ll be sharing with your friends and family for years to come. Expect to be with <a href=\"https://sonomaballooning.com/\">Sonoma Ballooning</a> for 3-4 hours and Meadowcroft Wines for approximately 2-2.5 hours.\r\n\r\n<strong><a href=\"https://sonomaballooning.com/\">Sonoma Ballooning</a> Tour Includes:</strong>\r\n• Light Refreshments Pre-flight (coffee, tea, pre-packaged snacks)\r\n• 45 Minute to 1 Hour Balloon Flight\r\n• Post-flight Champagne Toast\r\n• Flight Certificate (upon request)\r\n\r\n<strong>Meadowcroft Blending Seminar Includes:</strong>\r\n• Tour of Cornerstone Gardens\r\n• Wine Blending\r\n• Cheese Plate\r\n• Label &amp; Cork Your Own “Perfect Blend” 750ml Bottle To Take Home\r\n\r\n*This package is for ages 21+. After booking is confirmed, you will receive a separate email confirmation from each respective company. <strong>Each company will also charge you separately</strong>.\r\n<p style=\"text-align: center;\">ADVANCED RESERVATIONS ARE REQUIRED\r\n$380/person <em>(Includes flight and blending)</em></p>\r\n<p style=\"text-align: center;\">Contact Sonoma Ballooning by clicking the button below.  Once your flight is booked, they will reach out to us to confirm your wine blending.  Have a happy flight!</p>\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"https://sonomaballooning.com/balloon-ride-packages/#balloon-blending\" aria-label=\"Arrange your flight directly with Sonoma Ballonning\">ARRANGE YOUR FLIGHT</a></p>'),(12815,445,'_content_block_7_text_block_content_col_two','field_5bbe31593920e'),(12819,445,'content_block_8_layout_title','Wine by the glass'),(12820,445,'_content_block_8_layout_title','field_5bc11ca9a0d50-s'),(12821,445,'content_block_8_text_block_columns','two'),(12822,445,'_content_block_8_text_block_columns','field_5bbe2f81a4de0'),(12823,445,'content_block_8_column_size','equal'),(12824,445,'_content_block_8_column_size','field_columnsize'),(12825,445,'content_block_8_narrow_text_block_content','0'),(12826,445,'_content_block_8_narrow_text_block_content','field_5bbe342e08360'),(12827,445,'content_block_8_reverse_colors','0'),(12828,445,'_content_block_8_reverse_colors','field_5bbe3027a4de1'),(12829,445,'content_block_8_enable_background_image','0'),(12830,445,'_content_block_8_enable_background_image','field_5bbe30b1a4de2'),(12831,445,'content_block_8_custom_css_class',''),(12832,445,'_content_block_8_custom_css_class','field_5bbe30b1a4de2-1'),(12833,445,'content_block_8_text_block_content_col_one','<img class=\"aligncenter\" src=\"/wp-content/uploads/2022/12/rose-1.jpg\" width=\"500\" height=\"373\" />'),(12834,445,'_content_block_8_text_block_content_col_one','field_5bbe313b3920d'),(12835,445,'content_block_8_text_block_content_col_two','<h3 style=\"text-align: center;\"><span class=\"h4\"> WINE BY THE GLASS AND BY THE BOTTLE</span></h3>\r\n<p style=\"text-align: center;\">We encourage guests to come in to purchase wine by the glass or by the bottle. There are wonderful picnic opportunities in the gardens of <a href=\"https://www.cornerstonesonoma.com/\">Cornerstone Sonoma</a> and enjoy the Sonoma sunshine.</p>\r\n<p style=\"text-align: center;\">NO RESERVATIONS NEED | TO-GO SERVICE</p>'),(12836,445,'_content_block_8_text_block_content_col_two','field_5bbe31593920e'),(12850,895,'_wp_attached_file','2022/11/balloon-sized.png'),(12851,895,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:898;s:4:\"file\";s:25:\"2022/11/balloon-sized.png\";s:8:\"filesize\";i:688524;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"balloon-sized-167x300.png\";s:5:\"width\";i:167;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82048;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"balloon-sized-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42254;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12852,895,'_wp_attachment_image_alt','Hot air balloon over vineyard'),(12853,896,'_wp_attached_file','2022/11/testimonials.jpg'),(12854,896,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:706;s:6:\"height\";i:500;s:4:\"file\";s:24:\"2022/11/testimonials.jpg\";s:8:\"filesize\";i:181819;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"testimonials-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28319;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"testimonials-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12688;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12855,896,'_wp_attachment_image_alt','Bottle of Meadowcroft wine in lavender field'),(12856,445,'content_block_9_layout_title','Cornerstone Title'),(12857,445,'_content_block_9_layout_title','field_5bc11ca9a0d50-s'),(12858,445,'content_block_9_text_block_columns','one'),(12859,445,'_content_block_9_text_block_columns','field_5bbe2f81a4de0'),(12860,445,'content_block_9_column_size','equal'),(12861,445,'_content_block_9_column_size','field_columnsize'),(12862,445,'content_block_9_narrow_text_block_content','0'),(12863,445,'_content_block_9_narrow_text_block_content','field_5bbe342e08360'),(12864,445,'content_block_9_reverse_colors','0'),(12865,445,'_content_block_9_reverse_colors','field_5bbe3027a4de1'),(12866,445,'content_block_9_enable_background_image','0'),(12867,445,'_content_block_9_enable_background_image','field_5bbe30b1a4de2'),(12868,445,'content_block_9_custom_css_class','no-padding'),(12869,445,'_content_block_9_custom_css_class','field_5bbe30b1a4de2-1'),(12870,445,'content_block_9_text_block_content_col_one','&nbsp;\r\n<h2 style=\"text-align: center;\"><span class=\"h3\">MEADOWCROFT TASTING ROOM AT <a href=\"https://www.cornerstonesonoma.com/\">CORNERSTONE</a></span></h2>'),(12871,445,'_content_block_9_text_block_content_col_one','field_5bbe313b3920d'),(12872,445,'content_block_9_text_block_content_col_two','<h3 style=\"text-align: center;\"><span class=\"h4\"> WINE BY THE GLASS AND BY THE BOTTLE</span></h3>\r\n<p style=\"text-align: center;\">We encourage guests to come in to purchase wine by the glass or by the bottle. There are wonderful picnic opportunities in the gardens of <a href=\"https://www.cornerstonesonoma.com/\">Cornerstone Sonoma</a> and enjoy the Sonoma sunshine.</p>\r\n<p style=\"text-align: center;\">NO RESERVATIONS NEED | TO-GO SERVICE</p>'),(12873,445,'_content_block_9_text_block_content_col_two','field_5bbe31593920e'),(12993,920,'_menu_item_type','custom'),(12994,920,'_menu_item_menu_item_parent','0'),(12995,920,'_menu_item_object_id','920'),(12996,920,'_menu_item_object','custom'),(12997,920,'_menu_item_target',''),(12998,920,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12999,920,'_menu_item_xfn',''),(13000,920,'_menu_item_url','/tasting-room/'),(13002,431,'content_block_0_banner_button_link_description',''),(13003,431,'_content_block_0_banner_button_link_description','field_5bbf30b1a4de2-1b'),(13004,431,'content_block_0_banner_image_description',''),(13005,431,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(13006,431,'content_block_3_layout_title','Trivia Tasting'),(13007,431,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(13008,431,'content_block_3_text_block_columns','two'),(13009,431,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(13010,431,'content_block_3_narrow_text_block_content','0'),(13011,431,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(13012,431,'content_block_3_reverse_colors','0'),(13013,431,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(13014,431,'content_block_3_enable_background_image','0'),(13015,431,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(13016,431,'content_block_3_custom_css_class',''),(13017,431,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(13018,431,'content_block_3_text_block_content_col_one','<img class=\"wp-image-929 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/hosted-trivia-tasting.jpg\" alt=\"Hosted Trivia Tasting\" width=\"600\" height=\"750\" />'),(13019,431,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(13020,431,'_yoast_wpseo_estimated-reading-time-minutes','0'),(13021,431,'_yoast_wpseo_wordproof_timestamp',''),(13052,924,'_wp_attached_file','2022/11/bottles.jpg'),(13053,924,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:19:\"2022/11/bottles.jpg\";s:8:\"filesize\";i:283116;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"bottles-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13509;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"bottles-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68961;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"bottles-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8007;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"bottles-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45115;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"bottles-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128446;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:20:\"bottles-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87406;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13054,924,'_wp_attachment_image_alt','Bling virtual wine tasting setup'),(13055,925,'_wp_attached_file','2022/11/bottles-mobile.jpg'),(13056,925,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:26:\"2022/11/bottles-mobile.jpg\";s:8:\"filesize\";i:217236;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"bottles-mobile-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15128;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"bottles-mobile-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78804;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"bottles-mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7879;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"bottles-mobile-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78804;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13057,925,'_wp_attachment_image_alt','Bling virtual wine tasting setup'),(13060,431,'content_block_2_layout_title','Blind Tasting'),(13061,431,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(13062,431,'content_block_2_text_block_columns','two'),(13063,431,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(13064,431,'content_block_2_column_size','equal'),(13065,431,'_content_block_2_column_size','field_columnsize'),(13066,431,'content_block_2_narrow_text_block_content','0'),(13067,431,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(13068,431,'content_block_2_reverse_colors','0'),(13069,431,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(13070,431,'content_block_2_enable_background_image','0'),(13071,431,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(13072,431,'content_block_2_custom_css_class',''),(13073,431,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(13074,431,'content_block_2_text_block_content_col_one','<img class=\"wp-image-928 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/blind-tasting.jpg\" alt=\"Bling virtual wine tasting setup\" width=\"600\" height=\"750\" />'),(13075,431,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(13076,431,'content_block_2_text_block_content_col_two','<h3 style=\"text-align: center;\">VIRTUAL BLIND TASTING EXPERIENCE</h3>\r\n<p style=\"text-align: left;\">Blind tasting is the term for tasting and analyzing wines without seeing the label or knowing what the wine is. This activity is a great way to test your wine knowledge. The object is to ascertain such features as grape variety, region, vintage, and price of the wine purely through the act of seeing, smelling, and tasting the wine in the glass. Meadowcroft’s Wine Educator will lead the group through how to evaluate wines and educate about varietals, regions, and vintages. This experience is very interactive and can be quite competitive (depending on the group’s preference).</p>\r\n<p style=\"text-align: left;\">There are two choices in each Blind Tasting Kit: All Red Wines or Mixed Red and White Wines.</p>\r\n<p style=\"text-align: left;\" data-uw-rm-sr=\"\">Pricing: $125 per kit (includes 4 bottles of wine and materials) + cost of shipping<br role=\"presentation\" data-uw-rm-sr=\"\" />Duration: 60 – 75 minutes<br role=\"presentation\" data-uw-rm-sr=\"\" />Group Size: 4-50 screens</p>\r\n<p style=\"text-align: center;\"><strong>ADVANCED RESERVATIONS ARE REQUIRED.</strong></p>\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"mailto: tastingroom@meadowcroftwines.com?subject=Virtual Blind Tasting\">BOOK NOW</a></p>'),(13077,431,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(13078,431,'content_block_3_column_size','equal'),(13079,431,'_content_block_3_column_size','field_columnsize'),(13080,431,'content_block_3_text_block_content_col_two','<h3 style=\"text-align: center;\">HOSTED WINE TRIVIA HAPPY HOUR</h3>\r\n<p style=\"text-align: left;\">How well do you know what’s in that glass!? With our Wine Trivia Happy Hour, guests will receive 3 half bottles of wine, a scoring sheet, and a pen. Meadowcroft’s Wine Educator will lead the group through a tasting of the first two wines, then begin the trivia section of 20 questions guaranteed to test even the most knowledgeable wino. Before revealing the answers, we’ll taste through the other two wines, then reveal the answers to see who has the best score and bragging rights until next time! Full bottles and a customized wine menu are available, just inquire!</p>\r\n<p style=\"text-align: left;\" data-uw-rm-sr=\"\">Pricing: $99.00 per kit + cost of shipping<br role=\"presentation\" data-uw-rm-sr=\"\" />Duration: 45 – 60 Minutes<br role=\"presentation\" data-uw-rm-sr=\"\" />Group Size: 4 – 50 screens</p>\r\n<p style=\"text-align: center;\"><strong>ADVANCED RESERVATIONS REQUIRED</strong></p>\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"mailto: tastingroom@meadowcroftwines.com?subject=Hosting Wine Trivia\">BOOK NOW</a></p>'),(13081,431,'_content_block_3_text_block_content_col_two','field_5bbe31593920e'),(13082,431,'content_block_4_layout_title','Curated Tasting'),(13083,431,'_content_block_4_layout_title','field_5bc11ca9a0d50-s'),(13084,431,'content_block_4_text_block_columns','two'),(13085,431,'_content_block_4_text_block_columns','field_5bbe2f81a4de0'),(13086,431,'content_block_4_column_size','equal'),(13087,431,'_content_block_4_column_size','field_columnsize'),(13088,431,'content_block_4_narrow_text_block_content','0'),(13089,431,'_content_block_4_narrow_text_block_content','field_5bbe342e08360'),(13090,431,'content_block_4_reverse_colors','0'),(13091,431,'_content_block_4_reverse_colors','field_5bbe3027a4de1'),(13092,431,'content_block_4_enable_background_image','0'),(13093,431,'_content_block_4_enable_background_image','field_5bbe30b1a4de2'),(13094,431,'content_block_4_custom_css_class',''),(13095,431,'_content_block_4_custom_css_class','field_5bbe30b1a4de2-1'),(13096,431,'content_block_4_text_block_content_col_one','<img class=\" wp-image-930 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/curated-tasting.jpg\" alt=\"Curated tasting\" width=\"600\" height=\"750\" />'),(13097,431,'_content_block_4_text_block_content_col_one','field_5bbe313b3920d'),(13098,431,'content_block_4_text_block_content_col_two','<h3 style=\"text-align: center;\">CURATED WINE TASTING</h3>\r\n<p style=\"text-align: left;\">Enjoy a flight of white and/or red wines hosted by one of our Meadowcroft Wine Educators, all from the comfort of your own home. Your tasting experience will be tailored to your selection (for example try “Exploring Sonoma’s Dry Creek Wines,” “Small Production Wines,” “Luxury Cabernet Sauvignon and Cabernet Blends.”) Learn how to taste wine, about viticultural practices, and winemaking styles.</p>\r\n<p style=\"text-align: left;\" data-uw-rm-sr=\"\">Pricing: Starting at $99 per kit (4 pack of wine – depending on wine selections) + cost of shipping<br role=\"presentation\" data-uw-rm-sr=\"\" />Duration: 45 – 60 minutes<br role=\"presentation\" data-uw-rm-sr=\"\" />Group Size: 4-50 screens</p>\r\n<p style=\"text-align: center;\"><strong>ADVANCED RESERVATIONS REQUIRED.</strong></p>\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"mailto: tastingroom@meadowcroftwines.com?subject=Curated Wine Tasting\">BOOK NOW</a></p>'),(13099,431,'_content_block_4_text_block_content_col_two','field_5bbe31593920e'),(13100,431,'content_block_5_layout_title','Groups'),(13101,431,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(13102,431,'content_block_5_text_block_columns','one'),(13103,431,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(13104,431,'content_block_5_narrow_text_block_content','0'),(13105,431,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(13106,431,'content_block_5_reverse_colors','0'),(13107,431,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(13108,431,'content_block_5_enable_background_image','0'),(13109,431,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(13110,431,'content_block_5_custom_css_class',''),(13111,431,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(13112,431,'content_block_5_text_block_content_col_one','<p id=\"inquiries\" class=\"callout\" style=\"text-align: center;\"><strong>FOR CORPORATE GROUPS OR SPECIAL REQUESTS, PLEASE INQUIRE. WE WOULD LOVE TO CREATE A CUSTOM EXPERIENCE FOR YOU.</strong></p>\r\n\r\n'),(13113,431,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(13114,431,'content_block_6_layout_title','Testimonial'),(13115,431,'_content_block_6_layout_title','field_5bc11ca9a0d50-s'),(13116,431,'content_block_6_text_block_columns','one'),(13117,431,'_content_block_6_text_block_columns','field_5bbe2f81a4de0'),(13118,431,'content_block_6_narrow_text_block_content','1'),(13119,431,'_content_block_6_narrow_text_block_content','field_5bbe342e08360'),(13120,431,'content_block_6_reverse_colors','0'),(13121,431,'_content_block_6_reverse_colors','field_5bbe3027a4de1'),(13122,431,'content_block_6_enable_background_image','1'),(13123,431,'_content_block_6_enable_background_image','field_5bbe30b1a4de2'),(13124,431,'content_block_6_custom_css_class','repeating-background'),(13125,431,'_content_block_6_custom_css_class','field_5bbe30b1a4de2-1'),(13126,431,'content_block_6_text_block_content_col_one','<p style=\"text-align: center;\">[gravityform id=\"1\" title=\"true\" description=\"true\"]</p>\r\n<img class=\"alignnone wp-image-934 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/quotation-marks.png\" alt=\"Quotation marks\" width=\"100\" height=\"81\" />\r\n<p style=\"text-align: center;\"><em>I had an absolute blast at my Meadowcroft blind tasting! It was my first time doing a blind &amp; virtual tasting, and one of the most fun and educational wine experiences I’ve ever had. Andrew is engaging, has a depth of knowledge about the wines, and is extremely passionate about the craft. It was a memorable experience…so much so that I signed up for a second tasting with another group of friends.</em></p>\r\n<p class=\"testimonial\" style=\"text-align: center;\">CHANTAM DUONG</p>\r\n<p class=\"callout\" style=\"text-align: center;\">GUEST FROM VINEBASE.COM</p>'),(13127,431,'_content_block_6_text_block_content_col_one','field_5bbe313b3920d'),(13131,928,'_wp_attached_file','2022/11/blind-tasting.jpg'),(13132,928,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:500;s:4:\"file\";s:25:\"2022/11/blind-tasting.jpg\";s:8:\"filesize\";i:66569;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"blind-tasting-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18930;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"blind-tasting-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9864;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13133,928,'_wp_attachment_image_alt','Bling virtual wine tasting setup'),(13134,929,'_wp_attached_file','2022/11/hosted-trivia-tasting.jpg'),(13135,929,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:500;s:4:\"file\";s:33:\"2022/11/hosted-trivia-tasting.jpg\";s:8:\"filesize\";i:69676;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"hosted-trivia-tasting-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20853;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"hosted-trivia-tasting-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10351;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13136,929,'_wp_attachment_image_alt','Hosted Trivia Tasting'),(13137,930,'_wp_attached_file','2022/11/curated-tasting.jpg'),(13138,930,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2022/11/curated-tasting.jpg\";s:8:\"filesize\";i:78054;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"curated-tasting-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22322;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"curated-tasting-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11169;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13139,930,'_wp_attachment_image_alt','Curated tasting'),(13140,931,'_wp_attached_file','2022/11/honeycomb-background.jpg'),(13141,931,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:32:\"2022/11/honeycomb-background.jpg\";s:8:\"filesize\";i:277821;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"honeycomb-background-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13278;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"honeycomb-background-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77781;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"honeycomb-background-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6945;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"honeycomb-background-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52098;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"honeycomb-background-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140955;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:33:\"honeycomb-background-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98563;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13142,931,'_wp_attachment_image_alt','Honeycomb texture'),(13143,932,'_wp_attached_file','2022/11/honeycomb-mobile.jpg'),(13144,932,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:28:\"2022/11/honeycomb-mobile.jpg\";s:8:\"filesize\";i:215817;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"honeycomb-mobile-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14782;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"honeycomb-mobile-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88913;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"honeycomb-mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6765;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"honeycomb-mobile-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88913;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13145,932,'_wp_attachment_image_alt','Honeycomb texture'),(13146,431,'content_block_6_parallax_effect_on_image','0'),(13147,431,'_content_block_6_parallax_effect_on_image','field_5bbe319b39211'),(13148,431,'content_block_6_background_image','1355'),(13149,431,'_content_block_6_background_image','field_5bbe2eb1a4ddb'),(13150,431,'content_block_6_background_image_position','left top'),(13151,431,'_content_block_6_background_image_position','field_5bbe2eb1a4ddc'),(13152,431,'content_block_6_background_image_mobile','932'),(13153,431,'_content_block_6_background_image_mobile','field_5bbe3b5e5f6f8'),(13154,431,'content_block_6_background_image_position_mobile','center center'),(13155,431,'_content_block_6_background_image_position_mobile','field_5bbe3b695f6f9'),(13170,933,'_wp_attached_file','2022/11/texture-scaled.jpg'),(13171,933,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:26:\"2022/11/texture-scaled.jpg\";s:8:\"filesize\";i:278219;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"texture-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13183;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"texture-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75666;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"texture-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6904;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"texture-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51513;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"texture-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135680;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:21:\"texture-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:204071;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:20:\"texture-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95052;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"texture.jpg\";}'),(13172,934,'_wp_attached_file','2022/11/quotation-marks.png'),(13173,934,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:162;s:4:\"file\";s:27:\"2022/11/quotation-marks.png\";s:8:\"filesize\";i:8543;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"quotation-marks-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4043;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13174,934,'_wp_attachment_image_alt','Quotation marks'),(13213,920,'_wp_old_date','2022-11-03'),(13214,456,'_wp_old_date','2022-11-03'),(13217,759,'_wp_old_date','2022-11-03'),(13226,880,'_wp_old_date','2022-11-03'),(13230,443,'content_block_0_banner_image_description',''),(13231,443,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(13232,443,'content_block_2_column_size','equal'),(13233,443,'_content_block_2_column_size','field_columnsize'),(13234,443,'content_block_3_column_size','equal'),(13235,443,'_content_block_3_column_size','field_columnsize'),(13236,443,'_yoast_wpseo_estimated-reading-time-minutes','0'),(13237,443,'_yoast_wpseo_wordproof_timestamp',''),(13238,943,'_wp_attached_file','2022/11/lavender.jpg'),(13239,943,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1800;s:6:\"height\";i:902;s:4:\"file\";s:20:\"2022/11/lavender.jpg\";s:8:\"filesize\";i:555928;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"lavender-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22506;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"lavender-1024x513.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:195267;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"lavender-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13662;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"lavender-768x385.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:385;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115967;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"lavender-1536x770.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:395454;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:21:\"lavender-1200x601.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:258442;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13240,943,'_wp_attachment_image_alt','Lavender at edge of vineyard'),(13248,443,'content_block_0_banner_button_text','JOIN NOW'),(13249,443,'_content_block_0_banner_button_text','field_5bbe1ba0efa0e'),(13250,443,'content_block_0_banner_button_link_description','Clicl to scroll down to our wine club option and make a selection'),(13251,443,'_content_block_0_banner_button_link_description','field_5bbf30b1a4de2-1b'),(13252,947,'_wp_attached_file','2022/11/crest.jpg'),(13253,947,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1000;s:4:\"file\";s:17:\"2022/11/crest.jpg\";s:8:\"filesize\";i:93897;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"crest-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8424;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"crest-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34834;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"crest-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8278;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"crest-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23665;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:18:\"crest-1536x768.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61429;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:18:\"crest-1200x600.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43862;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13254,947,'_wp_attachment_image_alt','Meadowcroft bee crest'),(13255,443,'content_block_3_parallax_effect_on_image','0'),(13256,443,'_content_block_3_parallax_effect_on_image','field_5bbe319b39211'),(13257,443,'content_block_3_background_image','947'),(13258,443,'_content_block_3_background_image','field_5bbe2eb1a4ddb'),(13259,443,'content_block_3_background_image_position','center center'),(13260,443,'_content_block_3_background_image_position','field_5bbe2eb1a4ddc'),(13261,443,'content_block_3_background_image_mobile','947'),(13262,443,'_content_block_3_background_image_mobile','field_5bbe3b5e5f6f8'),(13263,443,'content_block_3_background_image_position_mobile','center center'),(13264,443,'_content_block_3_background_image_position_mobile','field_5bbe3b695f6f9'),(13283,948,'_menu_item_type','custom'),(13284,948,'_menu_item_menu_item_parent','1563'),(13285,948,'_menu_item_object_id','948'),(13286,948,'_menu_item_object','custom'),(13287,948,'_menu_item_target',''),(13288,948,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13289,948,'_menu_item_xfn',''),(13290,948,'_menu_item_url','/wine-club/'),(13292,949,'_menu_item_type','custom'),(13293,949,'_menu_item_menu_item_parent','1563'),(13294,949,'_menu_item_object_id','949'),(13295,949,'_menu_item_object','custom'),(13296,949,'_menu_item_target',''),(13297,949,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13298,949,'_menu_item_xfn',''),(13299,949,'_menu_item_url','/profile/login'),(13319,444,'_yoast_wpseo_estimated-reading-time-minutes','4'),(13320,444,'_yoast_wpseo_wordproof_timestamp',''),(13321,950,'_menu_item_type','custom'),(13322,950,'_menu_item_menu_item_parent','0'),(13323,950,'_menu_item_object_id','950'),(13324,950,'_menu_item_object','custom'),(13325,950,'_menu_item_target',''),(13326,950,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13327,950,'_menu_item_xfn',''),(13328,950,'_menu_item_url','/about/'),(13330,951,'_wp_attached_file','2022/11/team-e1672342009721.jpg'),(13331,951,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:889;s:6:\"height\";i:682;s:4:\"file\";s:31:\"2022/11/team-e1672342009721.jpg\";s:8:\"filesize\";i:545851;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"team-e1672342009721-300x230.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27111;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"team-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:199134;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"team-e1672342009721-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12296;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"team-e1672342009721-768x589.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:589;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122398;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:17:\"team-1200x791.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:260666;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:31:\"team-e1672342009721-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32772;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:31:\"team-e1672342009721-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49733;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:31:\"team-e1672342009721-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35483;}s:8:\"tileview\";a:5:{s:4:\"file\";s:31:\"team-e1672342009721-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40185;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13332,951,'_wp_attachment_image_alt','Meadowcroft Wines Team'),(13333,444,'content_block_1_column_size','equal'),(13334,444,'_content_block_1_column_size','field_columnsize'),(13335,444,'content_block_1_text_block_content_col_two','&nbsp;\r\n<p class=\"metatitle\" style=\"text-align: center;\">About</p>\r\n\r\n<h2 style=\"text-align: center;\">MEADOWCROFT WINES BY TOM MEADOWCROFT</h2>\r\n<p style=\"text-align: center;\">Meadowcroft is the namesake of Winegrower Tom Meadowcroft. The meaning of Meadowcroft is a fertile field or meadow and croft refers to a cultivated area that has been nurtured over time. The honeybee on the label symbolizes this conscientious work and the process of transformation from wine grapes into outstanding wine.</p>'),(13336,444,'_content_block_1_text_block_content_col_two','field_5bbe31593920e'),(13355,952,'_wp_attached_file','2022/11/signature.png'),(13356,952,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:650;s:6:\"height\";i:216;s:4:\"file\";s:21:\"2022/11/signature.png\";s:8:\"filesize\";i:39672;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"signature-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10572;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"signature-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8031;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13357,952,'_wp_attachment_image_alt','Tom Meadowcroft Signature'),(13358,953,'_wp_attached_file','2022/11/grapes.jpg'),(13359,953,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:18:\"2022/11/grapes.jpg\";s:8:\"filesize\";i:174694;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"grapes-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20879;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"grapes-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99247;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"grapes-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11580;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"grapes-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68886;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"grapes-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:168395;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"grapes-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121396;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13360,953,'_wp_attachment_image_alt','Worker holding grapes in gloved hands'),(13361,444,'content_block_1_parallax_effect_on_image','0'),(13362,444,'_content_block_1_parallax_effect_on_image','field_5bbe319b39211'),(13363,444,'content_block_1_background_image','953'),(13364,444,'_content_block_1_background_image','field_5bbe2eb1a4ddb'),(13365,444,'content_block_1_background_image_position','center center'),(13366,444,'_content_block_1_background_image_position','field_5bbe2eb1a4ddc'),(13367,444,'content_block_1_background_image_mobile','953'),(13368,444,'_content_block_1_background_image_mobile','field_5bbe3b5e5f6f8'),(13369,444,'content_block_1_background_image_position_mobile','center center'),(13370,444,'_content_block_1_background_image_position_mobile','field_5bbe3b695f6f9'),(13371,444,'content_block_2_layout_title','A Toast From The Winemaker'),(13372,444,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(13373,444,'content_block_2_text_block_columns','one'),(13374,444,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(13375,444,'content_block_2_column_size','equal'),(13376,444,'_content_block_2_column_size','field_columnsize'),(13377,444,'content_block_2_narrow_text_block_content','1'),(13378,444,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(13379,444,'content_block_2_reverse_colors','1'),(13380,444,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(13381,444,'content_block_2_enable_background_image','1'),(13382,444,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(13383,444,'content_block_2_custom_css_class',''),(13384,444,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(13385,444,'content_block_2_text_block_content_col_one','&nbsp;\r\n<h2><span class=\"h3\">A TOAST FROM THE WINEMAKER…</span></h2>\r\n<p style=\"text-align: center;\">As the winemaker I am ever in the pursuit of creating wines infused with an explosive strength of diverse character that strike a soulful chord. The zeal of creativity with which I am driven is inspired by the rich cultural experience from where Meadowcroft Wines originates. I proudly focus on a wide array of beautiful varietals, from our Cabernet Sauvignon which is grown on our estate vineyard property located on the esteemed Mount Veeder in Napa, to Bordeaux grapes scrupulously sourced from sustainable vineyards around Dry Creek, Carneros, and Alexander Valley, I happily direct a global dialogue into my winemaking process. My hope is to create wines with a Sonoma pulse that express the complexity found in European varietals. I invite you to raise a glass of Meadowcroft and wish you bountiful gatherings and many happy toasts!</p>\r\n<p style=\"text-align: center;\">Cheers!</p>\r\n<img class=\"alignnone wp-image-952 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/signature.png\" alt=\"Tom Meadowcroft Signature\" width=\"352\" height=\"117\" />'),(13386,444,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(13387,444,'content_block_2_text_block_content_col_two','[c7-subscribe-with-name]'),(13388,444,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(13425,954,'inline_featured_image','0'),(13426,954,'_edit_lock','1675763498:5'),(13427,954,'_edit_last','5'),(13428,955,'_wp_attached_file','2022/11/tom-medowncroft.jpg'),(13429,955,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:650;s:4:\"file\";s:27:\"2022/11/tom-medowncroft.jpg\";s:8:\"filesize\";i:160814;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"tom-medowncroft-231x300.jpg\";s:5:\"width\";i:231;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27185;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"tom-medowncroft-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12169;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13430,955,'_wp_attachment_image_alt','Tom Meadowcroft'),(13431,954,'thumbnail_photo','1770'),(13432,954,'_thumbnail_photo','field_5bc1286ee0926'),(13433,954,'larger_photo','1651'),(13434,954,'_larger_photo','field_5bc12896e0927'),(13435,954,'position','Owner & Winegrower'),(13436,954,'_position','field_5bc128c4e0929'),(13437,954,'description','Tom’s passion for wines stems from his experiences growing up, working and traveling in Europe and the United States. Early in life, he began his journey in winemaking by working the harvest of 1979 in Bordeaux. Following that harvest he studied at UC Davis and Napa College graduating with a degree in Viticulture and Enology. After earning his degrees, he worked in Napa and Washington State as a vineyard Manager focusing on sustainable farming and environmental advocacy. Throughout his career, Tom has managed dozens of properties for top wineries in Napa and Sonoma, all along instilling core principals relating to wine cultivation from the growing of wines to the making of the wines. These experiences inspire his vision for the Meadowcroft Wine he proudly makes today.'),(13438,954,'_description','field_5bc128d5e092a'),(13439,954,'contact_email','tom@meadowcroftwines.com'),(13440,954,'_contact_email','field_5bc128e2e092b'),(13441,954,'order','1'),(13442,954,'_order','field_5bd7756acf63a'),(13443,954,'_yoast_wpseo_content_score','90'),(13444,954,'_yoast_wpseo_estimated-reading-time-minutes','0'),(13445,954,'_yoast_wpseo_wordproof_timestamp',''),(13446,956,'_wp_attached_file','2022/11/tom-bw.jpg'),(13447,956,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:750;s:4:\"file\";s:18:\"2022/11/tom-bw.jpg\";s:8:\"filesize\";i:175201;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"tom-bw-300x281.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21818;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"tom-bw-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9600;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"tom-bw-768x720.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90792;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13448,957,'inline_featured_image','0'),(13449,957,'_edit_lock','1675690265:5'),(13450,957,'_edit_last','5'),(13451,958,'_wp_attached_file','2022/11/petar-kirilov.jpg'),(13452,958,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:650;s:4:\"file\";s:25:\"2022/11/petar-kirilov.jpg\";s:8:\"filesize\";i:170459;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"petar-kirilov-231x300.jpg\";s:5:\"width\";i:231;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24450;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"petar-kirilov-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10563;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13453,958,'_wp_attachment_image_alt','Peter Kirilov'),(13454,959,'_wp_attached_file','2022/11/petar-bw.jpg'),(13455,959,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:750;s:4:\"file\";s:20:\"2022/11/petar-bw.jpg\";s:8:\"filesize\";i:165083;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"petar-bw-300x281.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18903;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"petar-bw-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8206;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"petar-bw-768x720.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84271;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13456,959,'_wp_attachment_image_alt','Peter Kirilov Black & White Photo'),(13457,957,'thumbnail_photo','958'),(13458,957,'_thumbnail_photo','field_5bc1286ee0926'),(13459,957,'larger_photo','1658'),(13460,957,'_larger_photo','field_5bc12896e0927'),(13461,957,'position','Executive Winemaker'),(13462,957,'_position','field_5bc128c4e0929'),(13463,957,'description','Wine runs deep in Petar’s family. At a very young age, he was helping his father craft wine in his family home in Bulgaria. His passion for winemaking led him to pursue his Master’s degree in Winemaking at the University of Food Technologies. After graduating and working in Bulgaria, Petar was selected for a prestigious internship at Truchard Vineyards in Napa Valley. Keen to develop his winemaking skills at an elite level, Petar took the plunge and left his home in Bulgaria for California’s most famous wine region, Napa Valley.\r\n\r\nPetar brings over fifteen years of experience as a Winemaker and has thirteen vintages of creating luxury Napa and Sonoma wines. From grape to glass, Petar maintains a hands on approach to winemaking drawing out the best in each wine. Petar enjoys all our Meadowcroft wines, but if he had to choose a favorite he’d lean towards our Mt. Veeder Cabernet Sauvignon from Napa or one of our delicious Sonoma County Zinfandels. When he is not working at the winery, Petar enjoys spending time with his wife and young daughter as well as getting outside to run, swim, or even play soccer.'),(13464,957,'_description','field_5bc128d5e092a'),(13465,957,'contact_email','petar@meadowcroftwines.com'),(13466,957,'_contact_email','field_5bc128e2e092b'),(13467,957,'order','2'),(13468,957,'_order','field_5bd7756acf63a'),(13469,957,'_yoast_wpseo_content_score','90'),(13470,957,'_yoast_wpseo_estimated-reading-time-minutes','0'),(13471,957,'_yoast_wpseo_wordproof_timestamp',''),(13538,966,'_wp_attached_file','2022/11/petar-circle.png'),(13539,966,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:24:\"2022/11/petar-circle.png\";s:8:\"filesize\";i:73841;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"petar-circle-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38752;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13540,966,'_wp_attachment_image_alt','Peter Kirilov'),(13541,516,'content_block_8_column_size','equal'),(13542,516,'_content_block_8_column_size','field_columnsize'),(13543,516,'_yoast_wpseo_content_score','90'),(13544,516,'_yoast_wpseo_estimated-reading-time-minutes','0'),(13545,516,'_yoast_wpseo_wordproof_timestamp',''),(13557,968,'_wp_attached_file','2019/06/summer-pairings.jpg'),(13558,968,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:600;s:4:\"file\";s:27:\"2019/06/summer-pairings.jpg\";s:8:\"filesize\";i:168567;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"summer-pairings-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26952;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"summer-pairings-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12457;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13559,968,'_wp_attachment_image_alt','Bottle of Meadowcroft Wine and mexican corn'),(13604,969,'_wp_attached_file','2019/06/C6FA8ABF-6F75-41E7-9464-B2E5D431EBCF_1_105_c-768x625-1.jpg'),(13605,969,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:768;s:6:\"height\";i:625;s:4:\"file\";s:66:\"2019/06/C6FA8ABF-6F75-41E7-9464-B2E5D431EBCF_1_105_c-768x625-1.jpg\";s:8:\"filesize\";i:73727;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:66:\"C6FA8ABF-6F75-41E7-9464-B2E5D431EBCF_1_105_c-768x625-1-300x244.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:244;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19192;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:66:\"C6FA8ABF-6F75-41E7-9464-B2E5D431EBCF_1_105_c-768x625-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9855;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"iPhone 11 Pro\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1605286637\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"6\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(13606,969,'_wp_attachment_image_alt','Jalapeno mac and cheese'),(13647,971,'_wp_attached_file','2019/06/mexican-corn.jpg'),(13648,971,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:768;s:6:\"height\";i:625;s:4:\"file\";s:24:\"2019/06/mexican-corn.jpg\";s:8:\"filesize\";i:174592;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"mexican-corn-300x244.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:244;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27466;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"mexican-corn-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12447;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13649,971,'_wp_attachment_image_alt','Bottle of Meadowcroft Wine and mexican corn'),(13651,972,'_wp_attached_file','2019/06/8F91B552-937E-42EE-B0B7-D73550497AFF_1_105_c-330x270-1.jpg'),(13652,972,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:330;s:6:\"height\";i:270;s:4:\"file\";s:66:\"2019/06/8F91B552-937E-42EE-B0B7-D73550497AFF_1_105_c-330x270-1.jpg\";s:8:\"filesize\";i:31869;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:66:\"8F91B552-937E-42EE-B0B7-D73550497AFF_1_105_c-330x270-1-300x245.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26434;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:66:\"8F91B552-937E-42EE-B0B7-D73550497AFF_1_105_c-330x270-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12128;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"iPhone 11 Pro\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1619023641\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"6\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:16:\"0.00102249488753\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(13653,972,'_wp_attachment_image_alt','Prosciutto, Melon and Arugula Salad'),(13748,974,'_wp_attached_file','2019/06/50BC9338-8BBA-46F5-A89F-93812BAAE8D6_1_105_c-768x625-1.jpg'),(13749,974,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:768;s:6:\"height\";i:625;s:4:\"file\";s:66:\"2019/06/50BC9338-8BBA-46F5-A89F-93812BAAE8D6_1_105_c-768x625-1.jpg\";s:8:\"filesize\";i:82705;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:66:\"50BC9338-8BBA-46F5-A89F-93812BAAE8D6_1_105_c-768x625-1-300x244.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:244;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20976;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:66:\"50BC9338-8BBA-46F5-A89F-93812BAAE8D6_1_105_c-768x625-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10340;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"iPhone 11 Pro\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1608738602\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"6\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(13750,974,'_wp_attachment_image_alt','Bread Pudding'),(13860,975,'_wp_attached_file','2018/08/Tom-Signature_Hi-2-copy-300x100-1.png'),(13861,975,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:100;s:4:\"file\";s:45:\"2018/08/Tom-Signature_Hi-2-copy-300x100-1.png\";s:8:\"filesize\";i:12004;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"Tom-Signature_Hi-2-copy-300x100-1-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7301;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13862,975,'_wp_attachment_image_alt','Tom Meadowcroft Signature'),(13863,976,'_wp_attached_file','2018/08/vineyard.jpg'),(13864,976,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:700;s:4:\"file\";s:20:\"2018/08/vineyard.jpg\";s:8:\"filesize\";i:225020;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"vineyard-300x205.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24590;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"vineyard-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11249;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"vineyard-768x525.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120848;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:17:\"iPhone 11 Pro Max\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1623853068\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"1.54\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:17:\"0.000709219858156\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(13865,976,'_wp_attachment_image_alt','Vineyard under deep blue sky'),(13871,977,'_wp_attached_file','2018/08/vineyard-thumb.jpg'),(13872,977,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:600;s:4:\"file\";s:26:\"2018/08/vineyard-thumb.jpg\";s:8:\"filesize\";i:250649;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"vineyard-thumb-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28125;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"vineyard-thumb-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11665;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13873,977,'_wp_attachment_image_alt','Vineyard under deep blue sky'),(13877,978,'_wp_attached_file','2018/08/tom.jpg'),(13878,978,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:650;s:6:\"height\";i:812;s:4:\"file\";s:15:\"2018/08/tom.jpg\";s:8:\"filesize\";i:123288;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"tom-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48578;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"tom-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36923;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1629208423\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:4:\"8000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(13879,978,'_wp_attachment_image_alt','Tom Meadowcroft holding grapes'),(13880,979,'_wp_attached_file','2018/08/harvest.jpg'),(13881,979,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:650;s:6:\"height\";i:482;s:4:\"file\";s:19:\"2018/08/harvest.jpg\";s:8:\"filesize\";i:101007;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"harvest-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23390;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"harvest-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10041;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"iPhone 7 Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1631532695\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"6.6\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:16:\"0.00250626566416\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(13882,979,'_wp_attachment_image_alt','Workers picking grapes during harvest'),(13917,642,'content_block_0_layout_title',''),(13918,642,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(13919,642,'content_block_0_text_block_columns','one'),(13920,642,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(13921,642,'content_block_0_narrow_text_block_content','0'),(13922,642,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(13923,642,'content_block_0_reverse_colors','0'),(13924,642,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(13925,642,'content_block_0_enable_background_image','0'),(13926,642,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(13927,642,'content_block_0_custom_css_class',''),(13928,642,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(13929,642,'content_block_0_text_block_content_col_one','<h1>SUSTAINABLY SOURCED WINES </h1>\r\n&nbsp;\r\n<h2><span class=\"h2\">SUSTAINABLE RED WINES</span></h2>\r\nToday, it’s easier than ever to buy red wine online. So if you crave rich, ravishing reds, peruse Meadowcroft’s extensive online selection. We’re delighted to provide sustainably sourced red wines for sale. Whether you prefer Cabernet Sauvignon, Pinot Noir, Zinfandel, or another variety, our portfolio of wines has an option for everyone, for everyday drinking and for collecting excellent additions to your collection.\r\n\r\nCurating the perfect sip starts right at our vineyard. All of our sustainably sourced red wines for sale are exceptional and distinctive, and this is because we mindfully source our vineyards and creatively craft each of our wines. If you’d like to learn more about our red wine bottles for sale, consider visiting our Tasting Room. Sit back and sample some of the finest in Sonoma.\r\n\r\n<h2>SUSTAINABLE SPARKLING WINES</h2>\r\nWhen you are in the mood for something that sparkles or perhaps some subtle fruit and fun, nothing hits the spot quite like a sparkling wine. The best part? You can buy our sustainably sourced sparkling wines for sale online and have them for both celebratory and casual occasions.\r\n\r\nMeadowcroft proudly offers sustainably sourced sparkling wines for sale. Our sparkling wine is sourced from prestigious Napa Valley growers. Through our site, you can discover a wide range of sparkling wine for sale, including champagne, rosé, and many more varieties. Find the one that intrigues you most, and don’t forget to buy an additional bottle to share. If you’d like, you can even see us in person—visit our Tasting Room for something truly special.'),(13930,642,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(13931,642,'_yoast_wpseo_estimated-reading-time-minutes','0'),(13932,642,'_yoast_wpseo_wordproof_timestamp',''),(13935,980,'_wp_attached_file','2022/11/Meadowcroft-2019_Cabernet_Oakville_Bottleshot.png'),(13936,980,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1384;s:6:\"height\";i:5408;s:4:\"file\";s:57:\"2022/11/Meadowcroft-2019_Cabernet_Oakville_Bottleshot.png\";s:8:\"filesize\";i:8301955;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"Meadowcroft-2019_Cabernet_Oakville_Bottleshot-77x300.png\";s:5:\"width\";i:77;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30383;}s:5:\"large\";a:5:{s:4:\"file\";s:58:\"Meadowcroft-2019_Cabernet_Oakville_Bottleshot-262x1024.png\";s:5:\"width\";i:262;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:252570;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-2019_Cabernet_Oakville_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28680;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:58:\"Meadowcroft-2019_Cabernet_Oakville_Bottleshot-768x3001.png\";s:5:\"width\";i:768;s:6:\"height\";i:3001;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2141224;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:58:\"Meadowcroft-2019_Cabernet_Oakville_Bottleshot-393x1536.png\";s:5:\"width\";i:393;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:552258;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:58:\"Meadowcroft-2019_Cabernet_Oakville_Bottleshot-524x2048.png\";s:5:\"width\";i:524;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:970099;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:59:\"Meadowcroft-2019_Cabernet_Oakville_Bottleshot-1200x4689.png\";s:5:\"width\";i:1200;s:6:\"height\";i:4689;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5280280;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13937,980,'_wp_attachment_image_alt','2019 Oakville Napa Valley Cabernet Sauvignon Bottle'),(13938,981,'_wp_attached_file','2022/11/Meadowcroft-2019_Cabernet_Oakville_Techsheet.pdf'),(13939,981,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:52:\"Meadowcroft-2019_Cabernet_Oakville_Techsheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:312584;}s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"Meadowcroft-2019_Cabernet_Oakville_Techsheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22121;}s:5:\"large\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-2019_Cabernet_Oakville_Techsheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167006;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"Meadowcroft-2019_Cabernet_Oakville_Techsheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8385;}}s:8:\"filesize\";i:333991;}'),(13940,982,'_wp_attached_file','2022/11/Meadowcroft-2019_Cabernet_Oakville_Thumb.png'),(13941,982,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:154;s:6:\"height\";i:600;s:4:\"file\";s:52:\"2022/11/Meadowcroft-2019_Cabernet_Oakville_Thumb.png\";s:8:\"filesize\";i:132400;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"Meadowcroft-2019_Cabernet_Oakville_Thumb-77x300.png\";s:5:\"width\";i:77;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30956;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"Meadowcroft-2019_Cabernet_Oakville_Thumb-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30756;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13942,982,'_wp_attachment_image_alt','2019 Oakville Napa Valley Cabernet Sauvignon Bottle'),(13943,508,'content_block_1_layout_title','Assets Row 1'),(13944,508,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(13945,508,'content_block_1_text_block_columns','four'),(13946,508,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(13947,508,'content_block_1_column_size','equal'),(13948,508,'_content_block_1_column_size','field_columnsize'),(13949,508,'content_block_1_narrow_text_block_content','0'),(13950,508,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(13951,508,'content_block_1_reverse_colors','0'),(13952,508,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(13953,508,'content_block_1_enable_background_image','0'),(13954,508,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(13955,508,'content_block_1_custom_css_class','wide-content white-boxes'),(13956,508,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(13957,508,'content_block_1_text_block_content_col_one','<img class=\"wp-image-1500 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/12/mc-logo.png\" alt=\"Meadowcroft Logo\" width=\"300\" height=\"250\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">BRAND &amp; LOGO</span></h2>\r\n<p style=\"text-align: center;\"><a href=\"/wp-content/uploads/2022/11/Meadowcroft-Logo-Horizontal-Bee-Lighter3-2.png\">Download Logo</a></p>'),(13958,508,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(13959,508,'content_block_1_text_block_content_col_two','<h2><img class=\"wp-image-1498 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/12/100.png\" alt=\"Top 100 wineries award logo\" width=\"150\" height=\"250\" /></h2>\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">ACCOLADES</span></h2>\r\n<p style=\"text-align: center;\"><a href=\"/awards-and-news/\">Awards &amp; Ratings</a></p>'),(13960,508,'_content_block_1_text_block_content_col_two','field_5bbe31593920e'),(13961,508,'content_block_1_text_block_content_col_three','<img class=\"wp-image-1072 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2011-Bottle-Shot-500-1.jpg\" alt=\"Meadowcroft 2011 Mt Veeder Cabernet\" width=\"150\" height=\"250\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">MOUNT VEEDER | NAPA VALLEY CABERNET SAUVIGNON</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/13CSNVEG_1.png\">2013</a> | <a href=\"/wp-content/uploads/2023/02/14CSNVEG_1.png\">2014</a> | <a href=\"/wp-content/uploads/2023/02/15CSNVEG_1.png\">2015</a>| <a href=\"/wp-content/uploads/2023/02/16CSNVEG_1.png\">2016</a> | <a href=\"/wp-content/uploads/2022/11/MC2017_CS_MV_BottleShot-scaled-1.jpeg\">2017</a> | <a href=\"/wp-content/uploads/2023/02/MC_Veeeder_2018_Bottleshot_png.png\">2018</a> | <a href=\"/wp-content/uploads/2023/02/MC_Veeder_2019_Bottleshot_png-2.png\">2019</a>\r\nTech Sheet: 2013 | 2014 | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2015CabernetSauvignon_MountVeederNapaValley_TECHSheet.pdf\">2015</a>| <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2016CabernetSauvignon_MountVeederNapaValley_TECHSheet.pdf\">2016</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2017CabernetSauvignon_MountVeederNapaValley_TECHSheet.pdf\">2017</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018CabernetSauvignon_MountVeederNapaValley_TECHSheet.pdf\">2018</a> | 2019 | <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/08/TechSheet-2020-Cab-MtVeeder-Final-1.pdf\">2020</a></p>'),(13962,508,'_content_block_1_text_block_content_col_three','field_5bbe31793920f'),(13963,983,'_wp_attached_file','2022/11/Meadowcroft-2018_Cabernet_SpringMT_BottleShot.png'),(13964,983,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2085;s:6:\"height\";i:5676;s:4:\"file\";s:57:\"2022/11/Meadowcroft-2018_Cabernet_SpringMT_BottleShot.png\";s:8:\"filesize\";i:10645176;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-2018_Cabernet_SpringMT_BottleShot-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26530;}s:5:\"large\";a:5:{s:4:\"file\";s:58:\"Meadowcroft-2018_Cabernet_SpringMT_BottleShot-376x1024.png\";s:5:\"width\";i:376;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:254627;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-2018_Cabernet_SpringMT_BottleShot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21399;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:58:\"Meadowcroft-2018_Cabernet_SpringMT_BottleShot-768x2091.png\";s:5:\"width\";i:768;s:6:\"height\";i:2091;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1100789;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:58:\"Meadowcroft-2018_Cabernet_SpringMT_BottleShot-564x1536.png\";s:5:\"width\";i:564;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:583497;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:58:\"Meadowcroft-2018_Cabernet_SpringMT_BottleShot-752x2048.png\";s:5:\"width\";i:752;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1052509;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:59:\"Meadowcroft-2018_Cabernet_SpringMT_BottleShot-1200x3267.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2873805;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13965,983,'_wp_attachment_image_alt','2018 Spring Mountain District Napa Valley Cabernet Sauvignon Bottle'),(13966,984,'_wp_attached_file','2022/11/Meadowcroft_2018CabernetSauvignonSpringMT_TECHSheet.pdf'),(13967,984,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_2018CabernetSauvignonSpringMT_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:306915;}s:6:\"medium\";a:5:{s:4:\"file\";s:67:\"Meadowcroft_2018CabernetSauvignonSpringMT_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23056;}s:5:\"large\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_2018CabernetSauvignonSpringMT_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166402;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:67:\"Meadowcroft_2018CabernetSauvignonSpringMT_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10085;}}s:8:\"filesize\";i:597472;}'),(13968,985,'_wp_attached_file','2022/11/Meadowcroft-2018_Cabernet_SM_Bottleshot.png'),(13969,985,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:154;s:6:\"height\";i:600;s:4:\"file\";s:51:\"2022/11/Meadowcroft-2018_Cabernet_SM_Bottleshot.png\";s:8:\"filesize\";i:132245;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Meadowcroft-2018_Cabernet_SM_Bottleshot-77x300.png\";s:5:\"width\";i:77;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26980;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"Meadowcroft-2018_Cabernet_SM_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31474;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13970,985,'_wp_attachment_image_alt','2018 Spring Mountain District Napa Valley Cabernet Sauvignon Bottle'),(13971,986,'_wp_attached_file','2022/11/2012-Napa-College-Vineyard-Cab-Sauv.png'),(13972,986,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:154;s:6:\"height\";i:600;s:4:\"file\";s:47:\"2022/11/2012-Napa-College-Vineyard-Cab-Sauv.png\";s:8:\"filesize\";i:88484;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"2012-Napa-College-Vineyard-Cab-Sauv-77x300.png\";s:5:\"width\";i:77;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25099;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"2012-Napa-College-Vineyard-Cab-Sauv-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21632;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13973,986,'_wp_attachment_image_alt','Napa Valley Cabernet Sauvignon Bottle'),(13974,987,'_wp_attached_file','2022/11/Meadowcroft-2014-Napa-Valley-Cab-BottleShot.png'),(13975,987,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2085;s:6:\"height\";i:5676;s:4:\"file\";s:55:\"2022/11/Meadowcroft-2014-Napa-Valley-Cab-BottleShot.png\";s:8:\"filesize\";i:10634885;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-2014-Napa-Valley-Cab-BottleShot-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26048;}s:5:\"large\";a:5:{s:4:\"file\";s:56:\"Meadowcroft-2014-Napa-Valley-Cab-BottleShot-376x1024.png\";s:5:\"width\";i:376;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:251382;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-2014-Napa-Valley-Cab-BottleShot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21628;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:56:\"Meadowcroft-2014-Napa-Valley-Cab-BottleShot-768x2091.png\";s:5:\"width\";i:768;s:6:\"height\";i:2091;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1093029;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:56:\"Meadowcroft-2014-Napa-Valley-Cab-BottleShot-564x1536.png\";s:5:\"width\";i:564;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:578327;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:56:\"Meadowcroft-2014-Napa-Valley-Cab-BottleShot-752x2048.png\";s:5:\"width\";i:752;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1044528;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-2014-Napa-Valley-Cab-BottleShot-1200x3267.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2862265;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13976,987,'_wp_attachment_image_alt','Meadowcroft 2014 Napa Valley Cabernet Sauvignon Bottle'),(13977,988,'_wp_attached_file','2022/11/Meadowcroft_2015CabernetSauvignonNapaValley_TECHSheet.pdf'),(13978,988,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:61:\"Meadowcroft_2015CabernetSauvignonNapaValley_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:263471;}s:6:\"medium\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_2015CabernetSauvignonNapaValley_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19072;}s:5:\"large\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_2015CabernetSauvignonNapaValley_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139169;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_2015CabernetSauvignonNapaValley_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7745;}}s:8:\"filesize\";i:256081;}'),(13979,989,'_wp_attached_file','2022/11/Meadowcroft-2015-Napa-Valley-Cab-BottleShot-copy.png'),(13980,989,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2085;s:6:\"height\";i:5676;s:4:\"file\";s:60:\"2022/11/Meadowcroft-2015-Napa-Valley-Cab-BottleShot-copy.png\";s:8:\"filesize\";i:10663719;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"Meadowcroft-2015-Napa-Valley-Cab-BottleShot-copy-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26031;}s:5:\"large\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-2015-Napa-Valley-Cab-BottleShot-copy-376x1024.png\";s:5:\"width\";i:376;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:251319;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"Meadowcroft-2015-Napa-Valley-Cab-BottleShot-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21628;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-2015-Napa-Valley-Cab-BottleShot-copy-768x2091.png\";s:5:\"width\";i:768;s:6:\"height\";i:2091;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1093161;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-2015-Napa-Valley-Cab-BottleShot-copy-564x1536.png\";s:5:\"width\";i:564;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:578360;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-2015-Napa-Valley-Cab-BottleShot-copy-752x2048.png\";s:5:\"width\";i:752;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1044622;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:62:\"Meadowcroft-2015-Napa-Valley-Cab-BottleShot-copy-1200x3267.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2862402;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13981,989,'_wp_attachment_image_alt','Meadowcroft 2015 Napa Valley Cabernet Sauvignon Bottle'),(13982,990,'_wp_attached_file','2022/11/Meadowcroft_2016CabernetSauvignonNapaValley_TECHSheet.pdf'),(13983,990,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:61:\"Meadowcroft_2016CabernetSauvignonNapaValley_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:265074;}s:6:\"medium\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_2016CabernetSauvignonNapaValley_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19177;}s:5:\"large\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_2016CabernetSauvignonNapaValley_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140785;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_2016CabernetSauvignonNapaValley_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7725;}}s:8:\"filesize\";i:257476;}'),(13984,991,'_wp_attached_file','2022/11/16CSNVNC_1.png'),(13985,991,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:250;s:6:\"height\";i:708;s:4:\"file\";s:22:\"2022/11/16CSNVNC_1.png\";s:8:\"filesize\";i:168921;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"16CSNVNC_1-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26964;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"16CSNVNC_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23785;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13986,991,'_wp_attachment_image_alt','Meadowcroft 2016 Napa Valley Cabernet Sauvignon Bottle'),(13987,992,'_wp_attached_file','2022/11/Meadowcroft_2017CabernetSauvignonNapaValley_TECHSheet.pdf'),(13988,992,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:61:\"Meadowcroft_2017CabernetSauvignonNapaValley_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:266183;}s:6:\"medium\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_2017CabernetSauvignonNapaValley_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18824;}s:5:\"large\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_2017CabernetSauvignonNapaValley_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139893;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_2017CabernetSauvignonNapaValley_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7687;}}s:8:\"filesize\";i:400012;}'),(13989,993,'_wp_attached_file','2022/11/Meadowcroft_2017_NapaValley_CabernetSauvignon.png'),(13990,993,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:735;s:6:\"height\";i:2000;s:4:\"file\";s:57:\"2022/11/Meadowcroft_2017_NapaValley_CabernetSauvignon.png\";s:8:\"filesize\";i:1267139;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2017_NapaValley_CabernetSauvignon-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24392;}s:5:\"large\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_2017_NapaValley_CabernetSauvignon-376x1024.png\";s:5:\"width\";i:376;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:265983;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2017_NapaValley_CabernetSauvignon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20140;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_2017_NapaValley_CabernetSauvignon-564x1536.png\";s:5:\"width\";i:564;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:617837;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13991,994,'_wp_attached_file','2022/11/Meadowcroft_NapaValley_CabernetSauvignon_2018_small.png'),(13992,994,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:735;s:6:\"height\";i:2000;s:4:\"file\";s:63:\"2022/11/Meadowcroft_NapaValley_CabernetSauvignon_2018_small.png\";s:8:\"filesize\";i:1267426;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_NapaValley_CabernetSauvignon_2018_small-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24428;}s:5:\"large\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_NapaValley_CabernetSauvignon_2018_small-376x1024.png\";s:5:\"width\";i:376;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:266364;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_NapaValley_CabernetSauvignon_2018_small-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20140;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_NapaValley_CabernetSauvignon_2018_small-564x1536.png\";s:5:\"width\";i:564;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:617953;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13995,993,'_wp_attachment_image_alt','Meadowcroft 2017 Napa Valley Cabernet Sauvignon Bottle'),(13998,994,'_wp_attachment_image_alt','Meadowcroft 2018 Napa Valley Cabernet Sauvignon Bottle'),(13999,997,'_wp_attached_file','2022/11/Meadowcroft_2018CabernetSauvignonNapaValley_TECHSheet.pdf'),(14000,997,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:61:\"Meadowcroft_2018CabernetSauvignonNapaValley_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:265913;}s:6:\"medium\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_2018CabernetSauvignonNapaValley_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18976;}s:5:\"large\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_2018CabernetSauvignonNapaValley_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140484;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_2018CabernetSauvignonNapaValley_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7745;}}s:8:\"filesize\";i:353184;}'),(14001,998,'_wp_attached_file','2022/11/Meadowcroft_2019CabernetSauvignonNapaValley_TECHSheet.pdf'),(14002,998,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:61:\"Meadowcroft_2019CabernetSauvignonNapaValley_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:284164;}s:6:\"medium\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_2019CabernetSauvignonNapaValley_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19766;}s:5:\"large\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_2019CabernetSauvignonNapaValley_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151708;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_2019CabernetSauvignonNapaValley_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7843;}}s:8:\"filesize\";i:791302;}'),(14003,999,'_wp_attached_file','2022/11/Meadowcroft_2020CabernetSauvignonNapaValley_TECHSheet.pdf'),(14004,999,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:61:\"Meadowcroft_2020CabernetSauvignonNapaValley_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:287002;}s:6:\"medium\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_2020CabernetSauvignonNapaValley_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19969;}s:5:\"large\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_2020CabernetSauvignonNapaValley_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153230;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_2020CabernetSauvignonNapaValley_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7852;}}s:8:\"filesize\";i:1886945;}'),(14144,1006,'_wp_attached_file','2022/11/vineyard-1.jpg'),(14145,1006,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1800;s:6:\"height\";i:779;s:4:\"file\";s:22:\"2022/11/vineyard-1.jpg\";s:8:\"filesize\";i:382873;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"vineyard-1-300x130.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:130;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18637;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"vineyard-1-1024x443.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:443;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141493;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"vineyard-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11834;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"vineyard-1-768x332.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:332;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85288;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"vineyard-1-1536x665.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:665;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:283630;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:23:\"vineyard-1-1200x519.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:519;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185550;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14146,1006,'_wp_attachment_image_alt','Rows of vines in vineyard'),(14147,933,'_wp_attachment_image_alt','Honeycomb pattern'),(14148,461,'_wp_page_template','default'),(14149,461,'content_block_0_layout_title',''),(14150,461,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(14151,461,'content_block_0_custom_css_class',''),(14152,461,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(14153,461,'content_block_0_banner_full_width','1'),(14154,461,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(14155,461,'content_block_0_banner_size','short'),(14156,461,'_content_block_0_banner_size','field_5bbe232929ec9'),(14157,461,'content_block_0_add_parallax_effect','0'),(14158,461,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(14159,461,'content_block_0_add_veil_over_banner','1'),(14160,461,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(14161,461,'content_block_0_banner_content_position','centered'),(14162,461,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(14163,461,'content_block_0_banner_title','SEND AN INQUIRY'),(14164,461,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(14165,461,'content_block_0_banner_subtitle',''),(14166,461,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(14167,461,'content_block_0_banner_button_link',''),(14168,461,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(14169,461,'content_block_0_banner_button_new_tab','0'),(14170,461,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(14171,461,'content_block_0_show_down_arrow','0'),(14172,461,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(14173,461,'content_block_0_banner_image_description',''),(14174,461,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(14175,461,'content_block_0_banner_image','1006'),(14176,461,'_content_block_0_banner_image','field_5bbe201718faf'),(14177,461,'content_block_0_banner_image_position','center top'),(14178,461,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(14179,461,'content_block_0_banner_image_mobile','1006'),(14180,461,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(14181,461,'content_block_0_banner_image_mobile_position','center center'),(14182,461,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(14183,461,'content_block_1_layout_title',''),(14184,461,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(14185,461,'content_block_1_text_block_columns','one'),(14186,461,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(14187,461,'content_block_1_narrow_text_block_content','0'),(14188,461,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(14189,461,'content_block_1_reverse_colors','0'),(14190,461,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(14191,461,'content_block_1_enable_background_image','1'),(14192,461,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(14193,461,'content_block_1_parallax_effect_on_image','0'),(14194,461,'_content_block_1_parallax_effect_on_image','field_5bbe319b39211'),(14195,461,'content_block_1_custom_css_class','repeating-background'),(14196,461,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(14197,461,'content_block_1_text_block_content_col_one','[gravityform id=\"2\" title=\"false\" description=\"false\"]'),(14198,461,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(14199,461,'content_block_1_background_image','933'),(14200,461,'_content_block_1_background_image','field_5bbe2eb1a4ddb'),(14201,461,'content_block_1_background_image_position','center center'),(14202,461,'_content_block_1_background_image_position','field_5bbe2eb1a4ddc'),(14203,461,'content_block_1_background_image_mobile','932'),(14204,461,'_content_block_1_background_image_mobile','field_5bbe3b5e5f6f8'),(14205,461,'content_block_1_background_image_position_mobile','center center'),(14206,461,'_content_block_1_background_image_position_mobile','field_5bbe3b695f6f9'),(14207,461,'_yoast_wpseo_estimated-reading-time-minutes','0'),(14208,461,'_yoast_wpseo_wordproof_timestamp',''),(14209,461,'_yoast_wpseo_content_score','90'),(14210,1007,'_menu_item_type','post_type'),(14211,1007,'_menu_item_menu_item_parent','0'),(14212,1007,'_menu_item_object_id','461'),(14213,1007,'_menu_item_object','page'),(14214,1007,'_menu_item_target',''),(14215,1007,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14216,1007,'_menu_item_xfn',''),(14217,1007,'_menu_item_url',''),(14219,518,'content_block_0_layout_title',''),(14220,518,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(14221,518,'content_block_0_text_block_columns','one'),(14222,518,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(14223,518,'content_block_0_narrow_text_block_content','0'),(14224,518,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(14225,518,'content_block_0_reverse_colors','0'),(14226,518,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(14227,518,'content_block_0_enable_background_image','0'),(14228,518,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(14229,518,'content_block_0_custom_css_class',''),(14230,518,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(14231,518,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">OUR POLICIES</h1>\r\n&nbsp;\r\n<h2><span class=\"h3\">SHIPPING POLICY</span></h2>\r\nMeadowcroft Wines uses the best method shipping platform to utilize the most economical, efficient and quality conscious shipment of wine to our customer. We ship on Mondays for most orders and will delay shipments to avoid temperature extremes. If your order needs to arrive by a particular date, such as for a gift or prior to travel, please call us directly. We charge our customer only what it costs us to have your wine packed and shipped to you safely and legally.\r\n\r\nAll wine is sold in California and title passes to the buyer in California. We make no representation as to the legal right of anyone to ship or import wines into any state outside of California. By placing an order with us, you authorize us to release your wine to a third party carrier who will deliver your order to you.\r\n\r\nWe strongly recommend delivery of wine shipments to a business, rather than a home address. Shipment of wine requires an adult signature. If an adult (21 years or older with proper identification of age) is not available to receive this package, additional attempts to deliver will be made. If these attempts are unsuccessful, your order will be returned to the distribution center it originated from, resulting in additional shipping costs.\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">REFUNDS / RETURN POLICY</span></h2>\r\nAt Meadowcroft Wines your satisfaction is our priority. If for any reason you are dissatisfied with your order please contact us within 3 days of receipt of your order for assistance. Call us at 707-934-4090 or <a href=\"mailto:tastingroom@meadowcroftwines.com\">email</a>\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">PRIVACY POLICY</span></h2>\r\nThis Privacy Policy governs the manner in which Meadowcroft Wines or MeadowcroftFamilyofWines.com collects, uses, maintains and discloses information collected from users of this Web site (each, a “User”).\r\n<h3 class=\"metatitle\">PRIVACY</h3>\r\nMeadowcroft Wines is committed to respecting and protecting the privacy of visitors to our web sites as well as the privacy of our actual customers, affiliates, subscribers and registered resellers. For visitors, we’ve structured our web sites so that, in general, you can visit us on the web without identifying yourself or revealing any personal information. For customers, affiliates, subscribers and registered resellers, once you choose to provide us personally identifiable information (any information by which you can be identified), you can be assured that it will only be used to support your relationship with Meadowcroft Wines.\r\n\r\nThe Information We Collect Meadowcroft Wines may collect personally identifiable information from Users in a variety of ways, including through online forms for ordering products and services, and other instances where Users are invited to volunteer such information. Meadowcroft Wines may also collect information about how Users use our Web site, for example, by tracking the number of unique views received by the pages of the Web site or the domains from which Users originate. We may use “cookies” to track how Users use our Web site. A cookie is a piece of software that a Web server can store on the Users’ PC and use to identify the User should they visit the Web site again. While not all of the information that we collect from Users is personally identifiable, it may be associated with personally identifiable information that Users provide us through our Web site. When you sign up for Meadowcroft Wines’ services, you provide us with both contact and payment information. Contact information typically includes your name, address, and phone number. Payment information typically includes your credit card number. We may also track how you were referred to our web site. For example, which search engine you used or which advertisement you clicked on. While you are a Meadowcroft Wines customer, we manage information with regard to your account status, choice of services, and customer logs. In addition, we may store customers’ electronic mail and other communications as a necessary incident to the transmission and delivery of those communications.\r\n<h3 class=\"metatitle\">HOW WE USE INFORMATION</h3>\r\nWe use the contact information you provide us to establish our service for you. We use payment information for payment processing purposes only. We use tracking information to determine which means or advertising is most effective for us. We create and maintain other information such as customer account status, choice of services, and customer logs in the normal course of providing service. Meadowcroft Wines may provide you with information about products or services offered by third parties, which may be of interest to you or to enable you to take advantage of special partner programs. Meadowcroft Wines may also use customer information to provide customers with system information or information about new or upgraded products.\r\n<h3 class=\"metatitle\">DISCLOSURE OF INFORMATION</h3>\r\nMeadowcroft Wines may disclose information collected from Users to trusted affiliates, independent contractors and business partners who will use the information for the purposes outlined above. We may also disclose aggregate, anonymous data based on information collected from Users to investors and potential partners. Finally, we may transfer information collected from Users in connection with a sale of Meadowcroft Wines’ business. We will not otherwise disclose customer personal and account information unless we have reason to believe that disclosing such information is necessary to identify, make contact with, or bring legal action against someone who may be causing harm or interfering with the rights or property of Meadowcroft Wines, our customers, or others, or where Meadowcroft Wines has a good faith belief that the law requires such disclosure.\r\n<h3 class=\"metatitle\">MAINTENANCE OF INFORMATION</h3>\r\nInformation about Users that is maintained on our systems is protected using industry standard security measures. However, we cannot guarantee that the information submitted to, maintained on, or transmitted from our systems will be completely secure.\r\n<h3 class=\"metatitle\">SECURITY</h3>\r\nYou can shop safely at www.MeadowcroftFamilyofWines.com. We use 128 bit Secure Socket Layer (SSL) technology for all transactions. All personal information is encrypted during transmission to our processing system and resides on our secure server. If at any time you are uncertain about the security of our site, view our Privacy Policy or call 707-934-4090.\r\n\r\n<hr />\r\n\r\n<h2><span class=\"h3\">MEADOWCROFTWINES.COM ACCESSIBILITY STATEMENT</span></h2>\r\nUpdated: March 2019.\r\n<h3 class=\"metatitle\">GENERAL</h3>\r\nMeadowcroftwines.com strives to ensure that its services are accessible to people with disabilities. Meadowcroftwines.com has invested a significant amount of resources to help ensure that its website is made easier to use and more accessible for people with disabilities, with the strong belief that every person has the right to live with dignity, equality, comfort and independence.\r\n<h3 class=\"metatitle\">ACCESSIBILITY ON MEADOWCROFTWINES.COM</h3>\r\nMeadowcroftwines.com makes available the UserWay Website Accessibility Widget that is powered by a dedicated accessibility server. The software allows Meadowcroftwines.com to improve its compliance with the Web Content Accessibility Guidelines (WCAG 2.1).\r\n<h3 class=\"metatitle\">ENABLING THE ACCESSIBILITY MENU</h3>\r\nThe Meadowcroftwines.com accessibility menu can be enabled by clicking the accessibility menu icon that appears on the corner of the page. After triggering the accessibility menu, please wait a moment for the accessibility menu to load in its entirety.\r\n<h3 class=\"metatitle\">DISCLAIMER</h3>\r\nMeadowcroftwines.com continues its efforts to constantly improve the accessibility of its site and services in the belief that it is our collective moral obligation to allow seamless, accessible and unhindered use also for those of us with disabilities.\r\n\r\nDespite our efforts to make all pages and content on Meadowcroftwines.com fully accessible, some content may not have yet been fully adapted to the strictest accessibility standards. This may be a result of not having found or identified the most appropriate technological solution.\r\n<h3 class=\"metatitle\">HERE FOR YOU</h3>\r\nIf you are experiencing difficulty with any content on Meadowcroftwines.com or require assistance with any part of our site, please contact us during normal business hours as detailed below and we will be happy to assist.\r\n<h3 class=\"metatitle\">CONTACT US</h3>\r\nIf you wish to report an accessibility issue, have any questions or need assistance, please contact Meadowcroftwines.com Customer Support as follows:\r\n\r\nEmail: <a href=\"mailto:tastingroom@meadowcroftwines.com\">tastingroom@meadowcroftwines.com</a>'),(14232,518,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(14233,518,'_yoast_wpseo_estimated-reading-time-minutes','0'),(14234,518,'_yoast_wpseo_wordproof_timestamp',''),(14236,1009,'_menu_item_type','post_type'),(14237,1009,'_menu_item_menu_item_parent','0'),(14238,1009,'_menu_item_object_id','518'),(14239,1009,'_menu_item_object','page'),(14240,1009,'_menu_item_target',''),(14241,1009,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14242,1009,'_menu_item_xfn',''),(14243,1009,'_menu_item_url',''),(14245,447,'content_block_0_layout_title',''),(14246,447,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(14247,447,'content_block_0_custom_css_class',''),(14248,447,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(14249,447,'_yoast_wpseo_content_score','60'),(14250,447,'_yoast_wpseo_estimated-reading-time-minutes','3'),(14251,447,'_yoast_wpseo_wordproof_timestamp',''),(14252,1012,'_menu_item_type','post_type'),(14253,1012,'_menu_item_menu_item_parent','0'),(14254,1012,'_menu_item_object_id','447'),(14255,1012,'_menu_item_object','page'),(14256,1012,'_menu_item_target',''),(14257,1012,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14258,1012,'_menu_item_xfn',''),(14259,1012,'_menu_item_url',''),(14261,449,'content_block_0_layout_title',''),(14262,449,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(14263,449,'content_block_0_custom_css_class',''),(14264,449,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(14265,449,'_yoast_wpseo_content_score','90'),(14266,449,'_yoast_wpseo_estimated-reading-time-minutes','0'),(14267,449,'_yoast_wpseo_wordproof_timestamp',''),(14274,1015,'_wp_attached_file','2022/11/Fall-2022-Newsletter.pdf'),(14275,1015,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:28:\"Fall-2022-Newsletter-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:323758;}s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Fall-2022-Newsletter-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19313;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"Fall-2022-Newsletter-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165454;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Fall-2022-Newsletter-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7424;}}s:8:\"filesize\";i:2676714;}'),(14276,449,'content_block_1_layout_title','Fall 2022 Newsletter'),(14277,449,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(14278,449,'content_block_1_text_block_columns','two'),(14279,449,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(14280,449,'content_block_1_column_size','equal'),(14281,449,'_content_block_1_column_size','field_columnsize'),(14282,449,'content_block_1_narrow_text_block_content','1'),(14283,449,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(14284,449,'content_block_1_reverse_colors','0'),(14285,449,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(14286,449,'content_block_1_enable_background_image','0'),(14287,449,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(14288,449,'content_block_1_custom_css_class',''),(14289,449,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(14290,449,'content_block_1_text_block_content_col_one','<a href=\"/wp-content/uploads/2022/11/Fall-2022-Newsletter.pdf\"><img class=\"alignnone wp-image-1017\" src=\"/wp-content/uploads/2023/02/fall-2022-newsletter-cover@3x.jpg\" alt=\"\" width=\"330\" height=\"427\" /></a>'),(14291,449,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(14292,449,'content_block_1_text_block_content_col_two','<h3>FALL 2022</h3>\r\nIn This Newsletter:\r\n<ul>\r\n 	<li>Our New Web Experience</li>\r\n 	<li>Vineyard Spotlight</li>\r\n</ul>\r\n<a class=\"button\" href=\"/wp-content/uploads/2022/11/Fall-2022-Newsletter.pdf\">READ THE NEWSLETTER NOW (PDF)</a>'),(14293,449,'_content_block_1_text_block_content_col_two','field_5bbe31593920e'),(14294,1016,'_wp_attached_file','2022/11/fall-2022-newsletter-thumb@2x.jpg'),(14295,1016,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:772;s:6:\"height\";i:1000;s:4:\"file\";s:41:\"2022/11/fall-2022-newsletter-thumb@2x.jpg\";s:8:\"filesize\";i:204680;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"fall-2022-newsletter-thumb@2x-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24217;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"fall-2022-newsletter-thumb@2x-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11542;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"fall-2022-newsletter-thumb@2x-768x995.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:995;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138177;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14296,1016,'_wp_attachment_image_alt','Meadowcroft Fall 2022 Newsletter Thumbnail'),(14297,1017,'_wp_attached_file','2022/11/fall-2022-newsletter-cover@3x.jpg'),(14298,1017,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1854;s:6:\"height\";i:2400;s:4:\"file\";s:41:\"2022/11/fall-2022-newsletter-cover@3x.jpg\";s:8:\"filesize\";i:654100;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"fall-2022-newsletter-cover@3x-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24186;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"fall-2022-newsletter-cover@3x-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:172377;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"fall-2022-newsletter-cover@3x-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11496;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"fall-2022-newsletter-cover@3x-768x994.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:994;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:164143;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"fall-2022-newsletter-cover@3x-1187x1536.jpg\";s:5:\"width\";i:1187;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:296525;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:43:\"fall-2022-newsletter-cover@3x-1582x2048.jpg\";s:5:\"width\";i:1582;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:438572;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:43:\"fall-2022-newsletter-cover@3x-1200x1553.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1553;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:300739;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14299,1018,'_wp_attached_file','2022/11/Spring-2022-Newsletter-3.pdf'),(14300,1018,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:32:\"Spring-2022-Newsletter-3-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:260910;}s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Spring-2022-Newsletter-3-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19081;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"Spring-2022-Newsletter-3-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142790;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Spring-2022-Newsletter-3-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7574;}}s:8:\"filesize\";i:2637505;}'),(14301,1019,'_wp_attached_file','2022/11/Spring-2022-Newsletter-Thumb@3x.jpg'),(14302,1019,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1854;s:6:\"height\";i:2400;s:4:\"file\";s:43:\"2022/11/Spring-2022-Newsletter-Thumb@3x.jpg\";s:8:\"filesize\";i:555363;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"Spring-2022-Newsletter-Thumb@3x-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22363;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"Spring-2022-Newsletter-Thumb@3x-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142878;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Spring-2022-Newsletter-Thumb@3x-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10512;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"Spring-2022-Newsletter-Thumb@3x-768x994.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:994;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137873;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:45:\"Spring-2022-Newsletter-Thumb@3x-1187x1536.jpg\";s:5:\"width\";i:1187;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:245363;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:45:\"Spring-2022-Newsletter-Thumb@3x-1582x2048.jpg\";s:5:\"width\";i:1582;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:360223;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"Spring-2022-Newsletter-Thumb@3x-1200x1553.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1553;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:249845;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14303,1019,'_wp_attachment_image_alt','Meadowcroft Fall 2022 Newsletter Thumbnail'),(14304,449,'content_block_2_layout_title','Spring 2022 Newsletter'),(14305,449,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(14306,449,'content_block_2_text_block_columns','two'),(14307,449,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(14308,449,'content_block_2_column_size','equal'),(14309,449,'_content_block_2_column_size','field_columnsize'),(14310,449,'content_block_2_narrow_text_block_content','1'),(14311,449,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(14312,449,'content_block_2_reverse_colors','0'),(14313,449,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(14314,449,'content_block_2_enable_background_image','0'),(14315,449,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(14316,449,'content_block_2_custom_css_class',''),(14317,449,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(14318,449,'content_block_2_text_block_content_col_one','<a href=\"/wp-content/uploads/2022/11/Spring-2022-Newsletter-3.pdf\"><img class=\"alignnone size-full wp-image-1019\" src=\"/wp-content/uploads/2023/02/Spring-2022-Newsletter-Thumb@3x.png\" alt=\"Meadowcroft Fall 2022 Newsletter Thumbnail\" width=\"330\" height=\"427\" /></a>'),(14319,449,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(14320,449,'content_block_2_text_block_content_col_two','<h3>SPRING 2022</h3>\r\nIn This Newsletter:\r\n<ul>\r\n 	<li>Meditation and Wine</li>\r\n 	<li>Upcoming Events</li>\r\n</ul>\r\n<a class=\"button\" href=\"/wp-content/uploads/2022/11/Spring-2022-Newsletter-3.pdf\">READ THE NEWSLETTER NOW (PDF)</a>'),(14321,449,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(14322,1020,'_wp_attached_file','2022/11/Meadowcroft-Winter-2022-Newsletter-3.pdf'),(14323,1020,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:44:\"Meadowcroft-Winter-2022-Newsletter-3-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:246385;}s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"Meadowcroft-Winter-2022-Newsletter-3-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17943;}s:5:\"large\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-Winter-2022-Newsletter-3-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137021;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"Meadowcroft-Winter-2022-Newsletter-3-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7393;}}s:8:\"filesize\";i:2463461;}'),(14324,1021,'_wp_attached_file','2022/11/Screen-Shot-2022-02-21-at-1.54.05-PM.jpg'),(14325,1021,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:2068;s:4:\"file\";s:48:\"2022/11/Screen-Shot-2022-02-21-at-1.54.05-PM.jpg\";s:8:\"filesize\";i:572802;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2022-02-21-at-1.54.05-PM-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18057;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"Screen-Shot-2022-02-21-at-1.54.05-PM-792x1024.jpg\";s:5:\"width\";i:792;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130768;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2022-02-21-at-1.54.05-PM-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8984;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2022-02-21-at-1.54.05-PM-768x993.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:993;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124168;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"Screen-Shot-2022-02-21-at-1.54.05-PM-1188x1536.jpg\";s:5:\"width\";i:1188;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:236387;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:50:\"Screen-Shot-2022-02-21-at-1.54.05-PM-1585x2048.jpg\";s:5:\"width\";i:1585;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:357099;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:50:\"Screen-Shot-2022-02-21-at-1.54.05-PM-1200x1551.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1551;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:238707;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14326,1021,'_wp_attachment_image_alt','Meadowcroft Winter 2022 Newsletter Thumbnail'),(14327,449,'content_block_3_layout_title','Winter 2022 Newsletter'),(14328,449,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(14329,449,'content_block_3_text_block_columns','two'),(14330,449,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(14331,449,'content_block_3_column_size','equal'),(14332,449,'_content_block_3_column_size','field_columnsize'),(14333,449,'content_block_3_narrow_text_block_content','1'),(14334,449,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(14335,449,'content_block_3_reverse_colors','0'),(14336,449,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(14337,449,'content_block_3_enable_background_image','0'),(14338,449,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(14339,449,'content_block_3_custom_css_class',''),(14340,449,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(14341,449,'content_block_3_text_block_content_col_one','<a href=\"/wp-content/uploads/2022/11/Meadowcroft-Winter-2022-Newsletter-3.pdf\"><img class=\"alignnone size-full wp-image-1021\" src=\"/wp-content/uploads/2023/02/Screen-Shot-2022-02-21-at-1.54.05-PM.jpg\" alt=\"Meadowcroft Winter 2022 Newsletter Thumbnail\" width=\"330\" height=\"427\" /></a>'),(14342,449,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(14343,449,'content_block_3_text_block_content_col_two','<h3>WINTER 2022</h3>\r\nIn This Newsletter:\r\n<ul>\r\n 	<li>Tom Meadowcroft’s vision for 2022</li>\r\n 	<li>New Club Exclusive Wines</li>\r\n</ul>\r\n<a class=\"button\" href=\"/wp-content/uploads/2022/11/Meadowcroft-Winter-2022-Newsletter-3.pdf\">READ THE NEWSLETTER NOW (PDF)</a>'),(14344,449,'_content_block_3_text_block_content_col_two','field_5bbe31593920e'),(14345,1022,'_menu_item_type','post_type'),(14346,1022,'_menu_item_menu_item_parent','0'),(14347,1022,'_menu_item_object_id','449'),(14348,1022,'_menu_item_object','page'),(14349,1022,'_menu_item_target',''),(14350,1022,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14351,1022,'_menu_item_xfn',''),(14352,1022,'_menu_item_url',''),(14354,670,'_yoast_wpseo_estimated-reading-time-minutes','0'),(14355,670,'_yoast_wpseo_wordproof_timestamp',''),(14381,1034,'_wp_attached_file','2022/11/Meadowcroft-Logo-Horizontal-Bee-Lighter3.png'),(14382,1034,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:137;s:4:\"file\";s:52:\"2022/11/Meadowcroft-Logo-Horizontal-Bee-Lighter3.png\";s:8:\"filesize\";i:42124;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"Meadowcroft-Logo-Horizontal-Bee-Lighter3-300x59.png\";s:5:\"width\";i:300;s:6:\"height\";i:59;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13310;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"Meadowcroft-Logo-Horizontal-Bee-Lighter3-150x137.png\";s:5:\"width\";i:150;s:6:\"height\";i:137;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6192;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14383,1034,'_wp_attachment_image_alt','Meadowcroft Wines Logo'),(14384,1035,'_wp_attached_file','2022/11/Meadowcroft-Logo-Horizontal-Bee-Lighter3-1.png'),(14385,1035,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:137;s:4:\"file\";s:54:\"2022/11/Meadowcroft-Logo-Horizontal-Bee-Lighter3-1.png\";s:8:\"filesize\";i:42124;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-Logo-Horizontal-Bee-Lighter3-1-300x59.png\";s:5:\"width\";i:300;s:6:\"height\";i:59;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13310;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"Meadowcroft-Logo-Horizontal-Bee-Lighter3-1-150x137.png\";s:5:\"width\";i:150;s:6:\"height\";i:137;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6192;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14386,1036,'_wp_attached_file','2022/11/favicon.png'),(14387,1036,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:19:\"2022/11/favicon.png\";s:8:\"filesize\";i:4487;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14388,1036,'_wp_attachment_image_alt','Favicon'),(14389,1037,'_wp_attached_file','2022/11/apple-touch-icon.png'),(14390,1037,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:180;s:6:\"height\";i:180;s:4:\"file\";s:28:\"2022/11/apple-touch-icon.png\";s:8:\"filesize\";i:14075;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"apple-touch-icon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9525;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14391,1037,'_wp_attachment_image_alt','Apple Touch Icon'),(14405,412,'_yoast_wpseo_title','Meadowcroft Wines | Best Winery in Sonoma County, CA'),(14406,412,'_yoast_wpseo_metadesc','Looking for the best winery in Sonoma? Our guide provides all the information you need to find the perfect spot for a wine-tasting getaway. Click now to learn more!'),(14407,445,'_yoast_wpseo_title','Wine Tasting Room at Cornerstone, Sonoma County, CA'),(14408,445,'_yoast_wpseo_metadesc','Have a experience of unique wine-tasting at Cornerstone, Sonoma County. Our wine experts will guide you through a variety of delicious wines & you\'ll thoroughly enjoy it.'),(14409,670,'_yoast_wpseo_title','Awards and Ratings - Meadowcroft Wines'),(14410,670,'_yoast_wpseo_metadesc','Love Meadowcroft Wines? Here are some of our latest ratings and awards on Meadowcroft wines.'),(14411,444,'_yoast_wpseo_title','About Tom Meadowcroft and Team - Meadowcroft Wines'),(14412,444,'_yoast_wpseo_metadesc','At Meadowcroft, we proudly focus on a wide array of beautiful varietals, including Cabernet Sauvignon, Pinot Noir, and Viognier by Tom Meadowcroft.'),(14413,443,'_yoast_wpseo_title','Meadowcroft Wine Club Membership | Meadowcroft Wines'),(14414,443,'_yoast_wpseo_metadesc','Join the Meadowcroft wine club membership to discover limited production wines from Napa and Sonoma, including small lots of Cabernet Sauvignon, Pinot Noir, etc.'),(14415,642,'_yoast_wpseo_metadesc','Meadowcroft offers a variety of sustainably sourced wines for sale. Stock up on your favorites online or visit our Tasting Room to sip something new.'),(14416,726,'_yoast_wpseo_title','Upcoming Sonoma Wine Events - Meadowcroft Wines'),(14417,726,'_yoast_wpseo_metadesc','View the upcoming Sonoma wine events at Meadowcroft Wines in Carneros, Sonoma, and Napa areas including special wine tastings, winemaker dinners and more'),(14418,726,'_yoast_wpseo_estimated-reading-time-minutes','0'),(14419,726,'_yoast_wpseo_wordproof_timestamp',''),(14420,516,'_yoast_wpseo_title','Our Vineyard Mount Veeder Napa - Meadowcroft Wines'),(14421,516,'_yoast_wpseo_metadesc','Meadowcroft\'s Mount Veeder cabernet sauvignon is a classic expression of Napa cabernet sauvignon. Perched at 1,200 feet elevation with sedimentary clay and volcanic soils, Meadowcroft’s Mount Veeder Vineyard has extremely steep slopes.'),(14422,508,'_yoast_wpseo_title','Wine Media and Trade - Meadowcroft Wines'),(14423,508,'_yoast_wpseo_metadesc','Meadowcroft Wine Trade and Media with Bottle Shots, Tech Sheets and Distributor Material for use by the wine media and wine trade'),(14431,449,'_yoast_wpseo_metadesc','Join the mailing list of Meadowcroft Wines to receive periodic updates about upcoming events, wine specials and news from the winery.'),(14432,431,'_yoast_wpseo_metadesc','Situated in Cornerstone in Sonoma, the Tasting Room of Meadowcroft Wines is the ideal location for your wine country experience.'),(14445,1042,'_menu_item_type','post_type'),(14446,1042,'_menu_item_menu_item_parent','0'),(14447,1042,'_menu_item_object_id','670'),(14448,1042,'_menu_item_object','page'),(14449,1042,'_menu_item_target',''),(14450,1042,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14451,1042,'_menu_item_xfn',''),(14452,1042,'_menu_item_url',''),(14454,1007,'_wp_old_date','2022-11-08'),(14456,1022,'_wp_old_date','2022-11-08'),(14457,1009,'_wp_old_date','2022-11-08'),(14458,1012,'_wp_old_date','2022-11-08'),(14478,1051,'_wp_attached_file','2022/11/club.jpg'),(14479,1051,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:16:\"2022/11/club.jpg\";s:8:\"filesize\";i:49081;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"club-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13237;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14480,1051,'_wp_attachment_image_alt','Red and white Meadowcroft wines on table'),(14491,445,'content_block_3_parallax_effect_on_image','1'),(14492,445,'_content_block_3_parallax_effect_on_image','field_5bbe319b39211'),(14493,445,'content_block_3_background_image','933'),(14494,445,'_content_block_3_background_image','field_5bbe2eb1a4ddb'),(14495,445,'content_block_3_background_image_position','center center'),(14496,445,'_content_block_3_background_image_position','field_5bbe2eb1a4ddc'),(14497,445,'content_block_3_background_image_mobile','932'),(14498,445,'_content_block_3_background_image_mobile','field_5bbe3b5e5f6f8'),(14499,445,'content_block_3_background_image_position_mobile','center center'),(14500,445,'_content_block_3_background_image_position_mobile','field_5bbe3b695f6f9'),(14505,1052,'_tribe_modified_fields','a:23:{s:21:\"inline_featured_image\";i:1668697332;s:12:\"_EventOrigin\";i:1668697332;s:10:\"_edit_last\";i:1668697338;s:10:\"post_title\";i:1668697338;s:11:\"post_status\";i:1668697388;s:12:\"post_content\";i:1668697388;s:17:\"_EventShowMapLink\";i:1668697388;s:13:\"_EventShowMap\";i:1668697388;s:15:\"_EventStartDate\";i:1668697388;s:13:\"_EventEndDate\";i:1668697388;s:18:\"_EventStartDateUTC\";i:1668697388;s:16:\"_EventEndDateUTC\";i:1668697388;s:14:\"_EventDuration\";i:1668697388;s:20:\"_EventCurrencySymbol\";i:1668697388;s:18:\"_EventCurrencyCode\";i:1668697388;s:22:\"_EventCurrencyPosition\";i:1668697388;s:10:\"_EventCost\";i:1668697388;s:9:\"_EventURL\";i:1668697388;s:14:\"_EventTimezone\";i:1668697388;s:18:\"_EventTimezoneAbbr\";i:1668697388;s:26:\"_yoast_wpseo_content_score\";i:1668697389;s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";i:1668697389;s:32:\"_yoast_wpseo_wordproof_timestamp\";i:1668697389;}'),(14506,1052,'inline_featured_image','0'),(14507,1052,'_EventOrigin','events-calendar'),(14508,1052,'_edit_lock','1668726130:2'),(14509,1052,'_edit_last','2'),(14510,1052,'_EventShowMapLink','1'),(14511,1052,'_EventShowMap','1'),(14512,1052,'_EventStartDate','2022-11-30 18:00:00'),(14513,1052,'_EventEndDate','2022-11-30 19:30:00'),(14514,1052,'_EventStartDateUTC','2022-12-01 02:00:00'),(14515,1052,'_EventEndDateUTC','2022-12-01 03:30:00'),(14516,1052,'_EventDuration','5400'),(14517,1052,'_EventCurrencySymbol',''),(14518,1052,'_EventCurrencyCode',''),(14519,1052,'_EventCurrencyPosition','prefix'),(14520,1052,'_EventCost','FREE'),(14521,1052,'_EventURL',''),(14522,1052,'_EventTimezone','America/Vancouver'),(14523,1052,'_EventTimezoneAbbr','PST'),(14524,1052,'_yoast_wpseo_content_score','60'),(14525,1052,'_yoast_wpseo_estimated-reading-time-minutes','0'),(14526,1052,'_yoast_wpseo_wordproof_timestamp',''),(14527,1053,'_wp_attached_file','2022/11/Meadowcroft-Logo-Horizontal-Bee-Lighter3-2.png'),(14528,1053,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:137;s:4:\"file\";s:54:\"2022/11/Meadowcroft-Logo-Horizontal-Bee-Lighter3-2.png\";s:8:\"filesize\";i:42124;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-Logo-Horizontal-Bee-Lighter3-2-300x59.png\";s:5:\"width\";i:300;s:6:\"height\";i:59;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13310;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"Meadowcroft-Logo-Horizontal-Bee-Lighter3-2-150x137.png\";s:5:\"width\";i:150;s:6:\"height\";i:137;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6192;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14529,1053,'_wp_attachment_image_alt','Meadowcroft Wines'),(14530,508,'content_block_1_text_block_content_col_four','<img class=\"wp-image-1071 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-2019_Cabernet_Oakville_Bottleshot-77x300-1.jpg\" alt=\"Meadowcroft 2019 Cabernet Napa\" width=\"150\" height=\"250\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">OAKVILLE | NAPA VALLEY CABERNET SAUVIGNON</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft-2019_Cabernet_Oakville_Bottleshot.png\">2019</a>\r\nTech Sheet: <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-2019_Cabernet_Oakville_Techsheet.pdf\">2019</a></p>'),(14531,508,'_content_block_1_text_block_content_col_four','field_5bbe317939444'),(14532,508,'content_block_2_layout_title','Assets Row 2'),(14533,508,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(14534,508,'content_block_2_text_block_columns','four'),(14535,508,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(14536,508,'content_block_2_narrow_text_block_content','0'),(14537,508,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(14538,508,'content_block_2_reverse_colors','0'),(14539,508,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(14540,508,'content_block_2_enable_background_image','0'),(14541,508,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(14542,508,'content_block_2_custom_css_class','wide-content white-boxes'),(14543,508,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(14544,508,'content_block_2_text_block_content_col_one','<img class=\"wp-image-985 aligncenter\" src=\"/wp-content/uploads/2023/02/Meadowcroft-2018_Cabernet_SM_Bottleshot-1.png\" alt=\"2018 Spring Mountain District Napa Valley Cabernet Sauvignon Bottle\" width=\"70\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">SPRING MT. DISTRICT | NAPA VALLEY CABERNET SAUVIGNON</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft-2018_Cabernet_SpringMT_BottleShot.png\">2018</a>\r\nTech Sheet: <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018CabernetSauvignonSpringMT_TECHSheet.pdf\">2018</a></p>'),(14545,508,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(14546,508,'content_block_2_text_block_content_col_two','<img class=\"aligncenter wp-image-3361 size-medium\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-Cab-NapaValley-80x300.jpg\" alt=\"Meadowcroft 2021 Napa Valley Cabernet Sauvignon\" width=\"80\" height=\"300\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">NAPA VALLEY CABERNET SAUVIGNON</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/16CSNVNC_1.png\">2016</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_2017_NapaValley_CabernetSauvignon.png\">2017</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_NapaValley_CabernetSauvignon_2018_small.png\">2018</a> | 2019 | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_NapaValley_CabernetSauvignon_2020_Bottleshot.png\">2020 </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-Cab-NapaValley-scaled.jpg\">2021</a>\r\nTech Sheet: <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2016CabernetSauvignonNapaValley_TECHSheet.pdf\">2016</a> | <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017CabernetSauvignonNapaValley_TECHSheet.pdf\">2017</a> | <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018CabernetSauvignonNapaValley_TECHSheet.pdf\">2018</a> | <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2019CabernetSauvignonNapaValley_TECHSheet.pdf\">2019</a> | <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2020CabernetSauvignonNapaValley_TECHSheet.pdf\">2020 </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-Cab-NapaValley.pdf\">2021</a></p>'),(14547,508,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(14548,508,'content_block_2_text_block_content_col_three','<img class=\"wp-image-1088 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2015-Louveau-Cab.png\" alt=\"Meadowcroft 2015 Louveau Cab\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">DRY CREEK VALLEY | LOUVAU / WYLDVIN VINEYARD CAB SAUV</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/15CSSCLV_1.png\">2015</a> | <a href=\"/wp-content/uploads/2023/02/16CSNVNC_1-1.png\">2016</a> |<a href=\"/wp-content/uploads/2023/02/MC_2017_CABSAUV_LOUVAU.png\"> 2017</a> | <a href=\"/wp-content/uploads/2023/02/MC_2018_CABSAUV_LOUVAU.png\">2018</a> | <a href=\"/wp-content/uploads/2022/11/MC_2019_WYLDVIN_CABERNET_Bottleshot.png\">2019</a> | <a href=\"/wp-content/uploads/2022/11/MC_2020_WYLDVIN_CABERNET_Bottleshot.png\">2020</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2015CabernetSauvignonDCV_TECHSheet.pdf\">2015</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2016CabernetSauvignonDCV_TECHSheet.pdf\">2016</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2017CabernetSauvignonDCV_TECHSheet-1.pdf\">2017</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018CabernetSauvignonDCV_TECHSheet.pdf\">2018</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft-MC_DRYCREEKZIN_19_Techsheet.pdf\">2019</a> | <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-MC_DRYCREEKZIN_20_Techsheet.pdf\">2020</a></p>'),(14549,508,'_content_block_2_text_block_content_col_three','field_5bbe31793920f'),(14550,508,'content_block_2_text_block_content_col_four','<img class=\"aligncenter wp-image-3362 size-medium\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-Cab-NelsonRanch-86x300.jpg\" alt=\"Meadowcroft 2021 Cabernet Sauvignon, Nelson Ranch, Mendocino County\" width=\"86\" height=\"300\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">CABERNET SAUVIGNON | NELSON RANCH | MENDOCINO COUNTY</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft_2015_CabSauv_Mendo.png\">2015</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_2016_CabSauv_Mendo.png\">2016</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_2017CabSauv_Mendocino_NelsonRanch.png\">2017</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_2018CabSauv_Mendocino_NelsonRanch.png\">2018</a> | <a href=\"/wp-content/uploads/2023/02/19_Cab_NelsonRanch_Mendo_Bottleshot.png\">2019 </a>| 2020 | <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-Cab-NelsonRanch-scaled.jpg\">2021</a>\r\nTech Sheet: 2015 | 2016 | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2017CabernetSauvignonMendoCo_TECHSheet.pdf\">2017</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018CabernetSauvignonMendoCo_TECHSheet.pdf\">2018</a> | <a href=\"/wp-content/uploads/2022/11/19_Cab_NelsonRanch_Mendo_Techsheet.pdf\">2019 </a>| 2020 | <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-Cab-NelsonRanch.pdf\">2021</a></p>'),(14551,508,'_content_block_2_text_block_content_col_four','field_5bbe317939444'),(14588,1070,'_wp_attached_file','2022/11/2011-Bottle-Shot-500.jpg'),(14589,1070,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:32:\"2022/11/2011-Bottle-Shot-500.jpg\";s:8:\"filesize\";i:23075;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"2011-Bottle-Shot-500-180x300.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12571;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"2011-Bottle-Shot-500-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8429;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14590,1070,'_wp_attachment_image_alt','Meadowcroft Mt Veeder Napa Cabernet Sauvignon Bottle'),(14591,1071,'_wp_attached_file','2022/11/Meadowcroft-2019_Cabernet_Oakville_Bottleshot-77x300-1.jpg'),(14592,1071,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:66:\"2022/11/Meadowcroft-2019_Cabernet_Oakville_Bottleshot-77x300-1.jpg\";s:8:\"filesize\";i:22643;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-2019_Cabernet_Oakville_Bottleshot-77x300-1-180x300.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9930;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-2019_Cabernet_Oakville_Bottleshot-77x300-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6356;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14593,1071,'_wp_attachment_image_alt','2019 Cabernet Oakville'),(14594,1072,'_wp_attached_file','2022/11/2011-Bottle-Shot-500-1.jpg'),(14595,1072,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:34:\"2022/11/2011-Bottle-Shot-500-1.jpg\";s:8:\"filesize\";i:23075;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"2011-Bottle-Shot-500-1-180x300.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12571;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"2011-Bottle-Shot-500-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8429;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14596,1072,'_wp_attachment_image_alt','Meadowcroft 2011 Mt Veeder Napa Cabernet Sauvignon Bottle'),(14597,1073,'_wp_attached_file','2022/11/13CSNVEG_1.png'),(14598,1073,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:250;s:6:\"height\";i:708;s:4:\"file\";s:22:\"2022/11/13CSNVEG_1.png\";s:8:\"filesize\";i:151746;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"13CSNVEG_1-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29044;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"13CSNVEG_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20562;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14599,1073,'_wp_attachment_image_alt','Meadowcroft 2013 Mt Veeder Napa Cabernet Sauvignon Bottle'),(14600,1074,'_wp_attached_file','2022/11/14CSNVEG_1.png'),(14601,1074,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:250;s:6:\"height\";i:708;s:4:\"file\";s:22:\"2022/11/14CSNVEG_1.png\";s:8:\"filesize\";i:146706;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"14CSNVEG_1-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28876;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"14CSNVEG_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20602;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14602,1074,'_wp_attachment_image_alt','Meadowcroft 2014 Mt Veeder Napa Cabernet Sauvignon Bottle'),(14603,1075,'_wp_attached_file','2022/11/15CSNVEG_1.png'),(14604,1075,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:250;s:6:\"height\";i:708;s:4:\"file\";s:22:\"2022/11/15CSNVEG_1.png\";s:8:\"filesize\";i:149575;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"15CSNVEG_1-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29319;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"15CSNVEG_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20875;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14605,1075,'_wp_attachment_image_alt','Meadowcroft 2015 Mt Veeder Napa Cabernet Sauvignon Bottle'),(14606,1076,'_wp_attached_file','2022/11/16CSNVEG_1.png'),(14607,1076,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:250;s:6:\"height\";i:709;s:4:\"file\";s:22:\"2022/11/16CSNVEG_1.png\";s:8:\"filesize\";i:148995;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"16CSNVEG_1-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28998;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"16CSNVEG_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20604;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14608,1076,'_wp_attachment_image_alt','Meadowcroft 2016 Mt Veeder Napa Cabernet Sauvignon Bottle'),(14609,1077,'_wp_attached_file','2022/11/MC2017_CS_MV_BottleShot-scaled-1.jpeg'),(14610,1077,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:764;s:6:\"height\";i:2560;s:4:\"file\";s:45:\"2022/11/MC2017_CS_MV_BottleShot-scaled-1.jpeg\";s:8:\"filesize\";i:166098;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"MC2017_CS_MV_BottleShot-scaled-1-90x300.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5985;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"MC2017_CS_MV_BottleShot-scaled-1-306x1024.jpeg\";s:5:\"width\";i:306;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37877;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"MC2017_CS_MV_BottleShot-scaled-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4684;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"MC2017_CS_MV_BottleShot-scaled-1-458x1536.jpeg\";s:5:\"width\";i:458;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69994;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:46:\"MC2017_CS_MV_BottleShot-scaled-1-611x2048.jpeg\";s:5:\"width\";i:611;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106139;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14611,1077,'_wp_attachment_image_alt','Meadowcroft 2017 Mt Veeder Napa Cabernet Sauvignon Bottle'),(14612,1078,'_wp_attached_file','2022/11/MC_Veeeder_2018_Bottleshot_png.png'),(14613,1078,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:829;s:6:\"height\";i:2778;s:4:\"file\";s:42:\"2022/11/MC_Veeeder_2018_Bottleshot_png.png\";s:8:\"filesize\";i:1658595;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"MC_Veeeder_2018_Bottleshot_png-90x300.png\";s:5:\"width\";i:90;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27015;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"MC_Veeeder_2018_Bottleshot_png-306x1024.png\";s:5:\"width\";i:306;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:224787;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"MC_Veeeder_2018_Bottleshot_png-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21209;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"MC_Veeeder_2018_Bottleshot_png-768x2574.png\";s:5:\"width\";i:768;s:6:\"height\";i:2574;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1271813;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"MC_Veeeder_2018_Bottleshot_png-458x1536.png\";s:5:\"width\";i:458;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:475226;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:43:\"MC_Veeeder_2018_Bottleshot_png-611x2048.png\";s:5:\"width\";i:611;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:823351;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14614,1078,'_wp_attachment_image_alt','Meadowcroft 2018 Mt Veeder Napa Cabernet Sauvignon Bottle'),(14615,1079,'_wp_attached_file','2022/11/MC_Veeder_2019_Bottleshot_png-2.png'),(14616,1079,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:829;s:6:\"height\";i:2778;s:4:\"file\";s:43:\"2022/11/MC_Veeder_2019_Bottleshot_png-2.png\";s:8:\"filesize\";i:1658451;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"MC_Veeder_2019_Bottleshot_png-2-90x300.png\";s:5:\"width\";i:90;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27016;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"MC_Veeder_2019_Bottleshot_png-2-306x1024.png\";s:5:\"width\";i:306;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:224767;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"MC_Veeder_2019_Bottleshot_png-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21209;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"MC_Veeder_2019_Bottleshot_png-2-768x2574.png\";s:5:\"width\";i:768;s:6:\"height\";i:2574;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1271694;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:44:\"MC_Veeder_2019_Bottleshot_png-2-458x1536.png\";s:5:\"width\";i:458;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:475209;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:44:\"MC_Veeder_2019_Bottleshot_png-2-611x2048.png\";s:5:\"width\";i:611;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:823321;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14617,1079,'_wp_attachment_image_alt','Meadowcroft 2019 Mt Veeder Napa Cabernet Sauvignon Bottle'),(14619,1081,'_wp_attached_file','2022/11/Meadowcroft_2016CabernetSauvignon_MountVeederNapaValley_TECHSheet.pdf'),(14620,1081,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:73:\"Meadowcroft_2016CabernetSauvignon_MountVeederNapaValley_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:285661;}s:6:\"medium\";a:5:{s:4:\"file\";s:81:\"Meadowcroft_2016CabernetSauvignon_MountVeederNapaValley_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20251;}s:5:\"large\";a:5:{s:4:\"file\";s:82:\"Meadowcroft_2016CabernetSauvignon_MountVeederNapaValley_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151307;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:81:\"Meadowcroft_2016CabernetSauvignon_MountVeederNapaValley_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7960;}}s:8:\"filesize\";i:494279;}'),(14621,1082,'_wp_attached_file','2022/11/Meadowcroft_2015CabernetSauvignon_MountVeederNapaValley_TECHSheet.pdf'),(14622,1082,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:73:\"Meadowcroft_2015CabernetSauvignon_MountVeederNapaValley_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:286058;}s:6:\"medium\";a:5:{s:4:\"file\";s:81:\"Meadowcroft_2015CabernetSauvignon_MountVeederNapaValley_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20383;}s:5:\"large\";a:5:{s:4:\"file\";s:82:\"Meadowcroft_2015CabernetSauvignon_MountVeederNapaValley_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151871;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:81:\"Meadowcroft_2015CabernetSauvignon_MountVeederNapaValley_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7917;}}s:8:\"filesize\";i:494840;}'),(14623,1083,'_wp_attached_file','2022/11/Meadowcroft_2017CabernetSauvignon_MountVeederNapaValley_TECHSheet.pdf'),(14624,1083,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:73:\"Meadowcroft_2017CabernetSauvignon_MountVeederNapaValley_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:298232;}s:6:\"medium\";a:5:{s:4:\"file\";s:81:\"Meadowcroft_2017CabernetSauvignon_MountVeederNapaValley_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20834;}s:5:\"large\";a:5:{s:4:\"file\";s:82:\"Meadowcroft_2017CabernetSauvignon_MountVeederNapaValley_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158511;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:81:\"Meadowcroft_2017CabernetSauvignon_MountVeederNapaValley_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8105;}}s:8:\"filesize\";i:420343;}'),(14625,1084,'_wp_attached_file','2022/11/Meadowcroft_2018CabernetSauvignon_MountVeederNapaValley_TECHSheet.pdf'),(14626,1084,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:73:\"Meadowcroft_2018CabernetSauvignon_MountVeederNapaValley_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:224481;}s:6:\"medium\";a:5:{s:4:\"file\";s:81:\"Meadowcroft_2018CabernetSauvignon_MountVeederNapaValley_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18459;}s:5:\"large\";a:5:{s:4:\"file\";s:82:\"Meadowcroft_2018CabernetSauvignon_MountVeederNapaValley_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120098;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:81:\"Meadowcroft_2018CabernetSauvignon_MountVeederNapaValley_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8783;}}s:8:\"filesize\";i:252667;}'),(14627,1085,'_wp_attached_file','2022/11/Meadowcroft_2019CabernetSauvignon_MountVeederNapaValley_TECHSheet.pdf'),(14628,1085,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:73:\"Meadowcroft_2019CabernetSauvignon_MountVeederNapaValley_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:265176;}s:6:\"medium\";a:5:{s:4:\"file\";s:81:\"Meadowcroft_2019CabernetSauvignon_MountVeederNapaValley_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19800;}s:5:\"large\";a:5:{s:4:\"file\";s:82:\"Meadowcroft_2019CabernetSauvignon_MountVeederNapaValley_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138592;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:81:\"Meadowcroft_2019CabernetSauvignon_MountVeederNapaValley_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9032;}}s:8:\"filesize\";i:445621;}'),(14629,1086,'_wp_attached_file','2022/11/Meadowcroft_NapaValley_CabernetSauvignon_2020_Bottleshot.png'),(14630,1086,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2085;s:6:\"height\";i:5676;s:4:\"file\";s:68:\"2022/11/Meadowcroft_NapaValley_CabernetSauvignon_2020_Bottleshot.png\";s:8:\"filesize\";i:10224349;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_NapaValley_CabernetSauvignon_2020_Bottleshot-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25956;}s:5:\"large\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_NapaValley_CabernetSauvignon_2020_Bottleshot-376x1024.png\";s:5:\"width\";i:376;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:250543;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_NapaValley_CabernetSauvignon_2020_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21329;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_NapaValley_CabernetSauvignon_2020_Bottleshot-768x2091.png\";s:5:\"width\";i:768;s:6:\"height\";i:2091;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1089649;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_NapaValley_CabernetSauvignon_2020_Bottleshot-564x1536.png\";s:5:\"width\";i:564;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:576165;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_NapaValley_CabernetSauvignon_2020_Bottleshot-752x2048.png\";s:5:\"width\";i:752;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1042563;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_NapaValley_CabernetSauvignon_2020_Bottleshot-1200x3267.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2856677;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14631,1086,'_wp_attachment_image_alt','Meadowcroft Napa Valley Cabernet Sauvignon 2020'),(14632,1087,'_wp_attached_file','2022/11/2013-Zin.jpeg'),(14633,1087,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:21:\"2022/11/2013-Zin.jpeg\";s:8:\"filesize\";i:16983;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"2013-Zin-180x300.jpeg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10155;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"2013-Zin-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7481;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14634,1088,'_wp_attached_file','2022/11/2015-Louveau-Cab.png'),(14635,1088,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:28:\"2022/11/2015-Louveau-Cab.png\";s:8:\"filesize\";i:95880;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"2015-Louveau-Cab-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29155;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"2015-Louveau-Cab-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14529;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14636,1088,'_wp_attachment_image_alt','Meadowcroft 2015 Louveau Cab'),(14637,508,'content_block_3_layout_title','Assets Row 3'),(14638,508,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(14639,508,'content_block_3_text_block_columns','four'),(14640,508,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(14641,508,'content_block_3_narrow_text_block_content','0'),(14642,508,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(14643,508,'content_block_3_reverse_colors','0'),(14644,508,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(14645,508,'content_block_3_enable_background_image','0'),(14646,508,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(14647,508,'content_block_3_custom_css_class','wide-content white-boxes'),(14648,508,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(14649,508,'content_block_3_text_block_content_col_one','<img class=\"wp-image-1110 aligncenter\" src=\"/wp-content/uploads/2023/02/Meadowcroft-Red-Hills-2020-CabSauv-376x1024-1-1.png\" alt=\"Meadowcroft Red Hills Cabernet Sauvignon\" width=\"100\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">RED HILLS | LAKE COUNTY CABERNET SAUVIGNON</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/MC_2020_WYLDVIN_CABERNET_Bottleshot-1.png\">2020</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2020CabernetSauvignonRedHills_TECHSheet.pdf\">2020</a></p>'),(14650,508,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(14651,508,'content_block_3_text_block_content_col_two','<img class=\"aligncenter wp-image-3364 size-medium\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-GSM-Screen-90x300.jpg\" alt=\"Meadowcroft 2021 RIver Trace GSM Blend\" width=\"90\" height=\"300\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">RIVER TRACE GRENACHE SYRAH MOURVEDRE</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft-River-Trace-2016.png\">2016</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft-River-Trace-2017.png\">2017</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft-River-Trace-2019.png\">2019</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft-River-Trace-2020_Bottleshot.png\">2020 </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-GSM-Screen-scaled.jpg\">2021</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2016_River-Trace_ChalkHill_GSM_TECHSheet.pdf\">2016</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2017_River-Trace_ChalkHill_GSM_TECHSheet.pdf\">2017</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2019_River-Trace_ChalkHill_GSM_TECHSheet.pdf\">2019</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2020_River-Trace_CA_GSM_TECHSheet.pdf\">2020 </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-GSM-techsheet.pdf\">2021</a></p>'),(14652,508,'_content_block_3_text_block_content_col_two','field_5bbe31593920e'),(14653,508,'content_block_3_text_block_content_col_three','<img class=\"aligncenter wp-image-3376 size-medium\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/NV-AnnivCuvee-20yr-label-86x300.jpg\" alt=\"Anniversary Cuvee 20 Yr\" width=\"86\" height=\"300\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">ANNIVERSARY CUVEE | NV, NAPA VALLEY</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/NV-AnnivCuvee20yr-scaled.jpg\">Non-Vintage</a>\r\nTech Sheet: <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/NV-AnivCuvee20YR-TechSheet.pdf\">Non-Vintage</a></p>'),(14654,508,'_content_block_3_text_block_content_col_three','field_5bbe31793920f'),(14655,508,'content_block_3_text_block_content_col_four','<img class=\"wp-image-1126 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Panorama.png\" alt=\"Meadowcroft The Panorama\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">NAPA VALLEY | THE PANORAMA RED BLEND</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/2017_ThePanorama_StagsLeapDistrict_Napa_RedBlend.png\">2017 Stags Leap District</a> | <a href=\"/wp-content/uploads/2023/02/17ThePanorama_1.png\">2017 Napa Valley</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/2017_StagsLeapDistrcit_ThePanorama_MC_v1.pdf\">2017 Stags Leap District</a> | <a href=\"/wp-content/uploads/2022/11/2017_Panorama_NV_CabSauvBlend_v1.pdf\">2017 Napa Valley</a></p>'),(14656,508,'_content_block_3_text_block_content_col_four','field_5bbe317939444'),(14657,1089,'_wp_attached_file','2022/11/15CSSCLV_1.png'),(14658,1089,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:250;s:6:\"height\";i:708;s:4:\"file\";s:22:\"2022/11/15CSSCLV_1.png\";s:8:\"filesize\";i:176701;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"15CSSCLV_1-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27871;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"15CSSCLV_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23951;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14659,1089,'_wp_attachment_image_alt','Meadowcroft 2015 Louveau Cab'),(14660,1090,'_wp_attached_file','2022/11/16CSNVNC_1-1.png'),(14661,1090,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:250;s:6:\"height\";i:708;s:4:\"file\";s:24:\"2022/11/16CSNVNC_1-1.png\";s:8:\"filesize\";i:168921;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"16CSNVNC_1-1-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26964;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"16CSNVNC_1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23785;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14662,1090,'_wp_attachment_image_alt','Meadowcroft 2016 Louveau Cab'),(14663,1091,'_wp_attached_file','2022/11/MC_2017_CABSAUV_LOUVAU.png'),(14664,1091,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2085;s:6:\"height\";i:5676;s:4:\"file\";s:34:\"2022/11/MC_2017_CABSAUV_LOUVAU.png\";s:8:\"filesize\";i:10605173;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"MC_2017_CABSAUV_LOUVAU-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26439;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"MC_2017_CABSAUV_LOUVAU-376x1024.png\";s:5:\"width\";i:376;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:253172;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"MC_2017_CABSAUV_LOUVAU-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21399;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"MC_2017_CABSAUV_LOUVAU-768x2091.png\";s:5:\"width\";i:768;s:6:\"height\";i:2091;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1098730;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"MC_2017_CABSAUV_LOUVAU-564x1536.png\";s:5:\"width\";i:564;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:582299;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"MC_2017_CABSAUV_LOUVAU-752x2048.png\";s:5:\"width\";i:752;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1050769;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:36:\"MC_2017_CABSAUV_LOUVAU-1200x3267.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2871234;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14665,1091,'_wp_attachment_image_alt','Meadowcroft 2017 Louveau Cab'),(14666,1092,'_wp_attached_file','2022/11/MC_2018_CABSAUV_LOUVAU.png'),(14667,1092,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2085;s:6:\"height\";i:5676;s:4:\"file\";s:34:\"2022/11/MC_2018_CABSAUV_LOUVAU.png\";s:8:\"filesize\";i:11325022;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"MC_2018_CABSAUV_LOUVAU-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26657;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"MC_2018_CABSAUV_LOUVAU-376x1024.png\";s:5:\"width\";i:376;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:254494;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"MC_2018_CABSAUV_LOUVAU-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21399;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"MC_2018_CABSAUV_LOUVAU-768x2091.png\";s:5:\"width\";i:768;s:6:\"height\";i:2091;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1100219;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"MC_2018_CABSAUV_LOUVAU-564x1536.png\";s:5:\"width\";i:564;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:583257;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"MC_2018_CABSAUV_LOUVAU-752x2048.png\";s:5:\"width\";i:752;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1052027;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:36:\"MC_2018_CABSAUV_LOUVAU-1200x3267.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2873204;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14668,1092,'_wp_attachment_image_alt','Meadowcroft 2018 Louveau Cab'),(14669,1093,'_wp_attached_file','2022/11/MC_2019_WYLDVIN_CABERNET_Bottleshot.png'),(14670,1093,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2085;s:6:\"height\";i:5676;s:4:\"file\";s:47:\"2022/11/MC_2019_WYLDVIN_CABERNET_Bottleshot.png\";s:8:\"filesize\";i:10613329;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"MC_2019_WYLDVIN_CABERNET_Bottleshot-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26447;}s:5:\"large\";a:5:{s:4:\"file\";s:48:\"MC_2019_WYLDVIN_CABERNET_Bottleshot-376x1024.png\";s:5:\"width\";i:376;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:253038;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"MC_2019_WYLDVIN_CABERNET_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21399;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"MC_2019_WYLDVIN_CABERNET_Bottleshot-768x2091.png\";s:5:\"width\";i:768;s:6:\"height\";i:2091;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1097391;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"MC_2019_WYLDVIN_CABERNET_Bottleshot-564x1536.png\";s:5:\"width\";i:564;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:581170;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:48:\"MC_2019_WYLDVIN_CABERNET_Bottleshot-752x2048.png\";s:5:\"width\";i:752;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1049676;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:49:\"MC_2019_WYLDVIN_CABERNET_Bottleshot-1200x3267.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2871010;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14671,1093,'_wp_attachment_image_alt','Meadowcroft 2019 Louveau Cab'),(14672,1094,'_wp_attached_file','2022/11/MC_2020_WYLDVIN_CABERNET_Bottleshot.png'),(14673,1094,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2085;s:6:\"height\";i:5676;s:4:\"file\";s:47:\"2022/11/MC_2020_WYLDVIN_CABERNET_Bottleshot.png\";s:8:\"filesize\";i:3934958;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"MC_2020_WYLDVIN_CABERNET_Bottleshot-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26342;}s:5:\"large\";a:5:{s:4:\"file\";s:48:\"MC_2020_WYLDVIN_CABERNET_Bottleshot-376x1024.png\";s:5:\"width\";i:376;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:249811;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"MC_2020_WYLDVIN_CABERNET_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21415;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"MC_2020_WYLDVIN_CABERNET_Bottleshot-768x2091.png\";s:5:\"width\";i:768;s:6:\"height\";i:2091;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1088503;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"MC_2020_WYLDVIN_CABERNET_Bottleshot-564x1536.png\";s:5:\"width\";i:564;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:578134;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:48:\"MC_2020_WYLDVIN_CABERNET_Bottleshot-752x2048.png\";s:5:\"width\";i:752;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1041263;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:49:\"MC_2020_WYLDVIN_CABERNET_Bottleshot-1200x3267.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2845914;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14674,1094,'_wp_attachment_image_alt','Meadowcroft 20120 Louveau Cab'),(14675,1095,'_wp_attached_file','2022/11/Meadowcroft_2015CabernetSauvignonDCV_TECHSheet.pdf'),(14676,1095,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:54:\"Meadowcroft_2015CabernetSauvignonDCV_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:305209;}s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_2015CabernetSauvignonDCV_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54572;}s:5:\"large\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2015CabernetSauvignonDCV_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:178153;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_2015CabernetSauvignonDCV_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42823;}}s:8:\"filesize\";i:398063;}'),(14677,1096,'_wp_attached_file','2022/11/Meadowcroft_2016CabernetSauvignonDCV_TECHSheet.pdf'),(14678,1096,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:54:\"Meadowcroft_2016CabernetSauvignonDCV_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:271176;}s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_2016CabernetSauvignonDCV_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19375;}s:5:\"large\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2016CabernetSauvignonDCV_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143799;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_2016CabernetSauvignonDCV_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7772;}}s:8:\"filesize\";i:254266;}'),(14679,1097,'_wp_attached_file','2022/11/Meadowcroft_2017CabernetSauvignonDCV_TECHSheet-1.pdf'),(14680,1097,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_2017CabernetSauvignonDCV_TECHSheet-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:270659;}s:6:\"medium\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_2017CabernetSauvignonDCV_TECHSheet-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19355;}s:5:\"large\";a:5:{s:4:\"file\";s:65:\"Meadowcroft_2017CabernetSauvignonDCV_TECHSheet-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143562;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_2017CabernetSauvignonDCV_TECHSheet-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7773;}}s:8:\"filesize\";i:254040;}'),(14681,1098,'_wp_attached_file','2022/11/Meadowcroft_2018CabernetSauvignonDCV_TECHSheet.pdf'),(14682,1098,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:54:\"Meadowcroft_2018CabernetSauvignonDCV_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:288967;}s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_2018CabernetSauvignonDCV_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22331;}s:5:\"large\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2018CabernetSauvignonDCV_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153791;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_2018CabernetSauvignonDCV_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9874;}}s:8:\"filesize\";i:692652;}'),(14683,1099,'_wp_attached_file','2022/11/Meadowcroft-MC_DRYCREEKZIN_19_Techsheet.pdf'),(14684,1099,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:47:\"Meadowcroft-MC_DRYCREEKZIN_19_Techsheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150800;}s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-MC_DRYCREEKZIN_19_Techsheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12798;}s:5:\"large\";a:5:{s:4:\"file\";s:56:\"Meadowcroft-MC_DRYCREEKZIN_19_Techsheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76951;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-MC_DRYCREEKZIN_19_Techsheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6039;}}s:8:\"filesize\";i:66660;}'),(14685,1100,'_wp_attached_file','2022/11/Meadowcroft-MC_DRYCREEKZIN_20_Techsheet.pdf'),(14686,1100,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:47:\"Meadowcroft-MC_DRYCREEKZIN_20_Techsheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162702;}s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-MC_DRYCREEKZIN_20_Techsheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13504;}s:5:\"large\";a:5:{s:4:\"file\";s:56:\"Meadowcroft-MC_DRYCREEKZIN_20_Techsheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83200;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-MC_DRYCREEKZIN_20_Techsheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6315;}}s:8:\"filesize\";i:3672937;}'),(14687,1101,'_wp_attached_file','2022/11/Nelson-Cab.png'),(14688,1101,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2022/11/Nelson-Cab.png\";s:8:\"filesize\";i:94425;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Nelson-Cab-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28175;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Nelson-Cab-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14085;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14689,1101,'_wp_attachment_image_alt','Meadowcroft 2015 Nelson Ranch Cabernet Sauvignon'),(14690,1102,'_wp_attached_file','2022/11/Meadowcroft_2015_CabSauv_Mendo.png'),(14691,1102,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1556;s:6:\"height\";i:5586;s:4:\"file\";s:42:\"2022/11/Meadowcroft_2015_CabSauv_Mendo.png\";s:8:\"filesize\";i:10604574;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Meadowcroft_2015_CabSauv_Mendo-84x300.png\";s:5:\"width\";i:84;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26671;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"Meadowcroft_2015_CabSauv_Mendo-285x1024.png\";s:5:\"width\";i:285;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:255061;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Meadowcroft_2015_CabSauv_Mendo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27850;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"Meadowcroft_2015_CabSauv_Mendo-768x2757.png\";s:5:\"width\";i:768;s:6:\"height\";i:2757;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2020216;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"Meadowcroft_2015_CabSauv_Mendo-428x1536.png\";s:5:\"width\";i:428;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:586805;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:43:\"Meadowcroft_2015_CabSauv_Mendo-570x2048.png\";s:5:\"width\";i:570;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1060276;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:44:\"Meadowcroft_2015_CabSauv_Mendo-1200x4308.png\";s:5:\"width\";i:1200;s:6:\"height\";i:4308;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5225376;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14692,1102,'_wp_attachment_image_alt','Meadowcroft 2015 Nelson Ranch Cabernet Sauvignon'),(14693,1103,'_wp_attached_file','2022/11/19_Cab_NelsonRanch_Mendo_Bottleshot.png'),(14694,1103,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2085;s:6:\"height\";i:5676;s:4:\"file\";s:47:\"2022/11/19_Cab_NelsonRanch_Mendo_Bottleshot.png\";s:8:\"filesize\";i:10613619;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"19_Cab_NelsonRanch_Mendo_Bottleshot-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26391;}s:5:\"large\";a:5:{s:4:\"file\";s:48:\"19_Cab_NelsonRanch_Mendo_Bottleshot-376x1024.png\";s:5:\"width\";i:376;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:253217;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"19_Cab_NelsonRanch_Mendo_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21399;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"19_Cab_NelsonRanch_Mendo_Bottleshot-768x2091.png\";s:5:\"width\";i:768;s:6:\"height\";i:2091;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1097825;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"19_Cab_NelsonRanch_Mendo_Bottleshot-564x1536.png\";s:5:\"width\";i:564;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:581279;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:48:\"19_Cab_NelsonRanch_Mendo_Bottleshot-752x2048.png\";s:5:\"width\";i:752;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1050000;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:49:\"19_Cab_NelsonRanch_Mendo_Bottleshot-1200x3267.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2871540;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14695,1104,'_wp_attached_file','2022/11/Meadowcroft_2016_CabSauv_Mendo.png'),(14696,1104,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1556;s:6:\"height\";i:5586;s:4:\"file\";s:42:\"2022/11/Meadowcroft_2016_CabSauv_Mendo.png\";s:8:\"filesize\";i:11180738;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Meadowcroft_2016_CabSauv_Mendo-84x300.png\";s:5:\"width\";i:84;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26684;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"Meadowcroft_2016_CabSauv_Mendo-285x1024.png\";s:5:\"width\";i:285;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:255090;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Meadowcroft_2016_CabSauv_Mendo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27850;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"Meadowcroft_2016_CabSauv_Mendo-768x2757.png\";s:5:\"width\";i:768;s:6:\"height\";i:2757;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2020062;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"Meadowcroft_2016_CabSauv_Mendo-428x1536.png\";s:5:\"width\";i:428;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:586789;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:43:\"Meadowcroft_2016_CabSauv_Mendo-570x2048.png\";s:5:\"width\";i:570;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1060273;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:44:\"Meadowcroft_2016_CabSauv_Mendo-1200x4308.png\";s:5:\"width\";i:1200;s:6:\"height\";i:4308;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5224794;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14697,1105,'_wp_attached_file','2022/11/Meadowcroft_2017CabSauv_Mendocino_NelsonRanch.png'),(14698,1105,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:735;s:6:\"height\";i:2000;s:4:\"file\";s:57:\"2022/11/Meadowcroft_2017CabSauv_Mendocino_NelsonRanch.png\";s:8:\"filesize\";i:1270831;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2017CabSauv_Mendocino_NelsonRanch-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24757;}s:5:\"large\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_2017CabSauv_Mendocino_NelsonRanch-376x1024.png\";s:5:\"width\";i:376;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:268617;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2017CabSauv_Mendocino_NelsonRanch-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20140;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_2017CabSauv_Mendocino_NelsonRanch-564x1536.png\";s:5:\"width\";i:564;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:621864;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14699,1106,'_wp_attached_file','2022/11/Meadowcroft_2018CabSauv_Mendocino_NelsonRanch.png'),(14700,1106,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2085;s:6:\"height\";i:5676;s:4:\"file\";s:57:\"2022/11/Meadowcroft_2018CabSauv_Mendocino_NelsonRanch.png\";s:8:\"filesize\";i:11334481;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2018CabSauv_Mendocino_NelsonRanch-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26633;}s:5:\"large\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_2018CabSauv_Mendocino_NelsonRanch-376x1024.png\";s:5:\"width\";i:376;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:254482;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2018CabSauv_Mendocino_NelsonRanch-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21399;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_2018CabSauv_Mendocino_NelsonRanch-768x2091.png\";s:5:\"width\";i:768;s:6:\"height\";i:2091;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1100595;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_2018CabSauv_Mendocino_NelsonRanch-564x1536.png\";s:5:\"width\";i:564;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:583900;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_2018CabSauv_Mendocino_NelsonRanch-752x2048.png\";s:5:\"width\";i:752;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1052728;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_2018CabSauv_Mendocino_NelsonRanch-1200x3267.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2873545;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14701,1106,'_wp_attachment_image_alt','Meadowcroft 2018 Nelson Ranch Cabernet Sauvignon'),(14702,1105,'_wp_attachment_image_alt','Meadowcroft 2017 Nelson Ranch Cabernet Sauvignon'),(14703,1104,'_wp_attachment_image_alt','Meadowcroft 2016 Nelson Ranch Cabernet Sauvignon'),(14704,1103,'_wp_attachment_image_alt','Meadowcroft 2019 Nelson Ranch Cabernet Sauvignon'),(14705,1107,'_wp_attached_file','2022/11/19_Cab_NelsonRanch_Mendo_Techsheet.pdf'),(14706,1107,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:42:\"19_Cab_NelsonRanch_Mendo_Techsheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:276074;}s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"19_Cab_NelsonRanch_Mendo_Techsheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21750;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"19_Cab_NelsonRanch_Mendo_Techsheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:148121;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"19_Cab_NelsonRanch_Mendo_Techsheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9828;}}s:8:\"filesize\";i:586090;}'),(14707,1108,'_wp_attached_file','2022/11/Meadowcroft_2017CabernetSauvignonMendoCo_TECHSheet.pdf'),(14708,1108,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_2017CabernetSauvignonMendoCo_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:269659;}s:6:\"medium\";a:5:{s:4:\"file\";s:66:\"Meadowcroft_2017CabernetSauvignonMendoCo_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19202;}s:5:\"large\";a:5:{s:4:\"file\";s:67:\"Meadowcroft_2017CabernetSauvignonMendoCo_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143941;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:66:\"Meadowcroft_2017CabernetSauvignonMendoCo_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7693;}}s:8:\"filesize\";i:196020;}'),(14709,1109,'_wp_attached_file','2022/11/Meadowcroft_2018CabernetSauvignonMendoCo_TECHSheet.pdf'),(14710,1109,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_2018CabernetSauvignonMendoCo_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:270085;}s:6:\"medium\";a:5:{s:4:\"file\";s:66:\"Meadowcroft_2018CabernetSauvignonMendoCo_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18934;}s:5:\"large\";a:5:{s:4:\"file\";s:67:\"Meadowcroft_2018CabernetSauvignonMendoCo_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143319;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:66:\"Meadowcroft_2018CabernetSauvignonMendoCo_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7559;}}s:8:\"filesize\";i:624787;}'),(14711,1110,'_wp_attached_file','2022/11/Meadowcroft-Red-Hills-2020-CabSauv-376x1024-1.png'),(14712,1110,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:376;s:6:\"height\";i:1024;s:4:\"file\";s:57:\"2022/11/Meadowcroft-Red-Hills-2020-CabSauv-376x1024-1.png\";s:8:\"filesize\";i:254699;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-Red-Hills-2020-CabSauv-376x1024-1-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23816;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-Red-Hills-2020-CabSauv-376x1024-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19426;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14713,1110,'_wp_attachment_image_alt','Meadowcroft 2020 Red Hills Cabernet Sauvignon'),(14714,1111,'_wp_attached_file','2022/11/MC_2020_WYLDVIN_CABERNET_Bottleshot-1.png'),(14715,1111,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2085;s:6:\"height\";i:5676;s:4:\"file\";s:49:\"2022/11/MC_2020_WYLDVIN_CABERNET_Bottleshot-1.png\";s:8:\"filesize\";i:3934958;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"MC_2020_WYLDVIN_CABERNET_Bottleshot-1-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26342;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"MC_2020_WYLDVIN_CABERNET_Bottleshot-1-376x1024.png\";s:5:\"width\";i:376;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:249811;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"MC_2020_WYLDVIN_CABERNET_Bottleshot-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21415;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"MC_2020_WYLDVIN_CABERNET_Bottleshot-1-768x2091.png\";s:5:\"width\";i:768;s:6:\"height\";i:2091;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1088503;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"MC_2020_WYLDVIN_CABERNET_Bottleshot-1-564x1536.png\";s:5:\"width\";i:564;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:578134;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:50:\"MC_2020_WYLDVIN_CABERNET_Bottleshot-1-752x2048.png\";s:5:\"width\";i:752;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1041263;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:51:\"MC_2020_WYLDVIN_CABERNET_Bottleshot-1-1200x3267.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2845914;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14716,1111,'_wp_attachment_image_alt','Meadowcroft 2020 Red Hills Cabernet Sauvignon'),(14717,1112,'_wp_attached_file','2022/11/Meadowcroft_2020CabernetSauvignonRedHills_TECHSheet.pdf'),(14718,1112,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_2020CabernetSauvignonRedHills_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:269179;}s:6:\"medium\";a:5:{s:4:\"file\";s:67:\"Meadowcroft_2020CabernetSauvignonRedHills_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19469;}s:5:\"large\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_2020CabernetSauvignonRedHills_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143004;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:67:\"Meadowcroft_2020CabernetSauvignonRedHills_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7698;}}s:8:\"filesize\";i:2253451;}'),(14719,508,'content_block_4_layout_title','Assets Row 4'),(14720,508,'_content_block_4_layout_title','field_5bc11ca9a0d50-s'),(14721,508,'content_block_4_text_block_columns','four'),(14722,508,'_content_block_4_text_block_columns','field_5bbe2f81a4de0'),(14723,508,'content_block_4_narrow_text_block_content','0'),(14724,508,'_content_block_4_narrow_text_block_content','field_5bbe342e08360'),(14725,508,'content_block_4_reverse_colors','0'),(14726,508,'_content_block_4_reverse_colors','field_5bbe3027a4de1'),(14727,508,'content_block_4_enable_background_image','0'),(14728,508,'_content_block_4_enable_background_image','field_5bbe30b1a4de2'),(14729,508,'content_block_4_custom_css_class','wide-content white-boxes'),(14730,508,'_content_block_4_custom_css_class','field_5bbe30b1a4de2-1'),(14731,508,'content_block_4_text_block_content_col_one','<img class=\"wp-image-1146 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Speedy-Creek-Zin.png\" alt=\"Speedy Creek Zinfandel\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">SPEEDY CREEK ZINFANDEL</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/2010_MC_Zinfandel-lg.png\">2010</a> | <a href=\"/wp-content/uploads/2023/02/2011_MC_KnightsValley_Zinfandel.png\">2011</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_Zin_Speedy_12-scaled-1.png\">2012</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_Zin_Speedy_13.png\">2013</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_Zinfandel_2014_SpeedyCreek.png\">2014</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_Zinfandel_2018_SpeedyCreek.png\">2018</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_Zinfandel_2019_SpeedyCreek-1.png\">2019</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/TastingSheet-2011-Meadowcroft-Zinfandel.pdf\">2010</a> | <a href=\"/wp-content/uploads/2022/11/TastingSheet-2010-Meadowcroft-Son-Zinfandel.pdf\">2011</a> | <a href=\"/wp-content/uploads/2022/11/2012_Speedy-Creek-Zin_Tasting-Notes.pdf\">2012</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2013SpeedyCreekZin_TECHSheet.pdf\">2013</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2014_SpeedyCreek_Zin_TECHSheet.pdf\">2014</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018_SpeedyCreek_Zin_TECHSheet-1.pdf\">2018</a> | 2019</p>'),(14732,508,'_content_block_4_text_block_content_col_one','field_5bbe313b3920d'),(14733,508,'content_block_4_text_block_content_col_two','<img class=\"wp-image-1149 aligncenter\" src=\"/wp-content/uploads/2023/02/Meadowcroft-MC_DRYCREEKZIN_20-1000x2722-1-scaled.webp\" alt=\"Meadowcroft Mae Vineyard Zinfandel\" width=\"101\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">MAE VINEYARD | DRY CREEK VALLEY ZINFANDEL</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft-MC_DRYCREEKZIN_20.png\">Non-Vintage</a>\r\nTech Sheet:<a href=\"/wp-content/uploads/2022/11/Meadowcroft-MC_DRYCREEKZIN_20_Techsheet-1.pdf\">Non-Vintage</a></p>'),(14734,508,'_content_block_4_text_block_content_col_two','field_5bbe31593920e'),(14735,508,'content_block_4_text_block_content_col_three','<img class=\"wp-image-1154 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Old-Vine.png\" alt=\"Meadowcroft 2016 Old Vine Zindandel\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">OLD VINE | AMADOR COUNTY ZINFANDEL</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2022/11/2013-Speedy-Creek.jpeg\">2016</a> | <a href=\"/wp-content/uploads/2023/02/18ZNOLDVINE_1-1.png\">2018</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2016Zinfandel_Amador_TECHSheet_v1.pdf\">2016</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018Zinfandel_Amador_TECHSheet.pdf\">2018</a></p>'),(14736,508,'_content_block_4_text_block_content_col_three','field_5bbe31793920f'),(14737,508,'content_block_4_text_block_content_col_four','<img class=\"wp-image-1166 aligncenter\" src=\"/wp-content/uploads/2023/02/20_Malbec_Clements_Hill_Bottleshot-376x1024-11.png\" alt=\"Meadowcroft Cru de la Ruche Malbec\" width=\"100\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">CRU DE LA RUCHE | MALBEC</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2022/11/2014-Malbec.jpeg\">2014</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_2016_Malbec_BottleShot.jpg.png\">2016</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_2017_Malbec_BottleShot_v2.png\">2017</a> | 2018 | <a href=\"/wp-content/uploads/2023/02/MC_2019_Malbec_Clements_Hill_Bottleshot.png\">2019</a> | 2020\r\nTech Sheet: 2014 | 2016 | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2017CruDeLaRucheMalbec_TECHSheet_Awards.pdf\">2017</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018CruDeLaRucheMalbec_TECHSheet_Awards.pdf\">2018</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2019CruDeLaRucheMalbec_TECHSheet.pdf\">2019</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2020CruDeLaRucheMalbec_TECHSheet-1.pdf\">2020</a></p>'),(14738,508,'_content_block_4_text_block_content_col_four','field_5bbe317939444'),(14742,1114,'_wp_attached_file','2022/11/GSM.png'),(14743,1114,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:15:\"2022/11/GSM.png\";s:8:\"filesize\";i:89665;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"GSM-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28482;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"GSM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11842;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14744,1114,'_wp_attachment_image_alt','Meadowcroft 2016 River Trace GSM'),(14745,1115,'_wp_attached_file','2022/11/Meadowcroft_2016_River-Trace_ChalkHill_GSM_TECHSheet.pdf'),(14746,1115,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_2016_River-Trace_ChalkHill_GSM_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:286836;}s:6:\"medium\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_2016_River-Trace_ChalkHill_GSM_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22380;}s:5:\"large\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_2016_River-Trace_ChalkHill_GSM_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154125;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_2016_River-Trace_ChalkHill_GSM_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10088;}}s:8:\"filesize\";i:145105;}'),(14747,1116,'_wp_attached_file','2022/11/Meadowcroft_2017_River-Trace_ChalkHill_GSM_TECHSheet.pdf'),(14748,1116,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_2017_River-Trace_ChalkHill_GSM_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:286102;}s:6:\"medium\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_2017_River-Trace_ChalkHill_GSM_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22388;}s:5:\"large\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_2017_River-Trace_ChalkHill_GSM_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154139;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_2017_River-Trace_ChalkHill_GSM_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10090;}}s:8:\"filesize\";i:142973;}'),(14749,1117,'_wp_attached_file','2022/11/Meadowcroft_2019_River-Trace_ChalkHill_GSM_TECHSheet.pdf'),(14750,1117,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_2019_River-Trace_ChalkHill_GSM_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:309271;}s:6:\"medium\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_2019_River-Trace_ChalkHill_GSM_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23752;}s:5:\"large\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_2019_River-Trace_ChalkHill_GSM_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163934;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_2019_River-Trace_ChalkHill_GSM_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10510;}}s:8:\"filesize\";i:519006;}'),(14751,1118,'_wp_attached_file','2022/11/Meadowcroft_2020_River-Trace_CA_GSM_TECHSheet.pdf'),(14752,1118,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_2020_River-Trace_CA_GSM_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229740;}s:6:\"medium\";a:5:{s:4:\"file\";s:61:\"Meadowcroft_2020_River-Trace_CA_GSM_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18770;}s:5:\"large\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_2020_River-Trace_CA_GSM_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121177;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"Meadowcroft_2020_River-Trace_CA_GSM_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8926;}}s:8:\"filesize\";i:812950;}'),(14753,1119,'_wp_attached_file','2022/11/Meadowcroft-River-Trace-2016.png'),(14754,1119,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1790;s:6:\"height\";i:5069;s:4:\"file\";s:40:\"2022/11/Meadowcroft-River-Trace-2016.png\";s:8:\"filesize\";i:6485043;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-River-Trace-2016-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25547;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"Meadowcroft-River-Trace-2016-362x1024.png\";s:5:\"width\";i:362;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:244206;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-River-Trace-2016-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16108;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Meadowcroft-River-Trace-2016-768x2175.png\";s:5:\"width\";i:768;s:6:\"height\";i:2175;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1120996;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:41:\"Meadowcroft-River-Trace-2016-542x1536.png\";s:5:\"width\";i:542;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:551084;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:41:\"Meadowcroft-River-Trace-2016-723x2048.png\";s:5:\"width\";i:723;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:990176;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:42:\"Meadowcroft-River-Trace-2016-1200x3398.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3398;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2760244;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14755,1120,'_wp_attached_file','2022/11/Meadowcroft-River-Trace-2017.png'),(14756,1120,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1790;s:6:\"height\";i:5069;s:4:\"file\";s:40:\"2022/11/Meadowcroft-River-Trace-2017.png\";s:8:\"filesize\";i:6550991;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-River-Trace-2017-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24987;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"Meadowcroft-River-Trace-2017-362x1024.png\";s:5:\"width\";i:362;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:237877;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-River-Trace-2017-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14336;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Meadowcroft-River-Trace-2017-768x2175.png\";s:5:\"width\";i:768;s:6:\"height\";i:2175;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1095287;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:41:\"Meadowcroft-River-Trace-2017-542x1536.png\";s:5:\"width\";i:542;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:538189;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:41:\"Meadowcroft-River-Trace-2017-723x2048.png\";s:5:\"width\";i:723;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:966445;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:42:\"Meadowcroft-River-Trace-2017-1200x3398.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3398;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2700414;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14757,1121,'_wp_attached_file','2022/11/Meadowcroft-River-Trace-2019.png'),(14758,1121,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1790;s:6:\"height\";i:5069;s:4:\"file\";s:40:\"2022/11/Meadowcroft-River-Trace-2019.png\";s:8:\"filesize\";i:6624490;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-River-Trace-2019-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24518;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"Meadowcroft-River-Trace-2019-362x1024.png\";s:5:\"width\";i:362;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:236550;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-River-Trace-2019-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13770;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Meadowcroft-River-Trace-2019-768x2175.png\";s:5:\"width\";i:768;s:6:\"height\";i:2175;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1094050;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:41:\"Meadowcroft-River-Trace-2019-542x1536.png\";s:5:\"width\";i:542;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:536699;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:41:\"Meadowcroft-River-Trace-2019-723x2048.png\";s:5:\"width\";i:723;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:963813;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:42:\"Meadowcroft-River-Trace-2019-1200x3398.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3398;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2697110;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14759,1122,'_wp_attached_file','2022/11/Meadowcroft-River-Trace-2020_Bottleshot.png'),(14760,1122,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1790;s:6:\"height\";i:5069;s:4:\"file\";s:51:\"2022/11/Meadowcroft-River-Trace-2020_Bottleshot.png\";s:8:\"filesize\";i:6523284;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"Meadowcroft-River-Trace-2020_Bottleshot-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24930;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"Meadowcroft-River-Trace-2020_Bottleshot-362x1024.png\";s:5:\"width\";i:362;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:237464;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"Meadowcroft-River-Trace-2020_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14338;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:52:\"Meadowcroft-River-Trace-2020_Bottleshot-768x2175.png\";s:5:\"width\";i:768;s:6:\"height\";i:2175;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1093363;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:52:\"Meadowcroft-River-Trace-2020_Bottleshot-542x1536.png\";s:5:\"width\";i:542;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:537178;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:52:\"Meadowcroft-River-Trace-2020_Bottleshot-723x2048.png\";s:5:\"width\";i:723;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:964911;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-River-Trace-2020_Bottleshot-1200x3398.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3398;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2699086;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14761,1119,'_wp_attachment_image_alt','Meadowcroft 2016 River Trace GSM'),(14762,1120,'_wp_attachment_image_alt','Meadowcroft 2017 River Trace GSM'),(14763,1121,'_wp_attachment_image_alt','Meadowcroft 2019 River Trace GSM'),(14764,1122,'_wp_attachment_image_alt','Meadowcroft 2021 River Trace GSM'),(14765,1123,'_wp_attached_file','2022/11/Anniversary-Blend.png'),(14766,1123,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:29:\"2022/11/Anniversary-Blend.png\";s:8:\"filesize\";i:108645;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Anniversary-Blend-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34703;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Anniversary-Blend-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16587;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14767,1123,'_wp_attachment_image_alt','Meadowcroft Anniversary Blend'),(14768,1124,'_wp_attached_file','2022/11/Meadowcroft_AnnivCuvee_Bottleshot.png'),(14769,1124,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1328;s:6:\"height\";i:4709;s:4:\"file\";s:45:\"2022/11/Meadowcroft_AnnivCuvee_Bottleshot.png\";s:8:\"filesize\";i:6128741;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"Meadowcroft_AnnivCuvee_Bottleshot-85x300.png\";s:5:\"width\";i:85;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30939;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_AnnivCuvee_Bottleshot-289x1024.png\";s:5:\"width\";i:289;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:316165;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"Meadowcroft_AnnivCuvee_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33380;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_AnnivCuvee_Bottleshot-768x2723.png\";s:5:\"width\";i:768;s:6:\"height\";i:2723;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2068295;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_AnnivCuvee_Bottleshot-433x1536.png\";s:5:\"width\";i:433;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:694336;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_AnnivCuvee_Bottleshot-578x2048.png\";s:5:\"width\";i:578;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1209879;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"Meadowcroft_AnnivCuvee_Bottleshot-1200x4255.png\";s:5:\"width\";i:1200;s:6:\"height\";i:4255;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4620236;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14770,1124,'_wp_attachment_image_alt','Meadowcroft Anniversary Blend'),(14771,1125,'_wp_attached_file','2022/11/Meadowcroft_NVNapaValleyAnniversayCuvee2022_TECHSheet.pdf'),(14772,1125,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:61:\"Meadowcroft_NVNapaValleyAnniversayCuvee2022_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:250565;}s:6:\"medium\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_NVNapaValleyAnniversayCuvee2022_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50741;}s:5:\"large\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_NVNapaValleyAnniversayCuvee2022_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:148475;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_NVNapaValleyAnniversayCuvee2022_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41657;}}s:8:\"filesize\";i:1988078;}'),(14773,1126,'_wp_attached_file','2022/11/Panorama.png'),(14774,1126,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2022/11/Panorama.png\";s:8:\"filesize\";i:90641;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Panorama-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27263;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Panorama-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13689;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14775,1126,'_wp_attachment_image_alt','Meadowcroft The Panorama'),(14776,1127,'_wp_attached_file','2022/11/17ThePanorama_1.png'),(14777,1127,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:250;s:6:\"height\";i:708;s:4:\"file\";s:27:\"2022/11/17ThePanorama_1.png\";s:8:\"filesize\";i:177266;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"17ThePanorama_1-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27232;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"17ThePanorama_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24061;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14778,1128,'_wp_attached_file','2022/11/2017_ThePanorama_StagsLeapDistrict_Napa_RedBlend.png'),(14779,1128,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2085;s:6:\"height\";i:5676;s:4:\"file\";s:60:\"2022/11/2017_ThePanorama_StagsLeapDistrict_Napa_RedBlend.png\";s:8:\"filesize\";i:10668881;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"2017_ThePanorama_StagsLeapDistrict_Napa_RedBlend-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26303;}s:5:\"large\";a:5:{s:4:\"file\";s:61:\"2017_ThePanorama_StagsLeapDistrict_Napa_RedBlend-376x1024.png\";s:5:\"width\";i:376;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:253098;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"2017_ThePanorama_StagsLeapDistrict_Napa_RedBlend-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21525;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:61:\"2017_ThePanorama_StagsLeapDistrict_Napa_RedBlend-768x2091.png\";s:5:\"width\";i:768;s:6:\"height\";i:2091;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1098972;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:61:\"2017_ThePanorama_StagsLeapDistrict_Napa_RedBlend-564x1536.png\";s:5:\"width\";i:564;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:582430;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:61:\"2017_ThePanorama_StagsLeapDistrict_Napa_RedBlend-752x2048.png\";s:5:\"width\";i:752;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1051134;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:62:\"2017_ThePanorama_StagsLeapDistrict_Napa_RedBlend-1200x3267.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2873331;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14780,1127,'_wp_attachment_image_alt','Meadowcroft The Panorama Napa'),(14781,1128,'_wp_attachment_image_alt','Meadowcroft The Panorama Stags Leap'),(14782,1129,'_wp_attached_file','2022/11/2017_Panorama_NV_CabSauvBlend_v1.pdf'),(14783,1129,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:40:\"2017_Panorama_NV_CabSauvBlend_v1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:284154;}s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"2017_Panorama_NV_CabSauvBlend_v1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22139;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"2017_Panorama_NV_CabSauvBlend_v1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153309;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"2017_Panorama_NV_CabSauvBlend_v1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10082;}}s:8:\"filesize\";i:257762;}'),(14784,1130,'_wp_attached_file','2022/11/2017_StagsLeapDistrcit_ThePanorama_MC_v1.pdf'),(14785,1130,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:48:\"2017_StagsLeapDistrcit_ThePanorama_MC_v1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:284660;}s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"2017_StagsLeapDistrcit_ThePanorama_MC_v1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22370;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"2017_StagsLeapDistrcit_ThePanorama_MC_v1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152372;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"2017_StagsLeapDistrcit_ThePanorama_MC_v1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10158;}}s:8:\"filesize\";i:259043;}'),(14786,1131,'_wp_attached_file','2022/11/2010_MC_Zinfandel-lg.png'),(14787,1131,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2400;s:6:\"height\";i:3600;s:4:\"file\";s:32:\"2022/11/2010_MC_Zinfandel-lg.png\";s:8:\"filesize\";i:3017122;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"2010_MC_Zinfandel-lg-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25646;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"2010_MC_Zinfandel-lg-683x1024.png\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:246590;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"2010_MC_Zinfandel-lg-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12115;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"2010_MC_Zinfandel-lg-768x1152.png\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:310193;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"2010_MC_Zinfandel-lg-1024x1536.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:541331;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:34:\"2010_MC_Zinfandel-lg-1365x2048.png\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:949941;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:34:\"2010_MC_Zinfandel-lg-1200x1800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:1800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:721847;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14788,1132,'_wp_attached_file','2022/11/2011_MC_KnightsValley_Zinfandel.png'),(14789,1132,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1800;s:4:\"file\";s:43:\"2022/11/2011_MC_KnightsValley_Zinfandel.png\";s:8:\"filesize\";i:947998;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"2011_MC_KnightsValley_Zinfandel-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25503;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"2011_MC_KnightsValley_Zinfandel-683x1024.png\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:259081;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"2011_MC_KnightsValley_Zinfandel-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12060;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"2011_MC_KnightsValley_Zinfandel-768x1152.png\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:327247;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:45:\"2011_MC_KnightsValley_Zinfandel-1024x1536.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:577305;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14790,1133,'_wp_attached_file','2022/11/Meadowcroft_Zin_Speedy_12-scaled-1.jpeg'),(14791,1133,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:752;s:6:\"height\";i:2560;s:4:\"file\";s:47:\"2022/11/Meadowcroft_Zin_Speedy_12-scaled-1.jpeg\";s:8:\"filesize\";i:184846;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_Zin_Speedy_12-scaled-1-88x300.jpeg\";s:5:\"width\";i:88;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21011;}s:5:\"large\";a:5:{s:4:\"file\";s:48:\"Meadowcroft_Zin_Speedy_12-scaled-1-301x1024.jpeg\";s:5:\"width\";i:301;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48625;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Meadowcroft_Zin_Speedy_12-scaled-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20214;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"Meadowcroft_Zin_Speedy_12-scaled-1-451x1536.jpeg\";s:5:\"width\";i:451;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81641;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:48:\"Meadowcroft_Zin_Speedy_12-scaled-1-602x2048.jpeg\";s:5:\"width\";i:602;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124068;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"14\";s:6:\"credit\";s:32:\"Rick Bolen\rrick@bolenphoto.com\r7\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1429279576\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(14792,1134,'_wp_attached_file','2022/11/Meadowcroft_Zin_Speedy_13.png'),(14793,1134,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1684;s:6:\"height\";i:5556;s:4:\"file\";s:37:\"2022/11/Meadowcroft_Zin_Speedy_13.png\";s:8:\"filesize\";i:8560360;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Meadowcroft_Zin_Speedy_13-91x300.png\";s:5:\"width\";i:91;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25684;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"Meadowcroft_Zin_Speedy_13-310x1024.png\";s:5:\"width\";i:310;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:251960;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Meadowcroft_Zin_Speedy_13-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23665;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"Meadowcroft_Zin_Speedy_13-768x2534.png\";s:5:\"width\";i:768;s:6:\"height\";i:2534;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1633816;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:38:\"Meadowcroft_Zin_Speedy_13-466x1536.png\";s:5:\"width\";i:466;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:577096;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:38:\"Meadowcroft_Zin_Speedy_13-621x2048.png\";s:5:\"width\";i:621;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1043756;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:39:\"Meadowcroft_Zin_Speedy_13-1200x3959.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3959;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4055146;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14794,1135,'_wp_attached_file','2022/11/Meadowcroft_Zinfandel_2014_SpeedyCreek.png'),(14795,1135,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1556;s:6:\"height\";i:5586;s:4:\"file\";s:50:\"2022/11/Meadowcroft_Zinfandel_2014_SpeedyCreek.png\";s:8:\"filesize\";i:10600621;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_Zinfandel_2014_SpeedyCreek-84x300.png\";s:5:\"width\";i:84;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26919;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_Zinfandel_2014_SpeedyCreek-285x1024.png\";s:5:\"width\";i:285;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:256728;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_Zinfandel_2014_SpeedyCreek-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27850;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_Zinfandel_2014_SpeedyCreek-768x2757.png\";s:5:\"width\";i:768;s:6:\"height\";i:2757;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2023966;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_Zinfandel_2014_SpeedyCreek-428x1536.png\";s:5:\"width\";i:428;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:588656;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_Zinfandel_2014_SpeedyCreek-570x2048.png\";s:5:\"width\";i:570;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1063345;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_Zinfandel_2014_SpeedyCreek-1200x4308.png\";s:5:\"width\";i:1200;s:6:\"height\";i:4308;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5228495;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14796,1136,'_wp_attached_file','2022/11/Meadowcroft_Zinfandel_2018_SpeedyCreek.png'),(14797,1136,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2085;s:6:\"height\";i:5676;s:4:\"file\";s:50:\"2022/11/Meadowcroft_Zinfandel_2018_SpeedyCreek.png\";s:8:\"filesize\";i:10612753;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_Zinfandel_2018_SpeedyCreek-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26220;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_Zinfandel_2018_SpeedyCreek-376x1024.png\";s:5:\"width\";i:376;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:251860;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_Zinfandel_2018_SpeedyCreek-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21399;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_Zinfandel_2018_SpeedyCreek-768x2091.png\";s:5:\"width\";i:768;s:6:\"height\";i:2091;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1094599;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_Zinfandel_2018_SpeedyCreek-564x1536.png\";s:5:\"width\";i:564;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:579381;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_Zinfandel_2018_SpeedyCreek-752x2048.png\";s:5:\"width\";i:752;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1047027;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_Zinfandel_2018_SpeedyCreek-1200x3267.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2867494;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14798,1137,'_wp_attached_file','2022/11/Meadowcroft_Zinfandel_2019_SpeedyCreek-1.png'),(14799,1137,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2085;s:6:\"height\";i:5676;s:4:\"file\";s:52:\"2022/11/Meadowcroft_Zinfandel_2019_SpeedyCreek-1.png\";s:8:\"filesize\";i:10615748;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_Zinfandel_2019_SpeedyCreek-1-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26246;}s:5:\"large\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_Zinfandel_2019_SpeedyCreek-1-376x1024.png\";s:5:\"width\";i:376;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:251976;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_Zinfandel_2019_SpeedyCreek-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21399;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_Zinfandel_2019_SpeedyCreek-1-768x2091.png\";s:5:\"width\";i:768;s:6:\"height\";i:2091;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1094863;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_Zinfandel_2019_SpeedyCreek-1-564x1536.png\";s:5:\"width\";i:564;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:579511;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_Zinfandel_2019_SpeedyCreek-1-752x2048.png\";s:5:\"width\";i:752;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1047218;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:54:\"Meadowcroft_Zinfandel_2019_SpeedyCreek-1-1200x3267.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2867687;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14800,1131,'_wp_attachment_image_alt','Meadowcroft 2010 Speedy Creek Zinfandel'),(14801,1132,'_wp_attachment_image_alt','Meadowcroft 2011 Speedy Creek Zinfandel'),(14802,1133,'_wp_attachment_image_alt','Meadowcroft 2012 Speedy Creek Zinfandel'),(14803,1134,'_wp_attachment_image_alt','Meadowcroft 2013 Speedy Creek Zinfandel'),(14804,1135,'_wp_attachment_image_alt','Meadowcroft 2014 Speedy Creek Zinfandel'),(14805,1136,'_wp_attachment_image_alt','Meadowcroft 2018 Speedy Creek Zinfandel'),(14806,1137,'_wp_attachment_image_alt','Meadowcroft 2019 Speedy Creek Zinfandel'),(14807,1138,'_wp_attached_file','2022/11/2012_Speedy-Creek-Zin_Tasting-Notes.pdf'),(14808,1138,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:43:\"2012_Speedy-Creek-Zin_Tasting-Notes-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:1088;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:207063;}s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"2012_Speedy-Creek-Zin_Tasting-Notes-pdf-300x232.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25175;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"2012_Speedy-Creek-Zin_Tasting-Notes-pdf-1024x791.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122399;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"2012_Speedy-Creek-Zin_Tasting-Notes-pdf-150x116.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:116;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15268;}}s:8:\"filesize\";i:4004009;}'),(14809,1139,'_wp_attached_file','2022/11/Meadowcroft_2013SpeedyCreekZin_TECHSheet.pdf'),(14810,1139,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:48:\"Meadowcroft_2013SpeedyCreekZin_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:269232;}s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_2013SpeedyCreekZin_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19089;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2013SpeedyCreekZin_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139832;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_2013SpeedyCreekZin_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7717;}}s:8:\"filesize\";i:255002;}'),(14811,1140,'_wp_attached_file','2022/11/Meadowcroft_2014_SpeedyCreek_Zin_TECHSheet.pdf'),(14812,1140,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_2014_SpeedyCreek_Zin_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:308112;}s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_2014_SpeedyCreek_Zin_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54673;}s:5:\"large\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_2014_SpeedyCreek_Zin_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:179469;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_2014_SpeedyCreek_Zin_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42886;}}s:8:\"filesize\";i:399610;}'),(14813,1141,'_wp_attached_file','2022/11/Meadowcroft_2018_SpeedyCreek_Zin_TECHSheet-1.pdf'),(14814,1141,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_2018_SpeedyCreek_Zin_TECHSheet-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:305491;}s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_2018_SpeedyCreek_Zin_TECHSheet-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54294;}s:5:\"large\";a:5:{s:4:\"file\";s:61:\"Meadowcroft_2018_SpeedyCreek_Zin_TECHSheet-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:179942;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_2018_SpeedyCreek_Zin_TECHSheet-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42745;}}s:8:\"filesize\";i:891384;}'),(14819,1144,'_wp_attached_file','2022/11/TastingSheet-2010-Meadowcroft-Son-Zinfandel.pdf'),(14820,1144,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:51:\"TastingSheet-2010-Meadowcroft-Son-Zinfandel-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:390002;}s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"TastingSheet-2010-Meadowcroft-Son-Zinfandel-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27586;}s:5:\"large\";a:5:{s:4:\"file\";s:60:\"TastingSheet-2010-Meadowcroft-Son-Zinfandel-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:208007;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"TastingSheet-2010-Meadowcroft-Son-Zinfandel-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11256;}}s:8:\"filesize\";i:1151904;}'),(14821,1145,'_wp_attached_file','2022/11/TastingSheet-2011-Meadowcroft-Zinfandel.pdf'),(14822,1145,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:47:\"TastingSheet-2011-Meadowcroft-Zinfandel-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:311884;}s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"TastingSheet-2011-Meadowcroft-Zinfandel-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20814;}s:5:\"large\";a:5:{s:4:\"file\";s:56:\"TastingSheet-2011-Meadowcroft-Zinfandel-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165711;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"TastingSheet-2011-Meadowcroft-Zinfandel-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8577;}}s:8:\"filesize\";i:1780396;}'),(14823,1146,'_wp_attached_file','2022/11/Speedy-Creek-Zin.png'),(14824,1146,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:28:\"2022/11/Speedy-Creek-Zin.png\";s:8:\"filesize\";i:80577;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Speedy-Creek-Zin-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26496;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Speedy-Creek-Zin-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13284;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14825,1146,'_wp_attachment_image_alt','Speedy Creek Zinfandel'),(14826,1147,'_wp_attached_file','2022/11/Meadowcroft-MC_DRYCREEKZIN_20_Techsheet-1.pdf'),(14827,1147,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:49:\"Meadowcroft-MC_DRYCREEKZIN_20_Techsheet-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:267446;}s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-MC_DRYCREEKZIN_20_Techsheet-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19767;}s:5:\"large\";a:5:{s:4:\"file\";s:58:\"Meadowcroft-MC_DRYCREEKZIN_20_Techsheet-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140107;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-MC_DRYCREEKZIN_20_Techsheet-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7861;}}s:8:\"filesize\";i:252286;}'),(14828,1148,'_wp_attached_file','2022/11/Meadowcroft-MC_DRYCREEKZIN_20.png'),(14829,1148,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2085;s:6:\"height\";i:5676;s:4:\"file\";s:41:\"2022/11/Meadowcroft-MC_DRYCREEKZIN_20.png\";s:8:\"filesize\";i:10615822;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Meadowcroft-MC_DRYCREEKZIN_20-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26172;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"Meadowcroft-MC_DRYCREEKZIN_20-376x1024.png\";s:5:\"width\";i:376;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:251242;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Meadowcroft-MC_DRYCREEKZIN_20-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21399;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"Meadowcroft-MC_DRYCREEKZIN_20-768x2091.png\";s:5:\"width\";i:768;s:6:\"height\";i:2091;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1093623;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:42:\"Meadowcroft-MC_DRYCREEKZIN_20-564x1536.png\";s:5:\"width\";i:564;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:578498;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:42:\"Meadowcroft-MC_DRYCREEKZIN_20-752x2048.png\";s:5:\"width\";i:752;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1046128;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:43:\"Meadowcroft-MC_DRYCREEKZIN_20-1200x3267.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2865660;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14830,1149,'_wp_attached_file','2022/11/Meadowcroft-MC_DRYCREEKZIN_20-1000x2722-1.png'),(14831,1149,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:2722;s:4:\"file\";s:53:\"2022/11/Meadowcroft-MC_DRYCREEKZIN_20-1000x2722-1.png\";s:8:\"filesize\";i:1969522;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-MC_DRYCREEKZIN_20-1000x2722-1-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23972;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"Meadowcroft-MC_DRYCREEKZIN_20-1000x2722-1-376x1024.png\";s:5:\"width\";i:376;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:242594;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-MC_DRYCREEKZIN_20-1000x2722-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19956;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:54:\"Meadowcroft-MC_DRYCREEKZIN_20-1000x2722-1-768x2090.png\";s:5:\"width\";i:768;s:6:\"height\";i:2090;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:996924;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:54:\"Meadowcroft-MC_DRYCREEKZIN_20-1000x2722-1-564x1536.png\";s:5:\"width\";i:564;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:541321;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:54:\"Meadowcroft-MC_DRYCREEKZIN_20-1000x2722-1-752x2048.png\";s:5:\"width\";i:752;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:959681;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14832,1148,'_wp_attachment_image_alt','Meadowcroft 2020 Mae Vineyard Zinfandel'),(14833,1149,'_wp_attachment_image_alt','Meadowcroft Mae Vineyard Zinfandel'),(14834,1150,'_wp_attached_file','2022/11/18ZNOLDVINE_1-1.png'),(14835,1150,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2085;s:6:\"height\";i:5676;s:4:\"file\";s:27:\"2022/11/18ZNOLDVINE_1-1.png\";s:8:\"filesize\";i:10655804;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"18ZNOLDVINE_1-1-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25980;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"18ZNOLDVINE_1-1-376x1024.png\";s:5:\"width\";i:376;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:250452;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"18ZNOLDVINE_1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21399;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"18ZNOLDVINE_1-1-768x2091.png\";s:5:\"width\";i:768;s:6:\"height\";i:2091;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1091958;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"18ZNOLDVINE_1-1-564x1536.png\";s:5:\"width\";i:564;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:577252;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:28:\"18ZNOLDVINE_1-1-752x2048.png\";s:5:\"width\";i:752;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1044389;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:29:\"18ZNOLDVINE_1-1-1200x3267.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2863590;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14836,1151,'_wp_attached_file','2022/11/2013-Speedy-Creek.jpeg'),(14837,1151,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:30:\"2022/11/2013-Speedy-Creek.jpeg\";s:8:\"filesize\";i:17561;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"2013-Speedy-Creek-180x300.jpeg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10249;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"2013-Speedy-Creek-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7454;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14838,1152,'_wp_attached_file','2022/11/Meadowcroft_2016Zinfandel_Amador_TECHSheet_v1.pdf'),(14839,1152,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_2016Zinfandel_Amador_TECHSheet_v1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:249206;}s:6:\"medium\";a:5:{s:4:\"file\";s:61:\"Meadowcroft_2016Zinfandel_Amador_TECHSheet_v1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17980;}s:5:\"large\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_2016Zinfandel_Amador_TECHSheet_v1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130683;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"Meadowcroft_2016Zinfandel_Amador_TECHSheet_v1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7459;}}s:8:\"filesize\";i:231599;}'),(14840,1153,'_wp_attached_file','2022/11/Meadowcroft_2018Zinfandel_Amador_TECHSheet.pdf'),(14841,1153,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_2018Zinfandel_Amador_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:264985;}s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_2018Zinfandel_Amador_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18923;}s:5:\"large\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_2018Zinfandel_Amador_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141010;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_2018Zinfandel_Amador_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7653;}}s:8:\"filesize\";i:270196;}'),(14842,1150,'_wp_attachment_image_alt','Meadowcroft 2018 Old Vine Zindandel'),(14843,1151,'_wp_attachment_image_alt','Meadowcroft 2016 Old Vine Zindandel'),(14844,1154,'_wp_attached_file','2022/11/Old-Vine.png'),(14845,1154,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2022/11/Old-Vine.png\";s:8:\"filesize\";i:85164;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Old-Vine-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25408;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Old-Vine-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12699;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14846,1154,'_wp_attachment_image_alt','Meadowcroft 2016 Old Vine Zindandel'),(14847,1155,'_wp_attached_file','2022/11/2014-Malbec.jpeg'),(14848,1155,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:250;s:6:\"height\";i:500;s:4:\"file\";s:24:\"2022/11/2014-Malbec.jpeg\";s:8:\"filesize\";i:15783;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"2014-Malbec-150x300.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9591;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"2014-Malbec-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7350;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14849,1156,'_wp_attached_file','2022/11/MC_2019_Malbec_Clements_Hill_Bottleshot.png'),(14850,1156,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2085;s:6:\"height\";i:5676;s:4:\"file\";s:51:\"2022/11/MC_2019_Malbec_Clements_Hill_Bottleshot.png\";s:8:\"filesize\";i:11349087;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"MC_2019_Malbec_Clements_Hill_Bottleshot-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26259;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"MC_2019_Malbec_Clements_Hill_Bottleshot-376x1024.png\";s:5:\"width\";i:376;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:252248;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"MC_2019_Malbec_Clements_Hill_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21557;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:52:\"MC_2019_Malbec_Clements_Hill_Bottleshot-768x2091.png\";s:5:\"width\";i:768;s:6:\"height\";i:2091;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1097400;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:52:\"MC_2019_Malbec_Clements_Hill_Bottleshot-564x1536.png\";s:5:\"width\";i:564;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:581212;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:52:\"MC_2019_Malbec_Clements_Hill_Bottleshot-752x2048.png\";s:5:\"width\";i:752;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1049502;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:53:\"MC_2019_Malbec_Clements_Hill_Bottleshot-1200x3267.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2870505;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14851,1157,'_wp_attached_file','2022/11/Meadowcroft_2014ZinfandelDCV_TECHSheet.pdf'),(14852,1157,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_2014ZinfandelDCV_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:295779;}s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"Meadowcroft_2014ZinfandelDCV_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53879;}s:5:\"large\";a:5:{s:4:\"file\";s:55:\"Meadowcroft_2014ZinfandelDCV_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:172705;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"Meadowcroft_2014ZinfandelDCV_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42735;}}s:8:\"filesize\";i:390950;}'),(14853,1158,'_wp_attached_file','2022/11/Meadowcroft_2016_Malbec_BottleShot.jpg.png'),(14854,1158,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2085;s:6:\"height\";i:5676;s:4:\"file\";s:50:\"2022/11/Meadowcroft_2016_Malbec_BottleShot.jpg.png\";s:8:\"filesize\";i:10671898;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_2016_Malbec_BottleShot.jpg-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26056;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_2016_Malbec_BottleShot.jpg-376x1024.png\";s:5:\"width\";i:376;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:251577;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_2016_Malbec_BottleShot.jpg-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21832;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_2016_Malbec_BottleShot.jpg-768x2091.png\";s:5:\"width\";i:768;s:6:\"height\";i:2091;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1094321;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_2016_Malbec_BottleShot.jpg-564x1536.png\";s:5:\"width\";i:564;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:579361;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_2016_Malbec_BottleShot.jpg-752x2048.png\";s:5:\"width\";i:752;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1046125;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_2016_Malbec_BottleShot.jpg-1200x3267.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2864514;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14855,1159,'_wp_attached_file','2022/11/Meadowcroft_2016CruDeLaRucheMalbec_TECHSheet.pdf'),(14856,1159,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_2016CruDeLaRucheMalbec_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:281426;}s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_2016CruDeLaRucheMalbec_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20120;}s:5:\"large\";a:5:{s:4:\"file\";s:61:\"Meadowcroft_2016CruDeLaRucheMalbec_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147705;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_2016CruDeLaRucheMalbec_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7990;}}s:8:\"filesize\";i:219969;}'),(14857,1160,'_wp_attached_file','2022/11/Meadowcroft_2017_Malbec_BottleShot_v2.png'),(14858,1160,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2085;s:6:\"height\";i:5676;s:4:\"file\";s:49:\"2022/11/Meadowcroft_2017_Malbec_BottleShot_v2.png\";s:8:\"filesize\";i:10661470;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_2017_Malbec_BottleShot_v2-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26042;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_2017_Malbec_BottleShot_v2-376x1024.png\";s:5:\"width\";i:376;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:251494;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_2017_Malbec_BottleShot_v2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21832;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_2017_Malbec_BottleShot_v2-768x2091.png\";s:5:\"width\";i:768;s:6:\"height\";i:2091;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1094087;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_2017_Malbec_BottleShot_v2-564x1536.png\";s:5:\"width\";i:564;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:579273;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_2017_Malbec_BottleShot_v2-752x2048.png\";s:5:\"width\";i:752;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1045952;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_2017_Malbec_BottleShot_v2-1200x3267.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2864233;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14859,1161,'_wp_attached_file','2022/11/Meadowcroft_2017CruDeLaRucheMalbec_TECHSheet_Awards.pdf'),(14860,1161,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_2017CruDeLaRucheMalbec_TECHSheet_Awards-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:260178;}s:6:\"medium\";a:5:{s:4:\"file\";s:67:\"Meadowcroft_2017CruDeLaRucheMalbec_TECHSheet_Awards-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19805;}s:5:\"large\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_2017CruDeLaRucheMalbec_TECHSheet_Awards-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138478;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:67:\"Meadowcroft_2017CruDeLaRucheMalbec_TECHSheet_Awards-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8014;}}s:8:\"filesize\";i:448843;}'),(14861,1162,'_wp_attached_file','2022/11/Meadowcroft_2018CruDeLaRucheMalbec_TECHSheet_Awards.pdf'),(14862,1162,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_2018CruDeLaRucheMalbec_TECHSheet_Awards-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:258257;}s:6:\"medium\";a:5:{s:4:\"file\";s:67:\"Meadowcroft_2018CruDeLaRucheMalbec_TECHSheet_Awards-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19300;}s:5:\"large\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_2018CruDeLaRucheMalbec_TECHSheet_Awards-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136356;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:67:\"Meadowcroft_2018CruDeLaRucheMalbec_TECHSheet_Awards-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7866;}}s:8:\"filesize\";i:347104;}'),(14863,1163,'_wp_attached_file','2022/11/Meadowcroft_2019CruDeLaRucheMalbec_TECHSheet.pdf'),(14864,1163,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_2019CruDeLaRucheMalbec_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:242330;}s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_2019CruDeLaRucheMalbec_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20093;}s:5:\"large\";a:5:{s:4:\"file\";s:61:\"Meadowcroft_2019CruDeLaRucheMalbec_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128991;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_2019CruDeLaRucheMalbec_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9521;}}s:8:\"filesize\";i:586053;}'),(14865,1164,'_wp_attached_file','2022/11/Meadowcroft_2020CruDeLaRucheMalbec_TECHSheet-1.pdf'),(14866,1164,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:54:\"Meadowcroft_2020CruDeLaRucheMalbec_TECHSheet-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:288768;}s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_2020CruDeLaRucheMalbec_TECHSheet-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22282;}s:5:\"large\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2020CruDeLaRucheMalbec_TECHSheet-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156365;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_2020CruDeLaRucheMalbec_TECHSheet-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10046;}}s:8:\"filesize\";i:1026868;}'),(14867,1165,'_wp_attached_file','2022/11/Meadowcroft_2020CruDeLaRucheMalbec_TECHSheet.pdf'),(14868,1165,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_2020CruDeLaRucheMalbec_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:288768;}s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_2020CruDeLaRucheMalbec_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22282;}s:5:\"large\";a:5:{s:4:\"file\";s:61:\"Meadowcroft_2020CruDeLaRucheMalbec_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156365;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_2020CruDeLaRucheMalbec_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10046;}}s:8:\"filesize\";i:1026868;}'),(14869,1158,'_wp_attachment_image_alt','Meadowcroft 2016 Cru de la Ruche Malbec'),(14870,1160,'_wp_attachment_image_alt','Meadowcroft 2017 Cru de la Ruche Malbec'),(14871,1156,'_wp_attachment_image_alt','Meadowcroft 2019 Cru de la Ruche Malbec'),(14872,1155,'_wp_attachment_image_alt','Meadowcroft 2014 Cru de la Ruche Malbec'),(14873,1166,'_wp_attached_file','2022/11/20_Malbec_Clements_Hill_Bottleshot-376x1024-1.png'),(14874,1166,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:376;s:6:\"height\";i:1024;s:4:\"file\";s:57:\"2022/11/20_Malbec_Clements_Hill_Bottleshot-376x1024-1.png\";s:8:\"filesize\";i:252512;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"20_Malbec_Clements_Hill_Bottleshot-376x1024-1-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23615;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"20_Malbec_Clements_Hill_Bottleshot-376x1024-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19363;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14875,1166,'_wp_attachment_image_alt','Meadowcroft Cru de la Ruche Malbec'),(14876,1167,'_wp_attached_file','2022/11/2014-Syrah.jpeg'),(14877,1167,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:23:\"2022/11/2014-Syrah.jpeg\";s:8:\"filesize\";i:17172;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"2014-Syrah-180x300.jpeg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10183;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"2014-Syrah-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7086;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14878,1167,'_wp_attachment_image_alt','Meadowcroft 2014 Syrah'),(14879,1168,'_wp_attached_file','2022/11/Meadowcroft_2018_SyrahCalifornia_TECHSheet.pdf'),(14880,1168,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_2018_SyrahCalifornia_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:274518;}s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_2018_SyrahCalifornia_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52488;}s:5:\"large\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_2018_SyrahCalifornia_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:161169;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_2018_SyrahCalifornia_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42447;}}s:8:\"filesize\";i:360037;}'),(14881,1169,'_wp_attached_file','2022/11/Meadowcroft_Syrah_2014_BottleShot-1-scaled.jpeg'),(14882,1169,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:787;s:6:\"height\";i:2560;s:4:\"file\";s:55:\"2022/11/Meadowcroft_Syrah_2014_BottleShot-1-scaled.jpeg\";s:8:\"filesize\";i:166910;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"Meadowcroft_Syrah_2014_BottleShot-1-92x300.jpeg\";s:5:\"width\";i:92;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17521;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_Syrah_2014_BottleShot-1-315x1024.jpeg\";s:5:\"width\";i:315;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45117;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"Meadowcroft_Syrah_2014_BottleShot-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15466;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_Syrah_2014_BottleShot-1-768x2498.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:2498;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160451;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_Syrah_2014_BottleShot-1-472x1536.jpeg\";s:5:\"width\";i:472;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76096;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_Syrah_2014_BottleShot-1-630x2048.jpeg\";s:5:\"width\";i:630;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115604;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_Syrah_2014_BottleShot-1-1200x3903.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:3903;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:369169;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:10:\"Foyt Wines\";s:6:\"camera\";s:11:\"NIKON D7100\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1455805150\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:40:\"Meadowcroft_Syrah_2014_BottleShot-1.jpeg\";}'),(14883,1170,'_wp_attached_file','2022/11/Meadowcroft_Syrah_California_2018.png'),(14884,1170,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1790;s:6:\"height\";i:5069;s:4:\"file\";s:45:\"2022/11/Meadowcroft_Syrah_California_2018.png\";s:8:\"filesize\";i:6514701;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"Meadowcroft_Syrah_California_2018-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23877;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_Syrah_California_2018-362x1024.png\";s:5:\"width\";i:362;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:230951;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"Meadowcroft_Syrah_California_2018-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13926;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_Syrah_California_2018-768x2175.png\";s:5:\"width\";i:768;s:6:\"height\";i:2175;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1079880;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_Syrah_California_2018-542x1536.png\";s:5:\"width\";i:542;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:527065;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_Syrah_California_2018-723x2048.png\";s:5:\"width\";i:723;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:951694;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"Meadowcroft_Syrah_California_2018-1200x3398.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3398;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2675685;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14885,1170,'_wp_attachment_image_alt','Meadowcroft 2018 Syrah'),(14886,1169,'_wp_attachment_image_alt','Meadowcroft 2014 Syrah'),(14887,508,'content_block_5_layout_title','Assets Row 5'),(14888,508,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(14889,508,'content_block_5_text_block_columns','four'),(14890,508,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(14891,508,'content_block_5_narrow_text_block_content','0'),(14892,508,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(14893,508,'content_block_5_reverse_colors','0'),(14894,508,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(14895,508,'content_block_5_enable_background_image','0'),(14896,508,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(14897,508,'content_block_5_custom_css_class','wide-content white-boxes'),(14898,508,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(14899,508,'content_block_5_text_block_content_col_one','<img class=\"wp-image-1167 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2014-Syrah.jpeg\" alt=\"Meadowcroft 2014 Syrah\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">CALIFORNIA SYRAH</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft_Syrah_2014_BottleShot-1-scaled-1.png\">2014</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_Syrah_California_2018.png\">2018</a>\r\nTech Sheet: 2014 | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018_SyrahCalifornia_TECHSheet.pdf\">2018</a></p>'),(14900,508,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(14901,508,'content_block_5_text_block_content_col_two','<img class=\"wp-image-1180 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2015-Cornerstone-Vineyard-Pinot-Noir.jpeg\" alt=\"Meadowcroft 2015 Cornerstone Pinot Noir\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">CORNERSTONE VINEYARD PINOT NOIR</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft_2015_PinotNoir_Cornerstone_BottleShot-scaled-1.png\">2015</a> | 2016 | 2017 | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_PinotNoir_Cornerstone_LosCarneros_2018.png\">2018</a> | <a href=\"/wp-content/uploads/2023/02/19_PinotNoir_Cornerstone.png\">2019</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_2020_Cornerstone_Pinotnoir_Bottleshotpng.png\">2020</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2015_PinotNoir_Cornerstone_TECHSheet.pdf\">2015</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2016CornerstoneVineyard_PinotNoir_TECHSheet.pdf\">2016</a> | 2017 | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018_CornerstoneVineyard_Pinotnoir_TECHSheet.pdf\">2018</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2019_CornerstoneVineyard_Pinotnoir_TECHSheet.pdf\">2019</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2020_Cornerstone_Pinotnoir_TECHSheet.pdf\">2020</a></p>'),(14902,508,'_content_block_5_text_block_content_col_two','field_5bbe31593920e'),(14903,508,'content_block_5_text_block_content_col_three','<img class=\"wp-image-1777 size-medium aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_PinotNoir_SonomaCoast_15_BottleShot-scaled-1-300x300.jpg\" alt=\"Meadowcroft 2015 Sonoma Coast Pinot Noir\" width=\"300\" height=\"300\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\"> SONOMA COAST PINOT NOIR</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/MC_SONOMACOASTPINOT_2018.png\">2018</a> | <a href=\"/wp-content/uploads/2023/02/MC_SONOMACOASTPINOT_2019-1.png\">2019</a> | <a href=\"/wp-content/uploads/2023/02/2021-Meadowcroft-Sonoma-Coast-Pinot_Bottleshot.png\">2021 </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-PinotNoir_VinaDelSol-scaled.jpg\">2022</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/2018-Meadowcroft-Sonoma-Coast-Pinot-noir.pdf\">2018</a> | <a href=\"/wp-content/uploads/2022/11/2019-Meadowcroft-Sonoma-Coast-Pinot-noir-1.pdf\">2019</a> | <a href=\"/wp-content/uploads/2022/11/2021-Meadowcroft-Sonoma-Coast-Pinot-noir.pdf\">2021 </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-PinotNoir-SonCoast.pdf\">2022</a></p>'),(14904,508,'_content_block_5_text_block_content_col_three','field_5bbe31793920f'),(14905,508,'content_block_5_text_block_content_col_four','<img class=\"wp-image-3378 size-medium aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/RR-PinotNoir-NoVintage-92x300.jpg\" alt=\"\" width=\"92\" height=\"300\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">RUSSIAN RIVER VALLEY PINOT NOIR</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot : <a href=\"/wp-content/uploads/2023/02/Meadowcroft_PinotNoir_RRV18_BotteShot.png\">2018</a> | <a href=\"/wp-content/uploads/2023/02/19PIINOTNOIR_RRValley_Screwcap.png\">2019</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_2020_PinotNoir_RussianriverValley_Bottleshot.png\">2020</a> | <a href=\"/wp-content/uploads/2023/02/21_Pinot_RRV_bottleshot.png\">2021 </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/RR-PinotNoir-NoVintage.jpg\">2022</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018_RussianRiverValley_Pinotnoir_TECHSheet-1.pdf\">2018</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2019_RussianRiverValley_Pinotnoir_TECHSheet.pdf\">2019</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2020_RussianRiverValley_Pinotnoir_TECHSheet.pdf\">2020</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2021_RussianRiverValley_Pinotnoir_TECHSheet.pdf\">2021 </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-PinotNoir-RussianRiver.pdf\">2022</a></p>'),(14906,508,'_content_block_5_text_block_content_col_four','field_5bbe317939444'),(14907,1171,'_wp_attached_file','2022/11/19_PinotNoir_Cornerstone.png'),(14908,1171,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1790;s:6:\"height\";i:5069;s:4:\"file\";s:36:\"2022/11/19_PinotNoir_Cornerstone.png\";s:8:\"filesize\";i:6481071;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"19_PinotNoir_Cornerstone-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24737;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"19_PinotNoir_Cornerstone-362x1024.png\";s:5:\"width\";i:362;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:235748;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"19_PinotNoir_Cornerstone-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13927;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"19_PinotNoir_Cornerstone-768x2175.png\";s:5:\"width\";i:768;s:6:\"height\";i:2175;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1090486;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"19_PinotNoir_Cornerstone-542x1536.png\";s:5:\"width\";i:542;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:534719;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"19_PinotNoir_Cornerstone-723x2048.png\";s:5:\"width\";i:723;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:961837;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:38:\"19_PinotNoir_Cornerstone-1200x3398.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3398;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2691059;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14909,1172,'_wp_attached_file','2022/11/Meadowcroft_2015_PinotNoir_Cornerstone_BottleShot-scaled.jpeg'),(14910,1172,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:904;s:6:\"height\";i:2560;s:4:\"file\";s:69:\"2022/11/Meadowcroft_2015_PinotNoir_Cornerstone_BottleShot-scaled.jpeg\";s:8:\"filesize\";i:179030;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_2015_PinotNoir_Cornerstone_BottleShot-106x300.jpeg\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9191;}s:5:\"large\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2015_PinotNoir_Cornerstone_BottleShot-362x1024.jpeg\";s:5:\"width\";i:362;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39121;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_2015_PinotNoir_Cornerstone_BottleShot-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6842;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2015_PinotNoir_Cornerstone_BottleShot-768x2175.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:2175;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133184;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2015_PinotNoir_Cornerstone_BottleShot-542x1536.jpeg\";s:5:\"width\";i:542;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73192;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2015_PinotNoir_Cornerstone_BottleShot-723x2048.jpeg\";s:5:\"width\";i:723;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119818;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_2015_PinotNoir_Cornerstone_BottleShot-1200x3398.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:3398;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:305726;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:54:\"Meadowcroft_2015_PinotNoir_Cornerstone_BottleShot.jpeg\";}'),(14911,1173,'_wp_attached_file','2022/11/Meadowcroft_2015_PinotNoir_Cornerstone_TECHSheet.pdf'),(14912,1173,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_2015_PinotNoir_Cornerstone_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:310887;}s:6:\"medium\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_2015_PinotNoir_Cornerstone_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54164;}s:5:\"large\";a:5:{s:4:\"file\";s:65:\"Meadowcroft_2015_PinotNoir_Cornerstone_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:179648;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_2015_PinotNoir_Cornerstone_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42655;}}s:8:\"filesize\";i:300208;}'),(14913,1174,'_wp_attached_file','2022/11/Meadowcroft_2016CornerstoneVineyard_PinotNoir_TECHSheet.pdf'),(14914,1174,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2016CornerstoneVineyard_PinotNoir_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:265569;}s:6:\"medium\";a:5:{s:4:\"file\";s:71:\"Meadowcroft_2016CornerstoneVineyard_PinotNoir_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19037;}s:5:\"large\";a:5:{s:4:\"file\";s:72:\"Meadowcroft_2016CornerstoneVineyard_PinotNoir_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140545;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:71:\"Meadowcroft_2016CornerstoneVineyard_PinotNoir_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7711;}}s:8:\"filesize\";i:265581;}'),(14915,1175,'_wp_attached_file','2022/11/Meadowcroft_2018_CornerstoneVineyard_Pinotnoir_TECHSheet.pdf'),(14916,1175,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_2018_CornerstoneVineyard_Pinotnoir_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:270638;}s:6:\"medium\";a:5:{s:4:\"file\";s:72:\"Meadowcroft_2018_CornerstoneVineyard_Pinotnoir_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19342;}s:5:\"large\";a:5:{s:4:\"file\";s:73:\"Meadowcroft_2018_CornerstoneVineyard_Pinotnoir_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143143;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:72:\"Meadowcroft_2018_CornerstoneVineyard_Pinotnoir_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7800;}}s:8:\"filesize\";i:257228;}'),(14917,1176,'_wp_attached_file','2022/11/Meadowcroft_2019_CornerstoneVineyard_Pinotnoir_TECHSheet.pdf'),(14918,1176,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_2019_CornerstoneVineyard_Pinotnoir_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:289146;}s:6:\"medium\";a:5:{s:4:\"file\";s:72:\"Meadowcroft_2019_CornerstoneVineyard_Pinotnoir_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20363;}s:5:\"large\";a:5:{s:4:\"file\";s:73:\"Meadowcroft_2019_CornerstoneVineyard_Pinotnoir_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154641;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:72:\"Meadowcroft_2019_CornerstoneVineyard_Pinotnoir_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7913;}}s:8:\"filesize\";i:630768;}'),(14919,1177,'_wp_attached_file','2022/11/Meadowcroft_2020_Cornerstone_Pinotnoir_Bottleshotpng.png'),(14920,1177,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1790;s:6:\"height\";i:5069;s:4:\"file\";s:64:\"2022/11/Meadowcroft_2020_Cornerstone_Pinotnoir_Bottleshotpng.png\";s:8:\"filesize\";i:3166338;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_2020_Cornerstone_Pinotnoir_Bottleshotpng-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24122;}s:5:\"large\";a:5:{s:4:\"file\";s:65:\"Meadowcroft_2020_Cornerstone_Pinotnoir_Bottleshotpng-362x1024.png\";s:5:\"width\";i:362;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:224634;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_2020_Cornerstone_Pinotnoir_Bottleshotpng-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13456;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:65:\"Meadowcroft_2020_Cornerstone_Pinotnoir_Bottleshotpng-768x2175.png\";s:5:\"width\";i:768;s:6:\"height\";i:2175;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1060207;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:65:\"Meadowcroft_2020_Cornerstone_Pinotnoir_Bottleshotpng-542x1536.png\";s:5:\"width\";i:542;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:515916;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:65:\"Meadowcroft_2020_Cornerstone_Pinotnoir_Bottleshotpng-723x2048.png\";s:5:\"width\";i:723;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:932353;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:66:\"Meadowcroft_2020_Cornerstone_Pinotnoir_Bottleshotpng-1200x3398.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3398;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2699227;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14921,1178,'_wp_attached_file','2022/11/Meadowcroft_2020_Cornerstone_Pinotnoir_TECHSheet.pdf'),(14922,1178,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_2020_Cornerstone_Pinotnoir_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:280368;}s:6:\"medium\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_2020_Cornerstone_Pinotnoir_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19732;}s:5:\"large\";a:5:{s:4:\"file\";s:65:\"Meadowcroft_2020_Cornerstone_Pinotnoir_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147955;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_2020_Cornerstone_Pinotnoir_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7887;}}s:8:\"filesize\";i:301776;}'),(14923,1179,'_wp_attached_file','2022/11/Meadowcroft_PinotNoir_Cornerstone_LosCarneros_2018.png'),(14924,1179,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1790;s:6:\"height\";i:5069;s:4:\"file\";s:62:\"2022/11/Meadowcroft_PinotNoir_Cornerstone_LosCarneros_2018.png\";s:8:\"filesize\";i:6513639;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_PinotNoir_Cornerstone_LosCarneros_2018-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24556;}s:5:\"large\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_PinotNoir_Cornerstone_LosCarneros_2018-362x1024.png\";s:5:\"width\";i:362;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:234919;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_PinotNoir_Cornerstone_LosCarneros_2018-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13926;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_PinotNoir_Cornerstone_LosCarneros_2018-768x2175.png\";s:5:\"width\";i:768;s:6:\"height\";i:2175;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1088779;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_PinotNoir_Cornerstone_LosCarneros_2018-542x1536.png\";s:5:\"width\";i:542;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:533469;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_PinotNoir_Cornerstone_LosCarneros_2018-723x2048.png\";s:5:\"width\";i:723;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:960283;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_PinotNoir_Cornerstone_LosCarneros_2018-1200x3398.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3398;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2688787;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14925,1171,'_wp_attachment_image_alt','Meadowcroft 2019 Cornerstone Pinot Noir'),(14926,1172,'_wp_attachment_image_alt','Meadowcroft 2015 Cornerstone Pinot Noir'),(14927,1177,'_wp_attachment_image_alt','Meadowcroft 2020 Cornerstone Pinot Noir'),(14928,1179,'_wp_attachment_image_alt','Meadowcroft 2018 Cornerstone Pinot Noir'),(14929,1180,'_wp_attached_file','2022/11/2015-Cornerstone-Vineyard-Pinot-Noir.jpeg'),(14930,1180,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:49:\"2022/11/2015-Cornerstone-Vineyard-Pinot-Noir.jpeg\";s:8:\"filesize\";i:16920;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"2015-Cornerstone-Vineyard-Pinot-Noir-180x300.jpeg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10005;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"2015-Cornerstone-Vineyard-Pinot-Noir-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6853;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14931,1180,'_wp_attachment_image_alt','Meadowcroft 2015 Cornerstone Pinot Noir'),(14932,1181,'_wp_attached_file','2022/11/16PNSCSO_1.png'),(14933,1181,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:250;s:6:\"height\";i:708;s:4:\"file\";s:22:\"2022/11/16PNSCSO_1.png\";s:8:\"filesize\";i:167209;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"16PNSCSO_1-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27407;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"16PNSCSO_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15890;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14934,1182,'_wp_attached_file','2022/11/17PNSCSC_1.png'),(14935,1182,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:250;s:6:\"height\";i:708;s:4:\"file\";s:22:\"2022/11/17PNSCSC_1.png\";s:8:\"filesize\";i:167846;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"17PNSCSC_1-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27678;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"17PNSCSC_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15663;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14936,1183,'_wp_attached_file','2022/11/2018-Meadowcroft-Sonoma-Coast-Pinot-noir.pdf'),(14937,1183,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:48:\"2018-Meadowcroft-Sonoma-Coast-Pinot-noir-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:180598;}s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"2018-Meadowcroft-Sonoma-Coast-Pinot-noir-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15069;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"2018-Meadowcroft-Sonoma-Coast-Pinot-noir-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93180;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"2018-Meadowcroft-Sonoma-Coast-Pinot-noir-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7518;}}s:8:\"filesize\";i:630983;}'),(14938,1184,'_wp_attached_file','2022/11/2019-Meadowcroft-Sonoma-Coast-Pinot-noir-1.pdf'),(14939,1184,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:50:\"2019-Meadowcroft-Sonoma-Coast-Pinot-noir-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192033;}s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"2019-Meadowcroft-Sonoma-Coast-Pinot-noir-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15917;}s:5:\"large\";a:5:{s:4:\"file\";s:59:\"2019-Meadowcroft-Sonoma-Coast-Pinot-noir-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98974;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"2019-Meadowcroft-Sonoma-Coast-Pinot-noir-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7723;}}s:8:\"filesize\";i:1003475;}'),(14940,1185,'_wp_attached_file','2022/11/2021-Meadowcroft-Sonoma-Coast-Pinot_Bottleshot.png'),(14941,1185,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1790;s:6:\"height\";i:5069;s:4:\"file\";s:58:\"2022/11/2021-Meadowcroft-Sonoma-Coast-Pinot_Bottleshot.png\";s:8:\"filesize\";i:6833765;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"2021-Meadowcroft-Sonoma-Coast-Pinot_Bottleshot-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25480;}s:5:\"large\";a:5:{s:4:\"file\";s:59:\"2021-Meadowcroft-Sonoma-Coast-Pinot_Bottleshot-362x1024.png\";s:5:\"width\";i:362;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:245541;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"2021-Meadowcroft-Sonoma-Coast-Pinot_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13927;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:59:\"2021-Meadowcroft-Sonoma-Coast-Pinot_Bottleshot-768x2175.png\";s:5:\"width\";i:768;s:6:\"height\";i:2175;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1139007;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:59:\"2021-Meadowcroft-Sonoma-Coast-Pinot_Bottleshot-542x1536.png\";s:5:\"width\";i:542;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:557745;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:59:\"2021-Meadowcroft-Sonoma-Coast-Pinot_Bottleshot-723x2048.png\";s:5:\"width\";i:723;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1004782;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:60:\"2021-Meadowcroft-Sonoma-Coast-Pinot_Bottleshot-1200x3398.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3398;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2823852;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14942,1186,'_wp_attached_file','2022/11/2021-Meadowcroft-Sonoma-Coast-Pinot-noir.pdf'),(14943,1186,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:48:\"2021-Meadowcroft-Sonoma-Coast-Pinot-noir-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:200143;}s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"2021-Meadowcroft-Sonoma-Coast-Pinot-noir-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16465;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"2021-Meadowcroft-Sonoma-Coast-Pinot-noir-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105047;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"2021-Meadowcroft-Sonoma-Coast-Pinot-noir-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7711;}}s:8:\"filesize\";i:1360535;}'),(14944,1187,'_wp_attached_file','2022/11/MC_SONOMACOASTPINOT_2018.png'),(14945,1187,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1790;s:6:\"height\";i:5069;s:4:\"file\";s:36:\"2022/11/MC_SONOMACOASTPINOT_2018.png\";s:8:\"filesize\";i:6909405;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"MC_SONOMACOASTPINOT_2018-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24635;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"MC_SONOMACOASTPINOT_2018-362x1024.png\";s:5:\"width\";i:362;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:238223;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"MC_SONOMACOASTPINOT_2018-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13927;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"MC_SONOMACOASTPINOT_2018-768x2175.png\";s:5:\"width\";i:768;s:6:\"height\";i:2175;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1112668;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"MC_SONOMACOASTPINOT_2018-542x1536.png\";s:5:\"width\";i:542;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:543272;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"MC_SONOMACOASTPINOT_2018-723x2048.png\";s:5:\"width\";i:723;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:981805;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:38:\"MC_SONOMACOASTPINOT_2018-1200x3398.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3398;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2761850;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14946,1188,'_wp_attached_file','2022/11/MC_SONOMACOASTPINOT_2019-1.png'),(14947,1188,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1790;s:6:\"height\";i:5069;s:4:\"file\";s:38:\"2022/11/MC_SONOMACOASTPINOT_2019-1.png\";s:8:\"filesize\";i:6876536;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"MC_SONOMACOASTPINOT_2019-1-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25143;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"MC_SONOMACOASTPINOT_2019-1-362x1024.png\";s:5:\"width\";i:362;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:243450;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"MC_SONOMACOASTPINOT_2019-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13927;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"MC_SONOMACOASTPINOT_2019-1-768x2175.png\";s:5:\"width\";i:768;s:6:\"height\";i:2175;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1134076;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"MC_SONOMACOASTPINOT_2019-1-542x1536.png\";s:5:\"width\";i:542;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:554463;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:39:\"MC_SONOMACOASTPINOT_2019-1-723x2048.png\";s:5:\"width\";i:723;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1000954;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:40:\"MC_SONOMACOASTPINOT_2019-1-1200x3398.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3398;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2816312;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14948,1189,'_wp_attached_file','2022/11/Meadowcroft_2015SonomaCoastPinot_TECHSheet.pdf'),(14949,1189,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_2015SonomaCoastPinot_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:290141;}s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_2015SonomaCoastPinot_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53300;}s:5:\"large\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_2015SonomaCoastPinot_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170824;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_2015SonomaCoastPinot_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42422;}}s:8:\"filesize\";i:359654;}'),(14950,1190,'_wp_attached_file','2022/11/Meadowcroft_2016SonomaCoastPinotNoir_TECHSheet.pdf'),(14951,1190,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:54:\"Meadowcroft_2016SonomaCoastPinotNoir_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:265829;}s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_2016SonomaCoastPinotNoir_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18459;}s:5:\"large\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2016SonomaCoastPinotNoir_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137967;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_2016SonomaCoastPinotNoir_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7544;}}s:8:\"filesize\";i:236451;}'),(14952,1191,'_wp_attached_file','2022/11/Meadowcroft_2017SonomaCoastPinotNoir_TECHSheet.pdf'),(14953,1191,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:54:\"Meadowcroft_2017SonomaCoastPinotNoir_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:260201;}s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_2017SonomaCoastPinotNoir_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18703;}s:5:\"large\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2017SonomaCoastPinotNoir_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138267;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_2017SonomaCoastPinotNoir_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7646;}}s:8:\"filesize\";i:255315;}'),(14954,1192,'_wp_attached_file','2022/11/Meadowcroft_PinotNoir_SonomaCoast_15_BottleShot-scaled.jpeg'),(14955,1192,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:748;s:6:\"height\";i:2560;s:4:\"file\";s:67:\"2022/11/Meadowcroft_PinotNoir_SonomaCoast_15_BottleShot-scaled.jpeg\";s:8:\"filesize\";i:176165;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_PinotNoir_SonomaCoast_15_BottleShot-88x300.jpeg\";s:5:\"width\";i:88;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9656;}s:5:\"large\";a:5:{s:4:\"file\";s:61:\"Meadowcroft_PinotNoir_SonomaCoast_15_BottleShot-299x1024.jpeg\";s:5:\"width\";i:299;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42273;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_PinotNoir_SonomaCoast_15_BottleShot-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7157;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:61:\"Meadowcroft_PinotNoir_SonomaCoast_15_BottleShot-768x2628.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:2628;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:182638;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:61:\"Meadowcroft_PinotNoir_SonomaCoast_15_BottleShot-449x1536.jpeg\";s:5:\"width\";i:449;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78922;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:61:\"Meadowcroft_PinotNoir_SonomaCoast_15_BottleShot-599x2048.jpeg\";s:5:\"width\";i:599;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122947;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_PinotNoir_SonomaCoast_15_BottleShot-1200x4106.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:4106;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:397226;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:52:\"Meadowcroft_PinotNoir_SonomaCoast_15_BottleShot.jpeg\";}'),(14956,1181,'_wp_attachment_image_alt','Meadowcroft 2016 Sonoma Coast Pinot Noir'),(14957,1182,'_wp_attachment_image_alt','Meadowcroft 2017 Sonoma Coast Pinot Noir'),(14958,1185,'_wp_attachment_image_alt','Meadowcroft 2021 Sonoma Coast Pinot Noir'),(14959,1187,'_wp_attachment_image_alt','Meadowcroft 2018 Sonoma Coast Pinot Noir'),(14960,1188,'_wp_attachment_image_alt','Meadowcroft 2019 Sonoma Coast Pinot Noir'),(14961,1192,'_wp_attachment_image_alt','Meadowcroft 2015 Sonoma Coast Pinot Noir'),(14962,508,'content_block_6_layout_title','Assets Row 6'),(14963,508,'_content_block_6_layout_title','field_5bc11ca9a0d50-s'),(14964,508,'content_block_6_text_block_columns','four'),(14965,508,'_content_block_6_text_block_columns','field_5bbe2f81a4de0'),(14966,508,'content_block_6_narrow_text_block_content','0'),(14967,508,'_content_block_6_narrow_text_block_content','field_5bbe342e08360'),(14968,508,'content_block_6_reverse_colors','0'),(14969,508,'_content_block_6_reverse_colors','field_5bbe3027a4de1'),(14970,508,'content_block_6_enable_background_image','0'),(14971,508,'_content_block_6_enable_background_image','field_5bbe30b1a4de2'),(14972,508,'content_block_6_custom_css_class','wide-content white-boxes'),(14973,508,'_content_block_6_custom_css_class','field_5bbe30b1a4de2-1'),(14974,508,'content_block_6_text_block_content_col_one','<img class=\"wp-image-1209 aligncenter\" src=\"/wp-content/uploads/2023/02/Meadowcroft-_21_Pinot_Noir_AndersonValley-1.png\" alt=\"Meadowcroft 2021 Anderson Valley Pinot Noir\" width=\"97\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">ANDERSON VALLEY PINOT NOIR</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft_Pinot_Noir_Anderson-Valley_15_bottleshot.png\">2015</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_Pinot_Noir_Anderson-Valley_16_bottleshot.png\">2016</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_PiontNoir_AndersonValley_2018.png\">2018</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_PinotNoir_AndersonValley_2019.png\">2019</a> | <a href=\"/wp-content/uploads/2023/02/MC_AndersonPinot2020.png\">2020</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft-_21_Pinot_Noir_AndersonValley.png\">2021</a>\r\nTech Sheet: 2015 | 2016 | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018_PinotAnderson_TECHSheet.pdf\">2018</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2019PinotAnderson_TECHSheet.pdf\">2019</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2019PinotAnderson_TECHSheet-1.pdf\">2020</a> | <a href=\"/wp-content/uploads/2022/11/MC_2021_AndersonValley_PinotNoir_TECHSheet.pdf\">2021</a></p>'),(14975,508,'_content_block_6_text_block_content_col_one','field_5bbe313b3920d'),(14976,508,'content_block_6_text_block_content_col_two','<img class=\"wp-image-1229 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Carneros-15.png\" alt=\"Meadowcroft 2015 Carneros Pinot Noir\" width=\"163\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">NAPA CARNEROS | NAPA PINOT NOIR</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft_Pinot_Noir_CarnerosNapa_15_bottleshot-1.png\">2015</a> | <a href=\"/wp-content/uploads/2023/02/16PNNVLCv2_1.png\">2016</a> | <a href=\"/wp-content/uploads/2023/02/2017_Cornerstone_CarnerosSonoma_PinotNoir.png\">2017</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_PinotNoir_Carneros_Napa_2021.png\">2021 </a>| 2022\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2015NapaPinotnoir_TECHSheet.pdf\">2015</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2016NapaPinotnoir_TECHSheet.pdf\">2016</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2017_CornerstoneVineyard_Pinotnoir_TECHSheet.pdf\">2017</a> | <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-PinotNoir-NapaCarn-correct.pdf\">2021 </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/03/2022-PinotNoir-NapaCarneros.pdf\">2022</a></p>'),(14977,508,'_content_block_6_text_block_content_col_two','field_5bbe31593920e'),(14978,508,'content_block_6_text_block_content_col_three','<img class=\"wp-image-3397 size-medium aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021_CabFranc_RivinoVineyard-1-86x300.png\" alt=\"\" width=\"86\" height=\"300\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">CABERNET FRANC RIVINO VINEYARD</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018.png\">2018 </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021_CabFranc_RivinoVineyard-1.png\">2021</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018CabernetFrancRivinoMendo_TECHSheet.pdf\">2018 </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-CabernetFranc-Rivino.pdf\">2021</a></p>'),(14979,508,'_content_block_6_text_block_content_col_three','field_5bbe31793920f'),(14980,508,'content_block_6_text_block_content_col_four','<img class=\"aligncenter wp-image-1234\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/chard.png\" alt=\"Meadowcroft 2015 Sonoma Coast Chardonnay\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">SONOMA COAST CHARDONNAY</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/MC2015_CH_SC_BottleShot.png\">2015</a> | <a href=\"/wp-content/uploads/2023/02/20_Chard_TaylorsCrown_Bottleshot.png\">2020</a> | <a href=\"/wp-content/uploads/2023/02/21_Chard_Vinodelsol_SonomaCoast_bottleshot.png\">2021</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2015SonomaCoastChard_TECHSheet.pdf\">2015</a> | <a href=\"/wp-content/uploads/2022/11/20_Chard_Sonoma_TaylorsCrown_TechSheet.pdf\">2020</a> | <a href=\"/wp-content/uploads/2022/11/21_Chard_Sonoma_VinoDelSol_TechSheet.pdf\">2021</a></p>'),(14981,508,'_content_block_6_text_block_content_col_four','field_5bbe317939444'),(14982,1193,'_wp_attached_file','2022/11/16CSNVNC_1-2.png'),(14983,1193,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:250;s:6:\"height\";i:708;s:4:\"file\";s:24:\"2022/11/16CSNVNC_1-2.png\";s:8:\"filesize\";i:168921;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"16CSNVNC_1-2-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26964;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"16CSNVNC_1-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23785;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14984,1194,'_wp_attached_file','2022/11/17PNSCRR_1.png'),(14985,1194,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:250;s:6:\"height\";i:708;s:4:\"file\";s:22:\"2022/11/17PNSCRR_1.png\";s:8:\"filesize\";i:167904;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"17PNSCRR_1-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27721;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"17PNSCRR_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16067;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14986,1195,'_wp_attached_file','2022/11/19PIINOTNOIR_RRValley_Screwcap.png'),(14987,1195,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1790;s:6:\"height\";i:5069;s:4:\"file\";s:42:\"2022/11/19PIINOTNOIR_RRValley_Screwcap.png\";s:8:\"filesize\";i:6496658;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"19PIINOTNOIR_RRValley_Screwcap-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24673;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"19PIINOTNOIR_RRValley_Screwcap-362x1024.png\";s:5:\"width\";i:362;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:234220;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"19PIINOTNOIR_RRValley_Screwcap-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13453;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"19PIINOTNOIR_RRValley_Screwcap-768x2175.png\";s:5:\"width\";i:768;s:6:\"height\";i:2175;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1077985;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"19PIINOTNOIR_RRValley_Screwcap-542x1536.png\";s:5:\"width\";i:542;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:528467;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:43:\"19PIINOTNOIR_RRValley_Screwcap-723x2048.png\";s:5:\"width\";i:723;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:950385;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:44:\"19PIINOTNOIR_RRValley_Screwcap-1200x3398.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3398;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2660613;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14988,1196,'_wp_attached_file','2022/11/21_Pinot_RRV_bottleshot.png'),(14989,1196,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1790;s:6:\"height\";i:5069;s:4:\"file\";s:35:\"2022/11/21_Pinot_RRV_bottleshot.png\";s:8:\"filesize\";i:2561145;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"21_Pinot_RRV_bottleshot-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25674;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"21_Pinot_RRV_bottleshot-362x1024.png\";s:5:\"width\";i:362;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:239805;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"21_Pinot_RRV_bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16361;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"21_Pinot_RRV_bottleshot-768x2175.png\";s:5:\"width\";i:768;s:6:\"height\";i:2175;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1159787;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"21_Pinot_RRV_bottleshot-542x1536.png\";s:5:\"width\";i:542;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:561179;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:36:\"21_Pinot_RRV_bottleshot-723x2048.png\";s:5:\"width\";i:723;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1017664;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:37:\"21_Pinot_RRV_bottleshot-1200x3398.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3398;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2983400;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14990,1197,'_wp_attached_file','2022/11/Meadowcroft_2016RussianRiverPinotNoir_TECHSheet.pdf'),(14991,1197,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:55:\"Meadowcroft_2016RussianRiverPinotNoir_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:259249;}s:6:\"medium\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2016RussianRiverPinotNoir_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18552;}s:5:\"large\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_2016RussianRiverPinotNoir_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137202;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2016RussianRiverPinotNoir_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7601;}}s:8:\"filesize\";i:261796;}'),(14992,1198,'_wp_attached_file','2022/11/Meadowcroft_2017_RussianRiverValley_Pinotnoir_TECHSheet.pdf'),(14993,1198,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2017_RussianRiverValley_Pinotnoir_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:261755;}s:6:\"medium\";a:5:{s:4:\"file\";s:71:\"Meadowcroft_2017_RussianRiverValley_Pinotnoir_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18971;}s:5:\"large\";a:5:{s:4:\"file\";s:72:\"Meadowcroft_2017_RussianRiverValley_Pinotnoir_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137969;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:71:\"Meadowcroft_2017_RussianRiverValley_Pinotnoir_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7743;}}s:8:\"filesize\";i:250306;}'),(14994,1199,'_wp_attached_file','2022/11/Meadowcroft_2018_RussianRiverValley_Pinotnoir_TECHSheet-1.pdf'),(14995,1199,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:65:\"Meadowcroft_2018_RussianRiverValley_Pinotnoir_TECHSheet-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:203567;}s:6:\"medium\";a:5:{s:4:\"file\";s:73:\"Meadowcroft_2018_RussianRiverValley_Pinotnoir_TECHSheet-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16839;}s:5:\"large\";a:5:{s:4:\"file\";s:74:\"Meadowcroft_2018_RussianRiverValley_Pinotnoir_TECHSheet-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104981;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:73:\"Meadowcroft_2018_RussianRiverValley_Pinotnoir_TECHSheet-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8369;}}s:8:\"filesize\";i:369668;}'),(14996,1200,'_wp_attached_file','2022/11/Meadowcroft_2018_RussianRiverValley_Pinotnoir_TECHSheet.pdf'),(14997,1200,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2018_RussianRiverValley_Pinotnoir_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:203567;}s:6:\"medium\";a:5:{s:4:\"file\";s:71:\"Meadowcroft_2018_RussianRiverValley_Pinotnoir_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16839;}s:5:\"large\";a:5:{s:4:\"file\";s:72:\"Meadowcroft_2018_RussianRiverValley_Pinotnoir_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104981;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:71:\"Meadowcroft_2018_RussianRiverValley_Pinotnoir_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8369;}}s:8:\"filesize\";i:369668;}'),(14998,1201,'_wp_attached_file','2022/11/Meadowcroft_2019_RussianRiverValley_Pinotnoir_TECHSheet.pdf'),(14999,1201,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2019_RussianRiverValley_Pinotnoir_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:315800;}s:6:\"medium\";a:5:{s:4:\"file\";s:71:\"Meadowcroft_2019_RussianRiverValley_Pinotnoir_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54698;}s:5:\"large\";a:5:{s:4:\"file\";s:72:\"Meadowcroft_2019_RussianRiverValley_Pinotnoir_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:182868;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:71:\"Meadowcroft_2019_RussianRiverValley_Pinotnoir_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42884;}}s:8:\"filesize\";i:400145;}'),(15000,1202,'_wp_attached_file','2022/11/Meadowcroft_2020_PinotNoir_RussianriverValley_Bottleshot.png'),(15001,1202,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1790;s:6:\"height\";i:5069;s:4:\"file\";s:68:\"2022/11/Meadowcroft_2020_PinotNoir_RussianriverValley_Bottleshot.png\";s:8:\"filesize\";i:6481740;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_2020_PinotNoir_RussianriverValley_Bottleshot-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24225;}s:5:\"large\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_2020_PinotNoir_RussianriverValley_Bottleshot-362x1024.png\";s:5:\"width\";i:362;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:232730;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_2020_PinotNoir_RussianriverValley_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13927;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_2020_PinotNoir_RussianriverValley_Bottleshot-768x2175.png\";s:5:\"width\";i:768;s:6:\"height\";i:2175;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1083122;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_2020_PinotNoir_RussianriverValley_Bottleshot-542x1536.png\";s:5:\"width\";i:542;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:529731;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_2020_PinotNoir_RussianriverValley_Bottleshot-723x2048.png\";s:5:\"width\";i:723;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:955198;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_2020_PinotNoir_RussianriverValley_Bottleshot-1200x3398.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3398;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2680111;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15002,1194,'_wp_attachment_image_alt','Meadowcroft 2017 RRV Pinot Noir'),(15003,1203,'_wp_attached_file','2022/11/Meadowcroft_2020_RussianRiverValley_Pinotnoir_TECHSheet.pdf'),(15004,1203,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2020_RussianRiverValley_Pinotnoir_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:274296;}s:6:\"medium\";a:5:{s:4:\"file\";s:71:\"Meadowcroft_2020_RussianRiverValley_Pinotnoir_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19816;}s:5:\"large\";a:5:{s:4:\"file\";s:72:\"Meadowcroft_2020_RussianRiverValley_Pinotnoir_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146925;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:71:\"Meadowcroft_2020_RussianRiverValley_Pinotnoir_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7873;}}s:8:\"filesize\";i:287369;}'),(15005,1204,'_wp_attached_file','2022/11/Meadowcroft_2021_RussianRiverValley_Pinotnoir_TECHSheet.pdf'),(15006,1204,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2021_RussianRiverValley_Pinotnoir_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:284682;}s:6:\"medium\";a:5:{s:4:\"file\";s:71:\"Meadowcroft_2021_RussianRiverValley_Pinotnoir_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19727;}s:5:\"large\";a:5:{s:4:\"file\";s:72:\"Meadowcroft_2021_RussianRiverValley_Pinotnoir_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149520;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:71:\"Meadowcroft_2021_RussianRiverValley_Pinotnoir_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7851;}}s:8:\"filesize\";i:2420625;}'),(15007,1205,'_wp_attached_file','2022/11/Meadowcroft_Pinot_Noir_RRV_15_TECHSHEET.pdf'),(15008,1205,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:47:\"Meadowcroft_Pinot_Noir_RRV_15_TECHSHEET-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:298176;}s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"Meadowcroft_Pinot_Noir_RRV_15_TECHSHEET-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53835;}s:5:\"large\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_Pinot_Noir_RRV_15_TECHSHEET-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175096;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"Meadowcroft_Pinot_Noir_RRV_15_TECHSHEET-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42671;}}s:8:\"filesize\";i:362552;}'),(15009,1206,'_wp_attached_file','2022/11/Meadowcroft_PinotNoir_RRV15_BotteShot-scaled.jpeg'),(15010,1206,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:904;s:6:\"height\";i:2560;s:4:\"file\";s:57:\"2022/11/Meadowcroft_PinotNoir_RRV15_BotteShot-scaled.jpeg\";s:8:\"filesize\";i:172703;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_PinotNoir_RRV15_BotteShot-106x300.jpeg\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9084;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_PinotNoir_RRV15_BotteShot-362x1024.jpeg\";s:5:\"width\";i:362;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37524;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_PinotNoir_RRV15_BotteShot-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6842;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_PinotNoir_RRV15_BotteShot-768x2175.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:2175;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127832;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_PinotNoir_RRV15_BotteShot-542x1536.jpeg\";s:5:\"width\";i:542;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70286;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_PinotNoir_RRV15_BotteShot-723x2048.jpeg\";s:5:\"width\";i:723;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115280;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_PinotNoir_RRV15_BotteShot-1200x3398.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:3398;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:296860;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:42:\"Meadowcroft_PinotNoir_RRV15_BotteShot.jpeg\";}'),(15011,1207,'_wp_attached_file','2022/11/Meadowcroft_PinotNoir_RRV18_BotteShot.png'),(15012,1207,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1790;s:6:\"height\";i:5069;s:4:\"file\";s:49:\"2022/11/Meadowcroft_PinotNoir_RRV18_BotteShot.png\";s:8:\"filesize\";i:6860048;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_PinotNoir_RRV18_BotteShot-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24325;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_PinotNoir_RRV18_BotteShot-362x1024.png\";s:5:\"width\";i:362;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:236574;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_PinotNoir_RRV18_BotteShot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14739;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_PinotNoir_RRV18_BotteShot-768x2175.png\";s:5:\"width\";i:768;s:6:\"height\";i:2175;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1109817;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_PinotNoir_RRV18_BotteShot-542x1536.png\";s:5:\"width\";i:542;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:541586;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_PinotNoir_RRV18_BotteShot-723x2048.png\";s:5:\"width\";i:723;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:979536;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_PinotNoir_RRV18_BotteShot-1200x3398.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3398;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2753670;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15013,1195,'_wp_attachment_image_alt','Meadowcroft 2019 RRV Pinot Noir'),(15014,1196,'_wp_attachment_image_alt','Meadowcroft 2021 RRV Pinot Noir'),(15015,1202,'_wp_attachment_image_alt','Meadowcroft 2020 RRV Pinot Noir'),(15016,1206,'_wp_attachment_image_alt','Meadowcroft 2015 RRV Pinot Noir'),(15017,1207,'_wp_attachment_image_alt','Meadowcroft 2018 RRV Pinot Noir'),(15018,1208,'_wp_attached_file','2022/11/2015-Russian-River-Pinot.jpeg'),(15019,1208,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:37:\"2022/11/2015-Russian-River-Pinot.jpeg\";s:8:\"filesize\";i:16448;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"2015-Russian-River-Pinot-180x300.jpeg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9829;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"2015-Russian-River-Pinot-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6865;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15020,1208,'_wp_attachment_image_alt','Meadowcroft 2015 RRV Pinot Noir'),(15021,1209,'_wp_attached_file','2022/11/Meadowcroft-_21_Pinot_Noir_AndersonValley-362x1024-1.png'),(15022,1209,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:362;s:6:\"height\";i:1024;s:4:\"file\";s:64:\"2022/11/Meadowcroft-_21_Pinot_Noir_AndersonValley-362x1024-1.png\";s:8:\"filesize\";i:250093;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:64:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-362x1024-1-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24641;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:64:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-362x1024-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13413;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15023,1209,'_wp_attachment_image_alt','Meadowcroft 2021 Anderson Valley Pinot Noir'),(15024,1210,'_wp_attached_file','2022/11/MC_AndersonPinot2020.png'),(15025,1210,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1790;s:6:\"height\";i:5069;s:4:\"file\";s:32:\"2022/11/MC_AndersonPinot2020.png\";s:8:\"filesize\";i:6772624;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"MC_AndersonPinot2020-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24767;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"MC_AndersonPinot2020-362x1024.png\";s:5:\"width\";i:362;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:239519;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"MC_AndersonPinot2020-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13927;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"MC_AndersonPinot2020-768x2175.png\";s:5:\"width\";i:768;s:6:\"height\";i:2175;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1116750;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"MC_AndersonPinot2020-542x1536.png\";s:5:\"width\";i:542;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:544716;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:33:\"MC_AndersonPinot2020-723x2048.png\";s:5:\"width\";i:723;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:984956;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:34:\"MC_AndersonPinot2020-1200x3398.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3398;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2774420;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15026,1211,'_wp_attached_file','2022/11/Meadowcroft_Pinot_Noir_Anderson-Valley_15_bottleshot.png'),(15027,1211,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1790;s:6:\"height\";i:5069;s:4:\"file\";s:64:\"2022/11/Meadowcroft_Pinot_Noir_Anderson-Valley_15_bottleshot.png\";s:8:\"filesize\";i:1593272;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_Pinot_Noir_Anderson-Valley_15_bottleshot-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25043;}s:5:\"large\";a:5:{s:4:\"file\";s:65:\"Meadowcroft_Pinot_Noir_Anderson-Valley_15_bottleshot-362x1024.png\";s:5:\"width\";i:362;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:236685;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_Pinot_Noir_Anderson-Valley_15_bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14432;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:65:\"Meadowcroft_Pinot_Noir_Anderson-Valley_15_bottleshot-768x2175.png\";s:5:\"width\";i:768;s:6:\"height\";i:2175;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1140726;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:65:\"Meadowcroft_Pinot_Noir_Anderson-Valley_15_bottleshot-542x1536.png\";s:5:\"width\";i:542;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:553394;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:65:\"Meadowcroft_Pinot_Noir_Anderson-Valley_15_bottleshot-723x2048.png\";s:5:\"width\";i:723;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1003430;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:66:\"Meadowcroft_Pinot_Noir_Anderson-Valley_15_bottleshot-1200x3398.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3398;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2879482;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15028,1212,'_wp_attached_file','2022/11/Meadowcroft_Pinot_Noir_Anderson-Valley_16_bottleshot.png'),(15029,1212,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1790;s:6:\"height\";i:5069;s:4:\"file\";s:64:\"2022/11/Meadowcroft_Pinot_Noir_Anderson-Valley_16_bottleshot.png\";s:8:\"filesize\";i:3877864;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_Pinot_Noir_Anderson-Valley_16_bottleshot-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25046;}s:5:\"large\";a:5:{s:4:\"file\";s:65:\"Meadowcroft_Pinot_Noir_Anderson-Valley_16_bottleshot-362x1024.png\";s:5:\"width\";i:362;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:236662;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_Pinot_Noir_Anderson-Valley_16_bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14432;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:65:\"Meadowcroft_Pinot_Noir_Anderson-Valley_16_bottleshot-768x2175.png\";s:5:\"width\";i:768;s:6:\"height\";i:2175;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1140855;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:65:\"Meadowcroft_Pinot_Noir_Anderson-Valley_16_bottleshot-542x1536.png\";s:5:\"width\";i:542;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:553431;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:65:\"Meadowcroft_Pinot_Noir_Anderson-Valley_16_bottleshot-723x2048.png\";s:5:\"width\";i:723;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1003533;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:66:\"Meadowcroft_Pinot_Noir_Anderson-Valley_16_bottleshot-1200x3398.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3398;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2879751;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15030,1213,'_wp_attached_file','2022/11/Meadowcroft_PinotNoir_AndersonValley_2019.png'),(15031,1213,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1790;s:6:\"height\";i:5069;s:4:\"file\";s:53:\"2022/11/Meadowcroft_PinotNoir_AndersonValley_2019.png\";s:8:\"filesize\";i:6514861;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_PinotNoir_AndersonValley_2019-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24002;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"Meadowcroft_PinotNoir_AndersonValley_2019-362x1024.png\";s:5:\"width\";i:362;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:231680;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_PinotNoir_AndersonValley_2019-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13926;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:54:\"Meadowcroft_PinotNoir_AndersonValley_2019-768x2175.png\";s:5:\"width\";i:768;s:6:\"height\";i:2175;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1081249;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:54:\"Meadowcroft_PinotNoir_AndersonValley_2019-542x1536.png\";s:5:\"width\";i:542;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:528230;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:54:\"Meadowcroft_PinotNoir_AndersonValley_2019-723x2048.png\";s:5:\"width\";i:723;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:953344;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:55:\"Meadowcroft_PinotNoir_AndersonValley_2019-1200x3398.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3398;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2678296;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15032,1214,'_wp_attached_file','2022/11/Meadowcroft_PiontNoir_AndersonValley_2018.png'),(15033,1214,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1790;s:6:\"height\";i:5069;s:4:\"file\";s:53:\"2022/11/Meadowcroft_PiontNoir_AndersonValley_2018.png\";s:8:\"filesize\";i:6515059;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_PiontNoir_AndersonValley_2018-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23993;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"Meadowcroft_PiontNoir_AndersonValley_2018-362x1024.png\";s:5:\"width\";i:362;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:231754;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_PiontNoir_AndersonValley_2018-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13926;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:54:\"Meadowcroft_PiontNoir_AndersonValley_2018-768x2175.png\";s:5:\"width\";i:768;s:6:\"height\";i:2175;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1081355;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:54:\"Meadowcroft_PiontNoir_AndersonValley_2018-542x1536.png\";s:5:\"width\";i:542;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:528273;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:54:\"Meadowcroft_PiontNoir_AndersonValley_2018-723x2048.png\";s:5:\"width\";i:723;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:953371;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:55:\"Meadowcroft_PiontNoir_AndersonValley_2018-1200x3398.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3398;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2678308;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15034,1215,'_wp_attached_file','2022/11/Meadowcroft-_21_Pinot_Noir_AndersonValley.png'),(15035,1215,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1790;s:6:\"height\";i:5069;s:4:\"file\";s:53:\"2022/11/Meadowcroft-_21_Pinot_Noir_AndersonValley.png\";s:8:\"filesize\";i:6876387;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25484;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-362x1024.png\";s:5:\"width\";i:362;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:245263;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13927;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:54:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-768x2175.png\";s:5:\"width\";i:768;s:6:\"height\";i:2175;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1138331;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:54:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-542x1536.png\";s:5:\"width\";i:542;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:557394;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:54:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-723x2048.png\";s:5:\"width\";i:723;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1004183;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-1200x3398.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3398;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2822103;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15036,1210,'_wp_attachment_image_alt','Meadowcroft 2020 Anderson Valley Pinot Noir'),(15037,1211,'_wp_attachment_image_alt','Meadowcroft 2015 Anderson Valley Pinot Noir'),(15038,1212,'_wp_attachment_image_alt','Meadowcroft 2016 Anderson Valley Pinot Noir'),(15039,1213,'_wp_attachment_image_alt','Meadowcroft 2019 Anderson Valley Pinot Noir'),(15040,1214,'_wp_attachment_image_alt','Meadowcroft 2018 Anderson Valley Pinot Noir'),(15041,1215,'_wp_attachment_image_alt','Meadowcroft 2021 Anderson Valley Pinot Noir'),(15042,1216,'_wp_attached_file','2022/11/MC_2021_AndersonValley_PinotNoir_TECHSheet.pdf'),(15043,1216,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:50:\"MC_2021_AndersonValley_PinotNoir_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:293279;}s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"MC_2021_AndersonValley_PinotNoir_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53867;}s:5:\"large\";a:5:{s:4:\"file\";s:59:\"MC_2021_AndersonValley_PinotNoir_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:172368;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"MC_2021_AndersonValley_PinotNoir_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42660;}}s:8:\"filesize\";i:474153;}'),(15044,1217,'_wp_attached_file','2022/11/MC_AndersonPinot2020-1.png'),(15045,1217,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1790;s:6:\"height\";i:5069;s:4:\"file\";s:34:\"2022/11/MC_AndersonPinot2020-1.png\";s:8:\"filesize\";i:6772624;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"MC_AndersonPinot2020-1-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24767;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"MC_AndersonPinot2020-1-362x1024.png\";s:5:\"width\";i:362;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:239519;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"MC_AndersonPinot2020-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13927;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"MC_AndersonPinot2020-1-768x2175.png\";s:5:\"width\";i:768;s:6:\"height\";i:2175;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1116750;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"MC_AndersonPinot2020-1-542x1536.png\";s:5:\"width\";i:542;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:544716;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"MC_AndersonPinot2020-1-723x2048.png\";s:5:\"width\";i:723;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:984956;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:36:\"MC_AndersonPinot2020-1-1200x3398.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3398;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2774420;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15046,1218,'_wp_attached_file','2022/11/Meadowcroft_2018_PinotAnderson_TECHSheet.pdf'),(15047,1218,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:48:\"Meadowcroft_2018_PinotAnderson_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:252908;}s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_2018_PinotAnderson_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18312;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2018_PinotAnderson_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133517;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_2018_PinotAnderson_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7580;}}s:8:\"filesize\";i:255071;}'),(15048,1219,'_wp_attached_file','2022/11/Meadowcroft_2019PinotAnderson_TECHSheet-1.pdf'),(15049,1219,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_2019PinotAnderson_TECHSheet-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:264457;}s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2019PinotAnderson_TECHSheet-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18650;}s:5:\"large\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_2019PinotAnderson_TECHSheet-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139698;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2019PinotAnderson_TECHSheet-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7603;}}s:8:\"filesize\";i:609955;}'),(15050,1220,'_wp_attached_file','2022/11/Meadowcroft_2019PinotAnderson_TECHSheet.pdf'),(15051,1220,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:47:\"Meadowcroft_2019PinotAnderson_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:254307;}s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"Meadowcroft_2019PinotAnderson_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18402;}s:5:\"large\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_2019PinotAnderson_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134424;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"Meadowcroft_2019PinotAnderson_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7603;}}s:8:\"filesize\";i:268949;}'),(15052,1221,'_wp_attached_file','2022/11/16PNNVLCv2_1.png'),(15053,1221,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:250;s:6:\"height\";i:708;s:4:\"file\";s:24:\"2022/11/16PNNVLCv2_1.png\";s:8:\"filesize\";i:168335;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"16PNNVLCv2_1-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27873;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"16PNNVLCv2_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15840;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15054,1222,'_wp_attached_file','2022/11/2017_Cornerstone_CarnerosSonoma_PinotNoir.png'),(15055,1222,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1790;s:6:\"height\";i:5069;s:4:\"file\";s:53:\"2022/11/2017_Cornerstone_CarnerosSonoma_PinotNoir.png\";s:8:\"filesize\";i:6515341;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"2017_Cornerstone_CarnerosSonoma_PinotNoir-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24275;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"2017_Cornerstone_CarnerosSonoma_PinotNoir-362x1024.png\";s:5:\"width\";i:362;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:233759;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"2017_Cornerstone_CarnerosSonoma_PinotNoir-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13926;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:54:\"2017_Cornerstone_CarnerosSonoma_PinotNoir-768x2175.png\";s:5:\"width\";i:768;s:6:\"height\";i:2175;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1086573;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:54:\"2017_Cornerstone_CarnerosSonoma_PinotNoir-542x1536.png\";s:5:\"width\";i:542;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:531706;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:54:\"2017_Cornerstone_CarnerosSonoma_PinotNoir-723x2048.png\";s:5:\"width\";i:723;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:957932;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:55:\"2017_Cornerstone_CarnerosSonoma_PinotNoir-1200x3398.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3398;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2685800;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15056,1223,'_wp_attached_file','2022/11/Meadowcroft_Pinot_Noir_CarnerosNapa_15_bottleshot-1.png'),(15057,1223,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1790;s:6:\"height\";i:5069;s:4:\"file\";s:63:\"2022/11/Meadowcroft_Pinot_Noir_CarnerosNapa_15_bottleshot-1.png\";s:8:\"filesize\";i:1593970;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_Pinot_Noir_CarnerosNapa_15_bottleshot-1-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24949;}s:5:\"large\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_Pinot_Noir_CarnerosNapa_15_bottleshot-1-362x1024.png\";s:5:\"width\";i:362;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:236512;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_Pinot_Noir_CarnerosNapa_15_bottleshot-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14432;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_Pinot_Noir_CarnerosNapa_15_bottleshot-1-768x2175.png\";s:5:\"width\";i:768;s:6:\"height\";i:2175;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1140681;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_Pinot_Noir_CarnerosNapa_15_bottleshot-1-542x1536.png\";s:5:\"width\";i:542;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:552798;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_Pinot_Noir_CarnerosNapa_15_bottleshot-1-723x2048.png\";s:5:\"width\";i:723;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1003178;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:65:\"Meadowcroft_Pinot_Noir_CarnerosNapa_15_bottleshot-1-1200x3398.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3398;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2879942;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15058,1224,'_wp_attached_file','2022/11/Meadowcroft_PinotNoir_Carneros_Napa_2021.png'),(15059,1224,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1790;s:6:\"height\";i:5069;s:4:\"file\";s:52:\"2022/11/Meadowcroft_PinotNoir_Carneros_Napa_2021.png\";s:8:\"filesize\";i:3196896;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_PinotNoir_Carneros_Napa_2021-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25109;}s:5:\"large\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_PinotNoir_Carneros_Napa_2021-362x1024.png\";s:5:\"width\";i:362;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:235618;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_PinotNoir_Carneros_Napa_2021-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13538;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_PinotNoir_Carneros_Napa_2021-768x2175.png\";s:5:\"width\";i:768;s:6:\"height\";i:2175;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1108673;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_PinotNoir_Carneros_Napa_2021-542x1536.png\";s:5:\"width\";i:542;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:539488;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_PinotNoir_Carneros_Napa_2021-723x2048.png\";s:5:\"width\";i:723;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:975874;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:54:\"Meadowcroft_PinotNoir_Carneros_Napa_2021-1200x3398.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3398;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2830011;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15060,1225,'_wp_attached_file','2022/11/Meadowcroft_2015NapaPinotnoir_TECHSheet.pdf'),(15061,1225,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:47:\"Meadowcroft_2015NapaPinotnoir_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:247676;}s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"Meadowcroft_2015NapaPinotnoir_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18215;}s:5:\"large\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_2015NapaPinotnoir_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131485;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"Meadowcroft_2015NapaPinotnoir_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7627;}}s:8:\"filesize\";i:194160;}'),(15062,1226,'_wp_attached_file','2022/11/Meadowcroft_2016NapaPinotnoir_TECHSheet.pdf'),(15063,1226,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:47:\"Meadowcroft_2016NapaPinotnoir_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:255006;}s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"Meadowcroft_2016NapaPinotnoir_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18543;}s:5:\"large\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_2016NapaPinotnoir_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134848;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"Meadowcroft_2016NapaPinotnoir_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7647;}}s:8:\"filesize\";i:232413;}'),(15064,1227,'_wp_attached_file','2022/11/Meadowcroft_2017_CornerstoneVineyard_Pinotnoir_TECHSheet.pdf'),(15065,1227,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_2017_CornerstoneVineyard_Pinotnoir_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:268197;}s:6:\"medium\";a:5:{s:4:\"file\";s:72:\"Meadowcroft_2017_CornerstoneVineyard_Pinotnoir_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19321;}s:5:\"large\";a:5:{s:4:\"file\";s:73:\"Meadowcroft_2017_CornerstoneVineyard_Pinotnoir_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142148;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:72:\"Meadowcroft_2017_CornerstoneVineyard_Pinotnoir_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7771;}}s:8:\"filesize\";i:254586;}'),(15066,1228,'_wp_attached_file','2022/11/Meadowcroft_2021_NapaPinotnoir_TECHSheet.pdf'),(15067,1228,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:48:\"Meadowcroft_2021_NapaPinotnoir_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:274721;}s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_2021_NapaPinotnoir_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19322;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2021_NapaPinotnoir_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146432;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_2021_NapaPinotnoir_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7841;}}s:8:\"filesize\";i:283541;}'),(15068,1221,'_wp_attachment_image_alt','Meadowcroft 2016 Carneros Pinot Noir'),(15069,1222,'_wp_attachment_image_alt','Meadowcroft 2017 Carneros Pinot Noir'),(15070,1223,'_wp_attachment_image_alt','Meadowcroft 2015 Carneros Pinot Noir'),(15071,1224,'_wp_attachment_image_alt','Meadowcroft_PinotNoir_Carneros_Napa_2021'),(15072,1229,'_wp_attached_file','2022/11/Carneros-15.png'),(15073,1229,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:23:\"2022/11/Carneros-15.png\";s:8:\"filesize\";i:89141;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Carneros-15-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27612;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Carneros-15-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11795;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15074,1229,'_wp_attachment_image_alt','Meadowcroft 2015 Carneros Pinot Noir'),(15075,1230,'_wp_attached_file','2022/11/Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024-1.png'),(15076,1230,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:376;s:6:\"height\";i:1024;s:4:\"file\";s:70:\"2022/11/Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024-1.png\";s:8:\"filesize\";i:259138;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024-1-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24487;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19476;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15077,1230,'_wp_attachment_image_alt','Meadowcroft 2018 Cabernet Franc'),(15078,1231,'_wp_attached_file','2022/11/Meadowcroft_2018CabernetFrancRivinoMendo_TECHSheet.pdf'),(15079,1231,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_2018CabernetFrancRivinoMendo_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:308679;}s:6:\"medium\";a:5:{s:4:\"file\";s:66:\"Meadowcroft_2018CabernetFrancRivinoMendo_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23164;}s:5:\"large\";a:5:{s:4:\"file\";s:67:\"Meadowcroft_2018CabernetFrancRivinoMendo_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:168089;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:66:\"Meadowcroft_2018CabernetFrancRivinoMendo_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10073;}}s:8:\"filesize\";i:792282;}'),(15080,1232,'_wp_attached_file','2022/11/Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018.png'),(15081,1232,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2085;s:6:\"height\";i:5676;s:4:\"file\";s:59:\"2022/11/Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018.png\";s:8:\"filesize\";i:11324082;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26608;}s:5:\"large\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024.png\";s:5:\"width\";i:376;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:254510;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21399;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-768x2091.png\";s:5:\"width\";i:768;s:6:\"height\";i:2091;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1099358;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-564x1536.png\";s:5:\"width\";i:564;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:582741;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-752x2048.png\";s:5:\"width\";i:752;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1051195;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:61:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-1200x3267.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2872051;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15082,1232,'_wp_attachment_image_alt','Meadowcroft 2018 Cabernet Franc'),(15083,1233,'_wp_attached_file','2022/11/16CHSCLC_T.png'),(15084,1233,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:180;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2022/11/16CHSCLC_T.png\";s:8:\"filesize\";i:21223;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"16CHSCLC_T-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9788;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15085,1233,'_wp_attachment_image_alt','SC'),(15086,508,'content_block_7_layout_title','Assets Row 7'),(15087,508,'_content_block_7_layout_title','field_5bc11ca9a0d50-s'),(15088,508,'content_block_7_text_block_columns','four'),(15089,508,'_content_block_7_text_block_columns','field_5bbe2f81a4de0'),(15090,508,'content_block_7_narrow_text_block_content','0'),(15091,508,'_content_block_7_narrow_text_block_content','field_5bbe342e08360'),(15092,508,'content_block_7_reverse_colors','0'),(15093,508,'_content_block_7_reverse_colors','field_5bbe3027a4de1'),(15094,508,'content_block_7_enable_background_image','0'),(15095,508,'_content_block_7_enable_background_image','field_5bbe30b1a4de2'),(15096,508,'content_block_7_custom_css_class','wide-content white-boxes'),(15097,508,'_content_block_7_custom_css_class','field_5bbe30b1a4de2-1'),(15098,508,'content_block_7_text_block_content_col_one','<img class=\"aligncenter wp-image-3365 size-medium\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-Chard-Carneros-90x300.jpg\" alt=\"Meadowcroft 2022 Napa Carneros Chardonnay\" width=\"90\" height=\"300\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\"> NAPA VALLEY | CARNEROS CHARDONNAY</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft_Chardonnay_NapaValley_Carneros_2019.png\">2019</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_20_Chard_Napa_Carneros_BottleShot-.png\">2020</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_21_Chard_Napa_Carneros_BottleShot-.png\">2021 </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-Chard-Carneros-scaled.jpg\">2022</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2019LosCarneros_NapaChard_TECHSheet.pdf\">2019</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2020LosCarneros_NapaChard_TECHSheet.pdf\">2020</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2021LosCarneros_NapaChard_TECHSheet.pdf\">2021 </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-Chard-NapaCarn.pdf\">2022</a></p>'),(15099,508,'_content_block_7_text_block_content_col_one','field_5bbe313b3920d'),(15100,508,'content_block_7_text_block_content_col_two','<img class=\"alignnone wp-image-1248 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2015-Chardonnay.jpeg\" alt=\"Meadowcroft 2015 Carneros Chardonnay\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">CARNEROS | SONOMA COUNTY CHARDONNAY</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: 2015 | <a href=\"/wp-content/uploads/2023/02/MC2016_CH_SCTY_BottleShot-1.png\">2016</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_2018_LosCarneros_Chardonnay-1.png\">2018</a> | 2019\r\nTech Sheet: 2015 | 2016 | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018LosCarneros_SonomaChard_TECHSheet.pdf\">2018</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2019LosCarneros_SonomaChard_TECHSheet.pdf\">2019</a></p>'),(15101,508,'_content_block_7_text_block_content_col_two','field_5bbe31593920e'),(15102,508,'content_block_7_text_block_content_col_three','<img class=\"wp-image-1254 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/rrv-chard.png\" alt=\"Meadowcroft 2015 RRV Chardonnay\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">CHARDONNAY | RUSSIAN RIVER VALLEY</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft2016RRVChardonnayBottleShot.png\">2016</a>\r\nTech Sheet: 2016</p>'),(15103,508,'_content_block_7_text_block_content_col_three','field_5bbe31793920f'),(15104,508,'content_block_7_text_block_content_col_four','<img class=\"wp-image-1258 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/anderson-chard.png\" alt=\"Meadowcroft 2021 Anderson Chardonnay\" width=\"163\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">CHARDONNAY | ANDERSON VALLEY</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft_21_Chard_AV_MENDOCINO_BottleShot_-1.png\">2021</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2021_AV_Mendo_TECHSheet-1.pdf\">2021</a></p>'),(15105,508,'_content_block_7_text_block_content_col_four','field_5bbe317939444'),(15106,1234,'_wp_attached_file','2022/11/chard.png'),(15107,1234,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:17:\"2022/11/chard.png\";s:8:\"filesize\";i:92745;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"chard-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28659;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"chard-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12557;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15108,1235,'_wp_attached_file','2022/11/20_Chard_Sonoma_TaylorsCrown_TechSheet.pdf'),(15109,1235,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:46:\"20_Chard_Sonoma_TaylorsCrown_TechSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196731;}s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"20_Chard_Sonoma_TaylorsCrown_TechSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17202;}s:5:\"large\";a:5:{s:4:\"file\";s:55:\"20_Chard_Sonoma_TaylorsCrown_TechSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102828;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"20_Chard_Sonoma_TaylorsCrown_TechSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9176;}}s:8:\"filesize\";i:132637;}'),(15110,1236,'_wp_attached_file','2022/11/20_Chard_TaylorsCrown_Bottleshot.png'),(15111,1236,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:832;s:6:\"height\";i:2586;s:4:\"file\";s:44:\"2022/11/20_Chard_TaylorsCrown_Bottleshot.png\";s:8:\"filesize\";i:2140908;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"20_Chard_TaylorsCrown_Bottleshot-97x300.png\";s:5:\"width\";i:97;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26789;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"20_Chard_TaylorsCrown_Bottleshot-329x1024.png\";s:5:\"width\";i:329;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:261299;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"20_Chard_TaylorsCrown_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17577;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"20_Chard_TaylorsCrown_Bottleshot-768x2387.png\";s:5:\"width\";i:768;s:6:\"height\";i:2387;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1512871;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:45:\"20_Chard_TaylorsCrown_Bottleshot-494x1536.png\";s:5:\"width\";i:494;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:610727;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:45:\"20_Chard_TaylorsCrown_Bottleshot-659x2048.png\";s:5:\"width\";i:659;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1111737;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15112,1237,'_wp_attached_file','2022/11/21_Chard_Sonoma_VinoDelSol_TechSheet.pdf'),(15113,1237,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:44:\"21_Chard_Sonoma_VinoDelSol_TechSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184635;}s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"21_Chard_Sonoma_VinoDelSol_TechSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16633;}s:5:\"large\";a:5:{s:4:\"file\";s:53:\"21_Chard_Sonoma_VinoDelSol_TechSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96863;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"21_Chard_Sonoma_VinoDelSol_TechSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9043;}}s:8:\"filesize\";i:298492;}'),(15114,1238,'_wp_attached_file','2022/11/21_Chard_Vinodelsol_SonomaCoast_bottleshot.png'),(15115,1238,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:832;s:6:\"height\";i:2586;s:4:\"file\";s:54:\"2022/11/21_Chard_Vinodelsol_SonomaCoast_bottleshot.png\";s:8:\"filesize\";i:2135718;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"21_Chard_Vinodelsol_SonomaCoast_bottleshot-97x300.png\";s:5:\"width\";i:97;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26724;}s:5:\"large\";a:5:{s:4:\"file\";s:55:\"21_Chard_Vinodelsol_SonomaCoast_bottleshot-329x1024.png\";s:5:\"width\";i:329;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:261241;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"21_Chard_Vinodelsol_SonomaCoast_bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17577;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:55:\"21_Chard_Vinodelsol_SonomaCoast_bottleshot-768x2387.png\";s:5:\"width\";i:768;s:6:\"height\";i:2387;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1512771;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:55:\"21_Chard_Vinodelsol_SonomaCoast_bottleshot-494x1536.png\";s:5:\"width\";i:494;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:610654;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:55:\"21_Chard_Vinodelsol_SonomaCoast_bottleshot-659x2048.png\";s:5:\"width\";i:659;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1111891;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15116,1239,'_wp_attached_file','2022/11/MC2015_CH_SC_BottleShot.png'),(15117,1239,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:712;s:6:\"height\";i:2356;s:4:\"file\";s:35:\"2022/11/MC2015_CH_SC_BottleShot.png\";s:8:\"filesize\";i:1621624;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"MC2015_CH_SC_BottleShot-91x300.png\";s:5:\"width\";i:91;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25876;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"MC2015_CH_SC_BottleShot-309x1024.png\";s:5:\"width\";i:309;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:257063;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"MC2015_CH_SC_BottleShot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18270;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"MC2015_CH_SC_BottleShot-464x1536.png\";s:5:\"width\";i:464;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:600874;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:36:\"MC2015_CH_SC_BottleShot-619x2048.png\";s:5:\"width\";i:619;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1084171;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15118,1240,'_wp_attached_file','2022/11/Meadowcroft_2015SonomaCoastChard_TECHSheet.pdf'),(15119,1240,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_2015SonomaCoastChard_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:247253;}s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_2015SonomaCoastChard_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18431;}s:5:\"large\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_2015SonomaCoastChard_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133015;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_2015SonomaCoastChard_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7612;}}s:8:\"filesize\";i:239447;}'),(15120,1236,'_wp_attachment_image_alt','Meadowcroft 2020 Sonoma Coast Chardonnay'),(15121,1238,'_wp_attachment_image_alt','Meadowcroft 2021 Sonoma Coast Chardonnay'),(15122,1239,'_wp_attachment_image_alt','Meadowcroft 2015 Sonoma Coast Chardonnay'),(15123,1241,'_wp_attached_file','2022/11/carneros-chard.png'),(15124,1241,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2022/11/carneros-chard.png\";s:8:\"filesize\";i:86028;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"carneros-chard-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27143;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"carneros-chard-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12234;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15125,1241,'_wp_attachment_image_alt','Meadowcroft 2019 Carneros Chardonnay'),(15126,1242,'_wp_attached_file','2022/11/Meadowcroft_Chardonnay_NapaValley_Carneros_2019.png'),(15127,1242,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:832;s:6:\"height\";i:2586;s:4:\"file\";s:59:\"2022/11/Meadowcroft_Chardonnay_NapaValley_Carneros_2019.png\";s:8:\"filesize\";i:2141462;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_Chardonnay_NapaValley_Carneros_2019-97x300.png\";s:5:\"width\";i:97;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26523;}s:5:\"large\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_Chardonnay_NapaValley_Carneros_2019-329x1024.png\";s:5:\"width\";i:329;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:259756;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_Chardonnay_NapaValley_Carneros_2019-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17579;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_Chardonnay_NapaValley_Carneros_2019-768x2387.png\";s:5:\"width\";i:768;s:6:\"height\";i:2387;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1509482;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_Chardonnay_NapaValley_Carneros_2019-494x1536.png\";s:5:\"width\";i:494;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:608334;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_Chardonnay_NapaValley_Carneros_2019-659x2048.png\";s:5:\"width\";i:659;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1108885;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15128,1242,'_wp_attachment_image_alt','Meadowcroft 2019 Carneros Chardonnay'),(15129,1243,'_wp_attached_file','2022/11/Meadowcroft_20_Chard_Napa_Carneros_BottleShot-.png'),(15130,1243,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:832;s:6:\"height\";i:2586;s:4:\"file\";s:58:\"2022/11/Meadowcroft_20_Chard_Napa_Carneros_BottleShot-.png\";s:8:\"filesize\";i:2425389;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_20_Chard_Napa_Carneros_BottleShot--97x300.png\";s:5:\"width\";i:97;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26865;}s:5:\"large\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_20_Chard_Napa_Carneros_BottleShot--329x1024.png\";s:5:\"width\";i:329;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:262318;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_20_Chard_Napa_Carneros_BottleShot--150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17566;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_20_Chard_Napa_Carneros_BottleShot--768x2387.png\";s:5:\"width\";i:768;s:6:\"height\";i:2387;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1490946;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_20_Chard_Napa_Carneros_BottleShot--494x1536.png\";s:5:\"width\";i:494;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:607323;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_20_Chard_Napa_Carneros_BottleShot--659x2048.png\";s:5:\"width\";i:659;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1098133;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15131,1244,'_wp_attached_file','2022/11/Meadowcroft_21_Chard_Napa_Carneros_BottleShot-.png'),(15132,1244,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:832;s:6:\"height\";i:2586;s:4:\"file\";s:58:\"2022/11/Meadowcroft_21_Chard_Napa_Carneros_BottleShot-.png\";s:8:\"filesize\";i:2102025;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_21_Chard_Napa_Carneros_BottleShot--97x300.png\";s:5:\"width\";i:97;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26841;}s:5:\"large\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_21_Chard_Napa_Carneros_BottleShot--329x1024.png\";s:5:\"width\";i:329;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:262136;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_21_Chard_Napa_Carneros_BottleShot--150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17577;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_21_Chard_Napa_Carneros_BottleShot--768x2387.png\";s:5:\"width\";i:768;s:6:\"height\";i:2387;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1489929;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_21_Chard_Napa_Carneros_BottleShot--494x1536.png\";s:5:\"width\";i:494;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:606892;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_21_Chard_Napa_Carneros_BottleShot--659x2048.png\";s:5:\"width\";i:659;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1097707;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15133,1245,'_wp_attached_file','2022/11/Meadowcroft_2019LosCarneros_NapaChard_TECHSheet.pdf'),(15134,1245,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:55:\"Meadowcroft_2019LosCarneros_NapaChard_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:259916;}s:6:\"medium\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2019LosCarneros_NapaChard_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18961;}s:5:\"large\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_2019LosCarneros_NapaChard_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139669;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2019LosCarneros_NapaChard_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7773;}}s:8:\"filesize\";i:441978;}'),(15135,1246,'_wp_attached_file','2022/11/Meadowcroft_2020LosCarneros_NapaChard_TECHSheet.pdf'),(15136,1246,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:55:\"Meadowcroft_2020LosCarneros_NapaChard_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:290129;}s:6:\"medium\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2020LosCarneros_NapaChard_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22640;}s:5:\"large\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_2020LosCarneros_NapaChard_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156367;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2020LosCarneros_NapaChard_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10159;}}s:8:\"filesize\";i:236869;}'),(15137,1247,'_wp_attached_file','2022/11/Meadowcroft_2021LosCarneros_NapaChard_TECHSheet.pdf'),(15138,1247,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:55:\"Meadowcroft_2021LosCarneros_NapaChard_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:233396;}s:6:\"medium\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2021LosCarneros_NapaChard_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18460;}s:5:\"large\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_2021LosCarneros_NapaChard_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123964;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2021LosCarneros_NapaChard_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8844;}}s:8:\"filesize\";i:321357;}'),(15139,1243,'_wp_attachment_image_alt','Meadowcroft 2020 Carneros Chardonnay'),(15140,1244,'_wp_attachment_image_alt','Meadowcroft 2021 Carneros Chardonnay'),(15141,1248,'_wp_attached_file','2022/11/2015-Chardonnay.jpeg'),(15142,1248,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:28:\"2022/11/2015-Chardonnay.jpeg\";s:8:\"filesize\";i:16489;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"2015-Chardonnay-180x300.jpeg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10116;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"2015-Chardonnay-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7109;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15143,1248,'_wp_attachment_image_alt','Meadowcroft 2015 Carneros Chardonnay'),(15144,508,'content_block_8_layout_title','Assets Row 8'),(15145,508,'_content_block_8_layout_title','field_5bc11ca9a0d50-s'),(15146,508,'content_block_8_text_block_columns','four'),(15147,508,'_content_block_8_text_block_columns','field_5bbe2f81a4de0'),(15148,508,'content_block_8_narrow_text_block_content','0'),(15149,508,'_content_block_8_narrow_text_block_content','field_5bbe342e08360'),(15150,508,'content_block_8_reverse_colors','0'),(15151,508,'_content_block_8_reverse_colors','field_5bbe3027a4de1'),(15152,508,'content_block_8_enable_background_image','0'),(15153,508,'_content_block_8_enable_background_image','field_5bbe30b1a4de2'),(15154,508,'content_block_8_custom_css_class','wide-content white-boxes'),(15155,508,'_content_block_8_custom_css_class','field_5bbe30b1a4de2-1'),(15156,508,'content_block_8_text_block_content_col_one','<img class=\"aligncenter wp-image-3372 size-medium\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-Viognier-90x300.jpg\" alt=\"Meadowcroft 2022 Viognier, Dry Creek Valley\" width=\"90\" height=\"300\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">VIOGNIER | DRY CREEK VALLEY</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/MC_2018_Viognier_Louvau_DryCreekValley.png\">2018</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_2019_LouvauVineyard_DryCreekValley_Viognier.png\">2019</a> | 2020 | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_2021_Viognier_WYLDVIN_BottleShot.png\">2021 </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-Viognier-scaled.jpg\">2022</a>\r\nTech Sheet: 2018 | <a href=\"/wp-content/uploads/2022/11/MC_2018_DryValleyCreek_LouvauVineyard_Viognier_TECHSheet.pdf\">2019</a> | <a href=\"/wp-content/uploads/2022/11/MC_2020_DryValleyCreek_LouvauVineyard_Viognier_TECHSheet.pdf\">2020</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2021_Viognier_WYLDVIN_Tech_Sheet-1.pdf\">2021 </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-Viognier.pdf\">2022</a></p>'),(15157,508,'_content_block_8_text_block_content_col_one','field_5bbe313b3920d'),(15158,508,'content_block_8_text_block_content_col_two','<img class=\"aligncenter wp-image-3368 size-medium\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-PinotBlanc-85x300.jpg\" alt=\"Meadowcorft 2022 Pinot Blanc\" width=\"85\" height=\"300\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">PINOT BLANC | NELSON RANCH VINEYARD | MENDOCINO</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/2020_Pinot_Blanc_Bottleshot-1.png\">2020</a> | <a href=\"/wp-content/uploads/2023/02/2021_Pinot_Blanc_Bottleshot-1.png\">2021 </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-PinotBlanc-scaled.jpg\">2022</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/MC_2020_Pinot-Blanc_RivinoVNYD_Mendocino_TECHSheet-1.pdf\">2020</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2021_Pinot_Blanc_Mendocino_Tech_Sheet-1.pdf\">2021 </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-PinotBlanc.pdf\">2022</a></p>'),(15159,508,'_content_block_8_text_block_content_col_two','field_5bbe31593920e'),(15160,508,'content_block_8_text_block_content_col_three','<img class=\"aligncenter wp-image-3371 size-medium\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-Roussanne-90x300.jpg\" alt=\"Meadowcroft 2022 Roussanne\" width=\"90\" height=\"300\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">ROUSSANNE | DRY CREEK VALLEY</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/MC_Roussanne_Louvau_DryCreekValley.png\">2018</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_Roussanne_DCV_LouvauVineyard_2019.png\">2019</a> | <a href=\"/wp-content/uploads/2023/02/MC_Roussanne_2020_Bottleshot_png.png\">2020</a> | <a href=\"/wp-content/uploads/2023/02/MC_Roussanne_2021_Bottleshot.png\">2021 </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-Roussanne-scaled.jpg\">2022</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/MC_2018_Roussanne_Louvau_DryCreekValley_TECHSheet-update.pdf\">2018</a> | <a href=\"/wp-content/uploads/2022/11/MC_2019_Roussanne_Louvau_DryCreekValley_TECHSheet.pdf\">2019</a> | <a href=\"/wp-content/uploads/2022/11/MC_2020_Roussanne_Louvau_DryCreekValley_TECHSheet.pdf\">2020</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2021_Roussanne_Mendocino_Tech_Sheet.pdf\">2021 </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-Roussanne.pdf\">2022</a></p>'),(15161,508,'_content_block_8_text_block_content_col_three','field_5bbe31793920f'),(15162,508,'content_block_8_text_block_content_col_four','<img class=\"wp-image-3375 size-medium aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2023-SauvignonBlanc-79x300.jpg\" alt=\"\" width=\"79\" height=\"300\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\"> SONOMA COAST SAUVIGNON BLANC</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft_SauvBlanc_SonomaCoast_2020.png\">2020</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_SauvBlanc_SonomaCoast_2021.png\">2021 </a>| 2022 | <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2023-SauvignonBlanc-scaled.jpg\">2023</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2020SonomaCoastSauvBlanc_TECHSheet.pdf\">2020</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2021SonomaCoastSauvBlanc_TECHSheet.pdf\">2021 </a>| 2022 | <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2023-SauvBlanc.pdf\">2023</a></p>'),(15163,508,'_content_block_8_text_block_content_col_four','field_5bbe317939444'),(15164,1249,'_wp_attached_file','2022/11/MC2016_CH_SCTY_BottleShot-1.png'),(15165,1249,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1445;s:6:\"height\";i:4494;s:4:\"file\";s:39:\"2022/11/MC2016_CH_SCTY_BottleShot-1.png\";s:8:\"filesize\";i:6074750;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"MC2016_CH_SCTY_BottleShot-1-96x300.png\";s:5:\"width\";i:96;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25874;}s:5:\"large\";a:5:{s:4:\"file\";s:40:\"MC2016_CH_SCTY_BottleShot-1-329x1024.png\";s:5:\"width\";i:329;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:247307;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"MC2016_CH_SCTY_BottleShot-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17235;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"MC2016_CH_SCTY_BottleShot-1-768x2389.png\";s:5:\"width\";i:768;s:6:\"height\";i:2389;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1476274;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:40:\"MC2016_CH_SCTY_BottleShot-1-494x1536.png\";s:5:\"width\";i:494;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:571277;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:40:\"MC2016_CH_SCTY_BottleShot-1-659x2048.png\";s:5:\"width\";i:659;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1061947;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:41:\"MC2016_CH_SCTY_BottleShot-1-1200x3732.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3732;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3683654;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15166,1250,'_wp_attached_file','2022/11/Meadowcroft_2018_LosCarneros_Chardonnay-1.png'),(15167,1250,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:832;s:6:\"height\";i:2586;s:4:\"file\";s:53:\"2022/11/Meadowcroft_2018_LosCarneros_Chardonnay-1.png\";s:8:\"filesize\";i:2163066;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_2018_LosCarneros_Chardonnay-1-97x300.png\";s:5:\"width\";i:97;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26879;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"Meadowcroft_2018_LosCarneros_Chardonnay-1-329x1024.png\";s:5:\"width\";i:329;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:263282;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_2018_LosCarneros_Chardonnay-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17600;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:54:\"Meadowcroft_2018_LosCarneros_Chardonnay-1-768x2387.png\";s:5:\"width\";i:768;s:6:\"height\";i:2387;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1526051;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:54:\"Meadowcroft_2018_LosCarneros_Chardonnay-1-494x1536.png\";s:5:\"width\";i:494;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:615966;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:54:\"Meadowcroft_2018_LosCarneros_Chardonnay-1-659x2048.png\";s:5:\"width\";i:659;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1121440;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15168,1251,'_wp_attached_file','2022/11/Meadowcroft_2018LosCarneros_SonomaChard_TECHSheet.pdf'),(15169,1251,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2018LosCarneros_SonomaChard_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:267232;}s:6:\"medium\";a:5:{s:4:\"file\";s:65:\"Meadowcroft_2018LosCarneros_SonomaChard_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19322;}s:5:\"large\";a:5:{s:4:\"file\";s:66:\"Meadowcroft_2018LosCarneros_SonomaChard_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142425;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:65:\"Meadowcroft_2018LosCarneros_SonomaChard_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7833;}}s:8:\"filesize\";i:513553;}'),(15170,1252,'_wp_attached_file','2022/11/Meadowcroft_2019_LosCarneros_Sonoma_Chardonnay.png'),(15171,1252,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:832;s:6:\"height\";i:2586;s:4:\"file\";s:58:\"2022/11/Meadowcroft_2019_LosCarneros_Sonoma_Chardonnay.png\";s:8:\"filesize\";i:2175156;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2019_LosCarneros_Sonoma_Chardonnay-97x300.png\";s:5:\"width\";i:97;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26600;}s:5:\"large\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_2019_LosCarneros_Sonoma_Chardonnay-329x1024.png\";s:5:\"width\";i:329;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:260555;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_2019_LosCarneros_Sonoma_Chardonnay-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17577;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_2019_LosCarneros_Sonoma_Chardonnay-768x2387.png\";s:5:\"width\";i:768;s:6:\"height\";i:2387;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1511235;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_2019_LosCarneros_Sonoma_Chardonnay-494x1536.png\";s:5:\"width\";i:494;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:609580;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_2019_LosCarneros_Sonoma_Chardonnay-659x2048.png\";s:5:\"width\";i:659;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1110690;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15172,1253,'_wp_attached_file','2022/11/Meadowcroft_2019LosCarneros_SonomaChard_TECHSheet.pdf'),(15173,1253,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2019LosCarneros_SonomaChard_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:266800;}s:6:\"medium\";a:5:{s:4:\"file\";s:65:\"Meadowcroft_2019LosCarneros_SonomaChard_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21356;}s:5:\"large\";a:5:{s:4:\"file\";s:66:\"Meadowcroft_2019LosCarneros_SonomaChard_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143691;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:65:\"Meadowcroft_2019LosCarneros_SonomaChard_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9889;}}s:8:\"filesize\";i:373111;}'),(15174,1249,'_wp_attachment_image_alt','Meadowcroft 2016 Carneros Sonoma Chardonnay'),(15175,1250,'_wp_attachment_image_alt','Meadowcroft 2018 Carneros Sonoma Chardonnay'),(15176,1252,'_wp_attachment_image_alt','Meadowcroft 2019 Carneros Sonoma Chardonnay'),(15177,1254,'_wp_attached_file','2022/11/rrv-chard.png'),(15178,1254,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:21:\"2022/11/rrv-chard.png\";s:8:\"filesize\";i:85480;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"rrv-chard-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26523;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"rrv-chard-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11968;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15179,1254,'_wp_attachment_image_alt','Meadowcroft 2015 RRV Chardonnay'),(15180,1255,'_wp_attached_file','2022/11/Meadowcroft_2021_AV_Mendo_TECHSheet-1.pdf'),(15181,1255,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:45:\"Meadowcroft_2021_AV_Mendo_TECHSheet-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:232332;}s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_2021_AV_Mendo_TECHSheet-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18268;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"Meadowcroft_2021_AV_Mendo_TECHSheet-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121911;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_2021_AV_Mendo_TECHSheet-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8756;}}s:8:\"filesize\";i:950666;}'),(15182,1256,'_wp_attached_file','2022/11/Meadowcroft2016RRVChardonnayBottleShot.png'),(15183,1256,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1445;s:6:\"height\";i:4494;s:4:\"file\";s:50:\"2022/11/Meadowcroft2016RRVChardonnayBottleShot.png\";s:8:\"filesize\";i:6062234;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Meadowcroft2016RRVChardonnayBottleShot-96x300.png\";s:5:\"width\";i:96;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25696;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"Meadowcroft2016RRVChardonnayBottleShot-329x1024.png\";s:5:\"width\";i:329;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:244206;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Meadowcroft2016RRVChardonnayBottleShot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16430;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"Meadowcroft2016RRVChardonnayBottleShot-768x2389.png\";s:5:\"width\";i:768;s:6:\"height\";i:2389;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1473036;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:51:\"Meadowcroft2016RRVChardonnayBottleShot-494x1536.png\";s:5:\"width\";i:494;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:563334;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:51:\"Meadowcroft2016RRVChardonnayBottleShot-659x2048.png\";s:5:\"width\";i:659;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1055201;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:52:\"Meadowcroft2016RRVChardonnayBottleShot-1200x3732.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3732;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3700276;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15184,1256,'_wp_attachment_image_alt','Meadowcroft 2015 RRV Chardonnay'),(15185,1257,'_wp_attached_file','2022/11/Meadowcroft_21_Chard_AV_MENDOCINO_BottleShot_-1.png'),(15186,1257,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:832;s:6:\"height\";i:2586;s:4:\"file\";s:59:\"2022/11/Meadowcroft_21_Chard_AV_MENDOCINO_BottleShot_-1.png\";s:8:\"filesize\";i:790416;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_21_Chard_AV_MENDOCINO_BottleShot_-1-97x300.png\";s:5:\"width\";i:97;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28138;}s:5:\"large\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_21_Chard_AV_MENDOCINO_BottleShot_-1-329x1024.png\";s:5:\"width\";i:329;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:276249;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_21_Chard_AV_MENDOCINO_BottleShot_-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17411;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_21_Chard_AV_MENDOCINO_BottleShot_-1-768x2387.png\";s:5:\"width\";i:768;s:6:\"height\";i:2387;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1699012;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_21_Chard_AV_MENDOCINO_BottleShot_-1-494x1536.png\";s:5:\"width\";i:494;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:675238;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_21_Chard_AV_MENDOCINO_BottleShot_-1-659x2048.png\";s:5:\"width\";i:659;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1248411;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15187,1257,'_wp_attachment_image_alt','Meadowcroft 2021 Anderson Chardonnay'),(15188,1258,'_wp_attached_file','2022/11/anderson-chard.png'),(15189,1258,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2022/11/anderson-chard.png\";s:8:\"filesize\";i:86206;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"anderson-chard-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26821;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"anderson-chard-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11853;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15190,1258,'_wp_attachment_image_alt','Meadowcroft 2021 Anderson Chardonnay'),(15191,1259,'_wp_attached_file','2022/11/vio.png'),(15192,1259,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:15:\"2022/11/vio.png\";s:8:\"filesize\";i:87692;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"vio-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26321;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"vio-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12301;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15193,1259,'_wp_attachment_image_alt','Meadowcroft 2015 Viognier'),(15194,1260,'_wp_attached_file','2022/11/Meadowcroft_Viognier_15_Bottleshot.png'),(15195,1260,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1461;s:6:\"height\";i:4621;s:4:\"file\";s:46:\"2022/11/Meadowcroft_Viognier_15_Bottleshot.png\";s:8:\"filesize\";i:8404758;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"Meadowcroft_Viognier_15_Bottleshot-95x300.png\";s:5:\"width\";i:95;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29477;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"Meadowcroft_Viognier_15_Bottleshot-324x1024.png\";s:5:\"width\";i:324;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:266851;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_Viognier_15_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20503;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"Meadowcroft_Viognier_15_Bottleshot-768x2429.png\";s:5:\"width\";i:768;s:6:\"height\";i:2429;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1813276;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:47:\"Meadowcroft_Viognier_15_Bottleshot-486x1536.png\";s:5:\"width\";i:486;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:652271;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:47:\"Meadowcroft_Viognier_15_Bottleshot-648x2048.png\";s:5:\"width\";i:648;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1228309;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:48:\"Meadowcroft_Viognier_15_Bottleshot-1200x3795.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3795;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4868718;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15196,1260,'_wp_attachment_image_alt','Meadowcroft 2015 Viognier'),(15197,1261,'_wp_attached_file','2022/11/MC_2018_DryValleyCreek_LouvauVineyard_Viognier_TECHSheet.pdf'),(15198,1261,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:64:\"MC_2018_DryValleyCreek_LouvauVineyard_Viognier_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:254757;}s:6:\"medium\";a:5:{s:4:\"file\";s:72:\"MC_2018_DryValleyCreek_LouvauVineyard_Viognier_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18787;}s:5:\"large\";a:5:{s:4:\"file\";s:73:\"MC_2018_DryValleyCreek_LouvauVineyard_Viognier_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138214;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:72:\"MC_2018_DryValleyCreek_LouvauVineyard_Viognier_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7575;}}s:8:\"filesize\";i:634153;}'),(15199,1262,'_wp_attached_file','2022/11/MC_2018_Viognier_Louvau_DryCreekValley.png'),(15200,1262,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:832;s:6:\"height\";i:2586;s:4:\"file\";s:50:\"2022/11/MC_2018_Viognier_Louvau_DryCreekValley.png\";s:8:\"filesize\";i:2145671;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"MC_2018_Viognier_Louvau_DryCreekValley-97x300.png\";s:5:\"width\";i:97;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26941;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"MC_2018_Viognier_Louvau_DryCreekValley-329x1024.png\";s:5:\"width\";i:329;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:262611;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"MC_2018_Viognier_Louvau_DryCreekValley-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17579;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"MC_2018_Viognier_Louvau_DryCreekValley-768x2387.png\";s:5:\"width\";i:768;s:6:\"height\";i:2387;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1516290;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:51:\"MC_2018_Viognier_Louvau_DryCreekValley-494x1536.png\";s:5:\"width\";i:494;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:613070;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:51:\"MC_2018_Viognier_Louvau_DryCreekValley-659x2048.png\";s:5:\"width\";i:659;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1114659;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15201,1263,'_wp_attached_file','2022/11/MC_2020_DryValleyCreek_LouvauVineyard_Viognier_TECHSheet.pdf'),(15202,1263,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:64:\"MC_2020_DryValleyCreek_LouvauVineyard_Viognier_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:265936;}s:6:\"medium\";a:5:{s:4:\"file\";s:72:\"MC_2020_DryValleyCreek_LouvauVineyard_Viognier_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19373;}s:5:\"large\";a:5:{s:4:\"file\";s:73:\"MC_2020_DryValleyCreek_LouvauVineyard_Viognier_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143915;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:72:\"MC_2020_DryValleyCreek_LouvauVineyard_Viognier_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7713;}}s:8:\"filesize\";i:799872;}'),(15203,1264,'_wp_attached_file','2022/11/MC_VIOGNIER_2017.png'),(15204,1264,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1445;s:6:\"height\";i:4494;s:4:\"file\";s:28:\"2022/11/MC_VIOGNIER_2017.png\";s:8:\"filesize\";i:4141450;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"MC_VIOGNIER_2017-96x300.png\";s:5:\"width\";i:96;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28729;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"MC_VIOGNIER_2017-329x1024.png\";s:5:\"width\";i:329;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:262278;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"MC_VIOGNIER_2017-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19705;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"MC_VIOGNIER_2017-768x2389.png\";s:5:\"width\";i:768;s:6:\"height\";i:2389;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1653939;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"MC_VIOGNIER_2017-494x1536.png\";s:5:\"width\";i:494;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:611267;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"MC_VIOGNIER_2017-659x2048.png\";s:5:\"width\";i:659;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1168396;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:30:\"MC_VIOGNIER_2017-1200x3732.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3732;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4396663;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15205,1265,'_wp_attached_file','2022/11/Meadowcroft_2015Viognier_TECHSheet.pdf'),(15206,1265,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:42:\"Meadowcroft_2015Viognier_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:290980;}s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_2015Viognier_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53807;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_2015Viognier_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:172703;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_2015Viognier_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42673;}}s:8:\"filesize\";i:360971;}'),(15207,1266,'_wp_attached_file','2022/11/Meadowcroft_2017_DryValleuCreek_LouvauVineyard_Viognier_TECHSheet.pdf'),(15208,1266,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:73:\"Meadowcroft_2017_DryValleuCreek_LouvauVineyard_Viognier_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:261410;}s:6:\"medium\";a:5:{s:4:\"file\";s:81:\"Meadowcroft_2017_DryValleuCreek_LouvauVineyard_Viognier_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19063;}s:5:\"large\";a:5:{s:4:\"file\";s:82:\"Meadowcroft_2017_DryValleuCreek_LouvauVineyard_Viognier_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140932;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:81:\"Meadowcroft_2017_DryValleuCreek_LouvauVineyard_Viognier_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7696;}}s:8:\"filesize\";i:213723;}'),(15209,1267,'_wp_attached_file','2022/11/Meadowcroft_2019_LouvauVineyard_DryCreekValley_Viognier.png'),(15210,1267,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:832;s:6:\"height\";i:2586;s:4:\"file\";s:67:\"2022/11/Meadowcroft_2019_LouvauVineyard_DryCreekValley_Viognier.png\";s:8:\"filesize\";i:2141826;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:66:\"Meadowcroft_2019_LouvauVineyard_DryCreekValley_Viognier-97x300.png\";s:5:\"width\";i:97;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26560;}s:5:\"large\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_2019_LouvauVineyard_DryCreekValley_Viognier-329x1024.png\";s:5:\"width\";i:329;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:259982;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:67:\"Meadowcroft_2019_LouvauVineyard_DryCreekValley_Viognier-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17579;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_2019_LouvauVineyard_DryCreekValley_Viognier-768x2387.png\";s:5:\"width\";i:768;s:6:\"height\";i:2387;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1509986;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_2019_LouvauVineyard_DryCreekValley_Viognier-494x1536.png\";s:5:\"width\";i:494;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:608680;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_2019_LouvauVineyard_DryCreekValley_Viognier-659x2048.png\";s:5:\"width\";i:659;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1109301;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15211,1268,'_wp_attached_file','2022/11/Meadowcroft_2021_Viognier_WYLDVIN_BottleShot.png'),(15212,1268,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:832;s:6:\"height\";i:2586;s:4:\"file\";s:56:\"2022/11/Meadowcroft_2021_Viognier_WYLDVIN_BottleShot.png\";s:8:\"filesize\";i:2137565;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"Meadowcroft_2021_Viognier_WYLDVIN_BottleShot-97x300.png\";s:5:\"width\";i:97;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26453;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2021_Viognier_WYLDVIN_BottleShot-329x1024.png\";s:5:\"width\";i:329;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:259464;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_2021_Viognier_WYLDVIN_BottleShot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17577;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2021_Viognier_WYLDVIN_BottleShot-768x2387.png\";s:5:\"width\";i:768;s:6:\"height\";i:2387;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1508215;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2021_Viognier_WYLDVIN_BottleShot-494x1536.png\";s:5:\"width\";i:494;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:607636;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2021_Viognier_WYLDVIN_BottleShot-659x2048.png\";s:5:\"width\";i:659;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1107804;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15213,1262,'_wp_attachment_image_alt','Meadowcroft 2018 Viognier'),(15214,1269,'_wp_attached_file','2022/11/Meadowcroft_2021_Viognier_WYLDVIN_Tech_Sheet-1.pdf'),(15215,1267,'_wp_attachment_image_alt','Meadowcroft 2019 Viognier'),(15216,1269,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:54:\"Meadowcroft_2021_Viognier_WYLDVIN_Tech_Sheet-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:221085;}s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_2021_Viognier_WYLDVIN_Tech_Sheet-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49223;}s:5:\"large\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2021_Viognier_WYLDVIN_Tech_Sheet-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132423;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_2021_Viognier_WYLDVIN_Tech_Sheet-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41376;}}s:8:\"filesize\";i:452469;}'),(15217,1270,'_wp_attached_file','2022/11/Meadowcroft_Viognier_16_Bottleshot.png'),(15218,1270,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1461;s:6:\"height\";i:4621;s:4:\"file\";s:46:\"2022/11/Meadowcroft_Viognier_16_Bottleshot.png\";s:8:\"filesize\";i:8977441;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"Meadowcroft_Viognier_16_Bottleshot-95x300.png\";s:5:\"width\";i:95;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29483;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"Meadowcroft_Viognier_16_Bottleshot-324x1024.png\";s:5:\"width\";i:324;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:266938;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_Viognier_16_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20503;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"Meadowcroft_Viognier_16_Bottleshot-768x2429.png\";s:5:\"width\";i:768;s:6:\"height\";i:2429;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1813312;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:47:\"Meadowcroft_Viognier_16_Bottleshot-486x1536.png\";s:5:\"width\";i:486;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:652377;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:47:\"Meadowcroft_Viognier_16_Bottleshot-648x2048.png\";s:5:\"width\";i:648;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1228455;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:48:\"Meadowcroft_Viognier_16_Bottleshot-1200x3795.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3795;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4868344;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15219,1264,'_wp_attachment_image_alt','Meadowcroft 2017 Viognier'),(15220,1268,'_wp_attachment_image_alt','Meadowcroft 2021 Viognier'),(15221,1270,'_wp_attachment_image_alt','Meadowcroft 2016 Viognier'),(15226,1273,'_wp_attached_file','2022/11/pinot-blanc.png'),(15227,1273,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:23:\"2022/11/pinot-blanc.png\";s:8:\"filesize\";i:82116;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"pinot-blanc-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26093;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"pinot-blanc-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11789;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15228,1273,'_wp_attachment_image_alt','Meadowcroft 2020 Pinot Blanc'),(15229,1274,'_wp_attached_file','2022/11/2020_Pinot_Blanc_Bottleshot-1.png'),(15230,1274,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:832;s:6:\"height\";i:2586;s:4:\"file\";s:41:\"2022/11/2020_Pinot_Blanc_Bottleshot-1.png\";s:8:\"filesize\";i:2105173;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"2020_Pinot_Blanc_Bottleshot-1-97x300.png\";s:5:\"width\";i:97;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27107;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"2020_Pinot_Blanc_Bottleshot-1-329x1024.png\";s:5:\"width\";i:329;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:263662;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"2020_Pinot_Blanc_Bottleshot-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17577;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"2020_Pinot_Blanc_Bottleshot-1-768x2387.png\";s:5:\"width\";i:768;s:6:\"height\";i:2387;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1494269;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:42:\"2020_Pinot_Blanc_Bottleshot-1-494x1536.png\";s:5:\"width\";i:494;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:609463;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:42:\"2020_Pinot_Blanc_Bottleshot-1-659x2048.png\";s:5:\"width\";i:659;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1100246;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15231,1275,'_wp_attached_file','2022/11/2021_Pinot_Blanc_Bottleshot-1.png'),(15232,1275,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:832;s:6:\"height\";i:2586;s:4:\"file\";s:41:\"2022/11/2021_Pinot_Blanc_Bottleshot-1.png\";s:8:\"filesize\";i:1044241;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"2021_Pinot_Blanc_Bottleshot-1-97x300.png\";s:5:\"width\";i:97;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26735;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"2021_Pinot_Blanc_Bottleshot-1-329x1024.png\";s:5:\"width\";i:329;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:257863;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"2021_Pinot_Blanc_Bottleshot-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17097;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"2021_Pinot_Blanc_Bottleshot-1-768x2387.png\";s:5:\"width\";i:768;s:6:\"height\";i:2387;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1572836;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:42:\"2021_Pinot_Blanc_Bottleshot-1-494x1536.png\";s:5:\"width\";i:494;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:611273;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:42:\"2021_Pinot_Blanc_Bottleshot-1-659x2048.png\";s:5:\"width\";i:659;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1140423;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15233,1274,'_wp_attachment_image_alt','Meadowcroft 2020 Pinot Blanc'),(15234,1275,'_wp_attachment_image_alt','Meadowcroft 2021 Pinot Blanc'),(15235,1276,'_wp_attached_file','2022/11/MC_2020_Pinot-Blanc_RivinoVNYD_Mendocino_TECHSheet-1.pdf'),(15236,1276,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:60:\"MC_2020_Pinot-Blanc_RivinoVNYD_Mendocino_TECHSheet-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:272528;}s:6:\"medium\";a:5:{s:4:\"file\";s:68:\"MC_2020_Pinot-Blanc_RivinoVNYD_Mendocino_TECHSheet-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19592;}s:5:\"large\";a:5:{s:4:\"file\";s:69:\"MC_2020_Pinot-Blanc_RivinoVNYD_Mendocino_TECHSheet-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146957;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:68:\"MC_2020_Pinot-Blanc_RivinoVNYD_Mendocino_TECHSheet-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7884;}}s:8:\"filesize\";i:326752;}'),(15237,1277,'_wp_attached_file','2022/11/Meadowcroft_2021_Pinot_Blanc_Mendocino_Tech_Sheet-1.pdf'),(15238,1277,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_2021_Pinot_Blanc_Mendocino_Tech_Sheet-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:220750;}s:6:\"medium\";a:5:{s:4:\"file\";s:67:\"Meadowcroft_2021_Pinot_Blanc_Mendocino_Tech_Sheet-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49049;}s:5:\"large\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_2021_Pinot_Blanc_Mendocino_Tech_Sheet-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130971;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:67:\"Meadowcroft_2021_Pinot_Blanc_Mendocino_Tech_Sheet-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41389;}}s:8:\"filesize\";i:268888;}'),(15239,1278,'_wp_attached_file','2022/11/MC_Roussanne_2016_BottleShot-329x1024-1.png'),(15240,1278,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:329;s:6:\"height\";i:1024;s:4:\"file\";s:51:\"2022/11/MC_Roussanne_2016_BottleShot-329x1024-1.png\";s:8:\"filesize\";i:253750;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"MC_Roussanne_2016_BottleShot-329x1024-1-96x300.png\";s:5:\"width\";i:96;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25623;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"MC_Roussanne_2016_BottleShot-329x1024-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16735;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15241,1278,'_wp_attachment_image_alt','Meadowcroft 2015 Roussanne'),(15242,1279,'_wp_attached_file','2022/11/MC_15_Roussanne_BottleShot.png'),(15243,1279,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:5024;s:4:\"file\";s:38:\"2022/11/MC_15_Roussanne_BottleShot.png\";s:8:\"filesize\";i:7190129;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"MC_15_Roussanne_BottleShot-96x300.png\";s:5:\"width\";i:96;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31365;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"MC_15_Roussanne_BottleShot-326x1024.png\";s:5:\"width\";i:326;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:285362;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"MC_15_Roussanne_BottleShot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21635;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"MC_15_Roussanne_BottleShot-768x2412.png\";s:5:\"width\";i:768;s:6:\"height\";i:2412;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1559477;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"MC_15_Roussanne_BottleShot-489x1536.png\";s:5:\"width\";i:489;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:628699;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:39:\"MC_15_Roussanne_BottleShot-652x2048.png\";s:5:\"width\";i:652;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1113412;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:40:\"MC_15_Roussanne_BottleShot-1200x3768.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3794846;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15244,1280,'_wp_attached_file','2022/11/MC_Roussanne_2016_BottleShot-329x1024-2.png'),(15245,1280,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:329;s:6:\"height\";i:1024;s:4:\"file\";s:51:\"2022/11/MC_Roussanne_2016_BottleShot-329x1024-2.png\";s:8:\"filesize\";i:253750;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"MC_Roussanne_2016_BottleShot-329x1024-2-96x300.png\";s:5:\"width\";i:96;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25623;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"MC_Roussanne_2016_BottleShot-329x1024-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16735;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15248,1282,'_wp_attached_file','2022/11/MC_ROUSSANNE_2017.png'),(15249,1282,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1445;s:6:\"height\";i:4494;s:4:\"file\";s:29:\"2022/11/MC_ROUSSANNE_2017.png\";s:8:\"filesize\";i:4143152;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"MC_ROUSSANNE_2017-96x300.png\";s:5:\"width\";i:96;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28790;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"MC_ROUSSANNE_2017-329x1024.png\";s:5:\"width\";i:329;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:262711;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"MC_ROUSSANNE_2017-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19705;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"MC_ROUSSANNE_2017-768x2389.png\";s:5:\"width\";i:768;s:6:\"height\";i:2389;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1655174;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"MC_ROUSSANNE_2017-494x1536.png\";s:5:\"width\";i:494;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:611929;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:30:\"MC_ROUSSANNE_2017-659x2048.png\";s:5:\"width\";i:659;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1168992;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:31:\"MC_ROUSSANNE_2017-1200x3732.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3732;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4398185;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15250,1283,'_wp_attached_file','2022/11/MC_Roussanne_2020_Bottleshot_png.png'),(15251,1283,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:832;s:6:\"height\";i:2586;s:4:\"file\";s:44:\"2022/11/MC_Roussanne_2020_Bottleshot_png.png\";s:8:\"filesize\";i:2105657;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"MC_Roussanne_2020_Bottleshot_png-97x300.png\";s:5:\"width\";i:97;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27005;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"MC_Roussanne_2020_Bottleshot_png-329x1024.png\";s:5:\"width\";i:329;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:263459;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"MC_Roussanne_2020_Bottleshot_png-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17577;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"MC_Roussanne_2020_Bottleshot_png-768x2387.png\";s:5:\"width\";i:768;s:6:\"height\";i:2387;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1493253;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:45:\"MC_Roussanne_2020_Bottleshot_png-494x1536.png\";s:5:\"width\";i:494;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:608920;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:45:\"MC_Roussanne_2020_Bottleshot_png-659x2048.png\";s:5:\"width\";i:659;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1100234;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15252,1284,'_wp_attached_file','2022/11/MC_Roussanne_2021_Bottleshot.png'),(15253,1284,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:832;s:6:\"height\";i:2586;s:4:\"file\";s:40:\"2022/11/MC_Roussanne_2021_Bottleshot.png\";s:8:\"filesize\";i:1068442;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"MC_Roussanne_2021_Bottleshot-97x300.png\";s:5:\"width\";i:97;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26245;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"MC_Roussanne_2021_Bottleshot-329x1024.png\";s:5:\"width\";i:329;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:252926;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"MC_Roussanne_2021_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17168;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"MC_Roussanne_2021_Bottleshot-768x2387.png\";s:5:\"width\";i:768;s:6:\"height\";i:2387;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1562697;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:41:\"MC_Roussanne_2021_Bottleshot-494x1536.png\";s:5:\"width\";i:494;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:605013;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:41:\"MC_Roussanne_2021_Bottleshot-659x2048.png\";s:5:\"width\";i:659;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1130083;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15254,1285,'_wp_attached_file','2022/11/MC_Roussanne_Louvau_DryCreekValley.png'),(15255,1285,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:832;s:6:\"height\";i:2586;s:4:\"file\";s:46:\"2022/11/MC_Roussanne_Louvau_DryCreekValley.png\";s:8:\"filesize\";i:2146577;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"MC_Roussanne_Louvau_DryCreekValley-97x300.png\";s:5:\"width\";i:97;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27039;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"MC_Roussanne_Louvau_DryCreekValley-329x1024.png\";s:5:\"width\";i:329;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:263070;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"MC_Roussanne_Louvau_DryCreekValley-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17579;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"MC_Roussanne_Louvau_DryCreekValley-768x2387.png\";s:5:\"width\";i:768;s:6:\"height\";i:2387;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1517549;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:47:\"MC_Roussanne_Louvau_DryCreekValley-494x1536.png\";s:5:\"width\";i:494;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:613888;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:47:\"MC_Roussanne_Louvau_DryCreekValley-659x2048.png\";s:5:\"width\";i:659;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1115720;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15256,1286,'_wp_attached_file','2022/11/Meadowcroft_Roussanne_DCV_LouvauVineyard_2019.png'),(15257,1286,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:832;s:6:\"height\";i:2586;s:4:\"file\";s:57:\"2022/11/Meadowcroft_Roussanne_DCV_LouvauVineyard_2019.png\";s:8:\"filesize\";i:2142323;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_Roussanne_DCV_LouvauVineyard_2019-97x300.png\";s:5:\"width\";i:97;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26600;}s:5:\"large\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_Roussanne_DCV_LouvauVineyard_2019-329x1024.png\";s:5:\"width\";i:329;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:260537;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_Roussanne_DCV_LouvauVineyard_2019-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17579;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_Roussanne_DCV_LouvauVineyard_2019-768x2387.png\";s:5:\"width\";i:768;s:6:\"height\";i:2387;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1511178;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_Roussanne_DCV_LouvauVineyard_2019-494x1536.png\";s:5:\"width\";i:494;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:609572;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_Roussanne_DCV_LouvauVineyard_2019-659x2048.png\";s:5:\"width\";i:659;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1110451;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15258,1287,'_wp_attached_file','2022/11/MC_2018_Roussanne_Louvau_DryCreekValley_TECHSheet-update.pdf'),(15259,1287,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:64:\"MC_2018_Roussanne_Louvau_DryCreekValley_TECHSheet-update-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:272902;}s:6:\"medium\";a:5:{s:4:\"file\";s:72:\"MC_2018_Roussanne_Louvau_DryCreekValley_TECHSheet-update-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19358;}s:5:\"large\";a:5:{s:4:\"file\";s:73:\"MC_2018_Roussanne_Louvau_DryCreekValley_TECHSheet-update-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145633;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:72:\"MC_2018_Roussanne_Louvau_DryCreekValley_TECHSheet-update-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7762;}}s:8:\"filesize\";i:368186;}'),(15260,1288,'_wp_attached_file','2022/11/MC_2019_Roussanne_Louvau_DryCreekValley_TECHSheet.pdf');
INSERT INTO `wp_postmeta` VALUES (15261,1288,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:57:\"MC_2019_Roussanne_Louvau_DryCreekValley_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:270057;}s:6:\"medium\";a:5:{s:4:\"file\";s:65:\"MC_2019_Roussanne_Louvau_DryCreekValley_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19307;}s:5:\"large\";a:5:{s:4:\"file\";s:66:\"MC_2019_Roussanne_Louvau_DryCreekValley_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144835;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:65:\"MC_2019_Roussanne_Louvau_DryCreekValley_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7781;}}s:8:\"filesize\";i:131717;}'),(15262,1289,'_wp_attached_file','2022/11/MC_2020_Roussanne_Louvau_DryCreekValley_TECHSheet.pdf'),(15263,1289,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:57:\"MC_2020_Roussanne_Louvau_DryCreekValley_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:280174;}s:6:\"medium\";a:5:{s:4:\"file\";s:65:\"MC_2020_Roussanne_Louvau_DryCreekValley_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20085;}s:5:\"large\";a:5:{s:4:\"file\";s:66:\"MC_2020_Roussanne_Louvau_DryCreekValley_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151384;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:65:\"MC_2020_Roussanne_Louvau_DryCreekValley_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7854;}}s:8:\"filesize\";i:636507;}'),(15264,1290,'_wp_attached_file','2022/11/Meadowcroft_2016DryVCreekRoussanne_TECHSheet.pdf'),(15265,1290,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_2016DryVCreekRoussanne_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:296951;}s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_2016DryVCreekRoussanne_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54282;}s:5:\"large\";a:5:{s:4:\"file\";s:61:\"Meadowcroft_2016DryVCreekRoussanne_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176786;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_2016DryVCreekRoussanne_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42813;}}s:8:\"filesize\";i:356587;}'),(15266,1291,'_wp_attached_file','2022/11/Meadowcroft_2017DryVCreekRoussanne_TECHSheet.pdf'),(15267,1291,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_2017DryVCreekRoussanne_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:267132;}s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_2017DryVCreekRoussanne_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19330;}s:5:\"large\";a:5:{s:4:\"file\";s:61:\"Meadowcroft_2017DryVCreekRoussanne_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143677;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_2017DryVCreekRoussanne_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7752;}}s:8:\"filesize\";i:247802;}'),(15268,1292,'_wp_attached_file','2022/11/Meadowcroft_2021_Roussanne_Mendocino_Tech_Sheet.pdf'),(15269,1292,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:55:\"Meadowcroft_2021_Roussanne_Mendocino_Tech_Sheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:207571;}s:6:\"medium\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2021_Roussanne_Mendocino_Tech_Sheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17469;}s:5:\"large\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_2021_Roussanne_Mendocino_Tech_Sheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109295;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2021_Roussanne_Mendocino_Tech_Sheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9356;}}s:8:\"filesize\";i:75842;}'),(15270,1293,'_wp_attached_file','2022/11/Rousanne_Tech.pdf'),(15271,1293,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:21:\"Rousanne_Tech-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170893;}s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Rousanne_Tech-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15864;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"Rousanne_Tech-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95625;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Rousanne_Tech-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6823;}}s:8:\"filesize\";i:9737715;}'),(15272,1279,'_wp_attachment_image_alt','Meadowcroft 2015 Roussanne'),(15273,1280,'_wp_attachment_image_alt','Meadowcroft 2016 Roussanne'),(15274,1282,'_wp_attachment_image_alt','Meadowcroft 2017 Roussanne'),(15275,1283,'_wp_attachment_image_alt','Meadowcroft 2020 Roussanne'),(15276,1284,'_wp_attachment_image_alt','Meadowcroft 2021 Roussanne'),(15277,1285,'_wp_attachment_image_alt','Meadowcroft 2018 Roussanne'),(15278,1286,'_wp_attachment_image_alt','Meadowcroft 2019 Roussanne'),(15279,1294,'_wp_attached_file','2022/11/sauvignon-blanc.png'),(15280,1294,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2022/11/sauvignon-blanc.png\";s:8:\"filesize\";i:122483;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"sauvignon-blanc-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39119;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"sauvignon-blanc-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15472;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15281,1294,'_wp_attachment_image_alt','Meadowcroft 2016 Sauvignon Blanc'),(15282,1295,'_wp_attached_file','2022/11/Meadowcroft_2019SonomaCoastSauvBlanc_TECHSheet.pdf'),(15283,1295,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:54:\"Meadowcroft_2019SonomaCoastSauvBlanc_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:263714;}s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_2019SonomaCoastSauvBlanc_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18026;}s:5:\"large\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2019SonomaCoastSauvBlanc_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140465;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_2019SonomaCoastSauvBlanc_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7120;}}s:8:\"filesize\";i:405175;}'),(15284,1296,'_wp_attached_file','2022/11/Meadowcroft_2020SonomaCoastSauvBlanc_TECHSheet.pdf'),(15285,1296,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:54:\"Meadowcroft_2020SonomaCoastSauvBlanc_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:252808;}s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_2020SonomaCoastSauvBlanc_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19687;}s:5:\"large\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2020SonomaCoastSauvBlanc_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136964;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_2020SonomaCoastSauvBlanc_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9187;}}s:8:\"filesize\";i:537165;}'),(15286,1297,'_wp_attached_file','2022/11/Meadowcroft_2021SonomaCoastSauvBlanc_TECHSheet.pdf'),(15287,1297,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:54:\"Meadowcroft_2021SonomaCoastSauvBlanc_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:217998;}s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_2021SonomaCoastSauvBlanc_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13303;}s:5:\"large\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2021SonomaCoastSauvBlanc_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111890;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_2021SonomaCoastSauvBlanc_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4185;}}s:8:\"filesize\";i:730656;}'),(15288,1298,'_wp_attached_file','2022/11/Meadowcroft_SauvBlanc_2016_BottleShot-1.png'),(15289,1298,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:627;s:6:\"height\";i:2282;s:4:\"file\";s:51:\"2022/11/Meadowcroft_SauvBlanc_2016_BottleShot-1.png\";s:8:\"filesize\";i:1954063;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_SauvBlanc_2016_BottleShot-1-82x300.png\";s:5:\"width\";i:82;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36180;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_SauvBlanc_2016_BottleShot-1-281x1024.png\";s:5:\"width\";i:281;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:377056;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_SauvBlanc_2016_BottleShot-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27989;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_SauvBlanc_2016_BottleShot-1-422x1536.png\";s:5:\"width\";i:422;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:826155;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_SauvBlanc_2016_BottleShot-1-563x2048.png\";s:5:\"width\";i:563;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1411810;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15292,1300,'_wp_attached_file','2022/11/Meadowcroft_SauvBlanc_SonomaCoast_2019.png'),(15293,1300,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:629;s:6:\"height\";i:2282;s:4:\"file\";s:50:\"2022/11/Meadowcroft_SauvBlanc_SonomaCoast_2019.png\";s:8:\"filesize\";i:1533518;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_SauvBlanc_SonomaCoast_2019-83x300.png\";s:5:\"width\";i:83;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28404;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_SauvBlanc_SonomaCoast_2019-282x1024.png\";s:5:\"width\";i:282;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:281872;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_SauvBlanc_SonomaCoast_2019-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26250;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_SauvBlanc_SonomaCoast_2019-423x1536.png\";s:5:\"width\";i:423;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:621261;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_SauvBlanc_SonomaCoast_2019-565x2048.png\";s:5:\"width\";i:565;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1076506;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15294,1301,'_wp_attached_file','2022/11/Meadowcroft_SauvBlanc_SonomaCoast_2020.png'),(15295,1301,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:627;s:6:\"height\";i:2282;s:4:\"file\";s:50:\"2022/11/Meadowcroft_SauvBlanc_SonomaCoast_2020.png\";s:8:\"filesize\";i:1539968;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_SauvBlanc_SonomaCoast_2020-82x300.png\";s:5:\"width\";i:82;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28345;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_SauvBlanc_SonomaCoast_2020-281x1024.png\";s:5:\"width\";i:281;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:281862;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_SauvBlanc_SonomaCoast_2020-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26338;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_SauvBlanc_SonomaCoast_2020-422x1536.png\";s:5:\"width\";i:422;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:622293;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_SauvBlanc_SonomaCoast_2020-563x2048.png\";s:5:\"width\";i:563;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1075534;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15296,1302,'_wp_attached_file','2022/11/Meadowcroft_SauvBlanc_SonomaCoast_2021.png'),(15297,1302,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:627;s:6:\"height\";i:2282;s:4:\"file\";s:50:\"2022/11/Meadowcroft_SauvBlanc_SonomaCoast_2021.png\";s:8:\"filesize\";i:813441;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_SauvBlanc_SonomaCoast_2021-82x300.png\";s:5:\"width\";i:82;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28790;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_SauvBlanc_SonomaCoast_2021-281x1024.png\";s:5:\"width\";i:281;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:290390;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_SauvBlanc_SonomaCoast_2021-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26145;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_SauvBlanc_SonomaCoast_2021-422x1536.png\";s:5:\"width\";i:422;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:668623;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_SauvBlanc_SonomaCoast_2021-563x2048.png\";s:5:\"width\";i:563;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1215530;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15298,1298,'_wp_attachment_image_alt','Meadowcroft 2016 Sauvignon Blanc'),(15299,1300,'_wp_attachment_image_alt','Meadowcroft 2019 Sauvignon Blanc'),(15300,1301,'_wp_attachment_image_alt','Meadowcroft 2020 Sauvignon Blanc'),(15301,1302,'_wp_attachment_image_alt','Meadowcroft 2021 Sauvignon Blanc'),(15302,508,'content_block_9_layout_title','Assets Row 9'),(15303,508,'_content_block_9_layout_title','field_5bc11ca9a0d50-s'),(15304,508,'content_block_9_text_block_columns','four'),(15305,508,'_content_block_9_text_block_columns','field_5bbe2f81a4de0'),(15306,508,'content_block_9_narrow_text_block_content','0'),(15307,508,'_content_block_9_narrow_text_block_content','field_5bbe342e08360'),(15308,508,'content_block_9_reverse_colors','0'),(15309,508,'_content_block_9_reverse_colors','field_5bbe3027a4de1'),(15310,508,'content_block_9_enable_background_image','0'),(15311,508,'_content_block_9_enable_background_image','field_5bbe30b1a4de2'),(15312,508,'content_block_9_custom_css_class','wide-content white-boxes'),(15313,508,'_content_block_9_custom_css_class','field_5bbe30b1a4de2-1'),(15314,508,'content_block_9_text_block_content_col_one','<img class=\"wp-image-1303 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2015-Riesling.jpeg\" alt=\"Meadowcroft 2015 Riseling\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">NELSON RANCH VINEYARD | MENDOCINO RIESLING</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/MC15_Riesling_BottleShot-scaled-1.jpg\">2015</a> | <a href=\"/wp-content/uploads/2023/02/16RIMDNV_1.png\">2016</a> | <a href=\"/wp-content/uploads/2023/02/MC17_Riesling_BottleShot_warm_dh.png\">2017</a> | <a href=\"/wp-content/uploads/2023/02/MC18_Riesling_BottleShot.png\">2018</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/15Riesling_Tech-1.pdf\">2015</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2016Riesling_TECHSheet.pdf\">2016</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2017Riesling_TECHSheet.pdf\">2017</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018Riesling_TECHSheet.pdf\">2018</a></p>'),(15315,508,'_content_block_9_text_block_content_col_one','field_5bbe313b3920d'),(15316,508,'content_block_9_text_block_content_col_two','<img class=\"aligncenter wp-image-3367 size-medium\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-FrenchColombard-83x300.jpg\" alt=\"Meadowcroft 2022 French Colombard\" width=\"83\" height=\"300\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">FRENCH COLOMBARD | RUSSIAN RIVER VALLEY</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/MC_FrenchColombard_2016_bottleshot.png\">2016</a> | <a href=\"/wp-content/uploads/2023/02/MC_FRENCHCOLUMBARD_2017.png\">2017</a> | <a href=\"/wp-content/uploads/2023/02/MC_2018_FrenchColombard_BottleShot.png\">2018</a> | <a href=\"/wp-content/uploads/2023/02/MC_FrenchColombard2019_Bottleshot.png\">2019</a> | <a href=\"/wp-content/uploads/2023/02/MC_FrenchColombard2021_Bottleshot.png\">2021 </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-FrenchColombard-scaled.jpg\">2022</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Sunset_FrenchColombard16_Roussanne16_BestofClass-1.pdf\">2016</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2017RussianRiverFrenchColombard_TECHSheet.pdf\">2017</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018RussianRiverFrenchColombard_TECHSheet.pdf\">2018</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2019RussianRiverFrenchColombard_TECHSheet.pdf\">2019</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2021RussianRiverFrenchColombard_TECHSheet.pdf\">2021 </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-French-Colombard.pdf\">2022</a></p>'),(15317,508,'_content_block_9_text_block_content_col_two','field_5bbe31593920e'),(15318,508,'content_block_9_text_block_content_col_three','<img class=\"aligncenter wp-image-3369 size-medium\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-PinotGris-79x300.jpg\" alt=\"\" width=\"79\" height=\"300\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">PINOT GRIS | NELSON RANCH | MENDOCINO</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2022/11/MC_21_PinotGris_BottleShot.png\">2021 </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-PinotGris-scaled.jpg\">2023</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2021_Pinot_Gris_Mendocino_Tech_Sheet.pdf\">2021 </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2023-Pinot-Gris.pdf\">2023</a></p>'),(15319,508,'_content_block_9_text_block_content_col_three','field_5bbe31793920f'),(15320,508,'content_block_9_text_block_content_col_four','<img class=\"wp-image-1329 aligncenter\" src=\"/wp-content/uploads/2023/02/Meadowcroft-Sparkling-Bottle-shot-1-1.png\" alt=\"Meadowcroft Blanc de Blanc\" width=\"85\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">BLANC DE BLANCS | NAPA VALLEY</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft-Sparkling-Bottle-shot-1-1.png\">Non-Vintage</a>\r\nTech Sheet: <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/NV-Blanc-de-Blanc-Tech-Sheet-Revised2.pdf\">Non-Vintage</a></p>'),(15321,508,'_content_block_9_text_block_content_col_four','field_5bbe317939444'),(15322,1303,'_wp_attached_file','2022/11/2015-Riesling.jpeg'),(15323,1303,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2022/11/2015-Riesling.jpeg\";s:8:\"filesize\";i:15412;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"2015-Riesling-180x300.jpeg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9514;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"2015-Riesling-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6803;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15324,1303,'_wp_attachment_image_alt','Meadowcroft 2015 Riseling'),(15325,1304,'_wp_attached_file','2022/11/15Riesling_Tech.pdf'),(15326,1304,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:23:\"15Riesling_Tech-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154865;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"15Riesling_Tech-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18284;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"15Riesling_Tech-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90210;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"15Riesling_Tech-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9714;}}s:8:\"filesize\";i:2655850;}'),(15327,1305,'_wp_attached_file','2022/11/MC15_Riesling_BottleShot-scaled.jpeg'),(15328,1305,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:652;s:6:\"height\";i:2560;s:4:\"file\";s:44:\"2022/11/MC15_Riesling_BottleShot-scaled.jpeg\";s:8:\"filesize\";i:136348;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"MC15_Riesling_BottleShot-76x300.jpeg\";s:5:\"width\";i:76;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8832;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"MC15_Riesling_BottleShot-261x1024.jpeg\";s:5:\"width\";i:261;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33069;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"MC15_Riesling_BottleShot-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6780;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"MC15_Riesling_BottleShot-768x3017.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:3017;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:180504;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:38:\"MC15_Riesling_BottleShot-391x1536.jpeg\";s:5:\"width\";i:391;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58274;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:38:\"MC15_Riesling_BottleShot-521x2048.jpeg\";s:5:\"width\";i:521;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92410;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:39:\"MC15_Riesling_BottleShot-1200x4714.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:4714;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:411084;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:29:\"MC15_Riesling_BottleShot.jpeg\";}'),(15329,1306,'_wp_attached_file','2022/11/MC17_Riesling_BottleShot_warm_dh.png'),(15330,1306,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1360;s:6:\"height\";i:5342;s:4:\"file\";s:44:\"2022/11/MC17_Riesling_BottleShot_warm_dh.png\";s:8:\"filesize\";i:6213596;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"MC17_Riesling_BottleShot_warm_dh-76x300.png\";s:5:\"width\";i:76;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23226;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"MC17_Riesling_BottleShot_warm_dh-261x1024.png\";s:5:\"width\";i:261;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:230827;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"MC17_Riesling_BottleShot_warm_dh-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18479;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"MC17_Riesling_BottleShot_warm_dh-768x3017.png\";s:5:\"width\";i:768;s:6:\"height\";i:3017;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1906526;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:45:\"MC17_Riesling_BottleShot_warm_dh-391x1536.png\";s:5:\"width\";i:391;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:508174;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:45:\"MC17_Riesling_BottleShot_warm_dh-521x2048.png\";s:5:\"width\";i:521;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:894512;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:46:\"MC17_Riesling_BottleShot_warm_dh-1200x4714.png\";s:5:\"width\";i:1200;s:6:\"height\";i:4714;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4355126;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15331,1307,'_wp_attached_file','2022/11/MC18_Riesling_BottleShot.png'),(15332,1307,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1360;s:6:\"height\";i:5342;s:4:\"file\";s:36:\"2022/11/MC18_Riesling_BottleShot.png\";s:8:\"filesize\";i:6209955;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"MC18_Riesling_BottleShot-76x300.png\";s:5:\"width\";i:76;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23220;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"MC18_Riesling_BottleShot-261x1024.png\";s:5:\"width\";i:261;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:230810;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"MC18_Riesling_BottleShot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18431;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"MC18_Riesling_BottleShot-768x3017.png\";s:5:\"width\";i:768;s:6:\"height\";i:3017;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1905747;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"MC18_Riesling_BottleShot-391x1536.png\";s:5:\"width\";i:391;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:508075;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"MC18_Riesling_BottleShot-521x2048.png\";s:5:\"width\";i:521;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:894333;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:38:\"MC18_Riesling_BottleShot-1200x4714.png\";s:5:\"width\";i:1200;s:6:\"height\";i:4714;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4352043;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15333,1308,'_wp_attached_file','2022/11/Meadowcroft_2016Riesling_TECHSheet.pdf'),(15334,1308,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:42:\"Meadowcroft_2016Riesling_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:289140;}s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_2016Riesling_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52664;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_2016Riesling_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170424;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_2016Riesling_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42106;}}s:8:\"filesize\";i:335216;}'),(15335,1309,'_wp_attached_file','2022/11/Meadowcroft_2017Riesling_TECHSheet.pdf'),(15336,1309,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:42:\"Meadowcroft_2017Riesling_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:285046;}s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_2017Riesling_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52612;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_2017Riesling_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:168568;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_2017Riesling_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42088;}}s:8:\"filesize\";i:334645;}'),(15337,1310,'_wp_attached_file','2022/11/Meadowcroft_2018Riesling_TECHSheet.pdf'),(15338,1310,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:42:\"Meadowcroft_2018Riesling_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:250075;}s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_2018Riesling_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17418;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_2018Riesling_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132821;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_2018Riesling_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7035;}}s:8:\"filesize\";i:229012;}'),(15339,1305,'_wp_attachment_image_alt','Meadowcroft 2015 Riesling'),(15340,1306,'_wp_attachment_image_alt','Meadowcroft 2017 Riesling'),(15341,1307,'_wp_attachment_image_alt','Meadowcroft 2018 Riesling'),(15342,1311,'_wp_attached_file','2022/11/15Riesling_Tech-1.pdf'),(15343,1311,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:25:\"15Riesling_Tech-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154865;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"15Riesling_Tech-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18284;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"15Riesling_Tech-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90210;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"15Riesling_Tech-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9714;}}s:8:\"filesize\";i:2655850;}'),(15344,1312,'_wp_attached_file','2022/11/16RIMDNV_1.png'),(15345,1312,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:250;s:6:\"height\";i:708;s:4:\"file\";s:22:\"2022/11/16RIMDNV_1.png\";s:8:\"filesize\";i:154397;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"16RIMDNV_1-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25247;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"16RIMDNV_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15932;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15346,1312,'_wp_attachment_image_alt','Meadowcroft 2016 Riesling'),(15347,1313,'_wp_attached_file','2022/11/MC_FrenchColombard2021_Bottleshot-281x1024-1.png'),(15348,1313,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:281;s:6:\"height\";i:1024;s:4:\"file\";s:56:\"2022/11/MC_FrenchColombard2021_Bottleshot-281x1024-1.png\";s:8:\"filesize\";i:282898;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"MC_FrenchColombard2021_Bottleshot-281x1024-1-82x300.png\";s:5:\"width\";i:82;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28115;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"MC_FrenchColombard2021_Bottleshot-281x1024-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24663;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15349,1313,'_wp_attachment_image_alt','Meadowcroft 2021 French Colombard'),(15350,1314,'_wp_attached_file','2022/11/MC_2018_FrenchColombard_BottleShot.png'),(15351,1314,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:629;s:6:\"height\";i:2282;s:4:\"file\";s:46:\"2022/11/MC_2018_FrenchColombard_BottleShot.png\";s:8:\"filesize\";i:1951003;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"MC_2018_FrenchColombard_BottleShot-83x300.png\";s:5:\"width\";i:83;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36248;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"MC_2018_FrenchColombard_BottleShot-282x1024.png\";s:5:\"width\";i:282;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:375902;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"MC_2018_FrenchColombard_BottleShot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28072;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:47:\"MC_2018_FrenchColombard_BottleShot-423x1536.png\";s:5:\"width\";i:423;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:823164;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:47:\"MC_2018_FrenchColombard_BottleShot-565x2048.png\";s:5:\"width\";i:565;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1409461;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15352,1315,'_wp_attached_file','2022/11/MC_FrenchColombard_2016_bottleshot.png'),(15353,1315,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:627;s:6:\"height\";i:2282;s:4:\"file\";s:46:\"2022/11/MC_FrenchColombard_2016_bottleshot.png\";s:8:\"filesize\";i:1953931;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"MC_FrenchColombard_2016_bottleshot-82x300.png\";s:5:\"width\";i:82;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36205;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"MC_FrenchColombard_2016_bottleshot-281x1024.png\";s:5:\"width\";i:281;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:377282;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"MC_FrenchColombard_2016_bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27989;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:47:\"MC_FrenchColombard_2016_bottleshot-422x1536.png\";s:5:\"width\";i:422;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:826533;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:47:\"MC_FrenchColombard_2016_bottleshot-563x2048.png\";s:5:\"width\";i:563;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1412221;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15354,1316,'_wp_attached_file','2022/11/MC_FrenchColombard2019_Bottleshot.png'),(15355,1316,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:638;s:6:\"height\";i:2048;s:4:\"file\";s:45:\"2022/11/MC_FrenchColombard2019_Bottleshot.png\";s:8:\"filesize\";i:1224521;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"MC_FrenchColombard2019_Bottleshot-93x300.png\";s:5:\"width\";i:93;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31751;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"MC_FrenchColombard2019_Bottleshot-319x1024.png\";s:5:\"width\";i:319;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:328592;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"MC_FrenchColombard2019_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26621;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"MC_FrenchColombard2019_Bottleshot-479x1536.png\";s:5:\"width\";i:479;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:708229;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15356,1317,'_wp_attached_file','2022/11/MC_FrenchColombard2021_Bottleshot.png'),(15357,1317,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:627;s:6:\"height\";i:2282;s:4:\"file\";s:45:\"2022/11/MC_FrenchColombard2021_Bottleshot.png\";s:8:\"filesize\";i:1534004;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"MC_FrenchColombard2021_Bottleshot-82x300.png\";s:5:\"width\";i:82;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28499;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"MC_FrenchColombard2021_Bottleshot-281x1024.png\";s:5:\"width\";i:281;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:282946;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"MC_FrenchColombard2021_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26338;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"MC_FrenchColombard2021_Bottleshot-422x1536.png\";s:5:\"width\";i:422;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:623618;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:46:\"MC_FrenchColombard2021_Bottleshot-563x2048.png\";s:5:\"width\";i:563;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1077448;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15358,1318,'_wp_attached_file','2022/11/MC_FRENCHCOLUMBARD_2017.png'),(15359,1318,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:627;s:6:\"height\";i:2282;s:4:\"file\";s:35:\"2022/11/MC_FRENCHCOLUMBARD_2017.png\";s:8:\"filesize\";i:1045094;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"MC_FRENCHCOLUMBARD_2017-82x300.png\";s:5:\"width\";i:82;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29231;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"MC_FRENCHCOLUMBARD_2017-281x1024.png\";s:5:\"width\";i:281;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:303802;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"MC_FRENCHCOLUMBARD_2017-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26875;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"MC_FRENCHCOLUMBARD_2017-422x1536.png\";s:5:\"width\";i:422;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:723626;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:36:\"MC_FRENCHCOLUMBARD_2017-563x2048.png\";s:5:\"width\";i:563;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1326134;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15360,1319,'_wp_attached_file','2022/11/Meadowcroft_2017RussianRiverFrenchColombard_TECHSheet.pdf'),(15361,1319,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:61:\"Meadowcroft_2017RussianRiverFrenchColombard_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:260765;}s:6:\"medium\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_2017RussianRiverFrenchColombard_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17564;}s:5:\"large\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_2017RussianRiverFrenchColombard_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137633;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_2017RussianRiverFrenchColombard_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7067;}}s:8:\"filesize\";i:120200;}'),(15362,1320,'_wp_attached_file','2022/11/Meadowcroft_2018RussianRiverFrenchColombard_TECHSheet.pdf'),(15363,1320,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:61:\"Meadowcroft_2018RussianRiverFrenchColombard_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:253421;}s:6:\"medium\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_2018RussianRiverFrenchColombard_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17510;}s:5:\"large\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_2018RussianRiverFrenchColombard_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134276;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_2018RussianRiverFrenchColombard_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7088;}}s:8:\"filesize\";i:406365;}'),(15364,1321,'_wp_attached_file','2022/11/Meadowcroft_2019RussianRiverFrenchColombard_TECHSheet.pdf'),(15365,1321,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:61:\"Meadowcroft_2019RussianRiverFrenchColombard_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:269725;}s:6:\"medium\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_2019RussianRiverFrenchColombard_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18071;}s:5:\"large\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_2019RussianRiverFrenchColombard_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141626;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_2019RussianRiverFrenchColombard_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7205;}}s:8:\"filesize\";i:337251;}'),(15366,1322,'_wp_attached_file','2022/11/Meadowcroft_2021RussianRiverFrenchColombard_TECHSheet.pdf'),(15367,1322,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:61:\"Meadowcroft_2021RussianRiverFrenchColombard_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:266642;}s:6:\"medium\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_2021RussianRiverFrenchColombard_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18358;}s:5:\"large\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_2021RussianRiverFrenchColombard_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140738;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:69:\"Meadowcroft_2021RussianRiverFrenchColombard_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7270;}}s:8:\"filesize\";i:460708;}'),(15368,1323,'_wp_attached_file','2022/11/Sunset_FrenchColombard16_Roussanne16_BestofClass-1.pdf'),(15369,1323,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:58:\"Sunset_FrenchColombard16_Roussanne16_BestofClass-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:231413;}s:6:\"medium\";a:5:{s:4:\"file\";s:66:\"Sunset_FrenchColombard16_Roussanne16_BestofClass-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18272;}s:5:\"large\";a:5:{s:4:\"file\";s:67:\"Sunset_FrenchColombard16_Roussanne16_BestofClass-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123331;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:66:\"Sunset_FrenchColombard16_Roussanne16_BestofClass-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7507;}}s:8:\"filesize\";i:611222;}'),(15370,1314,'_wp_attachment_image_alt','Meadowcroft 2018 French Colombard'),(15371,1315,'_wp_attachment_image_alt','Meadowcroft 2016 French Colombard'),(15372,1316,'_wp_attachment_image_alt','Meadowcroft 2019 French Colombard'),(15373,1317,'_wp_attachment_image_alt','Meadowcroft 2021 French Colombard'),(15374,1318,'_wp_attachment_image_alt','Meadowcroft 2017 French Colombard'),(15375,1324,'_wp_attached_file','2022/11/MC_21_PinotGris_BottleShot-281x1024-1.png'),(15376,1324,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:281;s:6:\"height\";i:1024;s:4:\"file\";s:49:\"2022/11/MC_21_PinotGris_BottleShot-281x1024-1.png\";s:8:\"filesize\";i:290256;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"MC_21_PinotGris_BottleShot-281x1024-1-82x300.png\";s:5:\"width\";i:82;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28724;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"MC_21_PinotGris_BottleShot-281x1024-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24663;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15377,1324,'_wp_attachment_image_alt','Meadowcroft 2021 Pinot Gris'),(15378,1325,'_wp_attached_file','2022/11/MC_21_PinotGris_BottleShot.png'),(15379,1325,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:627;s:6:\"height\";i:2282;s:4:\"file\";s:38:\"2022/11/MC_21_PinotGris_BottleShot.png\";s:8:\"filesize\";i:1589199;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"MC_21_PinotGris_BottleShot-82x300.png\";s:5:\"width\";i:82;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29211;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"MC_21_PinotGris_BottleShot-281x1024.png\";s:5:\"width\";i:281;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:290356;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"MC_21_PinotGris_BottleShot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26338;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"MC_21_PinotGris_BottleShot-422x1536.png\";s:5:\"width\";i:422;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:642615;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:39:\"MC_21_PinotGris_BottleShot-563x2048.png\";s:5:\"width\";i:563;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1111609;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15380,1326,'_wp_attached_file','2022/11/Meadowcroft_2021_Pinot_Gris_Mendocino_Tech_Sheet.pdf'),(15381,1326,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_2021_Pinot_Gris_Mendocino_Tech_Sheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:212909;}s:6:\"medium\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_2021_Pinot_Gris_Mendocino_Tech_Sheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49023;}s:5:\"large\";a:5:{s:4:\"file\";s:65:\"Meadowcroft_2021_Pinot_Gris_Mendocino_Tech_Sheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127808;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_2021_Pinot_Gris_Mendocino_Tech_Sheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41402;}}s:8:\"filesize\";i:276718;}'),(15382,1325,'_wp_attachment_image_alt','Meadowcroft 2021 Pinot Gris'),(15383,1327,'_wp_attached_file','2022/11/Meadowcroft_NV_NapaValleyBlancdeBlancs_TECHSheet-deanna@meadowcroftwines.com_.pdf'),(15384,1327,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:85:\"Meadowcroft_NV_NapaValleyBlancdeBlancs_TECHSheet-deanna@meadowcroftwines.com_-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:271231;}s:6:\"medium\";a:5:{s:4:\"file\";s:93:\"Meadowcroft_NV_NapaValleyBlancdeBlancs_TECHSheet-deanna@meadowcroftwines.com_-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19439;}s:5:\"large\";a:5:{s:4:\"file\";s:94:\"Meadowcroft_NV_NapaValleyBlancdeBlancs_TECHSheet-deanna@meadowcroftwines.com_-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144704;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:93:\"Meadowcroft_NV_NapaValleyBlancdeBlancs_TECHSheet-deanna@meadowcroftwines.com_-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7708;}}s:8:\"filesize\";i:317599;}'),(15385,1328,'_wp_attached_file','2022/11/Meadowcroft-Sparkling-Bottle-shot.png'),(15386,1328,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:265;s:6:\"height\";i:854;s:4:\"file\";s:45:\"2022/11/Meadowcroft-Sparkling-Bottle-shot.png\";s:8:\"filesize\";i:233917;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"Meadowcroft-Sparkling-Bottle-shot-93x300.png\";s:5:\"width\";i:93;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34748;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"Meadowcroft-Sparkling-Bottle-shot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23424;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15387,1328,'_wp_attachment_image_alt','Meadowcroft Blanc de Blanc'),(15388,1329,'_wp_attached_file','2022/11/Meadowcroft-Sparkling-Bottle-shot-1.png'),(15389,1329,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:265;s:6:\"height\";i:854;s:4:\"file\";s:47:\"2022/11/Meadowcroft-Sparkling-Bottle-shot-1.png\";s:8:\"filesize\";i:233917;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"Meadowcroft-Sparkling-Bottle-shot-1-93x300.png\";s:5:\"width\";i:93;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34748;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Meadowcroft-Sparkling-Bottle-shot-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23424;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15390,1329,'_wp_attachment_image_alt','Meadowcroft Blanc de Blanc'),(15391,1330,'_wp_attached_file','2022/11/rose-of-malbec.png'),(15392,1330,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2022/11/rose-of-malbec.png\";s:8:\"filesize\";i:119404;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"rose-of-malbec-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37511;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"rose-of-malbec-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14434;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15393,1330,'_wp_attachment_image_alt','Meadowcroft 2016 Rosé of Malbec'),(15394,1331,'_wp_attached_file','2022/11/MC_Malbec_Rose_2020_BottleShot.png'),(15395,1331,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:626;s:6:\"height\";i:2409;s:4:\"file\";s:42:\"2022/11/MC_Malbec_Rose_2020_BottleShot.png\";s:8:\"filesize\";i:1908003;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"MC_Malbec_Rose_2020_BottleShot-78x300.png\";s:5:\"width\";i:78;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33451;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"MC_Malbec_Rose_2020_BottleShot-266x1024.png\";s:5:\"width\";i:266;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:346953;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"MC_Malbec_Rose_2020_BottleShot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28709;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"MC_Malbec_Rose_2020_BottleShot-399x1536.png\";s:5:\"width\";i:399;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:746614;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:43:\"MC_Malbec_Rose_2020_BottleShot-532x2048.png\";s:5:\"width\";i:532;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1243705;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15396,1332,'_wp_attached_file','2022/11/MC_ROSE_17.png'),(15397,1332,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:626;s:6:\"height\";i:2409;s:4:\"file\";s:22:\"2022/11/MC_ROSE_17.png\";s:8:\"filesize\";i:1132157;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"MC_ROSE_17-78x300.png\";s:5:\"width\";i:78;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29503;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"MC_ROSE_17-266x1024.png\";s:5:\"width\";i:266;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:306426;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"MC_ROSE_17-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30519;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"MC_ROSE_17-399x1536.png\";s:5:\"width\";i:399;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:713414;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:23:\"MC_ROSE_17-532x2048.png\";s:5:\"width\";i:532;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1297968;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15398,1333,'_wp_attached_file','2022/11/MC_ROSE_18.png'),(15399,1333,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:626;s:6:\"height\";i:2409;s:4:\"file\";s:22:\"2022/11/MC_ROSE_18.png\";s:8:\"filesize\";i:1117753;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"MC_ROSE_18-78x300.png\";s:5:\"width\";i:78;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29505;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"MC_ROSE_18-266x1024.png\";s:5:\"width\";i:266;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:306412;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"MC_ROSE_18-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30519;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"MC_ROSE_18-399x1536.png\";s:5:\"width\";i:399;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:713130;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:23:\"MC_ROSE_18-532x2048.png\";s:5:\"width\";i:532;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1297407;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15400,1334,'_wp_attached_file','2022/11/MC_Rose_2016_BottleShot.png'),(15401,1334,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:626;s:6:\"height\";i:2409;s:4:\"file\";s:35:\"2022/11/MC_Rose_2016_BottleShot.png\";s:8:\"filesize\";i:1905181;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"MC_Rose_2016_BottleShot-78x300.png\";s:5:\"width\";i:78;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33301;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"MC_Rose_2016_BottleShot-266x1024.png\";s:5:\"width\";i:266;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:346049;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"MC_Rose_2016_BottleShot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28709;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"MC_Rose_2016_BottleShot-399x1536.png\";s:5:\"width\";i:399;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:745307;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:36:\"MC_Rose_2016_BottleShot-532x2048.png\";s:5:\"width\";i:532;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1241698;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15402,1335,'_wp_attached_file','2022/11/Meadowcroft_2016Rose_TECHSheet.pdf'),(15403,1335,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:38:\"Meadowcroft_2016Rose_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:244311;}s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_2016Rose_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17130;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"Meadowcroft_2016Rose_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130053;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_2016Rose_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7033;}}s:8:\"filesize\";i:364236;}'),(15404,1336,'_wp_attached_file','2022/11/Meadowcroft_2017Rose_TECHSheet.pdf'),(15405,1336,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:38:\"Meadowcroft_2017Rose_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:243644;}s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_2017Rose_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16907;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"Meadowcroft_2017Rose_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127559;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_2017Rose_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6913;}}s:8:\"filesize\";i:399681;}'),(15406,1337,'_wp_attached_file','2022/11/Meadowcroft_2018Rose_TECHSheet.pdf'),(15407,1337,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:38:\"Meadowcroft_2018Rose_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:251149;}s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_2018Rose_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17282;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"Meadowcroft_2018Rose_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131773;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_2018Rose_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7032;}}s:8:\"filesize\";i:386082;}'),(15408,1338,'_wp_attached_file','2022/11/Meadowcroft_2020Rose_TECHSheet.pdf'),(15409,1338,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:38:\"Meadowcroft_2020Rose_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:217429;}s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_2020Rose_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16929;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"Meadowcroft_2020Rose_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111734;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_2020Rose_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8350;}}s:8:\"filesize\";i:287080;}'),(15410,1331,'_wp_attachment_image_alt','Meadowcroft 2020 Rosé of Malbec'),(15411,1332,'_wp_attachment_image_alt','Meadowcroft 2017 Rosé of Malbec'),(15412,1333,'_wp_attachment_image_alt','Meadowcroft 2018 Rosé of Malbec'),(15413,1334,'_wp_attachment_image_alt','Meadowcroft 2016 Rosé of Malbec'),(15414,1339,'_wp_attached_file','2022/11/MC_Pinot_Rose_2020_BottleShot.png'),(15415,1339,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:626;s:6:\"height\";i:2409;s:4:\"file\";s:41:\"2022/11/MC_Pinot_Rose_2020_BottleShot.png\";s:8:\"filesize\";i:1909294;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"MC_Pinot_Rose_2020_BottleShot-78x300.png\";s:5:\"width\";i:78;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33391;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"MC_Pinot_Rose_2020_BottleShot-266x1024.png\";s:5:\"width\";i:266;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:346756;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"MC_Pinot_Rose_2020_BottleShot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28709;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:42:\"MC_Pinot_Rose_2020_BottleShot-399x1536.png\";s:5:\"width\";i:399;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:746250;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:42:\"MC_Pinot_Rose_2020_BottleShot-532x2048.png\";s:5:\"width\";i:532;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1243454;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15416,1340,'_wp_attached_file','2022/11/Meadowcroft_2019RoseSC_TECHSheet.pdf'),(15417,1340,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:40:\"Meadowcroft_2019RoseSC_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:250117;}s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"Meadowcroft_2019RoseSC_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19797;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_2019RoseSC_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133650;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"Meadowcroft_2019RoseSC_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9199;}}s:8:\"filesize\";i:641311;}'),(15418,1341,'_wp_attached_file','2022/11/Meadowcroft_2020RoseSC_TECHSheet.pdf'),(15419,1341,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:40:\"Meadowcroft_2020RoseSC_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:225792;}s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"Meadowcroft_2020RoseSC_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17812;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_2020RoseSC_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117517;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"Meadowcroft_2020RoseSC_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8612;}}s:8:\"filesize\";i:486346;}'),(15420,1342,'_wp_attached_file','2022/11/Meadowcroft_2021_Rose_Somoma-Coast_TechSheet.pdf'),(15421,1342,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_2021_Rose_Somoma-Coast_TechSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:234947;}s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_2021_Rose_Somoma-Coast_TechSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49523;}s:5:\"large\";a:5:{s:4:\"file\";s:61:\"Meadowcroft_2021_Rose_Somoma-Coast_TechSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135777;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_2021_Rose_Somoma-Coast_TechSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41557;}}s:8:\"filesize\";i:179396;}'),(15422,1343,'_wp_attached_file','2022/11/Meadowcroft_2021_Rose_Sonoma-Coast_BottleShot.png'),(15423,1343,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:626;s:6:\"height\";i:2409;s:4:\"file\";s:57:\"2022/11/Meadowcroft_2021_Rose_Sonoma-Coast_BottleShot.png\";s:8:\"filesize\";i:879722;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_2021_Rose_Sonoma-Coast_BottleShot-78x300.png\";s:5:\"width\";i:78;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32642;}s:5:\"large\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_2021_Rose_Sonoma-Coast_BottleShot-266x1024.png\";s:5:\"width\";i:266;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:345383;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2021_Rose_Sonoma-Coast_BottleShot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27952;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_2021_Rose_Sonoma-Coast_BottleShot-399x1536.png\";s:5:\"width\";i:399;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:781615;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_2021_Rose_Sonoma-Coast_BottleShot-532x2048.png\";s:5:\"width\";i:532;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1397928;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15424,1344,'_wp_attached_file','2022/11/rose-of-pinot-noir.png'),(15425,1344,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:30:\"2022/11/rose-of-pinot-noir.png\";s:8:\"filesize\";i:116597;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"rose-of-pinot-noir-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36448;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"rose-of-pinot-noir-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14140;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15426,1344,'_wp_attachment_image_alt','Meadowcroft 2020 Rosé of Pinot Noir'),(15427,1343,'_wp_attachment_image_alt','Meadowcroft 2021 Rosé of Pinot Noir'),(15428,1339,'_wp_attachment_image_alt','Meadowcroft 2020 Rosé of Pinot Noir'),(15429,1345,'_wp_attached_file','2022/11/gsm-rose.png'),(15430,1345,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2022/11/gsm-rose.png\";s:8:\"filesize\";i:114262;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"gsm-rose-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35794;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"gsm-rose-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13730;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15431,1345,'_wp_attachment_image_alt','Meadowcroft 2021 River Trace GSM Rosé'),(15432,1346,'_wp_attached_file','2022/11/MC_GSM_Rose_2021_BottleShot-1.png'),(15433,1346,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:626;s:6:\"height\";i:2409;s:4:\"file\";s:41:\"2022/11/MC_GSM_Rose_2021_BottleShot-1.png\";s:8:\"filesize\";i:1908683;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"MC_GSM_Rose_2021_BottleShot-1-78x300.png\";s:5:\"width\";i:78;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33077;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"MC_GSM_Rose_2021_BottleShot-1-266x1024.png\";s:5:\"width\";i:266;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:345994;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"MC_GSM_Rose_2021_BottleShot-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28709;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:42:\"MC_GSM_Rose_2021_BottleShot-1-399x1536.png\";s:5:\"width\";i:399;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:745512;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:42:\"MC_GSM_Rose_2021_BottleShot-1-532x2048.png\";s:5:\"width\";i:532;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1243512;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15434,1347,'_wp_attached_file','2022/11/Meadowcroft_2021RoseGSM_TECHSheet-1.pdf'),(15435,1347,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:43:\"Meadowcroft_2021RoseGSM_TECHSheet-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:225596;}s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_2021RoseGSM_TECHSheet-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17797;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_2021RoseGSM_TECHSheet-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118265;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_2021RoseGSM_TECHSheet-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8570;}}s:8:\"filesize\";i:498416;}'),(15436,1346,'_wp_attachment_image_alt','Meadowcroft 2021 River Trace GSM Rosé'),(15437,1348,'_wp_attached_file','2022/11/ALL-SHE-WROTE_tastingnotes_Website.pdf'),(15438,1348,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:42:\"ALL-SHE-WROTE_tastingnotes_Website-pdf.jpg\";s:5:\"width\";i:643;s:6:\"height\";i:1058;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98440;}s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"ALL-SHE-WROTE_tastingnotes_Website-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15444;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"ALL-SHE-WROTE_tastingnotes_Website-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85512;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"ALL-SHE-WROTE_tastingnotes_Website-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7413;}}s:8:\"filesize\";i:6007879;}'),(15439,1349,'_wp_attached_file','2022/11/All-She-Wrote-Wax.png'),(15440,1349,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3895;s:6:\"height\";i:5843;s:4:\"file\";s:29:\"2022/11/All-She-Wrote-Wax.png\";s:8:\"filesize\";i:3889650;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"All-She-Wrote-Wax-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15931;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"All-She-Wrote-Wax-683x1024.png\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141042;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"All-She-Wrote-Wax-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9076;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"All-She-Wrote-Wax-768x1152.png\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:176032;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:31:\"All-She-Wrote-Wax-1024x1536.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:301454;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:31:\"All-She-Wrote-Wax-1365x2048.png\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:519995;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:31:\"All-She-Wrote-Wax-1200x1800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:1800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:406877;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15441,1349,'_wp_attachment_image_alt','Meadowcroft All She Wrote Port'),(15442,1350,'_wp_attached_file','2022/11/All-She-Wrote-Wax-e1647036764264-468x1024-1.png'),(15443,1350,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:468;s:6:\"height\";i:1024;s:4:\"file\";s:55:\"2022/11/All-She-Wrote-Wax-e1647036764264-468x1024-1.png\";s:8:\"filesize\";i:282000;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"All-She-Wrote-Wax-e1647036764264-468x1024-1-137x300.png\";s:5:\"width\";i:137;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29641;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"All-She-Wrote-Wax-e1647036764264-468x1024-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19587;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15444,1350,'_wp_attachment_image_alt','Meadowcroft All She Wrote Port'),(15445,508,'content_block_10_layout_title','Assets Row 10'),(15446,508,'_content_block_10_layout_title','field_5bc11ca9a0d50-s'),(15447,508,'content_block_10_text_block_columns','four'),(15448,508,'_content_block_10_text_block_columns','field_5bbe2f81a4de0'),(15449,508,'content_block_10_narrow_text_block_content','0'),(15450,508,'_content_block_10_narrow_text_block_content','field_5bbe342e08360'),(15451,508,'content_block_10_reverse_colors','0'),(15452,508,'_content_block_10_reverse_colors','field_5bbe3027a4de1'),(15453,508,'content_block_10_enable_background_image','0'),(15454,508,'_content_block_10_enable_background_image','field_5bbe30b1a4de2'),(15455,508,'content_block_10_custom_css_class','wide-content white-boxes'),(15456,508,'_content_block_10_custom_css_class','field_5bbe30b1a4de2-1'),(15457,508,'content_block_10_text_block_content_col_one','<img class=\"wp-image-1330 aligncenter\" src=\"/wp-content/uploads/2023/02/rose-of-malbec-1.png\" alt=\"Meadowcroft 2016 Rosé of Malbec\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">ROSÉ OF MALBEC | CLEMENTS HILLS</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/MC_Rose_2016_BottleShot.png\">2016</a> | <a href=\"/wp-content/uploads/2023/02/MC_ROSE_17.png\">2017</a> | <a href=\"/wp-content/uploads/2023/02/MC_ROSE_18.png\">2018</a> | <a href=\"/wp-content/uploads/2023/02/MC_Malbec_Rose_2020_BottleShot.png\">2020</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2016Rose_TECHSheet.pdf\">2016</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2017Rose_TECHSheet.pdf\">2017</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018Rose_TECHSheet.pdf\">2018</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2020Rose_TECHSheet.pdf\">2020</a></p>'),(15458,508,'_content_block_10_text_block_content_col_one','field_5bbe313b3920d'),(15459,508,'content_block_10_text_block_content_col_two','<img class=\"aligncenter wp-image-3373 size-medium\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022PinotNoirRose-83x300.jpg\" alt=\"Meadowcroft 2022 Rose of Pinot Noir\" width=\"83\" height=\"300\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">ROSÉ OF PINOT NOIR | SONOMA COAST</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: 2019 | <a href=\"/wp-content/uploads/2023/02/MC_Pinot_Rose_2020_BottleShot.png\">2020</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_2021_Rose_Sonoma-Coast_BottleShot.png\">2021 </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022PinotNoirRose-scaled.jpg\">2022</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2019RoseSC_TECHSheet.pdf\">2019</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2020RoseSC_TECHSheet.pdf\">2020</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2021_Rose_Somoma-Coast_TechSheet.pdf\">2021 </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-RosePinotNoir.pdf\">2022</a></p>'),(15460,508,'_content_block_10_text_block_content_col_two','field_5bbe31593920e'),(15461,508,'content_block_10_text_block_content_col_three','<span class=\"h6\"><img class=\"aligncenter wp-image-3374 size-medium\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022RivertraceRose-83x300.jpg\" alt=\"2022 River Trace Rose\" width=\"83\" height=\"300\" /></span>\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">RIVER TRACE ROSÉ | GSM</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/MC_GSM_Rose_2021_BottleShot-1.png\">2021  </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022RivertraceRose-scaled.jpg\">2022</a></p>\r\n<p style=\"text-align: center;\">Tech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2021RoseGSM_TECHSheet-1.pdf\">2021 </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-RiverTrace-Rose.pdf\">2022</a></p>'),(15462,508,'_content_block_10_text_block_content_col_three','field_5bbe31793920f'),(15463,508,'content_block_10_text_block_content_col_four','<img class=\"wp-image-1502 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/12/port.png\" alt=\"Meadowcroft All She Wrote Port\" width=\"150\" height=\"250\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">ALL SHE WROTE PORT</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/All-She-Wrote-Wax.png\">Non-Vintage</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/ALL-SHE-WROTE_tastingnotes_Website.pdf\">Non-Vintage</a></p>'),(15464,508,'_content_block_10_text_block_content_col_four','field_5bbe317939444'),(15465,1351,'_wp_attached_file','2022/11/NV-Let_It_Bee_Bottleshot.png'),(15466,1351,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:172;s:6:\"height\";i:421;s:4:\"file\";s:36:\"2022/11/NV-Let_It_Bee_Bottleshot.png\";s:8:\"filesize\";i:111463;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"NV-Let_It_Bee_Bottleshot-123x300.png\";s:5:\"width\";i:123;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53270;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"NV-Let_It_Bee_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34692;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15467,1351,'_wp_attachment_image_alt','Meadowcroft Let it Bee'),(15468,1352,'_wp_attached_file','2022/11/NV_Let-It-Bee-White-Port_-TechSheet.pdf'),(15469,1352,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:43:\"NV_Let-It-Bee-White-Port_-TechSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:288859;}s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"NV_Let-It-Bee-White-Port_-TechSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21969;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"NV_Let-It-Bee-White-Port_-TechSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152098;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"NV_Let-It-Bee-White-Port_-TechSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9953;}}s:8:\"filesize\";i:345247;}'),(15470,1353,'_wp_attached_file','2022/11/NV-Let_It_Bee_Bottleshot-1.png'),(15471,1353,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:172;s:6:\"height\";i:421;s:4:\"file\";s:38:\"2022/11/NV-Let_It_Bee_Bottleshot-1.png\";s:8:\"filesize\";i:111463;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"NV-Let_It_Bee_Bottleshot-1-123x300.png\";s:5:\"width\";i:123;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53270;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"NV-Let_It_Bee_Bottleshot-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34692;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15472,1353,'_wp_attachment_image_alt','Meadowcroft Let it Bee'),(15473,508,'content_block_11_layout_title','Assets Row 10'),(15474,508,'_content_block_11_layout_title','field_5bc11ca9a0d50-s'),(15475,508,'content_block_11_text_block_columns','four'),(15476,508,'_content_block_11_text_block_columns','field_5bbe2f81a4de0'),(15477,508,'content_block_11_narrow_text_block_content','0'),(15478,508,'_content_block_11_narrow_text_block_content','field_5bbe342e08360'),(15479,508,'content_block_11_reverse_colors','0'),(15480,508,'_content_block_11_reverse_colors','field_5bbe3027a4de1'),(15481,508,'content_block_11_enable_background_image','0'),(15482,508,'_content_block_11_enable_background_image','field_5bbe30b1a4de2'),(15483,508,'content_block_11_custom_css_class','wide-content white-boxes'),(15484,508,'_content_block_11_custom_css_class','field_5bbe30b1a4de2-1'),(15485,508,'content_block_11_text_block_content_col_one','<img class=\"wp-image-1501 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/12/bee.png\" alt=\"Meadowcroft Let it Bee\" width=\"150\" height=\"250\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">LET IT BEE</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/NV-Let_It_Bee_Bottleshot-1.png\">Non-Vintage</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/NV_Let-It-Bee-White-Port_-TechSheet.pdf\">Non-Vintage</a></p>'),(15486,508,'_content_block_11_text_block_content_col_one','field_5bbe313b3920d'),(15487,508,'content_block_11_text_block_content_col_two','<img class=\"wp-image-3382 size-medium aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-1-87x300.jpg\" alt=\"\" width=\"87\" height=\"300\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">BLANC DE NOIRS | NAPA VALLEY</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/NV-BlancdeNoirs-scaled.jpg\">Non-Vintage</a>\r\nTech Sheet: <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/03/NV-Blanc-de-Noir-final.pdf\">Non-Vintage</a></p>'),(15488,508,'_content_block_11_text_block_content_col_two','field_5bbe31593920e'),(15489,508,'content_block_11_text_block_content_col_three','<img class=\"wp-image-3387 size-medium aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2021-83x300.jpg\" alt=\"\" width=\"83\" height=\"300\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">STAGS LEAP DISTRICT | NAPA VALLEY CABERNET SAUVIGNON</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2019-scaled.jpg\">2019</a> | <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2020-2-scaled.jpg\">2020</a> | <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-StagsLeapCab-techsheet.pdf\">2021</a>\r\nTech Sheet: <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/TechSheet-2019-Cab-StagsLeap-Final-3.pdf\">2019</a> | <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/TechSheet-2020-Cab-StagsLeap-Final-4.pdf\">2020</a> | <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-StagsLeapCab-techsheet.pdf\">2021</a></p>'),(15490,508,'_content_block_11_text_block_content_col_three','field_5bbe31793920f'),(15491,508,'content_block_11_text_block_content_col_four','&nbsp;'),(15492,508,'_content_block_11_text_block_content_col_four','field_5bbe317939444'),(15494,1355,'_wp_attached_file','2022/11/Honeycomb-Light-Gold4-scaled.jpg'),(15495,1355,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2440;s:6:\"height\";i:2560;s:4:\"file\";s:40:\"2022/11/Honeycomb-Light-Gold4-scaled.jpg\";s:8:\"filesize\";i:393248;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Honeycomb-Light-Gold4-286x300.jpg\";s:5:\"width\";i:286;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18473;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"Honeycomb-Light-Gold4-976x1024.jpg\";s:5:\"width\";i:976;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107546;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Honeycomb-Light-Gold4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7089;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"Honeycomb-Light-Gold4-768x806.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:806;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77988;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"Honeycomb-Light-Gold4-1464x1536.jpg\";s:5:\"width\";i:1464;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193271;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"Honeycomb-Light-Gold4-1952x2048.jpg\";s:5:\"width\";i:1952;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:288524;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:35:\"Honeycomb-Light-Gold4-1200x1259.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1259;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145144;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"Honeycomb-Light-Gold4.jpg\";}'),(15707,1364,'_wp_attached_file','2022/12/AdobeStock_231441408-scaled-e1652740260293.jpeg'),(15708,1364,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:55:\"2022/12/AdobeStock_231441408-scaled-e1652740260293.jpeg\";s:8:\"filesize\";i:86104;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"AdobeStock_231441408-scaled-e1652740260293-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56712;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"AdobeStock_231441408-scaled-e1652740260293-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45811;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:55:\"AdobeStock_231441408-scaled-e1652740260293-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56712;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:55:\"AdobeStock_231441408-scaled-e1652740260293-474x324.jpeg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63770;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:55:\"AdobeStock_231441408-scaled-e1652740260293-391x260.jpeg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57357;}s:8:\"tileview\";a:5:{s:4:\"file\";s:55:\"AdobeStock_231441408-scaled-e1652740260293-300x400.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60161;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:32:\"Denys Kurbatov - stock.adobe.com\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:52:\"Closeup photo of busker plaing guitar on city street\";s:17:\"created_timestamp\";s:10:\"1531081376\";s:9:\"copyright\";s:34:\"©Denys Kurbatov - stock.adobe.com\";s:12:\"focal_length\";s:3:\"145\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:24:\"Busker playing on guitar\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:96:{i:0;s:8:\"acoustic\";i:1;s:3:\"art\";i:2;s:8:\"artistic\";i:3;s:8:\"audience\";i:4;s:4:\"band\";i:5;s:4:\"bard\";i:6;s:6:\"busker\";i:7;s:6:\"center\";i:8;s:4:\"city\";i:9;s:7:\"closeup\";i:10;s:7:\"concert\";i:11;s:5:\"crowd\";i:12;s:7:\"culture\";i:13;s:13:\"entertainment\";i:14;s:8:\"festival\";i:15;s:3:\"fun\";i:16;s:6:\"guitar\";i:17;s:9:\"guitarist\";i:18;s:10:\"instrument\";i:19;s:3:\"joy\";i:20;s:7:\"leisure\";i:21;s:9:\"lifestyle\";i:22;s:9:\"listening\";i:23;s:4:\"live\";i:24;s:4:\"male\";i:25;s:3:\"man\";i:26;s:12:\"melody money\";i:27;s:11:\"moneymaking\";i:28;s:5:\"music\";i:29;s:7:\"musical\";i:30;s:8:\"musician\";i:31;s:7:\"outdoor\";i:32;s:7:\"outside\";i:33;s:6:\"people\";i:34;s:11:\"performance\";i:35;s:9:\"performer\";i:36;s:4:\"play\";i:37;s:6:\"player\";i:38;s:6:\"public\";i:39;s:4:\"show\";i:40;s:4:\"sing\";i:41;s:4:\"song\";i:42;s:5:\"sound\";i:43;s:6:\"street\";i:44;s:6:\"talent\";i:45;s:4:\"town\";i:46;s:7:\"ukraine\";i:47;s:5:\"urban\";i:48;s:8:\"acoustic\";i:49;s:3:\"art\";i:50;s:8:\"artistic\";i:51;s:8:\"audience\";i:52;s:4:\"band\";i:53;s:4:\"bard\";i:54;s:6:\"busker\";i:55;s:6:\"center\";i:56;s:4:\"city\";i:57;s:7:\"closeup\";i:58;s:7:\"concert\";i:59;s:5:\"crowd\";i:60;s:7:\"culture\";i:61;s:13:\"entertainment\";i:62;s:8:\"festival\";i:63;s:3:\"fun\";i:64;s:6:\"guitar\";i:65;s:9:\"guitarist\";i:66;s:10:\"instrument\";i:67;s:3:\"joy\";i:68;s:7:\"leisure\";i:69;s:9:\"lifestyle\";i:70;s:9:\"listening\";i:71;s:4:\"live\";i:72;s:4:\"male\";i:73;s:3:\"man\";i:74;s:12:\"melody money\";i:75;s:11:\"moneymaking\";i:76;s:5:\"music\";i:77;s:7:\"musical\";i:78;s:8:\"musician\";i:79;s:7:\"outdoor\";i:80;s:7:\"outside\";i:81;s:6:\"people\";i:82;s:11:\"performance\";i:83;s:9:\"performer\";i:84;s:4:\"play\";i:85;s:6:\"player\";i:86;s:6:\"public\";i:87;s:4:\"show\";i:88;s:4:\"sing\";i:89;s:4:\"song\";i:90;s:5:\"sound\";i:91;s:6:\"street\";i:92;s:6:\"talent\";i:93;s:4:\"town\";i:94;s:7:\"ukraine\";i:95;s:5:\"urban\";}}}'),(15807,1368,'_wp_attached_file','2022/12/Untitled-design-5.png'),(15808,1368,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:602;s:6:\"height\";i:300;s:4:\"file\";s:29:\"2022/12/Untitled-design-5.png\";s:8:\"filesize\";i:284737;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Untitled-design-5-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80229;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Untitled-design-5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44257;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:29:\"Untitled-design-5-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:156482;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:29:\"Untitled-design-5-474x300.png\";s:5:\"width\";i:474;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:226786;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:29:\"Untitled-design-5-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:160839;}s:8:\"tileview\";a:5:{s:4:\"file\";s:29:\"Untitled-design-5-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:156482;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15857,1370,'_wp_attached_file','2022/12/Sunset-Gardens-3-e1643922567679.jpg'),(15858,1370,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:334;s:4:\"file\";s:43:\"2022/12/Sunset-Gardens-3-e1643922567679.jpg\";s:8:\"filesize\";i:46280;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"Sunset-Gardens-3-e1643922567679-300x251.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25616;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Sunset-Gardens-3-e1643922567679-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9317;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:43:\"Sunset-Gardens-3-e1643922567679-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29213;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:43:\"Sunset-Gardens-3-e1643922567679-400x324.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46239;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:43:\"Sunset-Gardens-3-e1643922567679-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33995;}s:8:\"tileview\";a:5:{s:4:\"file\";s:43:\"Sunset-Gardens-3-e1643922567679-300x334.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35959;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15907,1372,'_wp_attached_file','2022/12/ClubSurvey_2018_BeginImage.png'),(15908,1372,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:250;s:4:\"file\";s:38:\"2022/12/ClubSurvey_2018_BeginImage.png\";s:8:\"filesize\";i:281525;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"ClubSurvey_2018_BeginImage-300x125.png\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69265;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"ClubSurvey_2018_BeginImage-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38150;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:38:\"ClubSurvey_2018_BeginImage-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:121721;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:38:\"ClubSurvey_2018_BeginImage-474x250.png\";s:5:\"width\";i:474;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:209807;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:38:\"ClubSurvey_2018_BeginImage-391x250.png\";s:5:\"width\";i:391;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:162606;}s:8:\"tileview\";a:5:{s:4:\"file\";s:38:\"ClubSurvey_2018_BeginImage-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:121721;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(16157,1382,'_wp_attached_file','2022/12/BRP-37-scaled.jpg'),(16158,1382,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2022/12/BRP-37-scaled.jpg\";s:8:\"filesize\";i:477132;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"BRP-37-scaled-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42069;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"BRP-37-scaled-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120601;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"BRP-37-scaled-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34317;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"BRP-37-scaled-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87336;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:25:\"BRP-37-scaled-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47827;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:25:\"BRP-37-scaled-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57495;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:25:\"BRP-37-scaled-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49475;}s:8:\"tileview\";a:5:{s:4:\"file\";s:25:\"BRP-37-scaled-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53062;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"BRP-37-scaled-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:205146;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:27:\"BRP-37-scaled-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:318593;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:26:\"BRP-37-scaled-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146202;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1490393682\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"26\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(16207,1384,'_wp_attached_file','2022/12/IMG_7734-scaled.jpg'),(16208,1384,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1784;s:4:\"file\";s:27:\"2022/12/IMG_7734-scaled.jpg\";s:8:\"filesize\";i:840080;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"IMG_7734-scaled-300x209.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22668;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"IMG_7734-scaled-1024x714.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:714;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175398;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"IMG_7734-scaled-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11172;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"IMG_7734-scaled-768x535.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:535;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107201;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:27:\"IMG_7734-scaled-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30050;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:27:\"IMG_7734-scaled-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46905;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:27:\"IMG_7734-scaled-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33445;}s:8:\"tileview\";a:5:{s:4:\"file\";s:27:\"IMG_7734-scaled-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37024;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"IMG_7734-scaled-1536x1070.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1070;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:347761;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"IMG_7734-scaled-2048x1427.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1427;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:552452;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:28:\"IMG_7734-scaled-1200x836.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:836;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:230147;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:17:\"iPhone 11 Pro Max\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1606060624\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"6\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:16:\"0.00699300699301\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(16257,1386,'_wp_attached_file','2022/12/IMG_0031_1.png'),(16258,1386,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:449;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2022/12/IMG_0031_1.png\";s:8:\"filesize\";i:245294;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"IMG_0031_1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107138;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"IMG_0031_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43989;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:22:\"IMG_0031_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:170121;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:22:\"IMG_0031_1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:172482;}s:8:\"tileview\";a:5:{s:4:\"file\";s:22:\"IMG_0031_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:170121;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(16307,1388,'_wp_attached_file','2022/12/B1CFC460-86A1-46F7-9872-84E6343E2F53_1_105_c.jpeg'),(16308,1388,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:768;s:6:\"height\";i:1024;s:4:\"file\";s:57:\"2022/12/B1CFC460-86A1-46F7-9872-84E6343E2F53_1_105_c.jpeg\";s:8:\"filesize\";i:251618;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"B1CFC460-86A1-46F7-9872-84E6343E2F53_1_105_c-225x300.jpeg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20122;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"B1CFC460-86A1-46F7-9872-84E6343E2F53_1_105_c-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9209;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:57:\"B1CFC460-86A1-46F7-9872-84E6343E2F53_1_105_c-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21398;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:57:\"B1CFC460-86A1-46F7-9872-84E6343E2F53_1_105_c-474x324.jpeg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25868;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:57:\"B1CFC460-86A1-46F7-9872-84E6343E2F53_1_105_c-391x260.jpeg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19402;}s:8:\"tileview\";a:5:{s:4:\"file\";s:57:\"B1CFC460-86A1-46F7-9872-84E6343E2F53_1_105_c-300x400.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29903;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 11\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1622815525\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(16357,1390,'_wp_attached_file','2022/12/7.2021_Image1Productpng.png'),(16358,1390,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:35:\"2022/12/7.2021_Image1Productpng.png\";s:8:\"filesize\";i:183694;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"7.2021_Image1Productpng-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:183229;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"7.2021_Image1Productpng-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50415;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:35:\"7.2021_Image1Productpng-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:183229;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:35:\"7.2021_Image1Productpng-300x260.png\";s:5:\"width\";i:300;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:164784;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(16407,1392,'_wp_attached_file','2022/12/AdobeStock_218452539-scaled.jpeg'),(16408,1392,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:40:\"2022/12/AdobeStock_218452539-scaled.jpeg\";s:8:\"filesize\";i:431525;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"AdobeStock_218452539-scaled-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40516;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"AdobeStock_218452539-scaled-1024x683.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119438;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"AdobeStock_218452539-scaled-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32263;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"AdobeStock_218452539-scaled-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85580;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:40:\"AdobeStock_218452539-scaled-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43004;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:40:\"AdobeStock_218452539-scaled-474x324.jpeg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55542;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:40:\"AdobeStock_218452539-scaled-391x260.jpeg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47587;}s:8:\"tileview\";a:5:{s:4:\"file\";s:40:\"AdobeStock_218452539-scaled-300x400.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43405;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:42:\"AdobeStock_218452539-scaled-1536x1024.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:202650;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:42:\"AdobeStock_218452539-scaled-2048x1366.jpeg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:303281;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:41:\"AdobeStock_218452539-scaled-1200x800.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145574;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:29:\"Jonas Nunes - stock.adobe.com\";s:6:\"camera\";s:19:\"Canon EOS REBEL T5i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1518336212\";s:9:\"copyright\";s:31:\"©Jonas Nunes - stock.adobe.com\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:17:\"maratona do vinho\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:23:{i:0;s:8:\"parreira\";i:1;s:5:\"fruta\";i:2;s:5:\"cipó\";i:3;s:7:\"vinhedo\";i:4;s:5:\"vinho\";i:5;s:8:\"alimento\";i:6;s:18:\"aglomerado estelar\";i:7;s:5:\"verde\";i:8;s:8:\"vermelho\";i:9;s:7:\"outonal\";i:10;s:6:\"madura\";i:11;s:5:\"folha\";i:12;s:6:\"colher\";i:13;s:8:\"natureza\";i:14;s:6:\"bodega\";i:15;s:6:\"planta\";i:16;s:7:\"videira\";i:17;s:4:\"azul\";i:18;s:5:\"galho\";i:19;s:4:\"baga\";i:20;s:6:\"verão\";i:21;s:6:\"fresco\";i:22;s:7:\"crescer\";}}}'),(16457,1394,'_wp_attached_file','2022/12/07.welcome_members-e1641411112326.png'),(16458,1394,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:433;s:4:\"file\";s:45:\"2022/12/07.welcome_members-e1641411112326.png\";s:8:\"filesize\";i:564361;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"07.welcome_members-e1641411112326-300x162.png\";s:5:\"width\";i:300;s:6:\"height\";i:162;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89519;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"07.welcome_members-e1641411112326-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39515;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"07.welcome_members-e1641411112326-768x416.png\";s:5:\"width\";i:768;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:490744;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:45:\"07.welcome_members-e1641411112326-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:138712;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:45:\"07.welcome_members-e1641411112326-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:238812;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:45:\"07.welcome_members-e1641411112326-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:166324;}s:8:\"tileview\";a:5:{s:4:\"file\";s:45:\"07.welcome_members-e1641411112326-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:162880;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(16507,1396,'_wp_attached_file','2022/12/AdobeStock_231441408-scaled-e1652740260293.jpeg'),(16508,1396,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:55:\"2022/12/AdobeStock_231441408-scaled-e1652740260293.jpeg\";s:8:\"filesize\";i:86104;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"AdobeStock_231441408-scaled-e1652740260293-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56712;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"AdobeStock_231441408-scaled-e1652740260293-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45811;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:55:\"AdobeStock_231441408-scaled-e1652740260293-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56712;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:55:\"AdobeStock_231441408-scaled-e1652740260293-474x324.jpeg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63770;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:55:\"AdobeStock_231441408-scaled-e1652740260293-391x260.jpeg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57357;}s:8:\"tileview\";a:5:{s:4:\"file\";s:55:\"AdobeStock_231441408-scaled-e1652740260293-300x400.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60161;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:32:\"Denys Kurbatov - stock.adobe.com\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:52:\"Closeup photo of busker plaing guitar on city street\";s:17:\"created_timestamp\";s:10:\"1531081376\";s:9:\"copyright\";s:34:\"©Denys Kurbatov - stock.adobe.com\";s:12:\"focal_length\";s:3:\"145\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:24:\"Busker playing on guitar\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:96:{i:0;s:8:\"acoustic\";i:1;s:3:\"art\";i:2;s:8:\"artistic\";i:3;s:8:\"audience\";i:4;s:4:\"band\";i:5;s:4:\"bard\";i:6;s:6:\"busker\";i:7;s:6:\"center\";i:8;s:4:\"city\";i:9;s:7:\"closeup\";i:10;s:7:\"concert\";i:11;s:5:\"crowd\";i:12;s:7:\"culture\";i:13;s:13:\"entertainment\";i:14;s:8:\"festival\";i:15;s:3:\"fun\";i:16;s:6:\"guitar\";i:17;s:9:\"guitarist\";i:18;s:10:\"instrument\";i:19;s:3:\"joy\";i:20;s:7:\"leisure\";i:21;s:9:\"lifestyle\";i:22;s:9:\"listening\";i:23;s:4:\"live\";i:24;s:4:\"male\";i:25;s:3:\"man\";i:26;s:12:\"melody money\";i:27;s:11:\"moneymaking\";i:28;s:5:\"music\";i:29;s:7:\"musical\";i:30;s:8:\"musician\";i:31;s:7:\"outdoor\";i:32;s:7:\"outside\";i:33;s:6:\"people\";i:34;s:11:\"performance\";i:35;s:9:\"performer\";i:36;s:4:\"play\";i:37;s:6:\"player\";i:38;s:6:\"public\";i:39;s:4:\"show\";i:40;s:4:\"sing\";i:41;s:4:\"song\";i:42;s:5:\"sound\";i:43;s:6:\"street\";i:44;s:6:\"talent\";i:45;s:4:\"town\";i:46;s:7:\"ukraine\";i:47;s:5:\"urban\";i:48;s:8:\"acoustic\";i:49;s:3:\"art\";i:50;s:8:\"artistic\";i:51;s:8:\"audience\";i:52;s:4:\"band\";i:53;s:4:\"bard\";i:54;s:6:\"busker\";i:55;s:6:\"center\";i:56;s:4:\"city\";i:57;s:7:\"closeup\";i:58;s:7:\"concert\";i:59;s:5:\"crowd\";i:60;s:7:\"culture\";i:61;s:13:\"entertainment\";i:62;s:8:\"festival\";i:63;s:3:\"fun\";i:64;s:6:\"guitar\";i:65;s:9:\"guitarist\";i:66;s:10:\"instrument\";i:67;s:3:\"joy\";i:68;s:7:\"leisure\";i:69;s:9:\"lifestyle\";i:70;s:9:\"listening\";i:71;s:4:\"live\";i:72;s:4:\"male\";i:73;s:3:\"man\";i:74;s:12:\"melody money\";i:75;s:11:\"moneymaking\";i:76;s:5:\"music\";i:77;s:7:\"musical\";i:78;s:8:\"musician\";i:79;s:7:\"outdoor\";i:80;s:7:\"outside\";i:81;s:6:\"people\";i:82;s:11:\"performance\";i:83;s:9:\"performer\";i:84;s:4:\"play\";i:85;s:6:\"player\";i:86;s:6:\"public\";i:87;s:4:\"show\";i:88;s:4:\"sing\";i:89;s:4:\"song\";i:90;s:5:\"sound\";i:91;s:6:\"street\";i:92;s:6:\"talent\";i:93;s:4:\"town\";i:94;s:7:\"ukraine\";i:95;s:5:\"urban\";}}}'),(16557,1398,'_wp_attached_file','2022/12/BlindTasting_Whitney-1.png'),(16558,1398,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:34:\"2022/12/BlindTasting_Whitney-1.png\";s:8:\"filesize\";i:424759;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"BlindTasting_Whitney-1-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:103397;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"BlindTasting_Whitney-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37361;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:34:\"BlindTasting_Whitney-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133155;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:34:\"BlindTasting_Whitney-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:227686;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:34:\"BlindTasting_Whitney-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:155287;}s:8:\"tileview\";a:5:{s:4:\"file\";s:34:\"BlindTasting_Whitney-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:174545;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(16607,1400,'_wp_attached_file','2022/12/12.2018_IG_countdown_santahat-e1626905973755.png'),(16608,1400,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:386;s:6:\"height\";i:400;s:4:\"file\";s:56:\"2022/12/12.2018_IG_countdown_santahat-e1626905973755.png\";s:8:\"filesize\";i:277605;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"12.2018_IG_countdown_santahat-e1626905973755-290x300.png\";s:5:\"width\";i:290;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:155337;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"12.2018_IG_countdown_santahat-e1626905973755-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46433;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:56:\"12.2018_IG_countdown_santahat-e1626905973755-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:160097;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:56:\"12.2018_IG_countdown_santahat-e1626905973755-386x324.png\";s:5:\"width\";i:386;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:227019;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:56:\"12.2018_IG_countdown_santahat-e1626905973755-386x260.png\";s:5:\"width\";i:386;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:182580;}s:8:\"tileview\";a:5:{s:4:\"file\";s:56:\"12.2018_IG_countdown_santahat-e1626905973755-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:217431;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(16657,1402,'_wp_attached_file','2022/12/Tom-Meadowcroft-e1616187077480.jpg'),(16658,1402,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:264;s:4:\"file\";s:42:\"2022/12/Tom-Meadowcroft-e1616187077480.jpg\";s:8:\"filesize\";i:24313;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Tom-Meadowcroft-e1616187077480-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9259;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:42:\"Tom-Meadowcroft-e1616187077480-300x260.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24312;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(16707,1404,'_wp_attached_file','2022/12/AdobeStock_400633292-1.png'),(16708,1404,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:333;s:4:\"file\";s:34:\"2022/12/AdobeStock_400633292-1.png\";s:8:\"filesize\";i:222712;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"AdobeStock_400633292-1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85408;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"AdobeStock_400633292-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35498;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:34:\"AdobeStock_400633292-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:114378;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:34:\"AdobeStock_400633292-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:187459;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:34:\"AdobeStock_400633292-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133307;}s:8:\"tileview\";a:5:{s:4:\"file\";s:34:\"AdobeStock_400633292-1-300x333.png\";s:5:\"width\";i:300;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:130702;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(16757,1406,'_wp_attached_file','2022/12/IMG_0031_1.png'),(16758,1406,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:449;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2022/12/IMG_0031_1.png\";s:8:\"filesize\";i:245294;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"IMG_0031_1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107138;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"IMG_0031_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43989;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:22:\"IMG_0031_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:170121;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:22:\"IMG_0031_1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:172482;}s:8:\"tileview\";a:5:{s:4:\"file\";s:22:\"IMG_0031_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:170121;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(16807,1408,'_wp_attached_file','2022/12/Tom-Meadowcroft-Grapes2.jpg'),(16808,1408,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:35:\"2022/12/Tom-Meadowcroft-Grapes2.jpg\";s:8:\"filesize\";i:319029;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Tom-Meadowcroft-Grapes2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23107;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"Tom-Meadowcroft-Grapes2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141992;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Tom-Meadowcroft-Grapes2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12071;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"Tom-Meadowcroft-Grapes2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90717;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:35:\"Tom-Meadowcroft-Grapes2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29030;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:35:\"Tom-Meadowcroft-Grapes2-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44886;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:35:\"Tom-Meadowcroft-Grapes2-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33380;}s:8:\"tileview\";a:5:{s:4:\"file\";s:35:\"Tom-Meadowcroft-Grapes2-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33898;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"Tom-Meadowcroft-Grapes2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:264025;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:36:\"Tom-Meadowcroft-Grapes2-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:181504;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(16857,1410,'_wp_attached_file','2022/12/03.2018_GirlScoutCookiePairing.png'),(16858,1410,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:42:\"2022/12/03.2018_GirlScoutCookiePairing.png\";s:8:\"filesize\";i:584234;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"03.2018_GirlScoutCookiePairing-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:199217;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"03.2018_GirlScoutCookiePairing-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51044;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:42:\"03.2018_GirlScoutCookiePairing-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:199217;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:42:\"03.2018_GirlScoutCookiePairing-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:348015;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:42:\"03.2018_GirlScoutCookiePairing-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:234506;}s:8:\"tileview\";a:5:{s:4:\"file\";s:42:\"03.2018_GirlScoutCookiePairing-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:263165;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(16907,1412,'_wp_attached_file','2022/12/01.2020_blendingevening_300x250.png'),(16908,1412,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:250;s:4:\"file\";s:43:\"2022/12/01.2020_blendingevening_300x250.png\";s:8:\"filesize\";i:190272;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"01.2020_blendingevening_300x250-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58974;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(16957,1414,'_wp_attached_file','2022/12/09.2019_MagnumParty.png'),(16958,1414,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:31:\"2022/12/09.2019_MagnumParty.png\";s:8:\"filesize\";i:138362;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"09.2019_MagnumParty-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:153026;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"09.2019_MagnumParty-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41984;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:31:\"09.2019_MagnumParty-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:153026;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:31:\"09.2019_MagnumParty-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:253120;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:31:\"09.2019_MagnumParty-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:174124;}s:8:\"tileview\";a:5:{s:4:\"file\";s:31:\"09.2019_MagnumParty-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:200121;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(17007,1416,'_wp_attached_file','2022/12/09.2019_MagnumParty.png'),(17008,1416,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:31:\"2022/12/09.2019_MagnumParty.png\";s:8:\"filesize\";i:138362;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"09.2019_MagnumParty-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:153026;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"09.2019_MagnumParty-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41984;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:31:\"09.2019_MagnumParty-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:153026;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:31:\"09.2019_MagnumParty-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:253120;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:31:\"09.2019_MagnumParty-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:174124;}s:8:\"tileview\";a:5:{s:4:\"file\";s:31:\"09.2019_MagnumParty-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:200121;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(17292,1423,'_wp_attached_file','2022/12/Meadowcroft_BeeTeam.png'),(17293,1423,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:31:\"2022/12/Meadowcroft_BeeTeam.png\";s:8:\"filesize\";i:750802;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Meadowcroft_BeeTeam-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:180356;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Meadowcroft_BeeTeam-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49234;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:31:\"Meadowcroft_BeeTeam-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:180356;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:31:\"Meadowcroft_BeeTeam-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:300897;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:31:\"Meadowcroft_BeeTeam-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:203826;}s:8:\"tileview\";a:5:{s:4:\"file\";s:31:\"Meadowcroft_BeeTeam-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:231118;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(17342,1425,'_wp_attached_file','2022/12/Tom-Meadowcroft-Grapes2.jpg'),(17343,1425,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:35:\"2022/12/Tom-Meadowcroft-Grapes2.jpg\";s:8:\"filesize\";i:319029;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Tom-Meadowcroft-Grapes2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23107;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"Tom-Meadowcroft-Grapes2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141992;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Tom-Meadowcroft-Grapes2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12071;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"Tom-Meadowcroft-Grapes2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90717;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:35:\"Tom-Meadowcroft-Grapes2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29030;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:35:\"Tom-Meadowcroft-Grapes2-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44886;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:35:\"Tom-Meadowcroft-Grapes2-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33380;}s:8:\"tileview\";a:5:{s:4:\"file\";s:35:\"Tom-Meadowcroft-Grapes2-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33898;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"Tom-Meadowcroft-Grapes2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:264025;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:36:\"Tom-Meadowcroft-Grapes2-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:181504;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(17580,1431,'_wp_attached_file','2022/12/05.rose_2.png'),(17581,1431,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1002;s:4:\"file\";s:21:\"2022/12/05.rose_2.png\";s:8:\"filesize\";i:2083622;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"05.rose_2-300x251.png\";s:5:\"width\";i:300;s:6:\"height\";i:251;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:171814;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"05.rose_2-1024x855.png\";s:5:\"width\";i:1024;s:6:\"height\";i:855;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1456933;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"05.rose_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57490;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"05.rose_2-768x641.png\";s:5:\"width\";i:768;s:6:\"height\";i:641;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:884568;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:21:\"05.rose_2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:196045;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:21:\"05.rose_2-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:322434;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:21:\"05.rose_2-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:224537;}s:8:\"tileview\";a:5:{s:4:\"file\";s:21:\"05.rose_2-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:240711;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(17724,1436,'_wp_attached_file','2022/12/01.2017_veederlibrarytasting.png'),(17725,1436,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:40:\"2022/12/01.2017_veederlibrarytasting.png\";s:8:\"filesize\";i:585174;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"01.2017_veederlibrarytasting-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:215909;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"01.2017_veederlibrarytasting-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58201;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:40:\"01.2017_veederlibrarytasting-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:215909;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:40:\"01.2017_veederlibrarytasting-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:335249;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:40:\"01.2017_veederlibrarytasting-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:230453;}s:8:\"tileview\";a:5:{s:4:\"file\";s:40:\"01.2017_veederlibrarytasting-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:268309;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(17774,1438,'_wp_attached_file','2022/12/03.2018_GirlScoutCookiePairing.png'),(17775,1438,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:42:\"2022/12/03.2018_GirlScoutCookiePairing.png\";s:8:\"filesize\";i:584234;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"03.2018_GirlScoutCookiePairing-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:199217;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"03.2018_GirlScoutCookiePairing-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51044;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:42:\"03.2018_GirlScoutCookiePairing-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:199217;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:42:\"03.2018_GirlScoutCookiePairing-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:348015;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:42:\"03.2018_GirlScoutCookiePairing-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:234506;}s:8:\"tileview\";a:5:{s:4:\"file\";s:42:\"03.2018_GirlScoutCookiePairing-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:263165;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(17871,1441,'_wp_attached_file','2022/12/02.2018_ClubPickUpFeb_MEcalendar.png'),(17872,1441,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:44:\"2022/12/02.2018_ClubPickUpFeb_MEcalendar.png\";s:8:\"filesize\";i:497078;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"02.2018_ClubPickUpFeb_MEcalendar-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:175599;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"02.2018_ClubPickUpFeb_MEcalendar-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48467;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:44:\"02.2018_ClubPickUpFeb_MEcalendar-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:175599;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:44:\"02.2018_ClubPickUpFeb_MEcalendar-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:283663;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:44:\"02.2018_ClubPickUpFeb_MEcalendar-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:194363;}s:8:\"tileview\";a:5:{s:4:\"file\";s:44:\"02.2018_ClubPickUpFeb_MEcalendar-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:231380;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(17921,1443,'_wp_attached_file','2022/12/01.2017_veederlibrarytasting.png'),(17922,1443,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:40:\"2022/12/01.2017_veederlibrarytasting.png\";s:8:\"filesize\";i:585174;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"01.2017_veederlibrarytasting-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:215909;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"01.2017_veederlibrarytasting-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58201;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:40:\"01.2017_veederlibrarytasting-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:215909;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:40:\"01.2017_veederlibrarytasting-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:335249;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:40:\"01.2017_veederlibrarytasting-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:230453;}s:8:\"tileview\";a:5:{s:4:\"file\";s:40:\"01.2017_veederlibrarytasting-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:268309;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(18018,1446,'_wp_attached_file','2022/12/Meadowcroft_BeeTeam.png'),(18019,1446,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:31:\"2022/12/Meadowcroft_BeeTeam.png\";s:8:\"filesize\";i:750802;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Meadowcroft_BeeTeam-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:180356;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Meadowcroft_BeeTeam-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49234;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:31:\"Meadowcroft_BeeTeam-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:180356;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:31:\"Meadowcroft_BeeTeam-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:300897;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:31:\"Meadowcroft_BeeTeam-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:203826;}s:8:\"tileview\";a:5:{s:4:\"file\";s:31:\"Meadowcroft_BeeTeam-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:231118;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(18209,1451,'_wp_attached_file','2022/12/11.2017_HolidayWineCocktail.png'),(18210,1451,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:39:\"2022/12/11.2017_HolidayWineCocktail.png\";s:8:\"filesize\";i:538799;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"11.2017_HolidayWineCocktail-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:193334;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"11.2017_HolidayWineCocktail-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51729;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:39:\"11.2017_HolidayWineCocktail-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:193334;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:39:\"11.2017_HolidayWineCocktail-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:298762;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:39:\"11.2017_HolidayWineCocktail-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:204227;}s:8:\"tileview\";a:5:{s:4:\"file\";s:39:\"11.2017_HolidayWineCocktail-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:240734;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(18259,1453,'_wp_attached_file','2022/12/Tom-Meadowcroft-Grapes2.jpg'),(18260,1453,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:35:\"2022/12/Tom-Meadowcroft-Grapes2.jpg\";s:8:\"filesize\";i:319029;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Tom-Meadowcroft-Grapes2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23107;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"Tom-Meadowcroft-Grapes2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141992;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Tom-Meadowcroft-Grapes2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12071;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"Tom-Meadowcroft-Grapes2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90717;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:35:\"Tom-Meadowcroft-Grapes2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29030;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:35:\"Tom-Meadowcroft-Grapes2-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44886;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:35:\"Tom-Meadowcroft-Grapes2-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33380;}s:8:\"tileview\";a:5:{s:4:\"file\";s:35:\"Tom-Meadowcroft-Grapes2-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33898;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"Tom-Meadowcroft-Grapes2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:264025;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:36:\"Tom-Meadowcroft-Grapes2-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:181504;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(18309,1455,'_wp_attached_file','2022/12/600x450_meadowcroft_fathersday_2018.png'),(18310,1455,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:47:\"2022/12/600x450_meadowcroft_fathersday_2018.png\";s:8:\"filesize\";i:546418;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"600x450_meadowcroft_fathersday_2018-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:129347;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"600x450_meadowcroft_fathersday_2018-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42675;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:47:\"600x450_meadowcroft_fathersday_2018-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:167132;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:47:\"600x450_meadowcroft_fathersday_2018-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:303903;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:47:\"600x450_meadowcroft_fathersday_2018-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:204791;}s:8:\"tileview\";a:5:{s:4:\"file\";s:47:\"600x450_meadowcroft_fathersday_2018-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:219497;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(18359,1457,'_wp_attached_file','2022/12/600x450_meadowcroft_motherday_v1.png'),(18360,1457,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:44:\"2022/12/600x450_meadowcroft_motherday_v1.png\";s:8:\"filesize\";i:558448;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"600x450_meadowcroft_motherday_v1-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139659;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"600x450_meadowcroft_motherday_v1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48469;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:44:\"600x450_meadowcroft_motherday_v1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:176251;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:44:\"600x450_meadowcroft_motherday_v1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:308897;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:44:\"600x450_meadowcroft_motherday_v1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:213355;}s:8:\"tileview\";a:5:{s:4:\"file\";s:44:\"600x450_meadowcroft_motherday_v1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:222927;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(18409,1459,'_wp_attached_file','2022/12/06.barn_v1.png'),(18410,1459,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:650;s:4:\"file\";s:22:\"2022/12/06.barn_v1.png\";s:8:\"filesize\";i:1297885;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"06.barn_v1-300x163.png\";s:5:\"width\";i:300;s:6:\"height\";i:163;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90956;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"06.barn_v1-1024x555.png\";s:5:\"width\";i:1024;s:6:\"height\";i:555;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:912412;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"06.barn_v1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44893;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"06.barn_v1-768x416.png\";s:5:\"width\";i:768;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:532934;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:22:\"06.barn_v1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:164910;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:22:\"06.barn_v1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:269497;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:22:\"06.barn_v1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:181009;}s:8:\"tileview\";a:5:{s:4:\"file\";s:22:\"06.barn_v1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:215518;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(18459,1461,'_wp_attached_file','2022/12/05.rose_2.png'),(18460,1461,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1002;s:4:\"file\";s:21:\"2022/12/05.rose_2.png\";s:8:\"filesize\";i:2083622;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"05.rose_2-300x251.png\";s:5:\"width\";i:300;s:6:\"height\";i:251;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:171814;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"05.rose_2-1024x855.png\";s:5:\"width\";i:1024;s:6:\"height\";i:855;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1456933;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"05.rose_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57490;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"05.rose_2-768x641.png\";s:5:\"width\";i:768;s:6:\"height\";i:641;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:884568;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:21:\"05.rose_2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:196045;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:21:\"05.rose_2-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:322434;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:21:\"05.rose_2-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:224537;}s:8:\"tileview\";a:5:{s:4:\"file\";s:21:\"05.rose_2-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:240711;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(18509,1463,'_wp_attached_file','2022/12/06.2017_FathersDay.png'),(18510,1463,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:30:\"2022/12/06.2017_FathersDay.png\";s:8:\"filesize\";i:591355;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"06.2017_FathersDay-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:206233;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"06.2017_FathersDay-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54328;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:30:\"06.2017_FathersDay-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:206233;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:30:\"06.2017_FathersDay-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:332223;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:30:\"06.2017_FathersDay-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:226158;}s:8:\"tileview\";a:5:{s:4:\"file\";s:30:\"06.2017_FathersDay-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:262014;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(18559,1465,'_wp_attached_file','2022/12/02.2018_Caverna57_tasting.png'),(18560,1465,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:37:\"2022/12/02.2018_Caverna57_tasting.png\";s:8:\"filesize\";i:615572;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"02.2018_Caverna57_tasting-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:212008;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"02.2018_Caverna57_tasting-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52352;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:37:\"02.2018_Caverna57_tasting-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:212008;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:37:\"02.2018_Caverna57_tasting-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:364246;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:37:\"02.2018_Caverna57_tasting-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:248144;}s:8:\"tileview\";a:5:{s:4:\"file\";s:37:\"02.2018_Caverna57_tasting-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:276324;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(18609,1467,'_wp_attached_file','2022/12/02.2018_BlancdeBlancsReleaseParty.png'),(18610,1467,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:45:\"2022/12/02.2018_BlancdeBlancsReleaseParty.png\";s:8:\"filesize\";i:555064;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"02.2018_BlancdeBlancsReleaseParty-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:203872;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"02.2018_BlancdeBlancsReleaseParty-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56543;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:45:\"02.2018_BlancdeBlancsReleaseParty-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:203872;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:45:\"02.2018_BlancdeBlancsReleaseParty-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:323039;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:45:\"02.2018_BlancdeBlancsReleaseParty-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:221478;}s:8:\"tileview\";a:5:{s:4:\"file\";s:45:\"02.2018_BlancdeBlancsReleaseParty-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:273267;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(18659,1469,'_wp_attached_file','2022/12/03.2018_GirlScoutCookiePairing.png'),(18660,1469,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:42:\"2022/12/03.2018_GirlScoutCookiePairing.png\";s:8:\"filesize\";i:584234;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"03.2018_GirlScoutCookiePairing-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:199217;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"03.2018_GirlScoutCookiePairing-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51044;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:42:\"03.2018_GirlScoutCookiePairing-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:199217;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:42:\"03.2018_GirlScoutCookiePairing-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:348015;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:42:\"03.2018_GirlScoutCookiePairing-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:234506;}s:8:\"tileview\";a:5:{s:4:\"file\";s:42:\"03.2018_GirlScoutCookiePairing-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:263165;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(18709,1471,'_wp_attached_file','2022/12/01.2017_veederlibrarytasting.png'),(18710,1471,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:40:\"2022/12/01.2017_veederlibrarytasting.png\";s:8:\"filesize\";i:585174;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"01.2017_veederlibrarytasting-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:215909;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"01.2017_veederlibrarytasting-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58201;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:40:\"01.2017_veederlibrarytasting-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:215909;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:40:\"01.2017_veederlibrarytasting-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:335249;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:40:\"01.2017_veederlibrarytasting-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:230453;}s:8:\"tileview\";a:5:{s:4:\"file\";s:40:\"01.2017_veederlibrarytasting-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:268309;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(18759,1473,'_wp_attached_file','2022/12/02.2018_ClubPickUpFeb_MEcalendar.png'),(18760,1473,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:44:\"2022/12/02.2018_ClubPickUpFeb_MEcalendar.png\";s:8:\"filesize\";i:497078;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"02.2018_ClubPickUpFeb_MEcalendar-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:175599;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"02.2018_ClubPickUpFeb_MEcalendar-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48467;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:44:\"02.2018_ClubPickUpFeb_MEcalendar-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:175599;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:44:\"02.2018_ClubPickUpFeb_MEcalendar-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:283663;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:44:\"02.2018_ClubPickUpFeb_MEcalendar-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:194363;}s:8:\"tileview\";a:5:{s:4:\"file\";s:44:\"02.2018_ClubPickUpFeb_MEcalendar-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:231380;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(18856,1476,'_wp_attached_file','2022/12/11.2017_HolidayWineCocktail.png'),(18857,1476,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:39:\"2022/12/11.2017_HolidayWineCocktail.png\";s:8:\"filesize\";i:538799;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"11.2017_HolidayWineCocktail-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:193334;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"11.2017_HolidayWineCocktail-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51729;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:39:\"11.2017_HolidayWineCocktail-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:193334;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:39:\"11.2017_HolidayWineCocktail-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:298762;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:39:\"11.2017_HolidayWineCocktail-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:204227;}s:8:\"tileview\";a:5:{s:4:\"file\";s:39:\"11.2017_HolidayWineCocktail-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:240734;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19188,1484,'_wp_attached_file','2022/12/Pick-Up-Party.jpg'),(19189,1484,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2022/12/Pick-Up-Party.jpg\";s:8:\"filesize\";i:163498;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Pick-Up-Party-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17691;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"Pick-Up-Party-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126458;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Pick-Up-Party-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7590;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"Pick-Up-Party-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78839;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:25:\"Pick-Up-Party-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20741;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:25:\"Pick-Up-Party-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37030;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:25:\"Pick-Up-Party-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26718;}s:8:\"tileview\";a:5:{s:4:\"file\";s:25:\"Pick-Up-Party-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22640;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19520,1492,'_wp_attached_file','2022/12/06.2017_FathersDay.png'),(19521,1492,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:30:\"2022/12/06.2017_FathersDay.png\";s:8:\"filesize\";i:591355;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"06.2017_FathersDay-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:206233;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"06.2017_FathersDay-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54328;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:30:\"06.2017_FathersDay-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:206233;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:30:\"06.2017_FathersDay-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:332223;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:30:\"06.2017_FathersDay-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:226158;}s:8:\"tileview\";a:5:{s:4:\"file\";s:30:\"06.2017_FathersDay-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:262014;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19623,1498,'_wp_attached_file','2022/12/100.png'),(19624,1498,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:15:\"2022/12/100.png\";s:8:\"filesize\";i:92266;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"100-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35074;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"100-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17611;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:15:\"100-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42437;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:15:\"100-300x324.png\";s:5:\"width\";i:300;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47514;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:15:\"100-300x260.png\";s:5:\"width\";i:300;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35332;}s:8:\"tileview\";a:5:{s:4:\"file\";s:15:\"100-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57727;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19625,1498,'_wp_attachment_image_alt','Top 100 wineries award logo'),(19626,1499,'_wp_attached_file','2022/12/logo.png'),(19627,1499,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:16:\"2022/12/logo.png\";s:8:\"filesize\";i:34109;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"logo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14542;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5023;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:16:\"logo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14542;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:16:\"logo-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8028;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:16:\"logo-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4782;}s:8:\"tileview\";a:5:{s:4:\"file\";s:16:\"logo-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16746;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19628,1499,'_wp_attachment_image_alt','Meadowcroft Logo'),(19629,1500,'_wp_attached_file','2022/12/mc-logo.png'),(19630,1500,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:500;s:4:\"file\";s:19:\"2022/12/mc-logo.png\";s:8:\"filesize\";i:43209;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"mc-logo-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14221;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"mc-logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5664;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:19:\"mc-logo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16925;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:19:\"mc-logo-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22608;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:19:\"mc-logo-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15687;}s:8:\"tileview\";a:5:{s:4:\"file\";s:19:\"mc-logo-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15039;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19631,1500,'_wp_attachment_image_alt','Meadowcroft Logo'),(19632,1501,'_wp_attached_file','2022/12/bee.png'),(19633,1501,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:15:\"2022/12/bee.png\";s:8:\"filesize\";i:94769;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"bee-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32886;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"bee-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15123;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:15:\"bee-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58978;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:15:\"bee-300x324.png\";s:5:\"width\";i:300;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62228;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:15:\"bee-300x260.png\";s:5:\"width\";i:300;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54513;}s:8:\"tileview\";a:5:{s:4:\"file\";s:15:\"bee-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77244;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19634,1501,'_wp_attachment_image_alt','Meadowcroft Let it Bee'),(19635,1502,'_wp_attached_file','2022/12/port.png'),(19636,1502,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:16:\"2022/12/port.png\";s:8:\"filesize\";i:63060;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"port-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24029;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"port-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13694;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:16:\"port-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41593;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:16:\"port-300x324.png\";s:5:\"width\";i:300;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44689;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:16:\"port-300x260.png\";s:5:\"width\";i:300;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35472;}s:8:\"tileview\";a:5:{s:4:\"file\";s:16:\"port-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49755;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19637,1502,'_wp_attachment_image_alt',''),(19638,1503,'_wp_attached_file','2022/12/gsm.png'),(19639,1503,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:15:\"2022/12/gsm.png\";s:8:\"filesize\";i:114262;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"gsm-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35794;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"gsm-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13730;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:15:\"gsm-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60326;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:15:\"gsm-300x324.png\";s:5:\"width\";i:300;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66352;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:15:\"gsm-300x260.png\";s:5:\"width\";i:300;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52423;}s:8:\"tileview\";a:5:{s:4:\"file\";s:15:\"gsm-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:86801;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19640,1503,'_wp_attachment_image_alt','Meadowcroft GSM Rosé'),(19656,1506,'_edit_lock','1669923926:2'),(19657,1506,'_edit_last','2'),(19658,1506,'label',''),(19659,1506,'category',''),(19660,1506,'ex_category',''),(19661,1506,'location',''),(19662,1506,'ex_location',''),(19663,1506,'organizer',''),(19664,1506,'ex_organizer',''),(19665,1506,'tag',''),(19666,1506,'author',''),(19667,1506,'sf_status','0'),(19668,1506,'sf_display_label','0'),(19669,1506,'sf_reset_button','0'),(19670,1506,'sf_refine','0'),(19671,1506,'sf-options','a:12:{s:4:\"list\";a:11:{s:8:\"category\";a:1:{s:4:\"type\";s:10:\"checkboxes\";}s:8:\"location\";a:1:{s:4:\"type\";s:1:\"0\";}s:9:\"organizer\";a:1:{s:4:\"type\";s:1:\"0\";}s:7:\"speaker\";a:1:{s:4:\"type\";s:1:\"0\";}s:3:\"tag\";a:1:{s:4:\"type\";s:1:\"0\";}s:5:\"label\";a:1:{s:4:\"type\";s:1:\"0\";}s:14:\"address_search\";a:2:{s:4:\"type\";s:1:\"0\";s:11:\"placeholder\";s:0:\"\";}s:10:\"event_cost\";a:1:{s:4:\"type\";s:1:\"0\";}s:12:\"month_filter\";a:1:{s:4:\"type\";s:1:\"0\";}s:11:\"time_filter\";a:1:{s:4:\"type\";s:1:\"0\";}s:11:\"text_search\";a:2:{s:4:\"type\";s:1:\"0\";s:11:\"placeholder\";s:0:\"\";}}s:4:\"grid\";a:11:{s:8:\"category\";a:1:{s:4:\"type\";s:1:\"0\";}s:8:\"location\";a:1:{s:4:\"type\";s:1:\"0\";}s:9:\"organizer\";a:1:{s:4:\"type\";s:1:\"0\";}s:7:\"speaker\";a:1:{s:4:\"type\";s:1:\"0\";}s:3:\"tag\";a:1:{s:4:\"type\";s:1:\"0\";}s:5:\"label\";a:1:{s:4:\"type\";s:1:\"0\";}s:14:\"address_search\";a:2:{s:4:\"type\";s:1:\"0\";s:11:\"placeholder\";s:0:\"\";}s:10:\"event_cost\";a:1:{s:4:\"type\";s:1:\"0\";}s:12:\"month_filter\";a:1:{s:4:\"type\";s:1:\"0\";}s:11:\"time_filter\";a:1:{s:4:\"type\";s:1:\"0\";}s:11:\"text_search\";a:2:{s:4:\"type\";s:1:\"0\";s:11:\"placeholder\";s:0:\"\";}}s:6:\"agenda\";a:11:{s:8:\"category\";a:1:{s:4:\"type\";s:1:\"0\";}s:8:\"location\";a:1:{s:4:\"type\";s:1:\"0\";}s:9:\"organizer\";a:1:{s:4:\"type\";s:1:\"0\";}s:7:\"speaker\";a:1:{s:4:\"type\";s:1:\"0\";}s:3:\"tag\";a:1:{s:4:\"type\";s:1:\"0\";}s:5:\"label\";a:1:{s:4:\"type\";s:1:\"0\";}s:14:\"address_search\";a:2:{s:4:\"type\";s:1:\"0\";s:11:\"placeholder\";s:0:\"\";}s:10:\"event_cost\";a:1:{s:4:\"type\";s:1:\"0\";}s:12:\"month_filter\";a:1:{s:4:\"type\";s:1:\"0\";}s:11:\"time_filter\";a:1:{s:4:\"type\";s:1:\"0\";}s:11:\"text_search\";a:2:{s:4:\"type\";s:1:\"0\";s:11:\"placeholder\";s:0:\"\";}}s:13:\"full_calendar\";a:11:{s:8:\"category\";a:1:{s:4:\"type\";s:1:\"0\";}s:8:\"location\";a:1:{s:4:\"type\";s:1:\"0\";}s:9:\"organizer\";a:1:{s:4:\"type\";s:1:\"0\";}s:7:\"speaker\";a:1:{s:4:\"type\";s:1:\"0\";}s:3:\"tag\";a:1:{s:4:\"type\";s:1:\"0\";}s:5:\"label\";a:1:{s:4:\"type\";s:1:\"0\";}s:14:\"address_search\";a:2:{s:4:\"type\";s:1:\"0\";s:11:\"placeholder\";s:0:\"\";}s:10:\"event_cost\";a:1:{s:4:\"type\";s:1:\"0\";}s:12:\"month_filter\";a:1:{s:4:\"type\";s:1:\"0\";}s:11:\"time_filter\";a:1:{s:4:\"type\";s:1:\"0\";}s:11:\"text_search\";a:2:{s:4:\"type\";s:1:\"0\";s:11:\"placeholder\";s:0:\"\";}}s:12:\"monthly_view\";a:11:{s:8:\"category\";a:1:{s:4:\"type\";s:1:\"0\";}s:8:\"location\";a:1:{s:4:\"type\";s:1:\"0\";}s:9:\"organizer\";a:1:{s:4:\"type\";s:1:\"0\";}s:7:\"speaker\";a:1:{s:4:\"type\";s:1:\"0\";}s:3:\"tag\";a:1:{s:4:\"type\";s:1:\"0\";}s:5:\"label\";a:1:{s:4:\"type\";s:1:\"0\";}s:14:\"address_search\";a:2:{s:4:\"type\";s:1:\"0\";s:11:\"placeholder\";s:0:\"\";}s:10:\"event_cost\";a:1:{s:4:\"type\";s:1:\"0\";}s:12:\"month_filter\";a:1:{s:4:\"type\";s:1:\"0\";}s:11:\"time_filter\";a:1:{s:4:\"type\";s:1:\"0\";}s:11:\"text_search\";a:2:{s:4:\"type\";s:1:\"0\";s:11:\"placeholder\";s:0:\"\";}}s:11:\"yearly_view\";a:11:{s:8:\"category\";a:1:{s:4:\"type\";s:1:\"0\";}s:8:\"location\";a:1:{s:4:\"type\";s:1:\"0\";}s:9:\"organizer\";a:1:{s:4:\"type\";s:1:\"0\";}s:7:\"speaker\";a:1:{s:4:\"type\";s:1:\"0\";}s:3:\"tag\";a:1:{s:4:\"type\";s:1:\"0\";}s:5:\"label\";a:1:{s:4:\"type\";s:1:\"0\";}s:14:\"address_search\";a:2:{s:4:\"type\";s:1:\"0\";s:11:\"placeholder\";s:0:\"\";}s:10:\"event_cost\";a:1:{s:4:\"type\";s:1:\"0\";}s:12:\"month_filter\";a:1:{s:4:\"type\";s:1:\"0\";}s:11:\"time_filter\";a:1:{s:4:\"type\";s:1:\"0\";}s:11:\"text_search\";a:2:{s:4:\"type\";s:1:\"0\";s:11:\"placeholder\";s:0:\"\";}}s:3:\"map\";a:10:{s:8:\"category\";a:1:{s:4:\"type\";s:1:\"0\";}s:8:\"location\";a:1:{s:4:\"type\";s:1:\"0\";}s:9:\"organizer\";a:1:{s:4:\"type\";s:1:\"0\";}s:7:\"speaker\";a:1:{s:4:\"type\";s:1:\"0\";}s:3:\"tag\";a:1:{s:4:\"type\";s:1:\"0\";}s:5:\"label\";a:1:{s:4:\"type\";s:1:\"0\";}s:14:\"address_search\";a:2:{s:4:\"type\";s:1:\"0\";s:11:\"placeholder\";s:0:\"\";}s:10:\"event_cost\";a:1:{s:4:\"type\";s:1:\"0\";}s:12:\"month_filter\";a:1:{s:4:\"type\";s:1:\"0\";}s:11:\"text_search\";a:2:{s:4:\"type\";s:1:\"0\";s:11:\"placeholder\";s:0:\"\";}}s:10:\"daily_view\";a:11:{s:8:\"category\";a:1:{s:4:\"type\";s:1:\"0\";}s:8:\"location\";a:1:{s:4:\"type\";s:1:\"0\";}s:9:\"organizer\";a:1:{s:4:\"type\";s:1:\"0\";}s:7:\"speaker\";a:1:{s:4:\"type\";s:1:\"0\";}s:3:\"tag\";a:1:{s:4:\"type\";s:1:\"0\";}s:5:\"label\";a:1:{s:4:\"type\";s:1:\"0\";}s:14:\"address_search\";a:2:{s:4:\"type\";s:1:\"0\";s:11:\"placeholder\";s:0:\"\";}s:10:\"event_cost\";a:1:{s:4:\"type\";s:1:\"0\";}s:12:\"month_filter\";a:1:{s:4:\"type\";s:1:\"0\";}s:11:\"time_filter\";a:1:{s:4:\"type\";s:1:\"0\";}s:11:\"text_search\";a:2:{s:4:\"type\";s:1:\"0\";s:11:\"placeholder\";s:0:\"\";}}s:11:\"weekly_view\";a:11:{s:8:\"category\";a:1:{s:4:\"type\";s:1:\"0\";}s:8:\"location\";a:1:{s:4:\"type\";s:1:\"0\";}s:9:\"organizer\";a:1:{s:4:\"type\";s:1:\"0\";}s:7:\"speaker\";a:1:{s:4:\"type\";s:1:\"0\";}s:3:\"tag\";a:1:{s:4:\"type\";s:1:\"0\";}s:5:\"label\";a:1:{s:4:\"type\";s:1:\"0\";}s:14:\"address_search\";a:2:{s:4:\"type\";s:1:\"0\";s:11:\"placeholder\";s:0:\"\";}s:10:\"event_cost\";a:1:{s:4:\"type\";s:1:\"0\";}s:12:\"month_filter\";a:1:{s:4:\"type\";s:1:\"0\";}s:11:\"time_filter\";a:1:{s:4:\"type\";s:1:\"0\";}s:11:\"text_search\";a:2:{s:4:\"type\";s:1:\"0\";s:11:\"placeholder\";s:0:\"\";}}s:9:\"timetable\";a:11:{s:8:\"category\";a:1:{s:4:\"type\";s:1:\"0\";}s:8:\"location\";a:1:{s:4:\"type\";s:1:\"0\";}s:9:\"organizer\";a:1:{s:4:\"type\";s:1:\"0\";}s:7:\"speaker\";a:1:{s:4:\"type\";s:1:\"0\";}s:3:\"tag\";a:1:{s:4:\"type\";s:1:\"0\";}s:5:\"label\";a:1:{s:4:\"type\";s:1:\"0\";}s:14:\"address_search\";a:2:{s:4:\"type\";s:1:\"0\";s:11:\"placeholder\";s:0:\"\";}s:10:\"event_cost\";a:1:{s:4:\"type\";s:1:\"0\";}s:12:\"month_filter\";a:1:{s:4:\"type\";s:1:\"0\";}s:11:\"time_filter\";a:1:{s:4:\"type\";s:1:\"0\";}s:11:\"text_search\";a:2:{s:4:\"type\";s:1:\"0\";s:11:\"placeholder\";s:0:\"\";}}s:4:\"tile\";a:11:{s:8:\"category\";a:1:{s:4:\"type\";s:1:\"0\";}s:8:\"location\";a:1:{s:4:\"type\";s:1:\"0\";}s:9:\"organizer\";a:1:{s:4:\"type\";s:1:\"0\";}s:7:\"speaker\";a:1:{s:4:\"type\";s:1:\"0\";}s:3:\"tag\";a:1:{s:4:\"type\";s:1:\"0\";}s:5:\"label\";a:1:{s:4:\"type\";s:1:\"0\";}s:14:\"address_search\";a:2:{s:4:\"type\";s:1:\"0\";s:11:\"placeholder\";s:0:\"\";}s:10:\"event_cost\";a:1:{s:4:\"type\";s:1:\"0\";}s:12:\"month_filter\";a:1:{s:4:\"type\";s:1:\"0\";}s:11:\"time_filter\";a:1:{s:4:\"type\";s:1:\"0\";}s:11:\"text_search\";a:2:{s:4:\"type\";s:1:\"0\";s:11:\"placeholder\";s:0:\"\";}}s:16:\"general_calendar\";a:10:{s:8:\"category\";a:1:{s:4:\"type\";s:1:\"0\";}s:8:\"location\";a:1:{s:4:\"type\";s:1:\"0\";}s:9:\"organizer\";a:1:{s:4:\"type\";s:1:\"0\";}s:7:\"speaker\";a:1:{s:4:\"type\";s:1:\"0\";}s:3:\"tag\";a:1:{s:4:\"type\";s:1:\"0\";}s:5:\"label\";a:1:{s:4:\"type\";s:1:\"0\";}s:14:\"address_search\";a:2:{s:4:\"type\";s:1:\"0\";s:11:\"placeholder\";s:0:\"\";}s:10:\"event_cost\";a:1:{s:4:\"type\";s:1:\"0\";}s:12:\"month_filter\";a:1:{s:4:\"type\";s:1:\"0\";}s:11:\"text_search\";a:2:{s:4:\"type\";s:1:\"0\";s:11:\"placeholder\";s:0:\"\";}}}'),(19672,1506,'skin','list'),(19673,1506,'sk-options','a:19:{s:4:\"list\";a:32:{s:5:\"style\";s:8:\"standard\";s:15:\"start_date_type\";s:16:\"start_last_month\";s:10:\"start_date\";s:0:\"\";s:13:\"end_date_type\";s:4:\"date\";s:18:\"maximum_date_range\";s:0:\"\";s:12:\"order_method\";s:3:\"ASC\";s:20:\"classic_date_format1\";s:5:\"M d Y\";s:20:\"minimal_date_format1\";s:1:\"d\";s:20:\"minimal_date_format2\";s:1:\"M\";s:20:\"minimal_date_format3\";s:1:\"l\";s:19:\"modern_date_format1\";s:1:\"d\";s:19:\"modern_date_format2\";s:1:\"F\";s:19:\"modern_date_format3\";s:1:\"l\";s:21:\"standard_date_format1\";s:3:\"d M\";s:22:\"accordion_date_format1\";s:1:\"d\";s:22:\"accordion_date_format2\";s:1:\"F\";s:5:\"limit\";s:2:\"20\";s:18:\"include_local_time\";s:1:\"0\";s:20:\"include_events_times\";s:1:\"0\";s:16:\"load_more_button\";s:1:\"1\";s:13:\"month_divider\";s:1:\"1\";s:13:\"display_label\";s:1:\"0\";s:23:\"reason_for_cancellation\";s:1:\"0\";s:18:\"display_categories\";s:1:\"0\";s:17:\"display_organizer\";s:1:\"0\";s:15:\"set_geolocation\";s:1:\"0\";s:21:\"set_geolocation_focus\";s:1:\"0\";s:11:\"custom_data\";s:1:\"0\";s:10:\"status_bar\";s:1:\"0\";s:20:\"toggle_month_divider\";s:1:\"0\";s:10:\"sed_method\";s:1:\"0\";s:11:\"image_popup\";s:1:\"0\";}s:4:\"grid\";a:33:{s:5:\"style\";s:7:\"classic\";s:15:\"start_date_type\";s:5:\"today\";s:10:\"start_date\";s:0:\"\";s:13:\"end_date_type\";s:4:\"date\";s:18:\"maximum_date_range\";s:0:\"\";s:12:\"order_method\";s:3:\"ASC\";s:20:\"classic_date_format1\";s:5:\"d F Y\";s:18:\"clean_date_format1\";s:1:\"d\";s:18:\"clean_date_format2\";s:1:\"F\";s:20:\"minimal_date_format1\";s:1:\"d\";s:20:\"minimal_date_format2\";s:1:\"M\";s:19:\"modern_date_format1\";s:1:\"d\";s:19:\"modern_date_format2\";s:1:\"F\";s:19:\"modern_date_format3\";s:1:\"l\";s:19:\"simple_date_format1\";s:5:\"M d Y\";s:21:\"colorful_date_format1\";s:1:\"d\";s:21:\"colorful_date_format2\";s:1:\"F\";s:21:\"colorful_date_format3\";s:1:\"l\";s:18:\"novel_date_format1\";s:5:\"d F Y\";s:5:\"count\";s:1:\"1\";s:5:\"limit\";s:0:\"\";s:18:\"include_local_time\";s:1:\"0\";s:20:\"include_events_times\";s:1:\"0\";s:16:\"load_more_button\";s:1:\"1\";s:13:\"display_label\";s:1:\"0\";s:23:\"reason_for_cancellation\";s:1:\"0\";s:18:\"display_categories\";s:1:\"0\";s:17:\"display_organizer\";s:1:\"0\";s:15:\"set_geolocation\";s:1:\"0\";s:21:\"set_geolocation_focus\";s:1:\"0\";s:11:\"custom_data\";s:1:\"0\";s:10:\"sed_method\";s:1:\"0\";s:11:\"image_popup\";s:1:\"0\";}s:6:\"agenda\";a:17:{s:5:\"style\";s:5:\"clean\";s:15:\"start_date_type\";s:5:\"today\";s:10:\"start_date\";s:0:\"\";s:13:\"end_date_type\";s:4:\"date\";s:18:\"maximum_date_range\";s:0:\"\";s:12:\"order_method\";s:3:\"ASC\";s:18:\"clean_date_format1\";s:1:\"l\";s:18:\"clean_date_format2\";s:3:\"F j\";s:5:\"limit\";s:0:\"\";s:18:\"include_local_time\";s:1:\"0\";s:13:\"display_label\";s:1:\"0\";s:23:\"reason_for_cancellation\";s:1:\"0\";s:16:\"load_more_button\";s:1:\"1\";s:13:\"month_divider\";s:1:\"0\";s:11:\"custom_data\";s:1:\"0\";s:10:\"sed_method\";s:1:\"0\";s:11:\"image_popup\";s:1:\"0\";}s:13:\"full_calendar\";a:32:{s:5:\"style\";s:7:\"classic\";s:15:\"start_date_type\";s:5:\"today\";s:10:\"start_date\";s:0:\"\";s:12:\"default_view\";s:4:\"list\";s:13:\"monthly_style\";s:5:\"clean\";s:5:\"limit\";s:0:\"\";s:4:\"list\";s:1:\"1\";s:16:\"date_format_list\";s:3:\"d M\";s:18:\"end_date_type_list\";s:4:\"date\";s:23:\"maximum_date_range_list\";s:0:\"\";s:17:\"order_method_list\";s:3:\"ASC\";s:4:\"grid\";s:1:\"0\";s:18:\"end_date_type_grid\";s:4:\"date\";s:23:\"maximum_date_range_grid\";s:0:\"\";s:17:\"order_method_grid\";s:3:\"ASC\";s:4:\"tile\";s:1:\"0\";s:6:\"yearly\";s:1:\"0\";s:20:\"date_format_yearly_1\";s:1:\"l\";s:20:\"date_format_yearly_2\";s:3:\"F j\";s:7:\"monthly\";s:1:\"1\";s:19:\"activate_first_date\";s:1:\"0\";s:20:\"activate_current_day\";s:1:\"1\";s:11:\"display_all\";s:1:\"0\";s:6:\"weekly\";s:1:\"1\";s:5:\"daily\";s:1:\"1\";s:13:\"display_price\";s:1:\"0\";s:13:\"display_label\";s:1:\"0\";s:23:\"reason_for_cancellation\";s:1:\"0\";s:18:\"include_local_time\";s:1:\"0\";s:11:\"custom_data\";s:1:\"0\";s:10:\"sed_method\";s:1:\"0\";s:11:\"image_popup\";s:1:\"0\";}s:11:\"yearly_view\";a:14:{s:5:\"style\";s:6:\"modern\";s:15:\"start_date_type\";s:18:\"start_current_year\";s:10:\"start_date\";s:0:\"\";s:19:\"modern_date_format1\";s:1:\"l\";s:19:\"modern_date_format2\";s:3:\"F j\";s:5:\"limit\";s:0:\"\";s:6:\"months\";a:12:{i:1;s:1:\"1\";i:2;s:1:\"1\";i:3;s:1:\"1\";i:4;s:1:\"1\";i:5;s:1:\"1\";i:6;s:1:\"1\";i:7;s:1:\"1\";i:8;s:1:\"1\";i:9;s:1:\"1\";i:10;s:1:\"1\";i:11;s:1:\"1\";i:12;s:1:\"1\";}s:18:\"include_local_time\";s:1:\"0\";s:20:\"next_previous_button\";s:1:\"1\";s:13:\"display_label\";s:1:\"0\";s:23:\"reason_for_cancellation\";s:1:\"0\";s:11:\"custom_data\";s:1:\"0\";s:10:\"sed_method\";s:1:\"0\";s:11:\"image_popup\";s:1:\"0\";}s:12:\"monthly_view\";a:15:{s:5:\"style\";s:7:\"classic\";s:15:\"start_date_type\";s:19:\"start_current_month\";s:10:\"start_date\";s:0:\"\";s:5:\"limit\";s:0:\"\";s:18:\"include_local_time\";s:1:\"0\";s:20:\"next_previous_button\";s:1:\"1\";s:13:\"display_label\";s:1:\"0\";s:23:\"reason_for_cancellation\";s:1:\"0\";s:19:\"activate_first_date\";s:1:\"0\";s:20:\"activate_current_day\";s:1:\"1\";s:11:\"display_all\";s:1:\"0\";s:11:\"custom_data\";s:1:\"0\";s:13:\"detailed_time\";s:1:\"0\";s:10:\"sed_method\";s:1:\"0\";s:11:\"image_popup\";s:1:\"0\";}s:3:\"map\";a:6:{s:5:\"style\";s:7:\"classic\";s:15:\"start_date_type\";s:5:\"today\";s:10:\"start_date\";s:0:\"\";s:5:\"limit\";s:3:\"200\";s:11:\"geolocation\";s:1:\"0\";s:17:\"geolocation_focus\";s:1:\"0\";}s:10:\"daily_view\";a:14:{s:5:\"style\";s:7:\"classic\";s:15:\"start_date_type\";s:5:\"today\";s:10:\"start_date\";s:0:\"\";s:5:\"limit\";s:0:\"\";s:18:\"include_local_time\";s:1:\"0\";s:20:\"next_previous_button\";s:1:\"1\";s:13:\"display_label\";s:1:\"0\";s:23:\"reason_for_cancellation\";s:1:\"0\";s:18:\"display_categories\";s:1:\"0\";s:17:\"display_organizer\";s:1:\"0\";s:11:\"custom_data\";s:1:\"0\";s:13:\"detailed_time\";s:1:\"0\";s:10:\"sed_method\";s:1:\"0\";s:11:\"image_popup\";s:1:\"0\";}s:11:\"weekly_view\";a:14:{s:5:\"style\";s:7:\"classic\";s:15:\"start_date_type\";s:18:\"start_current_week\";s:10:\"start_date\";s:0:\"\";s:5:\"limit\";s:0:\"\";s:18:\"include_local_time\";s:1:\"0\";s:13:\"display_label\";s:1:\"0\";s:23:\"reason_for_cancellation\";s:1:\"0\";s:18:\"display_categories\";s:1:\"0\";s:17:\"display_organizer\";s:1:\"0\";s:20:\"next_previous_button\";s:1:\"1\";s:11:\"custom_data\";s:1:\"0\";s:13:\"detailed_time\";s:1:\"0\";s:10:\"sed_method\";s:1:\"0\";s:11:\"image_popup\";s:1:\"0\";}s:9:\"timetable\";a:16:{s:5:\"style\";s:6:\"modern\";s:15:\"start_date_type\";s:18:\"start_current_week\";s:10:\"start_date\";s:0:\"\";s:5:\"limit\";s:0:\"\";s:21:\"number_of_days_modern\";s:1:\"7\";s:14:\"number_of_days\";s:1:\"5\";s:10:\"week_start\";s:2:\"-1\";s:10:\"start_time\";s:1:\"1\";s:8:\"end_time\";s:2:\"13\";s:18:\"include_local_time\";s:1:\"0\";s:13:\"display_label\";s:1:\"0\";s:23:\"reason_for_cancellation\";s:1:\"0\";s:20:\"next_previous_button\";s:1:\"1\";s:11:\"custom_data\";s:1:\"0\";s:10:\"sed_method\";s:1:\"0\";s:11:\"image_popup\";s:1:\"0\";}s:7:\"masonry\";a:20:{s:15:\"start_date_type\";s:5:\"today\";s:10:\"start_date\";s:0:\"\";s:13:\"end_date_type\";s:4:\"date\";s:18:\"maximum_date_range\";s:0:\"\";s:12:\"order_method\";s:3:\"ASC\";s:12:\"date_format1\";s:1:\"j\";s:12:\"date_format2\";s:1:\"F\";s:5:\"limit\";s:0:\"\";s:9:\"filter_by\";s:0:\"\";s:18:\"include_local_time\";s:1:\"0\";s:13:\"display_label\";s:1:\"0\";s:23:\"reason_for_cancellation\";s:1:\"0\";s:18:\"display_categories\";s:1:\"0\";s:17:\"display_organizer\";s:1:\"0\";s:10:\"fit_to_row\";s:1:\"0\";s:17:\"masonry_like_grid\";s:1:\"0\";s:16:\"load_more_button\";s:1:\"0\";s:11:\"custom_data\";s:1:\"0\";s:10:\"sed_method\";s:1:\"0\";s:11:\"image_popup\";s:1:\"0\";}s:5:\"cover\";a:11:{s:5:\"style\";s:7:\"classic\";s:18:\"date_format_clean1\";s:1:\"d\";s:18:\"date_format_clean2\";s:1:\"M\";s:18:\"date_format_clean3\";s:1:\"Y\";s:20:\"date_format_classic1\";s:3:\"F d\";s:20:\"date_format_classic2\";s:1:\"l\";s:19:\"date_format_modern1\";s:8:\"l, F d Y\";s:8:\"event_id\";s:4:\"1495\";s:18:\"include_local_time\";s:1:\"0\";s:13:\"display_label\";s:1:\"0\";s:23:\"reason_for_cancellation\";s:1:\"0\";}s:9:\"countdown\";a:11:{s:5:\"style\";s:6:\"style1\";s:19:\"date_format_style11\";s:5:\"j F Y\";s:19:\"date_format_style21\";s:5:\"j F Y\";s:19:\"date_format_style31\";s:1:\"j\";s:19:\"date_format_style32\";s:1:\"F\";s:19:\"date_format_style33\";s:1:\"Y\";s:8:\"event_id\";s:2:\"-1\";s:8:\"bg_color\";s:7:\"#437df9\";s:18:\"include_local_time\";s:1:\"0\";s:13:\"display_label\";s:1:\"0\";s:23:\"reason_for_cancellation\";s:1:\"0\";}s:14:\"available_spot\";a:7:{s:5:\"style\";s:7:\"classic\";s:12:\"date_format1\";s:1:\"j\";s:12:\"date_format2\";s:1:\"F\";s:8:\"event_id\";s:2:\"-1\";s:18:\"include_local_time\";s:1:\"0\";s:13:\"display_label\";s:1:\"0\";s:23:\"reason_for_cancellation\";s:1:\"0\";}s:8:\"carousel\";a:24:{s:5:\"style\";s:5:\"type1\";s:15:\"start_date_type\";s:5:\"today\";s:10:\"start_date\";s:0:\"\";s:18:\"type1_date_format1\";s:1:\"d\";s:18:\"type1_date_format2\";s:1:\"F\";s:18:\"type1_date_format3\";s:1:\"Y\";s:18:\"type2_date_format1\";s:6:\"M d, Y\";s:18:\"type3_date_format1\";s:6:\"M d, Y\";s:5:\"count\";s:1:\"2\";s:12:\"count_tablet\";s:1:\"2\";s:12:\"count_mobile\";s:1:\"1\";s:5:\"limit\";s:0:\"\";s:15:\"autoplay_status\";s:1:\"1\";s:8:\"autoplay\";s:0:\"\";s:11:\"loop_status\";s:1:\"1\";s:11:\"custom_data\";s:1:\"0\";s:12:\"archive_link\";s:0:\"\";s:9:\"head_text\";s:0:\"\";s:18:\"include_local_time\";s:1:\"0\";s:20:\"include_events_times\";s:1:\"0\";s:13:\"display_label\";s:1:\"0\";s:23:\"reason_for_cancellation\";s:1:\"0\";s:10:\"sed_method\";s:1:\"0\";s:11:\"image_popup\";s:1:\"0\";}s:6:\"slider\";a:25:{s:5:\"style\";s:2:\"t1\";s:15:\"start_date_type\";s:5:\"today\";s:10:\"start_date\";s:0:\"\";s:18:\"type1_date_format1\";s:1:\"d\";s:18:\"type1_date_format2\";s:1:\"F\";s:18:\"type1_date_format3\";s:1:\"l\";s:18:\"type2_date_format1\";s:1:\"d\";s:18:\"type2_date_format2\";s:1:\"F\";s:18:\"type2_date_format3\";s:1:\"l\";s:18:\"type3_date_format1\";s:1:\"d\";s:18:\"type3_date_format2\";s:1:\"F\";s:18:\"type3_date_format3\";s:1:\"l\";s:18:\"type4_date_format1\";s:1:\"d\";s:18:\"type4_date_format2\";s:1:\"F\";s:18:\"type4_date_format3\";s:1:\"l\";s:18:\"type5_date_format1\";s:1:\"d\";s:18:\"type5_date_format2\";s:1:\"F\";s:18:\"type5_date_format3\";s:1:\"l\";s:5:\"limit\";s:0:\"\";s:8:\"autoplay\";s:0:\"\";s:15:\"transition_time\";s:3:\"250\";s:18:\"include_local_time\";s:1:\"0\";s:13:\"display_label\";s:1:\"0\";s:23:\"reason_for_cancellation\";s:1:\"0\";s:11:\"custom_data\";s:1:\"0\";}s:8:\"timeline\";a:17:{s:15:\"start_date_type\";s:5:\"today\";s:10:\"start_date\";s:0:\"\";s:13:\"end_date_type\";s:4:\"date\";s:18:\"maximum_date_range\";s:0:\"\";s:12:\"order_method\";s:3:\"ASC\";s:20:\"classic_date_format1\";s:5:\"d F Y\";s:5:\"limit\";s:0:\"\";s:18:\"include_local_time\";s:1:\"0\";s:13:\"display_label\";s:1:\"0\";s:23:\"reason_for_cancellation\";s:1:\"0\";s:18:\"display_categories\";s:1:\"0\";s:17:\"display_organizer\";s:1:\"0\";s:16:\"load_more_button\";s:1:\"1\";s:13:\"month_divider\";s:1:\"0\";s:11:\"custom_data\";s:1:\"0\";s:10:\"sed_method\";s:1:\"0\";s:11:\"image_popup\";s:1:\"0\";}s:4:\"tile\";a:15:{s:15:\"start_date_type\";s:19:\"start_current_month\";s:10:\"start_date\";s:0:\"\";s:18:\"clean_date_format1\";s:1:\"j\";s:18:\"clean_date_format2\";s:1:\"M\";s:5:\"count\";s:1:\"4\";s:13:\"display_label\";s:1:\"0\";s:23:\"reason_for_cancellation\";s:1:\"0\";s:18:\"display_categories\";s:1:\"0\";s:17:\"display_organizer\";s:1:\"0\";s:20:\"next_previous_button\";s:1:\"1\";s:5:\"limit\";s:0:\"\";s:16:\"load_more_button\";s:1:\"1\";s:11:\"custom_data\";s:1:\"0\";s:10:\"sed_method\";s:1:\"0\";s:11:\"image_popup\";s:1:\"0\";}s:16:\"general_calendar\";a:8:{s:15:\"start_date_type\";s:19:\"start_current_month\";s:10:\"start_date\";s:0:\"\";s:10:\"more_event\";s:0:\"\";s:18:\"include_local_time\";s:1:\"0\";s:13:\"display_label\";s:1:\"0\";s:23:\"reason_for_cancellation\";s:1:\"0\";s:10:\"sed_method\";s:1:\"0\";s:11:\"image_popup\";s:1:\"0\";}}'),(19674,1506,'show_only_one_occurrence','0'),(19675,1506,'show_past_events','1'),(19676,1506,'show_only_past_events','0'),(19677,1506,'show_ongoing_events','0'),(19678,1506,'show_only_ongoing_events','0'),(19707,726,'content_block_0_layout_title',''),(19708,726,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(19709,726,'content_block_0_custom_css_class',''),(19710,726,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(19711,726,'content_block_0_banner_full_width','1'),(19712,726,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(19713,726,'content_block_0_banner_size','short'),(19714,726,'_content_block_0_banner_size','field_5bbe232929ec9'),(19715,726,'content_block_0_add_parallax_effect','0'),(19716,726,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(19717,726,'content_block_0_add_veil_over_banner','1'),(19718,726,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(19719,726,'content_block_0_banner_content_position','centered'),(19720,726,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(19721,726,'content_block_0_banner_title','Winery Events'),(19722,726,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(19723,726,'content_block_0_banner_subtitle','Join Us'),(19724,726,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(19725,726,'content_block_0_banner_button_link',''),(19726,726,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(19727,726,'content_block_0_banner_button_new_tab','0'),(19728,726,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(19729,726,'content_block_0_show_down_arrow','0'),(19730,726,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(19731,726,'content_block_0_banner_image_description',''),(19732,726,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(19733,726,'content_block_0_banner_image','881'),(19734,726,'_content_block_0_banner_image','field_5bbe201718faf'),(19735,726,'content_block_0_banner_image_position','center center'),(19736,726,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(19737,726,'content_block_0_banner_image_mobile','882'),(19738,726,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(19739,726,'content_block_0_banner_image_mobile_position','center center'),(19740,726,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(19741,726,'content_block_1_layout_title',''),(19742,726,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(19743,726,'content_block_1_text_block_columns','one'),(19744,726,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(19745,726,'content_block_1_narrow_text_block_content','0'),(19746,726,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(19747,726,'content_block_1_reverse_colors','0'),(19748,726,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(19749,726,'content_block_1_enable_background_image','0'),(19750,726,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(19751,726,'content_block_1_custom_css_class',''),(19752,726,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(19753,726,'content_block_1_text_block_content_col_one','At Meadowcroft Wines, we know that sometimes you need more than just a tasting room experience to truly appreciate the art of winemaking. That\'s why we offer a variety of exciting winery events throughout the year.  We\'re located in the Cornerstone Sonoma marketplace in the heart of the Sonoma Valley wine country.  We\'re less than one hour from San Francisco and minutes from Petaluma.\r\n\r\nIf you\'re looking for a more intimate experience, we also host private events for all sizes of groups.  We are also able to accommodate large groups, corporate tastings &amp; team building events tailored to your individual needs. Whatever your occasion may be, allow us to make it a truly unforgettable one. <a href=\"mailto:tastingroom@meadowcroftwines.com\">Reach out to us</a> today and let\'s plan your perfect winery event.'),(19754,726,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(19755,726,'_yoast_wpseo_content_score','90'),(19765,920,'_wp_old_date','2022-11-04'),(19766,456,'_wp_old_date','2022-11-04'),(19768,759,'_wp_old_date','2022-11-04'),(19774,948,'_wp_old_date','2022-11-04'),(19775,949,'_wp_old_date','2022-11-04'),(19776,950,'_wp_old_date','2022-11-04'),(19777,880,'_wp_old_date','2022-11-04'),(19778,1508,'_wp_attached_file','2022/12/o-10.jpg'),(19779,1508,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:828;s:6:\"height\";i:315;s:4:\"file\";s:16:\"2022/12/o-10.jpg\";s:8:\"filesize\";i:86385;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"o-10-300x114.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12378;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"o-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7838;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"o-10-768x292.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:292;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69503;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:16:\"o-10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26568;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:16:\"o-10-474x315.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:315;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50300;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:16:\"o-10-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31718;}s:8:\"tileview\";a:5:{s:4:\"file\";s:16:\"o-10-300x315.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:315;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30199;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19780,1508,'_wp_attachment_image_alt','Front of tasting room'),(19781,1509,'_wp_attached_file','2022/12/2020_Meadowcroft_PrivateEvent_samplemenu.pdf'),(19782,1509,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:48:\"2020_Meadowcroft_PrivateEvent_samplemenu-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:264533;}s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"2020_Meadowcroft_PrivateEvent_samplemenu-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18835;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"2020_Meadowcroft_PrivateEvent_samplemenu-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142670;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"2020_Meadowcroft_PrivateEvent_samplemenu-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6932;}}s:8:\"filesize\";i:120252;}'),(19783,726,'content_block_2_layout_title','Calendar'),(19784,726,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(19785,726,'content_block_2_text_block_columns','one'),(19786,726,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(19787,726,'content_block_2_narrow_text_block_content','0'),(19788,726,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(19789,726,'content_block_2_reverse_colors','0'),(19790,726,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(19791,726,'content_block_2_enable_background_image','0'),(19792,726,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(19793,726,'content_block_2_parallax_effect_on_image','0'),(19794,726,'_content_block_2_parallax_effect_on_image','field_5bbe319b39211'),(19795,726,'content_block_2_custom_css_class',''),(19796,726,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(19797,726,'content_block_2_text_block_content_col_one','[MEC id=\"1506\"]'),(19798,726,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(19799,726,'content_block_2_background_image','1508'),(19800,726,'_content_block_2_background_image','field_5bbe2eb1a4ddb'),(19801,726,'content_block_2_background_image_position','center center'),(19802,726,'_content_block_2_background_image_position','field_5bbe2eb1a4ddc'),(19803,726,'content_block_2_background_image_mobile','1508'),(19804,726,'_content_block_2_background_image_mobile','field_5bbe3b5e5f6f8'),(19805,726,'content_block_2_background_image_position_mobile','center center'),(19806,726,'_content_block_2_background_image_position_mobile','field_5bbe3b695f6f9'),(19839,445,'content_block_1_layout_title',''),(19840,445,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(19841,445,'content_block_1_text_block_columns','one'),(19842,445,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(19843,445,'content_block_1_column_size','equal'),(19844,445,'_content_block_1_column_size','field_columnsize'),(19845,445,'content_block_1_narrow_text_block_content','1'),(19846,445,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(19847,445,'content_block_1_reverse_colors','0'),(19848,445,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(19849,445,'content_block_1_enable_background_image','0'),(19850,445,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(19851,445,'content_block_1_custom_css_class',''),(19852,445,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(19853,445,'content_block_1_text_block_content_col_one','&nbsp;\r\n<p class=\"metatitle\" style=\"text-align: center;\">OPEN DAILY</p>\r\n\r\n<h2 style=\"text-align: center;\">THE TASTING ROOM</h2>\r\nExplore a diverse selection of wines crafted to suit every palate at <a href=\"https://www.meadowcroftwines.com/tasting-room/\">Meadowcroft Tasting Room</a>, located in Sonoma’s Cornerstone Marketplace. From bold reds and crisp whites to elegant sparkling wines, we offer something for everyone in a welcoming and relaxed atmosphere.\r\n\r\nOur <a href=\"https://www.meadowcroftwines.com/tasting-room/\">tasting room</a> is open daily from 10:00 a.m. to 5:00 p.m., offering indoor and outdoor wine tastings. While <a href=\"https://www.meadowcroftwines.com/tasting-room/\">reservations</a> are recommended, <strong>walk-ins are welcome, and no appointment is necessary for small groups</strong>. For parties of 8 or more, please call ahead to arrange your tasting experience.\r\n\r\nVisit us at <a href=\"https://maps.app.goo.gl/pG7HZG6LATZ1d2qg8\">23574 Arnold Drive in Sonoma, CA</a>, or call 707.934.4090 for last-minute reservations.\r\n<p style=\"text-align: center;\">CHOOSE YOUR EXPERIENCE  BELOW</p>\r\n&nbsp;'),(19854,445,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(19855,445,'content_block_1_text_block_content_col_two','&nbsp;\r\n<p class=\"metatitle\" style=\"text-align: center;\">OPEN DAILY</p>\r\n\r\n<h2 style=\"text-align: center;\">THE TASTING ROOM</h2>\r\n<p style=\"text-align: center;\">If you’ve always wanted to go wine tasting in Sonoma, CA, visit us at Meadowcroft Tasting Room at Cornerstone and enjoy the casual pace and delicious wines in our Tasting Room. Here our guests take the time to slow down and enjoy the flavors of our wines.</p>\r\n<p style=\"text-align: center;\">Our Cornerstone winery in Sonoma, CA, serves superb red, white, and sparkling wines. We also host numerous events throughout the year, and we’ll welcome your visit anytime.</p>\r\n<p style=\"text-align: center;\">Does sipping several sumptuous wines with family and friends sound like a good time? We warmly invite you to join us at the Meadowcroft Tasting Room at Cornerstone. We look forward to seeing you soon.</p>\r\n<p style=\"text-align: center;\">TASTING ROOM at Cornerstone, Sonoma 23574 Arnold Drive Sonoma, CA 95476</p>\r\n<p style=\"text-align: center;\">Open Daily 10:00 a.m. to 5:00 p.m.</p>\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"https://www.google.com/maps/dir//Meadowcroft+wines,+%2FHwy.+121,+suite+Meadowcroft+wines,+23574+Arnold+Dr,+Sonoma,+CA+95476/@38.22773,-122.457926,15z/data=!4m15!1m6!3m5!1s0x0:0xd21fda9232c58ee9!2sMeadowcroft+wines!8m2!3d38.22773!4d-122.457926!4m7!1m0!1m5!1m1!1s0x8085af4f80be9b43:0xd21fda9232c58ee9!2m2!1d-122.457926!2d38.22773\">GET DIRECTIONS</a></p>'),(19856,445,'_content_block_1_text_block_content_col_two','field_5bbe31593920e'),(19857,412,'content_block_3_layout_title','Award Winning Wines'),(19858,412,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(19859,412,'content_block_3_text_block_columns','one'),(19860,412,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(19861,412,'content_block_3_narrow_text_block_content','0'),(19862,412,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(19863,412,'content_block_3_reverse_colors','0'),(19864,412,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(19865,412,'content_block_3_enable_background_image','0'),(19866,412,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(19867,412,'content_block_3_custom_css_class','feature-box'),(19868,412,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(19869,412,'content_block_3_text_block_content_col_one','<h3 style=\"text-align: center;\">AWARD-WINNING SUSTAINABLY SOURCED WINES IN BEAUTIFUL WINE COUNTRY</h3>\r\nMeadowcroft Wines are sustainably sourced award-winning wines that are vineyard specific and limited in production, expressing both European wine heritage and California creativity.\r\n\r\nIf you’re looking to savor something special from the best California vineyards, you’ve come to the right place. We’re proud to offer sustainably sourced award-winning wines. Every sip is a memorable experience, and we can’t wait for you to discover our limited-production, boutique wines. No matter which wines you try, we’re certain they’ll delight you. We’re also honored to be among the top 100 Sonoma wineries.\r\n\r\nCome out to our Tasting Room! Nestled in the middle of the renowned <a href=\"https://www.cornerstonesonoma.com/\">Cornerstone Sonoma Gardens</a>, it’s an exquisite and unforgettable space—though if you can’t make it in, our online store offers a vast selection of wine for any palate.'),(19870,412,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(20089,1512,'inline_featured_image','0'),(20090,1512,'_edit_lock','1669951397:2'),(20091,1512,'_edit_last','2'),(20092,444,'content_block_0_layout_title',''),(20093,444,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(20094,444,'content_block_0_custom_css_class',''),(20095,444,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(20096,444,'content_block_0_banner_full_width','1'),(20097,444,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(20098,444,'content_block_0_banner_size','long'),(20099,444,'_content_block_0_banner_size','field_5bbe232929ec9'),(20100,444,'content_block_0_add_parallax_effect','0'),(20101,444,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(20102,444,'content_block_0_add_veil_over_banner','0'),(20103,444,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(20104,444,'content_block_0_banner_content_position','centered'),(20105,444,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(20106,444,'content_block_0_banner_title',''),(20107,444,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(20108,444,'content_block_0_banner_subtitle',''),(20109,444,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(20110,444,'content_block_0_banner_button_link',''),(20111,444,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(20112,444,'content_block_0_banner_button_new_tab','0'),(20113,444,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(20114,444,'content_block_0_show_down_arrow','0'),(20115,444,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(20116,444,'content_block_0_banner_image_description',''),(20117,444,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(20118,444,'content_block_0_banner_image','951'),(20119,444,'_content_block_0_banner_image','field_5bbe201718faf'),(20120,444,'content_block_0_banner_image_position','center top'),(20121,444,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(20122,444,'content_block_0_banner_image_mobile','951'),(20123,444,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(20124,444,'content_block_0_banner_image_mobile_position','center center'),(20125,444,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(20126,444,'content_block_2_parallax_effect_on_image','0'),(20127,444,'_content_block_2_parallax_effect_on_image','field_5bbe319b39211'),(20128,444,'content_block_2_background_image','953'),(20129,444,'_content_block_2_background_image','field_5bbe2eb1a4ddb'),(20130,444,'content_block_2_background_image_position','center center'),(20131,444,'_content_block_2_background_image_position','field_5bbe2eb1a4ddc'),(20132,444,'content_block_2_background_image_mobile','953'),(20133,444,'_content_block_2_background_image_mobile','field_5bbe3b5e5f6f8'),(20134,444,'content_block_2_background_image_position_mobile','center center'),(20135,444,'_content_block_2_background_image_position_mobile','field_5bbe3b695f6f9'),(20136,444,'content_block_3_layout_title','Discover Meadowcroft'),(20137,444,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(20138,444,'content_block_3_text_block_columns','one'),(20139,444,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(20140,444,'content_block_3_narrow_text_block_content','0'),(20141,444,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(20142,444,'content_block_3_reverse_colors','0'),(20143,444,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(20144,444,'content_block_3_enable_background_image','0'),(20145,444,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(20146,444,'content_block_3_custom_css_class',''),(20147,444,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(20148,444,'content_block_3_text_block_content_col_one','<h3 style=\"text-align: center;\">DISCOVER MEADOWCROFT WINES</h3>'),(20149,444,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(20156,444,'content_block_5_layout_title','Who We Are Title'),(20157,444,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(20158,444,'content_block_5_text_block_columns','one'),(20159,444,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(20160,444,'content_block_5_narrow_text_block_content','0'),(20161,444,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(20162,444,'content_block_5_reverse_colors','0'),(20163,444,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(20164,444,'content_block_5_enable_background_image','0'),(20165,444,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(20166,444,'content_block_5_custom_css_class',''),(20167,444,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(20168,444,'content_block_5_text_block_content_col_one','<h3 style=\"text-align: center;\">WHO WE ARE</h3>'),(20169,444,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(20170,1512,'wpsisac_slide_link',''),(20172,1512,'mec_location_id','0'),(20173,1512,'mec_additional_location_ids','a:0:{}'),(20174,1512,'mec_organizer_id','0'),(20175,1512,'mec_additional_organizer_ids','a:0:{}'),(20176,1514,'inline_featured_image','0'),(20177,1514,'_edit_lock','1669951398:2'),(20178,1514,'_edit_last','2'),(20179,1514,'wpsisac_slide_link',''),(20181,1516,'inline_featured_image','0'),(20182,1516,'_edit_lock','1669951399:2'),(20183,1516,'_edit_last','2'),(20184,1516,'wpsisac_slide_link',''),(20185,445,'content_block_2_layout_title',''),(20186,445,'_content_block_2_layout_title','field_5bc11ca9a0d50-c'),(20187,445,'content_block_2_custom_css_class',''),(20188,445,'_content_block_2_custom_css_class','field_5bbf30b1a4de2-1'),(20189,445,'content_block_2_banner_full_width','1'),(20190,445,'_content_block_2_banner_full_width','field_5bbe19c8efa0a'),(20191,445,'content_block_2_banner_size','normal'),(20192,445,'_content_block_2_banner_size','field_5bbe232929ec9'),(20193,445,'content_block_2_add_parallax_effect','1'),(20194,445,'_content_block_2_add_parallax_effect','field_5bbe219ccb6a9'),(20195,445,'content_block_2_add_veil_over_banner','0'),(20196,445,'_content_block_2_add_veil_over_banner','field_5bbe333f39212'),(20197,445,'content_block_2_banner_content_position','centered'),(20198,445,'_content_block_2_banner_content_position','field_5bbe259b02b62'),(20199,445,'content_block_2_banner_title',''),(20200,445,'_content_block_2_banner_title','field_5bbe1b78efa0b'),(20201,445,'content_block_2_banner_subtitle',''),(20202,445,'_content_block_2_banner_subtitle','field_5bbe1b83efa0c'),(20203,445,'content_block_2_banner_button_link',''),(20204,445,'_content_block_2_banner_button_link','field_5bbe1b8cefa0d'),(20205,445,'content_block_2_banner_button_new_tab','0'),(20206,445,'_content_block_2_banner_button_new_tab','field_5bbe1e6d18fae'),(20207,445,'content_block_2_show_down_arrow','0'),(20208,445,'_content_block_2_show_down_arrow','field_5bbe24f721165'),(20209,445,'content_block_2_banner_image_description',''),(20210,445,'_content_block_2_banner_image_description','field_5bbf30b1a4de2-1a'),(20211,445,'content_block_2_banner_image','1521'),(20212,445,'_content_block_2_banner_image','field_5bbe201718faf'),(20213,445,'content_block_2_banner_image_position','center center'),(20214,445,'_content_block_2_banner_image_position','field_5bbe278f9fb97'),(20215,445,'content_block_2_banner_image_mobile','1522'),(20216,445,'_content_block_2_banner_image_mobile','field_5bbe202818fb0'),(20217,445,'content_block_2_banner_image_mobile_position','center center'),(20218,445,'_content_block_2_banner_image_mobile_position','field_5bbe279c9fb98'),(20219,445,'content_block_10_layout_title','Testimonials'),(20220,445,'_content_block_10_layout_title','field_5bc11ca9a0d50-s'),(20221,445,'content_block_10_text_block_columns','two'),(20222,445,'_content_block_10_text_block_columns','field_5bbe2f81a4de0'),(20223,445,'content_block_10_column_size','equal'),(20224,445,'_content_block_10_column_size','field_columnsize'),(20225,445,'content_block_10_narrow_text_block_content','0'),(20226,445,'_content_block_10_narrow_text_block_content','field_5bbe342e08360'),(20227,445,'content_block_10_reverse_colors','0'),(20228,445,'_content_block_10_reverse_colors','field_5bbe3027a4de1'),(20229,445,'content_block_10_enable_background_image','0'),(20230,445,'_content_block_10_enable_background_image','field_5bbe30b1a4de2'),(20231,445,'content_block_10_custom_css_class','medium-width'),(20232,445,'_content_block_10_custom_css_class','field_5bbe30b1a4de2-1'),(20233,445,'content_block_10_text_block_content_col_one','&nbsp;\r\n<p class=\"metatitle\" style=\"text-align: center;\">OPEN DAILY</p>\r\n\r\n<h3 style=\"text-align: center;\">TESTIMONIALS</h3>\r\n[slick-slider category=\"29\" loop=\"true\" hover_pause=\"true\" dots=\"false\" arrows=\"false\" show_content=\"true\" show_title=\"false\" autoplay_interval=\"4000\" speed=\"300\" extra_class=\"tasting-room\" design=\"design-5\"]'),(20234,445,'_content_block_10_text_block_content_col_one','field_5bbe313b3920d'),(20235,445,'content_block_10_text_block_content_col_two','<img class=\"wp-image-896 aligncenter\" src=\"/wp-content/uploads/2023/02/testimonials.jpg\" alt=\"Bottle of Meadowcroft wine in lavender field\" width=\"861\" height=\"610\" />'),(20236,445,'_content_block_10_text_block_content_col_two','field_5bbe31593920e'),(20237,1517,'inline_featured_image','0'),(20238,1517,'_edit_lock','1669951400:2'),(20239,1517,'_edit_last','2'),(20240,1517,'wpsisac_slide_link',''),(20241,1518,'inline_featured_image','0'),(20242,1518,'_edit_lock','1695671177:3'),(20243,1518,'_edit_last','2'),(20244,1518,'wpsisac_slide_link',''),(20245,1519,'inline_featured_image','0'),(20246,1519,'_edit_lock','1672620738:3'),(20247,1519,'_edit_last','2'),(20248,1519,'wpsisac_slide_link',''),(20249,1520,'inline_featured_image','0'),(20250,1520,'_edit_lock','1669951207:2'),(20251,1520,'_edit_last','2'),(20252,1520,'wpsisac_slide_link',''),(20253,1521,'_wp_attached_file','2022/12/tasting.jpg'),(20254,1521,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:19:\"2022/12/tasting.jpg\";s:8:\"filesize\";i:746554;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"tasting-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25821;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"tasting-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:182484;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"tasting-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13432;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"tasting-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113600;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:19:\"tasting-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36875;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:19:\"tasting-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54293;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:19:\"tasting-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38907;}s:8:\"tileview\";a:5:{s:4:\"file\";s:19:\"tasting-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45844;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"tasting-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:347318;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:20:\"tasting-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:234968;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20255,1521,'_wp_attachment_image_alt','People cheering with white wine'),(20256,1522,'_wp_attached_file','2022/12/tasting-mobile.jpg'),(20257,1522,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:26:\"2022/12/tasting-mobile.jpg\";s:8:\"filesize\";i:518960;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"tasting-mobile-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29812;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"tasting-mobile-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206075;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"tasting-mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13529;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"tasting-mobile-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206075;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:26:\"tasting-mobile-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36825;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:26:\"tasting-mobile-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54730;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:26:\"tasting-mobile-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39428;}s:8:\"tileview\";a:5:{s:4:\"file\";s:26:\"tasting-mobile-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45949;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20258,1522,'_wp_attachment_image_alt','People cheering with white wine'),(20259,1523,'_wp_attached_file','2022/12/quote.png'),(20260,1523,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:230;s:6:\"height\";i:200;s:4:\"file\";s:17:\"2022/12/quote.png\";s:8:\"filesize\";i:3865;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"quote-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2967;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20261,1523,'_wp_attachment_image_alt','Quote Icon'),(20262,1519,'_thumbnail_id','1523'),(20263,1524,'inline_featured_image','0'),(20264,1524,'_edit_lock','1672766172:2'),(20265,1524,'_edit_last','2'),(20266,1524,'wpsisac_slide_link',''),(20267,1525,'inline_featured_image','0'),(20268,1525,'_edit_lock','1672879386:2'),(20269,1525,'_edit_last','2'),(20270,1525,'wpsisac_slide_link',''),(20317,1530,'_wp_attached_file','2022/12/hab.jpg'),(20318,1530,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:2000;s:4:\"file\";s:15:\"2022/12/hab.jpg\";s:8:\"filesize\";i:499377;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"hab-150x300.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22867;}s:5:\"large\";a:5:{s:4:\"file\";s:16:\"hab-512x1024.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144225;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"hab-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14441;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"hab-768x1536.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:256393;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:15:\"hab-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40089;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:15:\"hab-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57345;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:15:\"hab-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42378;}s:8:\"tileview\";a:5:{s:4:\"file\";s:15:\"hab-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49242;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:16:\"hab-768x1536.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:256393;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20319,445,'_oembed_e31580079477f3080ec1c17854c72e85','{{unknown}}'),(20322,1530,'_wp_attachment_image_alt','Hot air balloon'),(20342,1532,'_wp_attached_file','2022/12/rose.jpg'),(20343,1532,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:373;s:4:\"file\";s:16:\"2022/12/rose.jpg\";s:8:\"filesize\";i:111425;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"rose-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30865;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"rose-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13670;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:16:\"rose-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36663;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:16:\"rose-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59278;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:16:\"rose-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43758;}s:8:\"tileview\";a:5:{s:4:\"file\";s:16:\"rose-300x373.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44105;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20344,1532,'_wp_attachment_image_alt','Bottle of rosé on outdoor table'),(20345,1533,'_wp_attached_file','2022/12/rose-1.jpg'),(20346,1533,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:373;s:4:\"file\";s:18:\"2022/12/rose-1.jpg\";s:8:\"filesize\";i:111425;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"rose-1-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30865;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"rose-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13670;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:18:\"rose-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36663;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:18:\"rose-1-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59278;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:18:\"rose-1-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43758;}s:8:\"tileview\";a:5:{s:4:\"file\";s:18:\"rose-1-300x373.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44105;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20347,1533,'_wp_attachment_image_alt','Glass of rosé and sunglasses on outdoor table'),(20348,445,'_oembed_6de3c4b571c138099e60b6a95d4a5810','{{unknown}}'),(20354,412,'content_block_4_layout_title','Tom Quote'),(20355,412,'_content_block_4_layout_title','field_5bc11ca9a0d50-s'),(20356,412,'content_block_4_text_block_columns','one'),(20357,412,'_content_block_4_text_block_columns','field_5bbe2f81a4de0'),(20358,412,'content_block_4_narrow_text_block_content','1'),(20359,412,'_content_block_4_narrow_text_block_content','field_5bbe342e08360'),(20360,412,'content_block_4_reverse_colors','0'),(20361,412,'_content_block_4_reverse_colors','field_5bbe3027a4de1'),(20362,412,'content_block_4_enable_background_image','0'),(20363,412,'_content_block_4_enable_background_image','field_5bbe30b1a4de2'),(20364,412,'content_block_4_custom_css_class',''),(20365,412,'_content_block_4_custom_css_class','field_5bbe30b1a4de2-1'),(20366,412,'content_block_4_text_block_content_col_one','&nbsp;\r\n<p class=\"large-quote\" style=\"text-align: center;\">“My hope is to create wines with a Sonoma pulse that express the complexity found in European varietals.\"</p>\r\n<p class=\"testimonial\" style=\"text-align: center;\">TOM MEADOWCROFT</p>'),(20367,412,'_content_block_4_text_block_content_col_one','field_5bbe313b3920d'),(20415,1538,'inline_featured_image','0'),(20416,1538,'_edit_lock','1686197575:7'),(20417,1538,'_edit_last','7'),(20418,1538,'_wp_page_template','default'),(20419,1538,'content_block_0_layout_title',''),(20420,1538,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(20421,1538,'content_block_0_custom_css_class',''),(20422,1538,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(20423,1538,'content_block_0_banner_full_width','1'),(20424,1538,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(20425,1538,'content_block_0_banner_size','normal'),(20426,1538,'_content_block_0_banner_size','field_5bbe232929ec9'),(20427,1538,'content_block_0_add_parallax_effect','0'),(20428,1538,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(20429,1538,'content_block_0_add_veil_over_banner','1'),(20430,1538,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(20431,1538,'content_block_0_banner_content_position','centered'),(20432,1538,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(20433,1538,'content_block_0_banner_title','Stay in Touch'),(20434,1538,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(20435,1538,'content_block_0_banner_subtitle','If you like rewards, you should join our email list.'),(20436,1538,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(20437,1538,'content_block_0_banner_button_link',''),(20438,1538,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(20439,1538,'content_block_0_banner_button_new_tab','0'),(20440,1538,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(20441,1538,'content_block_0_show_down_arrow','0'),(20442,1538,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(20443,1538,'content_block_0_banner_image_description',''),(20444,1538,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(20445,1538,'content_block_0_banner_image','1006'),(20446,1538,'_content_block_0_banner_image','field_5bbe201718faf'),(20447,1538,'content_block_0_banner_image_position','center center'),(20448,1538,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(20449,1538,'content_block_0_banner_image_mobile','1006'),(20450,1538,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(20451,1538,'content_block_0_banner_image_mobile_position','center center'),(20452,1538,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(20453,1538,'content_block_1_layout_title',''),(20454,1538,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(20455,1538,'content_block_1_text_block_columns','one'),(20456,1538,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(20457,1538,'content_block_1_narrow_text_block_content','1'),(20458,1538,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(20459,1538,'content_block_1_reverse_colors','0'),(20460,1538,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(20461,1538,'content_block_1_enable_background_image','0'),(20462,1538,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(20463,1538,'content_block_1_parallax_effect_on_image','0'),(20464,1538,'_content_block_1_parallax_effect_on_image','field_5bbe319b39211'),(20465,1538,'content_block_1_custom_css_class',''),(20466,1538,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(20467,1538,'content_block_1_text_block_content_col_one','<p style=\"text-align: center;\">Our email subscribers receive priority access to our extremely limited production wines and first look at our vibrant events, both in the tasting room and at Cornerstone Gardens. Subscribe today and receive 200 loyalty points to use towards your first order of sustainably sourced, award-winning Meadowcroft Wines.</p>'),(20468,1538,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(20469,1538,'content_block_1_background_image','933'),(20470,1538,'_content_block_1_background_image','field_5bbe2eb1a4ddb'),(20471,1538,'content_block_1_background_image_position','center center'),(20472,1538,'_content_block_1_background_image_position','field_5bbe2eb1a4ddc'),(20473,1538,'content_block_1_background_image_mobile','932'),(20474,1538,'_content_block_1_background_image_mobile','field_5bbe3b5e5f6f8'),(20475,1538,'content_block_1_background_image_position_mobile','center center'),(20476,1538,'_content_block_1_background_image_position_mobile','field_5bbe3b695f6f9'),(20477,1538,'content_block','a:3:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";}'),(20478,1538,'_content_block','field_5bbe19a7efa09'),(20479,1538,'_yoast_wpseo_estimated-reading-time-minutes','0'),(20480,1538,'_yoast_wpseo_wordproof_timestamp',''),(20482,1538,'content_block_1_column_size','equal'),(20483,1538,'_content_block_1_column_size','field_columnsize'),(20484,1538,'content_block_1_text_block_content_col_two','&nbsp;\r\n[c7-subscribe]\r\n&nbsp;'),(20485,1538,'_content_block_1_text_block_content_col_two','field_5bbe31593920e'),(20486,1538,'content_block_1_text_block_content_col_three','&nbsp;'),(20487,1538,'_content_block_1_text_block_content_col_three','field_5bbe31793920f'),(20488,1538,'content_block_2_layout_title',''),(20489,1538,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(20490,1538,'content_block_2_text_block_columns','one'),(20491,1538,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(20492,1538,'content_block_2_column_size','equal'),(20493,1538,'_content_block_2_column_size','field_columnsize'),(20494,1538,'content_block_2_narrow_text_block_content','1'),(20495,1538,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(20496,1538,'content_block_2_reverse_colors','0'),(20497,1538,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(20498,1538,'content_block_2_enable_background_image','0'),(20499,1538,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(20500,1538,'content_block_2_custom_css_class',''),(20501,1538,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(20502,1538,'content_block_2_text_block_content_col_one','[c7-subscribe]'),(20503,1538,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(20504,1538,'content_block_2_text_block_content_col_two','[c7-subscribe]\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;'),(20505,1538,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(20506,1538,'content_block_2_text_block_content_col_three','&nbsp;'),(20507,1538,'_content_block_2_text_block_content_col_three','field_5bbe31793920f'),(20508,1538,'_yoast_wpseo_content_score','90'),(20509,412,'content_block_5_layout_title','Spacer'),(20510,412,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(20511,412,'content_block_5_text_block_columns','one'),(20512,412,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(20513,412,'content_block_5_narrow_text_block_content','0'),(20514,412,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(20515,412,'content_block_5_reverse_colors','0'),(20516,412,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(20517,412,'content_block_5_enable_background_image','0'),(20518,412,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(20519,412,'content_block_5_custom_css_class',''),(20520,412,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(20521,412,'content_block_5_text_block_content_col_one','&nbsp;'),(20522,412,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(20653,444,'content_block_4_layout_title',''),(20654,444,'_content_block_4_layout_title','field_5bc11ca9a0d50-u'),(20655,444,'content_block_4_video_width','regular'),(20656,444,'_content_block_4_video_width','field_5bbe75793d323'),(20657,444,'content_block_4_autoplay_video','0'),(20658,444,'_content_block_4_autoplay_video','field_5bbe7f869a2a7'),(20659,444,'content_block_4_video_source','YouTube'),(20660,444,'_content_block_4_video_source','field_5bbe74973d31d'),(20661,444,'content_block_4_youtube_video_id','W3g6jRzNkYw'),(20662,444,'_content_block_4_youtube_video_id','field_5bbe74e43d31f'),(20663,444,'content_block_4_video_cover_image','864'),(20664,444,'_content_block_4_video_cover_image','field_5bbe75d33d326'),(20665,444,'content_block_4_video_cover_image_mobile','865'),(20666,444,'_content_block_4_video_cover_image_mobile','field_5bbe765b3d327'),(20667,444,'content_block_6_layout_title',''),(20668,444,'_content_block_6_layout_title','field_5bc11ca9a0d50-d'),(20669,444,'content_block_6_custom_css_class',''),(20670,444,'_content_block_6_custom_css_class','field_5bbf31b1a4de2-1'),(20671,444,'content_block_6_members_displayed_per_row','2'),(20672,444,'_content_block_6_members_displayed_per_row','field_5bc11d6da0d4f'),(20673,444,'content_block_7_layout_title',' Winemaker Quote'),(20674,444,'_content_block_7_layout_title','field_5bc11ca9a0d50-s'),(20675,444,'content_block_7_text_block_columns','one'),(20676,444,'_content_block_7_text_block_columns','field_5bbe2f81a4de0'),(20677,444,'content_block_7_narrow_text_block_content','0'),(20678,444,'_content_block_7_narrow_text_block_content','field_5bbe342e08360'),(20679,444,'content_block_7_reverse_colors','0'),(20680,444,'_content_block_7_reverse_colors','field_5bbe3027a4de1'),(20681,444,'content_block_7_enable_background_image','0'),(20682,444,'_content_block_7_enable_background_image','field_5bbe30b1a4de2'),(20683,444,'content_block_7_custom_css_class',''),(20684,444,'_content_block_7_custom_css_class','field_5bbe30b1a4de2-1'),(20685,444,'content_block_7_text_block_content_col_one','<img class=\"alignnone wp-image-934 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/quotation-marks.png\" alt=\"Quotation marks\" width=\"100\" height=\"81\" />\r\n<p style=\"font-size: 22px; text-align: center;\"><em>All steps of the winemaking process have their beauty.</em>\r\n<em>Each wine has its own personality.</em></p>\r\n<img class=\"wp-image-966 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/petar-circle.png\" alt=\"Peter Kirilov\" width=\"120\" height=\"120\" />\r\n<p class=\"testimonial\" style=\"text-align: center;\">PETAR KIRILOV</p>\r\n<p class=\"callout\" style=\"text-align: center;\">WINEMAKER</p>'),(20686,444,'_content_block_7_text_block_content_col_one','field_5bbe313b3920d'),(20688,1541,'_menu_item_type','post_type'),(20689,1541,'_menu_item_menu_item_parent','0'),(20690,1541,'_menu_item_object_id','1538'),(20691,1541,'_menu_item_object','page'),(20692,1541,'_menu_item_target',''),(20693,1541,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(20694,1541,'_menu_item_xfn',''),(20695,1541,'_menu_item_url',''),(20697,920,'_wp_old_date','2022-12-01'),(20698,456,'_wp_old_date','2022-12-01'),(20701,759,'_wp_old_date','2022-12-01'),(20707,948,'_wp_old_date','2022-12-01'),(20708,949,'_wp_old_date','2022-12-01'),(20709,950,'_wp_old_date','2022-12-01'),(20710,880,'_wp_old_date','2022-12-01'),(21022,1544,'content_block_0_layout_title',''),(21023,1544,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(21024,1544,'content_block_0_custom_css_class',''),(21025,1544,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(21026,1544,'content_block_0_banner_full_width','1'),(21027,1544,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(21028,1544,'content_block_0_banner_size','short'),(21029,1544,'_content_block_0_banner_size','field_5bbe232929ec9'),(21030,1544,'content_block_0_add_parallax_effect','0'),(21031,1544,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(21032,1544,'content_block_0_add_veil_over_banner','1'),(21033,1544,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(21034,1544,'content_block_0_banner_content_position','centered'),(21035,1544,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(21036,1544,'content_block_0_banner_title','Upcoming Sonoma Wine Events'),(21037,1544,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(21038,1544,'content_block_0_banner_subtitle','Join Us'),(21039,1544,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(21040,1544,'content_block_0_banner_button_link',''),(21041,1544,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(21042,1544,'content_block_0_banner_button_new_tab','0'),(21043,1544,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(21044,1544,'content_block_0_show_down_arrow','0'),(21045,1544,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(21046,1544,'content_block_0_banner_image_description',''),(21047,1544,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(21048,1544,'content_block_0_banner_image','881'),(21049,1544,'_content_block_0_banner_image','field_5bbe201718faf'),(21050,1544,'content_block_0_banner_image_position','center center'),(21051,1544,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(21052,1544,'content_block_0_banner_image_mobile','882'),(21053,1544,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(21054,1544,'content_block_0_banner_image_mobile_position','center center'),(21055,1544,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(21056,1544,'content_block_1_layout_title','Calendar'),(21057,1544,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(21058,1544,'content_block_1_text_block_columns','one'),(21059,1544,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(21060,1544,'content_block_1_narrow_text_block_content','0'),(21061,1544,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(21062,1544,'content_block_1_reverse_colors','0'),(21063,1544,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(21064,1544,'content_block_1_enable_background_image','0'),(21065,1544,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(21066,1544,'content_block_1_custom_css_class',''),(21067,1544,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(21068,1544,'content_block_1_text_block_content_col_one','Stay tuned for 2023 Meadowcroft winery events!\r\n\r\n[MEC id=\"1506\"]'),(21069,1544,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(21070,1544,'content_block_2_layout_title','Private Events'),(21071,1544,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(21072,1544,'content_block_2_text_block_columns','one'),(21073,1544,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(21074,1544,'content_block_2_narrow_text_block_content','1'),(21075,1544,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(21076,1544,'content_block_2_reverse_colors','1'),(21077,1544,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(21078,1544,'content_block_2_enable_background_image','1'),(21079,1544,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(21080,1544,'content_block_2_parallax_effect_on_image','0'),(21081,1544,'_content_block_2_parallax_effect_on_image','field_5bbe319b39211'),(21082,1544,'content_block_2_custom_css_class','private-events-block'),(21083,1544,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(21084,1544,'content_block_2_text_block_content_col_one','<h3 style=\"text-align: center;\">PRIVATE EVENTS</h3>\r\n<p style=\"text-align: center;\">Interested in having your next special event at our Tasting Room? We host dinner parties, wedding welcome receptions, company functions, and anniversary parties.  To book, <a href=\"/inquiry/\" data-uw-rm-brl=\"false\">Contact Us Today!</a></p>\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/12/2020_Meadowcroft_PrivateEvent_samplemenu.pdf\" target=\"_blank\" rel=\"noopener\" aria-label=\"More Information - opens in new tab\" data-gdpr-atts=\"{}\" data-uw-rm-ext-link=\"\" data-uw-pdf-br=\"1\" data-uw-pdf-doc=\"\">MORE INFORMATION</a></p>'),(21085,1544,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(21086,1544,'content_block_2_background_image','1508'),(21087,1544,'_content_block_2_background_image','field_5bbe2eb1a4ddb'),(21088,1544,'content_block_2_background_image_position','center center'),(21089,1544,'_content_block_2_background_image_position','field_5bbe2eb1a4ddc'),(21090,1544,'content_block_2_background_image_mobile','1508'),(21091,1544,'_content_block_2_background_image_mobile','field_5bbe3b5e5f6f8'),(21092,1544,'content_block_2_background_image_position_mobile','center center'),(21093,1544,'_content_block_2_background_image_position_mobile','field_5bbe3b695f6f9'),(21094,1544,'content_block','a:3:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";}'),(21095,1544,'_content_block','field_5bbe19a7efa09'),(21099,1546,'_wp_attached_file','2022/12/balloon-2.jpg'),(21100,1546,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:2000;s:4:\"file\";s:21:\"2022/12/balloon-2.jpg\";s:8:\"filesize\";i:435990;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"balloon-2-150x300.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13626;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"balloon-2-512x1024.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79803;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"balloon-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9790;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"balloon-2-768x1536.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158873;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:21:\"balloon-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21940;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:21:\"balloon-2-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28725;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:21:\"balloon-2-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21964;}s:8:\"tileview\";a:5:{s:4:\"file\";s:21:\"balloon-2-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28342;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"balloon-2-768x1536.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158873;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21101,1546,'_wp_attachment_image_alt','Balloon over vineyard'),(21102,1547,'_wp_attached_file','2022/12/balloon-2-1.jpg'),(21103,1547,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:2000;s:4:\"file\";s:23:\"2022/12/balloon-2-1.jpg\";s:8:\"filesize\";i:435990;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"balloon-2-1-150x300.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13626;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"balloon-2-1-512x1024.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79803;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"balloon-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9790;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"balloon-2-1-768x1536.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158873;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:23:\"balloon-2-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21940;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:23:\"balloon-2-1-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28725;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:23:\"balloon-2-1-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21964;}s:8:\"tileview\";a:5:{s:4:\"file\";s:23:\"balloon-2-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28342;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"balloon-2-1-768x1536.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158873;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21104,1547,'_wp_attachment_image_alt','Colorful hot air balloon over vineyard'),(21111,1552,'content_block_0_layout_title',''),(21112,1552,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(21113,1552,'content_block_0_custom_css_class',''),(21114,1552,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(21115,1552,'content_block_0_banner_full_width','1'),(21116,1552,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(21117,1552,'content_block_0_banner_size','long'),(21118,1552,'_content_block_0_banner_size','field_5bbe232929ec9'),(21119,1552,'content_block_0_add_parallax_effect','0'),(21120,1552,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(21121,1552,'content_block_0_add_veil_over_banner','0'),(21122,1552,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(21123,1552,'content_block_0_banner_content_position','centered'),(21124,1552,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(21125,1552,'content_block_0_banner_title',''),(21126,1552,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(21127,1552,'content_block_0_banner_subtitle',''),(21128,1552,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(21129,1552,'content_block_0_banner_button_link',''),(21130,1552,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(21131,1552,'content_block_0_banner_button_new_tab','0'),(21132,1552,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(21133,1552,'content_block_0_show_down_arrow','0'),(21134,1552,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(21135,1552,'content_block_0_banner_image_description',''),(21136,1552,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(21137,1552,'content_block_0_banner_image','951'),(21138,1552,'_content_block_0_banner_image','field_5bbe201718faf'),(21139,1552,'content_block_0_banner_image_position','center top'),(21140,1552,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(21141,1552,'content_block_0_banner_image_mobile',''),(21142,1552,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(21143,1552,'content_block_0_banner_image_mobile_position','center center'),(21144,1552,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(21145,1552,'content_block_1_layout_title',''),(21146,1552,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(21147,1552,'content_block_1_text_block_columns','one'),(21148,1552,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(21149,1552,'content_block_1_narrow_text_block_content','1'),(21150,1552,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(21151,1552,'content_block_1_reverse_colors','0'),(21152,1552,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(21153,1552,'content_block_1_enable_background_image','0'),(21154,1552,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(21155,1552,'content_block_1_custom_css_class','wide-content'),(21156,1552,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(21157,1552,'content_block_1_text_block_content_col_one','&nbsp;\r\n<p class=\"metatitle\" style=\"text-align: center;\">About</p>\r\n\r\n<h2 style=\"text-align: center;\">MEADOWCROFT WINES \r\nBY TOM MEADOWCROFT</h2>\r\n<p style=\"text-align: center;\">Meadowcroft is the namesake of Winegrower Tom Meadowcroft. The meaning of Meadowcroft is a fertile field or meadow and croft refers to a cultivated area that has been nurtured over time. The honeybee on the label symbolizes this conscientious work and the process of transformation from wine grapes into outstanding wine.</p>\r\n&nbsp;'),(21158,1552,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(21159,1552,'content_block_2_layout_title','A Toast From The Winemaker'),(21160,1552,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(21161,1552,'content_block_2_text_block_columns','one'),(21162,1552,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(21163,1552,'content_block_2_narrow_text_block_content','1'),(21164,1552,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(21165,1552,'content_block_2_reverse_colors','1'),(21166,1552,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(21167,1552,'content_block_2_enable_background_image','1'),(21168,1552,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(21169,1552,'content_block_2_parallax_effect_on_image','0'),(21170,1552,'_content_block_2_parallax_effect_on_image','field_5bbe319b39211'),(21171,1552,'content_block_2_custom_css_class',''),(21172,1552,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(21173,1552,'content_block_2_text_block_content_col_one','&nbsp;\r\n<h2><span class=\"h3\">A TOAST FROM THE WINEMAKER…</span></h2>\r\n<p style=\"text-align: center;\">As the winemaker I am ever in the pursuit of creating wines infused with an explosive strength of diverse character that strike a soulful chord. The zeal of creativity with which I am driven is inspired by the rich cultural experience from where Meadowcroft Wines originates. I proudly focus on a wide array of beautiful varietals, from our Cabernet Sauvignon which is grown on our estate vineyard property located on the esteemed Mount Veeder in Napa, to Bordeaux grapes scrupulously sourced from sustainable vineyards around Dry Creek, Carneros, and Alexander Valley, I happily direct a global dialogue into my winemaking process. My hope is to create wines with a Sonoma pulse that express the complexity found in European varietals. I invite you to raise a glass of Meadowcroft and wish you bountiful gatherings and many happy toasts!</p>\r\n<p style=\"text-align: center;\">Cheers!</p>\r\n<img class=\"alignnone wp-image-952 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/signature.png\" alt=\"Tom Meadowcroft Signature\" width=\"352\" height=\"117\" />'),(21174,1552,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(21175,1552,'content_block_2_background_image','953'),(21176,1552,'_content_block_2_background_image','field_5bbe2eb1a4ddb'),(21177,1552,'content_block_2_background_image_position','center center'),(21178,1552,'_content_block_2_background_image_position','field_5bbe2eb1a4ddc'),(21179,1552,'content_block_2_background_image_mobile','953'),(21180,1552,'_content_block_2_background_image_mobile','field_5bbe3b5e5f6f8'),(21181,1552,'content_block_2_background_image_position_mobile','center center'),(21182,1552,'_content_block_2_background_image_position_mobile','field_5bbe3b695f6f9'),(21183,1552,'content_block_3_layout_title','Discover Meadowcroft'),(21184,1552,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(21185,1552,'content_block_3_text_block_columns','one'),(21186,1552,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(21187,1552,'content_block_3_narrow_text_block_content','0'),(21188,1552,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(21189,1552,'content_block_3_reverse_colors','0'),(21190,1552,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(21191,1552,'content_block_3_enable_background_image','0'),(21192,1552,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(21193,1552,'content_block_3_custom_css_class',''),(21194,1552,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(21195,1552,'content_block_3_text_block_content_col_one','<h3 style=\"text-align: center;\">DISCOVER MEADOWCROFT WINES</h3>'),(21196,1552,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(21197,1552,'content_block_4_layout_title',''),(21198,1552,'_content_block_4_layout_title','field_5bc11ca9a0d50-u'),(21199,1552,'content_block_4_video_width','regular'),(21200,1552,'_content_block_4_video_width','field_5bbe75793d323'),(21201,1552,'content_block_4_autoplay_video','0'),(21202,1552,'_content_block_4_autoplay_video','field_5bbe7f869a2a7'),(21203,1552,'content_block_4_video_source','YouTube'),(21204,1552,'_content_block_4_video_source','field_5bbe74973d31d'),(21205,1552,'content_block_4_youtube_video_id','W3g6jRzNkYw'),(21206,1552,'_content_block_4_youtube_video_id','field_5bbe74e43d31f'),(21207,1552,'content_block_4_video_cover_image','864'),(21208,1552,'_content_block_4_video_cover_image','field_5bbe75d33d326'),(21209,1552,'content_block_4_video_cover_image_mobile','865'),(21210,1552,'_content_block_4_video_cover_image_mobile','field_5bbe765b3d327'),(21211,1552,'content_block_5_layout_title','Who We Are Title'),(21212,1552,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(21213,1552,'content_block_5_text_block_columns','one'),(21214,1552,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(21215,1552,'content_block_5_narrow_text_block_content','0'),(21216,1552,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(21217,1552,'content_block_5_reverse_colors','0'),(21218,1552,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(21219,1552,'content_block_5_enable_background_image','0'),(21220,1552,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(21221,1552,'content_block_5_custom_css_class',''),(21222,1552,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(21223,1552,'content_block_5_text_block_content_col_one','<h3 style=\"text-align: center;\">WHO WE ARE</h3>'),(21224,1552,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(21225,1552,'content_block_6_layout_title',''),(21226,1552,'_content_block_6_layout_title','field_5bc11ca9a0d50-d'),(21227,1552,'content_block_6_custom_css_class',''),(21228,1552,'_content_block_6_custom_css_class','field_5bbf31b1a4de2-1'),(21229,1552,'content_block_6_members_displayed_per_row','4'),(21230,1552,'_content_block_6_members_displayed_per_row','field_5bc11d6da0d4f'),(21231,1552,'content_block_7_layout_title',' Winemaker Quote'),(21232,1552,'_content_block_7_layout_title','field_5bc11ca9a0d50-s'),(21233,1552,'content_block_7_text_block_columns','one'),(21234,1552,'_content_block_7_text_block_columns','field_5bbe2f81a4de0'),(21235,1552,'content_block_7_narrow_text_block_content','0'),(21236,1552,'_content_block_7_narrow_text_block_content','field_5bbe342e08360'),(21237,1552,'content_block_7_reverse_colors','0'),(21238,1552,'_content_block_7_reverse_colors','field_5bbe3027a4de1'),(21239,1552,'content_block_7_enable_background_image','0'),(21240,1552,'_content_block_7_enable_background_image','field_5bbe30b1a4de2'),(21241,1552,'content_block_7_custom_css_class',''),(21242,1552,'_content_block_7_custom_css_class','field_5bbe30b1a4de2-1'),(21243,1552,'content_block_7_text_block_content_col_one','<img class=\"alignnone wp-image-934 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/quotation-marks.png\" alt=\"Quotation marks\" width=\"100\" height=\"81\" />\r\n<p style=\"font-size: 22px; text-align: center;\"><em>All steps of the winemaking process have their beauty.</em>\r\n<em>Each wine has its own personality.</em></p>\r\n<img class=\"wp-image-966 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/petar-circle.png\" alt=\"Peter Kirilov\" width=\"120\" height=\"120\" />\r\n<p class=\"testimonial\" style=\"text-align: center;\">PETAR KIRILOV</p>\r\n<p class=\"callout\" style=\"text-align: center;\">WINEMAKER</p>'),(21244,1552,'_content_block_7_text_block_content_col_one','field_5bbe313b3920d'),(21245,1552,'content_block','a:8:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";i:3;s:10:\"text_block\";i:4;s:5:\"video\";i:5;s:10:\"text_block\";i:6;s:12:\"team_members\";i:7;s:10:\"text_block\";}'),(21246,1552,'_content_block','field_5bbe19a7efa09'),(21247,951,'_wp_attachment_backup_sizes','a:6:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1400;s:6:\"height\";i:923;s:4:\"file\";s:8:\"team.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:16:\"team-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12384;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:16:\"team-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25489;}s:17:\"medium_large-orig\";a:5:{s:4:\"file\";s:16:\"team-768x506.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121051;}s:10:\"large-orig\";a:5:{s:4:\"file\";s:17:\"team-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:199134;}s:19:\"post-thumbnail-orig\";a:5:{s:4:\"file\";s:17:\"team-1200x791.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:260666;}}'),(21249,1554,'inline_featured_image','0'),(21250,1554,'_edit_lock','1734634157:3'),(21251,1554,'_edit_last','3'),(21252,1555,'_wp_attached_file','2022/12/club.jpg'),(21253,1555,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:16:\"2022/12/club.jpg\";s:8:\"filesize\";i:574778;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"club-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15620;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"club-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91191;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"club-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8767;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"club-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56988;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:16:\"club-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19709;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:16:\"club-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29008;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:16:\"club-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21899;}s:8:\"tileview\";a:5:{s:4:\"file\";s:16:\"club-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23938;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:18:\"club-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193536;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:17:\"club-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120350;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21254,1555,'_wp_attachment_image_alt','People toasting with glasses of red wine'),(21255,1556,'_wp_attached_file','2022/12/club-mobile.jpg'),(21256,1556,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:23:\"2022/12/club-mobile.jpg\";s:8:\"filesize\";i:398031;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"club-mobile-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16274;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"club-mobile-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108404;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"club-mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9224;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"club-mobile-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108404;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:23:\"club-mobile-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21486;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:23:\"club-mobile-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32137;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:23:\"club-mobile-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23506;}s:8:\"tileview\";a:5:{s:4:\"file\";s:23:\"club-mobile-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23459;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21257,1556,'_wp_attachment_image_alt','People toasting with glasses of red wine'),(21258,1554,'_wp_page_template','default'),(21259,1554,'content_block_0_layout_title',''),(21260,1554,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(21261,1554,'content_block_0_custom_css_class',''),(21262,1554,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(21263,1554,'content_block_0_banner_full_width','1'),(21264,1554,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(21265,1554,'content_block_0_banner_size','long'),(21266,1554,'_content_block_0_banner_size','field_5bbe232929ec9'),(21267,1554,'content_block_0_add_parallax_effect','0'),(21268,1554,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(21269,1554,'content_block_0_add_veil_over_banner','0'),(21270,1554,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(21271,1554,'content_block_0_banner_content_position','centered'),(21272,1554,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(21273,1554,'content_block_0_banner_title',''),(21274,1554,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(21275,1554,'content_block_0_banner_subtitle',''),(21276,1554,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(21277,1554,'content_block_0_banner_button_link',''),(21278,1554,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(21279,1554,'content_block_0_banner_button_text','JOIN NOW'),(21280,1554,'_content_block_0_banner_button_text','field_5bbe1ba0efa0e'),(21281,1554,'content_block_0_banner_button_link_description','Clicl to scroll down to our wine club option and make a selection'),(21282,1554,'_content_block_0_banner_button_link_description','field_5bbf30b1a4de2-1b'),(21283,1554,'content_block_0_banner_button_new_tab','0'),(21284,1554,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(21285,1554,'content_block_0_show_down_arrow','0'),(21286,1554,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(21287,1554,'content_block_0_banner_image_description',''),(21288,1554,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(21289,1554,'content_block_0_banner_image','1555'),(21290,1554,'_content_block_0_banner_image','field_5bbe201718faf'),(21291,1554,'content_block_0_banner_image_position','center center'),(21292,1554,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(21293,1554,'content_block_0_banner_image_mobile','1556'),(21294,1554,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(21295,1554,'content_block_0_banner_image_mobile_position','center center'),(21296,1554,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(21297,1554,'content_block_1_layout_title','Page Title + Intro'),(21298,1554,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(21299,1554,'content_block_1_text_block_columns','one'),(21300,1554,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(21301,1554,'content_block_1_narrow_text_block_content','1'),(21302,1554,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(21303,1554,'content_block_1_reverse_colors','0'),(21304,1554,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(21305,1554,'content_block_1_enable_background_image','0'),(21306,1554,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(21307,1554,'content_block_1_custom_css_class','white-section'),(21308,1554,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(21309,1554,'content_block_1_text_block_content_col_one','<h1 style=\"text-align: center;\">A Wine Club Made Just for You</h1>\r\nMeadowcroft Winery produces small production vineyard designated wines with European heritage and California style. We honor &amp; respect tradition but know when it’s time to leave our fingerprints by removing barriers. We thought that our wine club should follow the same rules: <strong>No Rules.</strong>\r\n\r\nAs a member of the Meadowcroft Subscription Wine Club, you make the decisions and receive only the wines you choose when you choose to receive them. You select the frequency of shipments, customize your orders, skip shipments as needed, and cancel your subscription at any time without needing to ask permission.'),(21310,1554,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(21311,1554,'content_block_2_layout_title','Join Button'),(21312,1554,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(21313,1554,'content_block_2_text_block_columns','one'),(21314,1554,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(21315,1554,'content_block_2_narrow_text_block_content','0'),(21316,1554,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(21317,1554,'content_block_2_reverse_colors','0'),(21318,1554,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(21319,1554,'content_block_2_enable_background_image','0'),(21320,1554,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(21321,1554,'content_block_2_custom_css_class',''),(21322,1554,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(21323,1554,'content_block_2_text_block_content_col_one','[club_button slug=\"meadowcroft-subscription-wine-club\"]'),(21324,1554,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(21325,1554,'content_block_3_layout_title','Benefits'),(21326,1554,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(21327,1554,'content_block_3_text_block_columns','one'),(21328,1554,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(21329,1554,'content_block_3_narrow_text_block_content','0'),(21330,1554,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(21331,1554,'content_block_3_reverse_colors','0'),(21332,1554,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(21333,1554,'content_block_3_enable_background_image','0'),(21334,1554,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(21335,1554,'content_block_3_parallax_effect_on_image','0'),(21336,1554,'_content_block_3_parallax_effect_on_image','field_5bbe319b39211'),(21337,1554,'content_block_3_custom_css_class',''),(21338,1554,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(21339,1554,'content_block_3_text_block_content_col_one','<h1></h1>\r\n<h1></h1>\r\n<h2 style=\"text-align: center;\">Subscription Club Benefits</h2>'),(21340,1554,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(21341,1554,'content_block_3_background_image','947'),(21342,1554,'_content_block_3_background_image','field_5bbe2eb1a4ddb'),(21343,1554,'content_block_3_background_image_position','center center'),(21344,1554,'_content_block_3_background_image_position','field_5bbe2eb1a4ddc'),(21345,1554,'content_block_3_background_image_mobile','947'),(21346,1554,'_content_block_3_background_image_mobile','field_5bbe3b5e5f6f8'),(21347,1554,'content_block_3_background_image_position_mobile','center center'),(21348,1554,'_content_block_3_background_image_position_mobile','field_5bbe3b695f6f9'),(21349,1554,'content_block','a:7:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";i:3;s:10:\"text_block\";i:4;s:10:\"text_block\";i:5;s:10:\"text_block\";i:6;s:10:\"text_block\";}'),(21350,1554,'_content_block','field_5bbe19a7efa09'),(21352,1554,'_yoast_wpseo_estimated-reading-time-minutes','4'),(21353,1554,'_yoast_wpseo_wordproof_timestamp',''),(21354,1554,'content_block_2_column_size','equal'),(21355,1554,'_content_block_2_column_size','field_columnsize'),(21356,1554,'content_block_2_text_block_content_col_two','\r\n• 15% discount on all wine purchases.\r\n• $15 flat rate ground shipping on orders of 6 or more bottles.\r\n• Choose and adjust wines and quantities in each shipment.\r\n• Flexible wine delivery schedule—choose to receive wines\r\nevery 2, 3, 4, or 6 months. Change frequency at any time.\r\nDefault frequency is 3 months.\r\n• 4 bottle minimum order.\r\n• Special wine club pricing for wine blending experiences\r\nand other winery offerings.\r\n• Access to exclusive wine club wine selections.\r\n• Complimentary wine tastings.\r\n• Receive invitations to exclusive wine club events and\r\nother winery happenings.\r\n'),(21357,1554,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(21358,1554,'content_block_2_text_block_content_col_three','&nbsp;'),(21359,1554,'_content_block_2_text_block_content_col_three','field_5bbe31793920f'),(21368,1554,'content_block_3_column_size','equal'),(21369,1554,'_content_block_3_column_size','field_columnsize'),(21370,1554,'content_block_3_text_block_content_col_two','<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">Skip Shipments</span>\r\nToo much wine? Traveling? Skip shipments as needed with a single click</p>\r\n<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">Customize</span>\r\nSelect only your favorite wines and quantities in each shipment</p>\r\n<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">Save</span>\r\nOn wine blending experiences and other winery offerings</p>\r\n<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">Attend</span>\r\nExclusive wine club events and other winery happenings</p>\r\n<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">Access</span>\r\nExclusive wine club offerings</p>'),(21371,1554,'_content_block_3_text_block_content_col_two','field_5bbe31593920e'),(21372,1554,'content_block_4_layout_title','Benefits'),(21373,1554,'_content_block_4_layout_title','field_5bc11ca9a0d50-s'),(21374,1554,'content_block_4_text_block_columns','two'),(21375,1554,'_content_block_4_text_block_columns','field_5bbe2f81a4de0'),(21376,1554,'content_block_4_narrow_text_block_content','0'),(21377,1554,'_content_block_4_narrow_text_block_content','field_5bbe342e08360'),(21378,1554,'content_block_4_reverse_colors','0'),(21379,1554,'_content_block_4_reverse_colors','field_5bbe3027a4de1'),(21380,1554,'content_block_4_enable_background_image','0'),(21381,1554,'_content_block_4_enable_background_image','field_5bbe30b1a4de2'),(21382,1554,'content_block_4_parallax_effect_on_image','0'),(21383,1554,'_content_block_4_parallax_effect_on_image','field_5bbe319b39211'),(21384,1554,'content_block_4_custom_css_class',''),(21385,1554,'_content_block_4_custom_css_class','field_5bbe30b1a4de2-1'),(21386,1554,'content_block_4_text_block_content_col_one','<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">$0</span>\r\nNo fee to join</p>\r\n<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">15%</span>\r\nDiscount on all wine purchases</p>\r\n<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">$15</span>\r\nFlat rate ground shipping on orders of 6+ bottles</p>\r\n<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">Schedule</span>\r\nChoose to receive wines every 2, 3, 4, or 6 months.  Change frequency at any time</p>\r\n<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">Enjoy</span>\r\nComplimentary wine tastings</p>'),(21387,1554,'_content_block_4_text_block_content_col_one','field_5bbe313b3920d'),(21388,1554,'content_block_4_background_image','947'),(21389,1554,'_content_block_4_background_image','field_5bbe2eb1a4ddb'),(21390,1554,'content_block_4_background_image_position','center center'),(21391,1554,'_content_block_4_background_image_position','field_5bbe2eb1a4ddc'),(21392,1554,'content_block_4_background_image_mobile','947'),(21393,1554,'_content_block_4_background_image_mobile','field_5bbe3b5e5f6f8'),(21394,1554,'content_block_4_background_image_position_mobile','center center'),(21395,1554,'_content_block_4_background_image_position_mobile','field_5bbe3b695f6f9'),(21398,1554,'content_block_5_layout_title','Testimonial Slider'),(21399,1554,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(21400,1554,'content_block_5_text_block_columns','one'),(21401,1554,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(21402,1554,'content_block_5_narrow_text_block_content','0'),(21403,1554,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(21404,1554,'content_block_5_reverse_colors','1'),(21405,1554,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(21406,1554,'content_block_5_enable_background_image','1'),(21407,1554,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(21408,1554,'content_block_5_parallax_effect_on_image','0'),(21409,1554,'_content_block_5_parallax_effect_on_image','field_5bbe319b39211'),(21410,1554,'content_block_5_custom_css_class',''),(21411,1554,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(21412,1554,'content_block_5_text_block_content_col_one','[slick-slider category=\"30\" loop=\"true\" hover_pause=\"true\" dots=\"false\" arrows=\"false\" show_content=\"true\" show_title=\"false\" autoplay_interval=\"4000\" speed=\"300\" extra_class=\"wine-club\" design=\"design-5\"]'),(21413,1554,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(21414,1554,'content_block_5_background_image','947'),(21415,1554,'_content_block_5_background_image','field_5bbe2eb1a4ddb'),(21416,1554,'content_block_5_background_image_position','center center'),(21417,1554,'_content_block_5_background_image_position','field_5bbe2eb1a4ddc'),(21418,1554,'content_block_5_background_image_mobile','947'),(21419,1554,'_content_block_5_background_image_mobile','field_5bbe3b5e5f6f8'),(21420,1554,'content_block_5_background_image_position_mobile','center center'),(21421,1554,'_content_block_5_background_image_position_mobile','field_5bbe3b695f6f9'),(21422,1561,'_wp_attached_file','2022/12/cellar.jpg'),(21423,1561,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:18:\"2022/12/cellar.jpg\";s:8:\"filesize\";i:542406;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"cellar-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18937;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"cellar-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126511;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"cellar-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10077;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"cellar-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78328;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:18:\"cellar-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24998;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:18:\"cellar-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38056;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:18:\"cellar-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27631;}s:8:\"tileview\";a:5:{s:4:\"file\";s:18:\"cellar-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31463;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"cellar-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:247222;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"cellar-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163925;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21424,1561,'_wp_attachment_image_alt','Bottles of Meadwocroft wines in cellar'),(21425,1554,'content_block_6_layout_title','Legal'),(21426,1554,'_content_block_6_layout_title','field_5bc11ca9a0d50-s'),(21427,1554,'content_block_6_text_block_columns','one'),(21428,1554,'_content_block_6_text_block_columns','field_5bbe2f81a4de0'),(21429,1554,'content_block_6_narrow_text_block_content','1'),(21430,1554,'_content_block_6_narrow_text_block_content','field_5bbe342e08360'),(21431,1554,'content_block_6_reverse_colors','1'),(21432,1554,'_content_block_6_reverse_colors','field_5bbe3027a4de1'),(21433,1554,'content_block_6_enable_background_image','0'),(21434,1554,'_content_block_6_enable_background_image','field_5bbe30b1a4de2'),(21435,1554,'content_block_6_parallax_effect_on_image','0'),(21436,1554,'_content_block_6_parallax_effect_on_image','field_5bbe319b39211'),(21437,1554,'content_block_6_custom_css_class',''),(21438,1554,'_content_block_6_custom_css_class','field_5bbe30b1a4de2-1'),(21439,1554,'content_block_6_text_block_content_col_one','<h3 style=\"text-align: center;\"><span class=\"h5\">The Fine Print</span></h3>\r\n<p style=\"text-align: center;\"><small>Minimum 4 bottles per shipment. </small>\r\n<small>Default shipment frequency is every 3 months, change frequency at any time.</small>\r\n<small>State laws require someone 21 years of age or older to sign for the package at delivery - it is often preferable to ship to a business address. Purchaser is responsible for all re-routing and return shipping fees.</small></p>'),(21440,1554,'_content_block_6_text_block_content_col_one','field_5bbe313b3920d'),(21441,1554,'content_block_6_background_image','947'),(21442,1554,'_content_block_6_background_image','field_5bbe2eb1a4ddb'),(21443,1554,'content_block_6_background_image_position','center center'),(21444,1554,'_content_block_6_background_image_position','field_5bbe2eb1a4ddc'),(21445,1554,'content_block_6_background_image_mobile','947'),(21446,1554,'_content_block_6_background_image_mobile','field_5bbe3b5e5f6f8'),(21447,1554,'content_block_6_background_image_position_mobile','center center'),(21448,1554,'_content_block_6_background_image_position_mobile','field_5bbe3b695f6f9'),(21449,1562,'content_block_0_layout_title',''),(21450,1562,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(21451,1562,'content_block_0_custom_css_class',''),(21452,1562,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(21453,1562,'content_block_0_banner_full_width','1'),(21454,1562,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(21455,1562,'content_block_0_banner_size','long'),(21456,1562,'_content_block_0_banner_size','field_5bbe232929ec9'),(21457,1562,'content_block_0_add_parallax_effect','0'),(21458,1562,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(21459,1562,'content_block_0_add_veil_over_banner','0'),(21460,1562,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(21461,1562,'content_block_0_banner_content_position','centered'),(21462,1562,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(21463,1562,'content_block_0_banner_title',''),(21464,1562,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(21465,1562,'content_block_0_banner_subtitle',''),(21466,1562,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(21467,1562,'content_block_0_banner_button_link',''),(21468,1562,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(21469,1562,'content_block_0_banner_button_new_tab','0'),(21470,1562,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(21471,1562,'content_block_0_show_down_arrow','0'),(21472,1562,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(21473,1562,'content_block_0_banner_image_description',''),(21474,1562,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(21475,1562,'content_block_0_banner_image','1555'),(21476,1562,'_content_block_0_banner_image','field_5bbe201718faf'),(21477,1562,'content_block_0_banner_image_position','center center'),(21478,1562,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(21479,1562,'content_block_0_banner_image_mobile','1556'),(21480,1562,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(21481,1562,'content_block_0_banner_image_mobile_position','center center'),(21482,1562,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(21483,1562,'content_block_1_layout_title','Page Title + Intro'),(21484,1562,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(21485,1562,'content_block_1_text_block_columns','one'),(21486,1562,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(21487,1562,'content_block_1_narrow_text_block_content','1'),(21488,1562,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(21489,1562,'content_block_1_reverse_colors','0'),(21490,1562,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(21491,1562,'content_block_1_enable_background_image','0'),(21492,1562,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(21493,1562,'content_block_1_custom_css_class','white-section'),(21494,1562,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(21495,1562,'content_block_1_text_block_content_col_one','<h1 style=\"text-align: center;\">A Wine Club Made Just for You</h1>\r\nMeadowcroft Winery produces small production vineyard designated wines with European heritage and California style. We honor &amp; respect tradition but know when it’s time to leave our fingerprints by removing barriers. We thought that our wine club should follow the same rules: <strong>No Rules.</strong>\r\n\r\nAs a member of the Meadowcroft Subscription Wine Club, you make the decisions and receive only the wines you choose when you choose to receive them. You select the frequency of shipments, customize your orders, skip shipments as needed, and cancel your subscription at any time without needing to ask permission.'),(21496,1562,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(21497,1562,'content_block_2_layout_title','Benefits'),(21498,1562,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(21499,1562,'content_block_2_text_block_columns','one'),(21500,1562,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(21501,1562,'content_block_2_narrow_text_block_content','0'),(21502,1562,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(21503,1562,'content_block_2_reverse_colors','0'),(21504,1562,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(21505,1562,'content_block_2_enable_background_image','0'),(21506,1562,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(21507,1562,'content_block_2_custom_css_class',''),(21508,1562,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(21509,1562,'content_block_2_text_block_content_col_one','&nbsp;\r\n<h2 style=\"text-align: center;\">Subscription Club Benefits</h2>'),(21510,1562,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(21511,1562,'content_block_3_layout_title','Benefits'),(21512,1562,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(21513,1562,'content_block_3_text_block_columns','two'),(21514,1562,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(21515,1562,'content_block_3_column_size','equal'),(21516,1562,'_content_block_3_column_size','field_columnsize'),(21517,1562,'content_block_3_narrow_text_block_content','0'),(21518,1562,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(21519,1562,'content_block_3_reverse_colors','0'),(21520,1562,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(21521,1562,'content_block_3_enable_background_image','0'),(21522,1562,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(21523,1562,'content_block_3_custom_css_class',''),(21524,1562,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(21525,1562,'content_block_3_text_block_content_col_one','<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">$0</span>\r\nNo fee to join</p>\r\n<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">15%</span>\r\nDiscount on all wine purchases</p>\r\n<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">$15</span>\r\nFlat rate ground shipping on orders of 6+ bottles</p>\r\n<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">Schedule</span>\r\nChoose to receive wines every 2, 3, 4, or 6 months.  Change frequency at any time</p>\r\n<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">Enjoy</span>\r\nComplimentary wine tastings</p>'),(21526,1562,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(21527,1562,'content_block_3_text_block_content_col_two','<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">Skip Shipments</span>\r\nToo much wine? Traveling? Skip shipments as needed with a single click</p>\r\n<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">Customize</span>\r\nSelect only your favorite wines and quantities in each shipment</p>\r\n<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">Save</span>\r\nOn wine blending experiences and other winery offerings</p>\r\n<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">Attend</span>\r\nExclusive wine club events and other winery happenings</p>\r\n<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">Access</span>\r\nExclusive wine club offerings</p>'),(21528,1562,'_content_block_3_text_block_content_col_two','field_5bbe31593920e'),(21529,1562,'content_block_4_layout_title','Join Button'),(21530,1562,'_content_block_4_layout_title','field_5bc11ca9a0d50-s'),(21531,1562,'content_block_4_text_block_columns','one'),(21532,1562,'_content_block_4_text_block_columns','field_5bbe2f81a4de0'),(21533,1562,'content_block_4_narrow_text_block_content','0'),(21534,1562,'_content_block_4_narrow_text_block_content','field_5bbe342e08360'),(21535,1562,'content_block_4_reverse_colors','0'),(21536,1562,'_content_block_4_reverse_colors','field_5bbe3027a4de1'),(21537,1562,'content_block_4_enable_background_image','0'),(21538,1562,'_content_block_4_enable_background_image','field_5bbe30b1a4de2'),(21539,1562,'content_block_4_custom_css_class',''),(21540,1562,'_content_block_4_custom_css_class','field_5bbe30b1a4de2-1'),(21541,1562,'content_block_4_text_block_content_col_one','[club_button slug=\"meadowcroft-subscription-wine-club\"]'),(21542,1562,'_content_block_4_text_block_content_col_one','field_5bbe313b3920d'),(21543,1562,'content_block_5_layout_title','Testimonial Slider'),(21544,1562,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(21545,1562,'content_block_5_text_block_columns','one'),(21546,1562,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(21547,1562,'content_block_5_narrow_text_block_content','0'),(21548,1562,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(21549,1562,'content_block_5_reverse_colors','1'),(21550,1562,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(21551,1562,'content_block_5_enable_background_image','1'),(21552,1562,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(21553,1562,'content_block_5_parallax_effect_on_image','0'),(21554,1562,'_content_block_5_parallax_effect_on_image','field_5bbe319b39211'),(21555,1562,'content_block_5_custom_css_class',''),(21556,1562,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(21557,1562,'content_block_5_text_block_content_col_one','[slick-slider category=\"30\" loop=\"true\" hover_pause=\"true\" dots=\"false\" arrows=\"false\" show_content=\"true\" show_title=\"false\" autoplay_interval=\"4000\" speed=\"300\" extra_class=\"wine-club\" design=\"design-5\"]'),(21558,1562,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(21559,1562,'content_block_5_background_image','947'),(21560,1562,'_content_block_5_background_image','field_5bbe2eb1a4ddb'),(21561,1562,'content_block_5_background_image_position','center center'),(21562,1562,'_content_block_5_background_image_position','field_5bbe2eb1a4ddc'),(21563,1562,'content_block_5_background_image_mobile','947'),(21564,1562,'_content_block_5_background_image_mobile','field_5bbe3b5e5f6f8'),(21565,1562,'content_block_5_background_image_position_mobile','center center'),(21566,1562,'_content_block_5_background_image_position_mobile','field_5bbe3b695f6f9'),(21567,1562,'content_block_6_layout_title','Legal'),(21568,1562,'_content_block_6_layout_title','field_5bc11ca9a0d50-s'),(21569,1562,'content_block_6_text_block_columns','one'),(21570,1562,'_content_block_6_text_block_columns','field_5bbe2f81a4de0'),(21571,1562,'content_block_6_narrow_text_block_content','1'),(21572,1562,'_content_block_6_narrow_text_block_content','field_5bbe342e08360'),(21573,1562,'content_block_6_reverse_colors','1'),(21574,1562,'_content_block_6_reverse_colors','field_5bbe3027a4de1'),(21575,1562,'content_block_6_enable_background_image','0'),(21576,1562,'_content_block_6_enable_background_image','field_5bbe30b1a4de2'),(21577,1562,'content_block_6_custom_css_class',''),(21578,1562,'_content_block_6_custom_css_class','field_5bbe30b1a4de2-1'),(21579,1562,'content_block_6_text_block_content_col_one','<h3 style=\"text-align: center;\"><span class=\"h5\">The Fine Print</span></h3>\r\n<p style=\"text-align: center;\"><small>Minimum 4 bottles per shipment. </small>\r\n<small>Default shipment frequency is every 3 months, change frequency at any time.</small>\r\n<small>State laws require someone 21 years of age or older to sign for the package at delivery - it is often preferable to ship to a business address. Purchaser is responsible for all re-routing and return shipping fees.</small></p>'),(21580,1562,'_content_block_6_text_block_content_col_one','field_5bbe313b3920d'),(21581,1562,'content_block','a:7:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";i:3;s:10:\"text_block\";i:4;s:10:\"text_block\";i:5;s:10:\"text_block\";i:6;s:10:\"text_block\";}'),(21582,1562,'_content_block','field_5bbe19a7efa09'),(21583,1554,'_yoast_wpseo_title','Meadowcroft Wine Club Membership | Meadowcroft Wines'),(21584,1554,'_yoast_wpseo_metadesc','Join the Meadowcroft wine club membership to discover limited production wines from Napa and Sonoma, including small lots of Cabernet Sauvignon, Pinot Noir, etc.'),(21585,920,'_wp_old_date','2022-12-14'),(21586,456,'_wp_old_date','2022-12-14'),(21589,759,'_wp_old_date','2022-12-14'),(21595,948,'_wp_old_date','2022-12-14'),(21596,949,'_wp_old_date','2022-12-14'),(21597,950,'_wp_old_date','2022-12-14'),(21598,880,'_wp_old_date','2022-12-14'),(21599,1541,'_wp_old_date','2022-12-14'),(21600,1563,'_menu_item_type','post_type'),(21601,1563,'_menu_item_menu_item_parent','0'),(21602,1563,'_menu_item_object_id','1554'),(21603,1563,'_menu_item_object','page'),(21604,1563,'_menu_item_target',''),(21605,1563,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(21606,1563,'_menu_item_xfn',''),(21607,1563,'_menu_item_url',''),(21609,1565,'inline_featured_image','0'),(21610,1565,'_edit_lock','1735277825:9'),(21611,1565,'_edit_last','9'),(21615,1565,'enable_banner','0'),(21616,1565,'_enable_banner','field_5bbe19c8efa0acb'),(21617,1565,'banner_full_width','0'),(21618,1565,'_banner_full_width','field_5bbe19c8efa0ac'),(21619,1565,'banner_size','normal'),(21620,1565,'_banner_size','field_5bbe232929ec9c'),(21621,1565,'add_parallax_effect','0'),(21622,1565,'_add_parallax_effect','field_5bbe219ccb6a9'),(21623,1565,'add_veil_over_banner','0'),(21624,1565,'_add_veil_over_banner','field_5bbe333f39212'),(21625,1565,'banner_content_position','centered'),(21626,1565,'_banner_content_position','field_5bbe259b02b62'),(21627,1565,'banner_title',''),(21628,1565,'_banner_title','field_5bbe1b78efa0b'),(21629,1565,'banner_subtitle',''),(21630,1565,'_banner_subtitle','field_5bbe1b83efa0c'),(21631,1565,'banner_button_link',''),(21632,1565,'_banner_button_link','field_5bbe1b8cefa0d'),(21633,1565,'banner_button_new_tab','0'),(21634,1565,'_banner_button_new_tab','field_5bbe1e6d18fae'),(21635,1565,'show_down_arrow','0'),(21636,1565,'_show_down_arrow','field_5bbe24f721165'),(21637,1565,'banner_image',''),(21638,1565,'_banner_image','field_5bbe201718fafa'),(21639,1565,'banner_image_position','center center'),(21640,1565,'_banner_image_position','field_5bbe278f9fb97'),(21641,1565,'banner_image_mobile',''),(21642,1565,'_banner_image_mobile','field_5bbe202818fb0b'),(21643,1565,'banner_image_mobile_position','center center'),(21644,1565,'_banner_image_mobile_position','field_5bbe279c9fb98'),(21645,1565,'hide_post_title','0'),(21646,1565,'_hide_post_title','field_5bbe18c8efa0ac'),(21647,1565,'the_teaser','Trying to figure out some great wine and food pairings for your holiday gatherings?  Check out these wine pairing recommendations from Meadowcroft.'),(21648,1565,'_the_teaser','field_5c1d78f88e54c'),(21649,1565,'hero_image','1568'),(21650,1565,'_hero_image','field_5d138e7f31334'),(21651,1565,'content_block',''),(21652,1565,'_content_block','field_5bbe19a7efa09'),(21653,1565,'_yoast_wpseo_focuskw','holiday food and wine pairing'),(21654,1565,'_yoast_wpseo_linkdex','59'),(21655,1565,'_yoast_wpseo_content_score','90'),(21656,1565,'_yoast_wpseo_estimated-reading-time-minutes','4'),(21657,1565,'_yoast_wpseo_wordproof_timestamp',''),(21660,1565,'custom_title',''),(21661,1565,'_custom_title','field_5bbe1b83pfa0c'),(21667,1565,'_yoast_wpseo_metadesc','Unleash your taste buds with the ultimate guide to food and wine pairing. From savory to sweet, explore the best pairings for a culinary adventure. Elevate your dining experience.'),(21668,1568,'_wp_attached_file','2023/01/food-wine-blog1.jpg'),(21669,1568,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:600;s:4:\"file\";s:27:\"2023/01/food-wine-blog1.jpg\";s:8:\"filesize\";i:123927;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"food-wine-blog1-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28896;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"food-wine-blog1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11950;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:27:\"food-wine-blog1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33636;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:27:\"food-wine-blog1-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52246;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:27:\"food-wine-blog1-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37831;}s:8:\"tileview\";a:5:{s:4:\"file\";s:27:\"food-wine-blog1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40217;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21670,1568,'_wp_attachment_image_alt','Food-wine-pairing-blog'),(21673,1565,'_yoast_wpseo_primary_category','8'),(21674,1565,'_thumbnail_id','1664'),(21981,1574,'inline_featured_image','0'),(21982,1574,'_edit_lock','1707820411:5'),(21983,1574,'_edit_last','5'),(21984,1574,'_wp_page_template','default'),(21985,1574,'content_block_0_layout_title','Page Title'),(21986,1574,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(21987,1574,'content_block_0_text_block_columns','one'),(21988,1574,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(21989,1574,'content_block_0_narrow_text_block_content','0'),(21990,1574,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(21991,1574,'content_block_0_reverse_colors','0'),(21992,1574,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(21993,1574,'content_block_0_enable_background_image','0'),(21994,1574,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(21995,1574,'content_block_0_custom_css_class',''),(21996,1574,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(21997,1574,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">Sparkling Wines</h1>\r\nMeadowcroft\'s bubbles are a delightful addition to any occasion. Don\'t limit yourself to saving them for the once-in-a-lifetime moments; indulge in their fanciful fizz at any time. Savor a glass of sparkling wine alongside a delicious spread of cheeses, succulent shellfish or even on a mundane Tuesday evening - because every day is worth celebrating.\r\n\r\n<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org\",\r\n  \"@type\": \"FAQPage\",\r\n  \"mainEntity\": [{\r\n    \"@type\": \"Question\",\r\n    \"name\": \"What is the difference between sparkling wine and Champagne?\",\r\n    \"acceptedAnswer\": {\r\n      \"@type\": \"Answer\",\r\n      \"text\": \"Sparkling wines and Champagne are often used interchangeably, but there are some differences between the two. Champagne is a sparkling wine, made only in the Champagne region of France. It has strict rules that must be followed, such as using only certain grape varieties (Chardonnay, Pinot Noir, and Pinot Meunier) and specific vineyard practices. On the other hand, sparkling wine can be produced worldwide and can use a variety of grapes.\"\r\n    }\r\n  },{\r\n    \"@type\": \"Question\",\r\n    \"name\": \"How is sparkling wine made?\",\r\n    \"acceptedAnswer\": {\r\n      \"@type\": \"Answer\",\r\n      \"text\": \"The process of making sparkling wine involves a secondary fermentation that occurs in the bottle, trapping carbon dioxide and creating bubbles. There are two methods: traditional method and tank method. In the traditional method, after the wine is made and bottled, a mixture of yeast and sugar is added to the bottle. The bottle is then sealed with a crown cap and left for a minimum of 15 months to age. During this process, the yeast consumes the sugar, producing carbon dioxide as a byproduct, which dissolves into the wine as bubbles. The tank method is a faster process, where the wine undergoes secondary fermentation in a pressurized tank, and then bottled under pressure.\"\r\n    }\r\n  },{\r\n    \"@type\": \"Question\",\r\n    \"name\": \"Are sparkling wines high in sugar?\",\r\n    \"acceptedAnswer\": {\r\n      \"@type\": \"Answer\",\r\n      \"text\": \"Sparkling wines vary in sweetness levels. The amount of sugar in a sparkling wine is determined by the style, ranging from brut (very dry) to doux (very sweet). The sweetness level of sparkling wine is measured by the residual sugar content, which is the amount of sugar left in the wine after fermentation. Brut Nature has less than 3 grams per liter, while Doux has more than 50 grams per liter. Extra Brut, Brut, Extra Dry, and Sec fall in between, depending on their residual sugar content.\"\r\n    }\r\n  }]\r\n}\r\n</script>\r\n\r\n'),(21998,1574,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(21999,1574,'content_block_1_layout_title',''),(22000,1574,'_content_block_1_layout_title','field_5bc11ca9a0d50-v'),(22001,1574,'content_block_1_product_row_number','2up'),(22002,1574,'_content_block_1_product_row_number','field_5bc11c6da0d4f'),(22003,1574,'content_block_1_data_collection_slug','sparkling-champagne'),(22004,1574,'_content_block_1_data_collection_slug','field_5bc11ca9a0d50'),(22005,1574,'content_block_1_manually_enter_collection_slug','0'),(22006,1574,'_content_block_1_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(22007,1574,'content_block_1_product_display_feature','0'),(22008,1574,'_content_block_1_product_display_feature','field_5d1144d5e6922'),(22009,1574,'content_block_1_product_display_teaser','0'),(22010,1574,'_content_block_1_product_display_teaser','field_5d114505e6923'),(22011,1574,'content_block','a:4:{i:0;s:10:\"text_block\";i:1;s:18:\"product_collection\";i:2;s:10:\"text_block\";i:3;s:4:\"faqs\";}'),(22012,1574,'_content_block','field_5bbe19a7efa09'),(22013,1574,'_yoast_wpseo_estimated-reading-time-minutes','2'),(22014,1574,'_yoast_wpseo_wordproof_timestamp',''),(22027,920,'_wp_old_date','2022-12-30'),(22028,456,'_wp_old_date','2022-12-30'),(22031,759,'_wp_old_date','2022-12-30'),(22036,1563,'_wp_old_date','2022-12-30'),(22037,948,'_wp_old_date','2022-12-30'),(22038,949,'_wp_old_date','2022-12-30'),(22039,950,'_wp_old_date','2022-12-30'),(22040,880,'_wp_old_date','2022-12-30'),(22041,1541,'_wp_old_date','2022-12-30'),(22042,1576,'inline_featured_image','0'),(22043,1576,'_edit_lock','1707819913:5'),(22044,1576,'_edit_last','5'),(22045,1576,'_wp_page_template','default'),(22046,1576,'content_block_0_layout_title','Page Title'),(22047,1576,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(22048,1576,'content_block_0_text_block_columns','one'),(22049,1576,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(22050,1576,'content_block_0_narrow_text_block_content','0'),(22051,1576,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(22052,1576,'content_block_0_reverse_colors','0'),(22053,1576,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(22054,1576,'content_block_0_enable_background_image','0'),(22055,1576,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(22056,1576,'content_block_0_custom_css_class',''),(22057,1576,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(22058,1576,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">Rosé Wines</h1>\r\n<p style=\"text-align: center;\">Indulge in the delightful Meadowcroft Rosé wines all year round for a refreshing and invigorating sensation. These aromatic wines are packed with flavor and make an exquisite pairing with a diverse range of culinary delights.</p>'),(22059,1576,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(22060,1576,'content_block_1_layout_title',''),(22061,1576,'_content_block_1_layout_title','field_5bc11ca9a0d50-v'),(22062,1576,'content_block_1_product_row_number','2up'),(22063,1576,'_content_block_1_product_row_number','field_5bc11c6da0d4f'),(22064,1576,'content_block_1_data_collection_slug','ros-wines'),(22065,1576,'_content_block_1_data_collection_slug','field_5bc11ca9a0d50'),(22066,1576,'content_block_1_manually_enter_collection_slug','0'),(22067,1576,'_content_block_1_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(22068,1576,'content_block_1_product_display_feature','0'),(22069,1576,'_content_block_1_product_display_feature','field_5d1144d5e6922'),(22070,1576,'content_block_1_product_display_teaser','0'),(22071,1576,'_content_block_1_product_display_teaser','field_5d114505e6923'),(22072,1576,'content_block','a:4:{i:0;s:10:\"text_block\";i:1;s:18:\"product_collection\";i:2;s:10:\"text_block\";i:3;s:4:\"faqs\";}'),(22073,1576,'_content_block','field_5bbe19a7efa09'),(22074,1576,'_yoast_wpseo_estimated-reading-time-minutes','2'),(22075,1576,'_yoast_wpseo_wordproof_timestamp',''),(22076,1577,'inline_featured_image','0'),(22077,1577,'_edit_lock','1680259936:5'),(22078,1577,'_edit_last','5'),(22079,1577,'_wp_page_template','default'),(22080,1577,'content_block_0_layout_title','Page Title'),(22081,1577,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(22082,1577,'content_block_0_text_block_columns','one'),(22083,1577,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(22084,1577,'content_block_0_narrow_text_block_content','0'),(22085,1577,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(22086,1577,'content_block_0_reverse_colors','0'),(22087,1577,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(22088,1577,'content_block_0_enable_background_image','0'),(22089,1577,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(22090,1577,'content_block_0_custom_css_class',''),(22091,1577,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(22092,1577,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">Wine Club Exclusives</h1>'),(22093,1577,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(22094,1577,'content_block_1_layout_title',''),(22095,1577,'_content_block_1_layout_title','field_5bc11ca9a0d50-v'),(22096,1577,'content_block_1_product_row_number','2up'),(22097,1577,'_content_block_1_product_row_number','field_5bc11c6da0d4f'),(22098,1577,'content_block_1_data_collection_slug','wine-club-exclusives'),(22099,1577,'_content_block_1_data_collection_slug','field_5bc11ca9a0d50'),(22100,1577,'content_block_1_manually_enter_collection_slug','0'),(22101,1577,'_content_block_1_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(22102,1577,'content_block_1_product_display_feature','0'),(22103,1577,'_content_block_1_product_display_feature','field_5d1144d5e6922'),(22104,1577,'content_block_1_product_display_teaser','0'),(22105,1577,'_content_block_1_product_display_teaser','field_5d114505e6923'),(22106,1577,'content_block','a:2:{i:0;s:10:\"text_block\";i:1;s:18:\"product_collection\";}'),(22107,1577,'_content_block','field_5bbe19a7efa09'),(22108,1577,'_yoast_wpseo_estimated-reading-time-minutes','0'),(22109,1577,'_yoast_wpseo_wordproof_timestamp',''),(22345,1585,'_wp_attached_file','2023/01/AdobeStock_137509395.jpeg'),(22346,1585,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:7777;s:6:\"height\";i:5173;s:4:\"file\";s:33:\"2023/01/AdobeStock_137509395.jpeg\";s:8:\"filesize\";i:5219177;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"AdobeStock_137509395-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27622;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"AdobeStock_137509395-1024x681.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89913;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"AdobeStock_137509395-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20725;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"AdobeStock_137509395-768x511.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65268;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:33:\"AdobeStock_137509395-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33136;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:33:\"AdobeStock_137509395-474x324.jpeg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41258;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:33:\"AdobeStock_137509395-391x260.jpeg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34015;}s:8:\"tileview\";a:5:{s:4:\"file\";s:33:\"AdobeStock_137509395-300x400.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36396;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"AdobeStock_137509395-1536x1022.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1022;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145339;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:34:\"AdobeStock_137509395-1200x798.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:798;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107495;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:23:\"Rawf8 - stock.adobe.com\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:54:\"Sorry we are closed sign hanging on a glass storefront\";s:17:\"created_timestamp\";s:10:\"1487248159\";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:47:\"Sorry we are closed sign on abstract background\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:47:{i:0;s:64:\"closed, sign, shop, glass, business, store, abstract, bokeh, sor\";i:1;s:6:\"closed\";i:2;s:4:\"sign\";i:3;s:18:\"sorry we\'re closed\";i:4;s:13:\"we are closed\";i:5;s:4:\"shop\";i:6;s:5:\"glass\";i:7;s:8:\"business\";i:8;s:5:\"store\";i:9;s:5:\"bokeh\";i:10;s:5:\"sorry\";i:11;s:10:\"background\";i:12;s:7:\"service\";i:13;s:6:\"symbol\";i:14;s:5:\"label\";i:15;s:11:\"information\";i:16;s:6:\"retail\";i:17;s:3:\"old\";i:18;s:6:\"design\";i:19;s:7:\"hanging\";i:20;s:7:\"vintage\";i:21;s:5:\"board\";i:22;s:5:\"retro\";i:23;s:6:\"object\";i:24;s:4:\"text\";i:25;s:4:\"cafe\";i:26;s:5:\"close\";i:27;s:10:\"restaurant\";i:28;s:4:\"work\";i:29;s:7:\"message\";i:30;s:7:\"concept\";i:31;s:10:\"storefront\";i:32;s:9:\"signboard\";i:33;s:5:\"frame\";i:34;s:4:\"grey\";i:35;s:4:\"time\";i:36;s:7:\"holiday\";i:37;s:9:\"christmas\";i:38;s:7:\"festive\";i:39;s:6:\"winter\";i:40;s:11:\"celebration\";i:41;s:6:\"window\";i:42;s:4:\"door\";i:43;s:6:\"easter\";i:44;s:9:\"vacations\";i:45;s:6:\"summer\";i:46;s:5:\"break\";}}}'),(22347,1587,'_wp_attached_file','2023/01/AdobeStock_189815309-scaled.jpeg'),(22348,1587,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1881;s:4:\"file\";s:40:\"2023/01/AdobeStock_189815309-scaled.jpeg\";s:8:\"filesize\";i:405321;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"AdobeStock_189815309-300x220.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28012;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"AdobeStock_189815309-1024x752.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:752;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117652;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"AdobeStock_189815309-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19226;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"AdobeStock_189815309-768x564.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80841;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:33:\"AdobeStock_189815309-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33702;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:33:\"AdobeStock_189815309-474x324.jpeg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44593;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:33:\"AdobeStock_189815309-391x260.jpeg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36050;}s:8:\"tileview\";a:5:{s:4:\"file\";s:33:\"AdobeStock_189815309-300x400.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35687;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"AdobeStock_189815309-1536x1128.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1128;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:202590;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"AdobeStock_189815309-2048x1505.jpeg\";s:5:\"width\";i:2048;s:6:\"height\";i:1505;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:299455;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:34:\"AdobeStock_189815309-1200x882.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:882;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145455;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:31:\"AmazeinDesign - stock.adobe.com\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1516953053\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:46:{i:0;s:7:\"flowers\";i:1;s:6:\"flower\";i:2;s:3:\"set\";i:3;s:6:\"vector\";i:4;s:8:\"elements\";i:5;s:8:\"colorful\";i:6;s:5:\"daisy\";i:7;s:6:\"spring\";i:8;s:10:\"collection\";i:9;s:9:\"sunflower\";i:10;s:6:\"zinnia\";i:11;s:6:\"dahlia\";i:12;s:6:\"purple\";i:13;s:8:\"isolated\";i:14;s:10:\"background\";i:15;s:5:\"white\";i:16;s:6:\"yellow\";i:17;s:3:\"red\";i:18;s:4:\"blue\";i:19;s:5:\"color\";i:20;s:5:\"petal\";i:21;s:6:\"season\";i:22;s:7:\"various\";i:23;s:6:\"object\";i:24;s:12:\"illustration\";i:25;s:5:\"women\";i:26;s:5:\"decor\";i:27;s:10:\"decoration\";i:28;s:7:\"graphic\";i:29;s:5:\"bloom\";i:30;s:6:\"floral\";i:31;s:6:\"nature\";i:32;s:6:\"blooms\";i:33;s:5:\"fresh\";i:34;s:6:\"summer\";i:35;s:8:\"seasonal\";i:36;s:5:\"plant\";i:37;s:8:\"ornament\";i:38;s:8:\"feminine\";i:39;s:4:\"icon\";i:40;s:7:\"clipart\";i:41;s:8:\"romantic\";i:42;s:8:\"abstract\";i:43;s:6:\"design\";i:44;s:7:\"elegant\";i:45;s:9:\"beautiful\";}}s:14:\"original_image\";s:25:\"AdobeStock_189815309.jpeg\";}'),(22349,1588,'_wp_attached_file','2023/01/AdobeStock_143395665-scaled.jpeg'),(22350,1588,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:40:\"2023/01/AdobeStock_143395665-scaled.jpeg\";s:8:\"filesize\";i:418644;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"AdobeStock_143395665-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34759;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"AdobeStock_143395665-1024x683.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114668;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"AdobeStock_143395665-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26430;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"AdobeStock_143395665-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81028;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:33:\"AdobeStock_143395665-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38192;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:33:\"AdobeStock_143395665-474x324.jpeg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50307;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:33:\"AdobeStock_143395665-391x260.jpeg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42116;}s:8:\"tileview\";a:5:{s:4:\"file\";s:33:\"AdobeStock_143395665-300x400.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40864;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"AdobeStock_143395665-1536x1024.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194423;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"AdobeStock_143395665-2048x1366.jpeg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:295726;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:34:\"AdobeStock_143395665-1200x800.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139476;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:24:\"ipopba - stock.adobe.com\";s:6:\"camera\";s:17:\"Canon EOS Kiss X4\";s:7:\"caption\";s:49:\"Woman using smartphone with shopping bag in hands\";s:17:\"created_timestamp\";s:10:\"1490212216\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:49:\"Woman using smartphone with shopping bag in hands\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:64:{i:0;s:8:\"shopping\";i:1;s:5:\"woman\";i:2;s:4:\"park\";i:3;s:6:\"mobile\";i:4;s:5:\"phone\";i:5;s:5:\"urban\";i:6;s:5:\"young\";i:7;s:9:\"cellphone\";i:8;s:5:\"phone\";i:9;s:7:\"outdoor\";i:10;s:10:\"smartphone\";i:11;s:5:\"paper\";i:12;s:4:\"bags\";i:13;s:5:\"happy\";i:14;s:6:\"nature\";i:15;s:6:\"modern\";i:16;s:4:\"sale\";i:17;s:5:\"woman\";i:18;s:5:\"using\";i:19;s:10:\"technology\";i:20;s:4:\"city\";i:21;s:7:\"shopper\";i:22;s:7:\"walking\";i:23;s:6:\"summer\";i:24;s:9:\"lifestyle\";i:25;s:6:\"sunset\";i:26;s:6:\"female\";i:27;s:4:\"gift\";i:28;s:6:\"person\";i:29;s:4:\"mall\";i:30;s:4:\"busy\";i:31;s:7:\"holding\";i:32;s:5:\"store\";i:33;s:5:\"sunny\";i:34;s:6:\"people\";i:35;s:8:\"standing\";i:36;s:7:\"package\";i:37;s:6:\"spring\";i:38;s:4:\"shop\";i:39;s:3:\"red\";i:40;s:6:\"object\";i:41;s:5:\"adult\";i:42;s:10:\"background\";i:43;s:6:\"friday\";i:44;s:7:\"fingers\";i:45;s:10:\"e-commerce\";i:46;s:5:\"hands\";i:47;s:7:\"holiday\";i:48;s:10:\"e-business\";i:49;s:8:\"discount\";i:50;s:6:\"buying\";i:51;s:5:\"buyer\";i:52;s:8:\"carrying\";i:53;s:8:\"consumer\";i:54;s:6:\"online\";i:55;s:8:\"cheerful\";i:56;s:6:\"casual\";i:57;s:8:\"boutique\";i:58;s:8:\"customer\";i:59;s:9:\"happiness\";i:60;s:3:\"fun\";i:61;s:10:\"attractive\";i:62;s:9:\"searching\";i:63;s:6:\"retail\";}}s:14:\"original_image\";s:25:\"AdobeStock_143395665.jpeg\";}'),(22361,920,'_wp_old_date','2023-01-06'),(22362,456,'_wp_old_date','2023-01-06'),(22364,759,'_wp_old_date','2023-01-06'),(22372,1563,'_wp_old_date','2023-01-06'),(22373,948,'_wp_old_date','2023-01-06'),(22374,949,'_wp_old_date','2023-01-06'),(22375,950,'_wp_old_date','2023-01-06'),(22376,880,'_wp_old_date','2023-01-06'),(22377,1541,'_wp_old_date','2023-01-06'),(22384,1596,'_wp_attached_file','2023/01/v-day-event-image.jpg'),(22385,1596,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:29:\"2023/01/v-day-event-image.jpg\";s:8:\"filesize\";i:321379;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"v-day-event-image-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27213;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"v-day-event-image-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:222222;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"v-day-event-image-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12004;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"v-day-event-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136297;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:29:\"v-day-event-image-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37667;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:29:\"v-day-event-image-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61036;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:29:\"v-day-event-image-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42474;}s:8:\"tileview\";a:5:{s:4:\"file\";s:29:\"v-day-event-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47462;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22597,412,'_oembed_bc137a03a89c11c5631b344637c617ef','<blockquote class=\"wp-embedded-content\" data-secret=\"b3lYs9tDDT\"><a href=\"https://www.meadowcroftwines.com/events/valentines-day-wines-treats-at-meadowcroft/\">Valentine&#8217;s Day Wines &#038; Treats at Meadowcroft</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Valentine&#8217;s Day Wines &#038; Treats at Meadowcroft&#8221; &#8212; Meadowcroft Wines\" src=\"https://www.meadowcroftwines.com/events/valentines-day-wines-treats-at-meadowcroft/embed/#?secret=nv7e6n6eKm#?secret=b3lYs9tDDT\" data-secret=\"b3lYs9tDDT\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(22598,412,'_oembed_time_bc137a03a89c11c5631b344637c617ef','1675461787'),(22834,1605,'_wp_attached_file','2023/02/Meadowcroft_2018CabSauv_Mendocino_NelsonRanch.png'),(22835,1605,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:57:\"2023/02/Meadowcroft_2018CabSauv_Mendocino_NelsonRanch.png\";s:8:\"filesize\";i:240316;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2018CabSauv_Mendocino_NelsonRanch-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25913;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2018CabSauv_Mendocino_NelsonRanch-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7752;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2018CabSauv_Mendocino_NelsonRanch-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:149299;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2018CabSauv_Mendocino_NelsonRanch-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25913;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2018CabSauv_Mendocino_NelsonRanch-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47251;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2018CabSauv_Mendocino_NelsonRanch-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32634;}s:8:\"tileview\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2018CabSauv_Mendocino_NelsonRanch-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41911;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22836,1605,'_wp_attachment_image_alt','Meadowcroft_2018CabSauv_Mendocino_NelsonRanch'),(22837,1606,'_wp_attached_file','2023/02/Spring-2022-Newsletter-Thumb@3x.png'),(22838,1606,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:624;s:6:\"height\";i:800;s:4:\"file\";s:43:\"2023/02/Spring-2022-Newsletter-Thumb@3x.png\";s:8:\"filesize\";i:132157;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"Spring-2022-Newsletter-Thumb@3x-234x300.png\";s:5:\"width\";i:234;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:76195;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Spring-2022-Newsletter-Thumb@3x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29879;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:43:\"Spring-2022-Newsletter-Thumb@3x-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:103968;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:43:\"Spring-2022-Newsletter-Thumb@3x-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:179957;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:43:\"Spring-2022-Newsletter-Thumb@3x-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:123525;}s:8:\"tileview\";a:5:{s:4:\"file\";s:43:\"Spring-2022-Newsletter-Thumb@3x-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:126423;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22839,1607,'_wp_attached_file','2023/02/MC_SONOMACOASTPINOT_2019-1.png'),(22840,1607,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:38:\"2023/02/MC_SONOMACOASTPINOT_2019-1.png\";s:8:\"filesize\";i:237721;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"MC_SONOMACOASTPINOT_2019-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26944;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"MC_SONOMACOASTPINOT_2019-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8386;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"MC_SONOMACOASTPINOT_2019-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:148755;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:38:\"MC_SONOMACOASTPINOT_2019-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26944;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:38:\"MC_SONOMACOASTPINOT_2019-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41296;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:38:\"MC_SONOMACOASTPINOT_2019-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28377;}s:8:\"tileview\";a:5:{s:4:\"file\";s:38:\"MC_SONOMACOASTPINOT_2019-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43314;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22843,1609,'_wp_attached_file','2023/02/MC_FrenchColombard_2016_bottleshot.png'),(22844,1609,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:46:\"2023/02/MC_FrenchColombard_2016_bottleshot.png\";s:8:\"filesize\";i:336933;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"MC_FrenchColombard_2016_bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46297;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"MC_FrenchColombard_2016_bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12272;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"MC_FrenchColombard_2016_bottleshot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:271385;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:46:\"MC_FrenchColombard_2016_bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46297;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:46:\"MC_FrenchColombard_2016_bottleshot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68814;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:46:\"MC_FrenchColombard_2016_bottleshot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45963;}s:8:\"tileview\";a:5:{s:4:\"file\";s:46:\"MC_FrenchColombard_2016_bottleshot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77635;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22845,1610,'_wp_attached_file','2023/02/21_Pinot_RRV_bottleshot.png'),(22846,1610,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:35:\"2023/02/21_Pinot_RRV_bottleshot.png\";s:8:\"filesize\";i:231282;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"21_Pinot_RRV_bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25736;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"21_Pinot_RRV_bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7934;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"21_Pinot_RRV_bottleshot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:142468;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:35:\"21_Pinot_RRV_bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25736;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:35:\"21_Pinot_RRV_bottleshot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42351;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:35:\"21_Pinot_RRV_bottleshot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29357;}s:8:\"tileview\";a:5:{s:4:\"file\";s:35:\"21_Pinot_RRV_bottleshot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41035;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22847,1607,'_wp_attachment_image_alt','Meadowcroft 2019 Sonoma Coast Pinot Noir'),(22848,1609,'_wp_attachment_image_alt','Meadowcroft 2016 French Colombard'),(22850,1606,'_wp_attachment_image_alt','Meadowcroft Fall 2022 Newsletter Thumbnail'),(22851,1611,'_wp_attached_file','2023/02/Meadowcroft-River-Trace-2019.png'),(22852,1611,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:40:\"2023/02/Meadowcroft-River-Trace-2019.png\";s:8:\"filesize\";i:250409;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-River-Trace-2019-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28831;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-River-Trace-2019-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8954;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-River-Trace-2019-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:156501;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-River-Trace-2019-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28831;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-River-Trace-2019-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42509;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-River-Trace-2019-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29330;}s:8:\"tileview\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-River-Trace-2019-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46239;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22853,1611,'_wp_attachment_image_alt','Meadowcroft 2019 River Trace GSM'),(22854,1612,'_wp_attached_file','2023/02/Meadowcroft_PinotNoir_Carneros_Napa_2021.png'),(22855,1612,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:52:\"2023/02/Meadowcroft_PinotNoir_Carneros_Napa_2021.png\";s:8:\"filesize\";i:224883;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_PinotNoir_Carneros_Napa_2021-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25922;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_PinotNoir_Carneros_Napa_2021-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8085;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_PinotNoir_Carneros_Napa_2021-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141895;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_PinotNoir_Carneros_Napa_2021-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25922;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_PinotNoir_Carneros_Napa_2021-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40210;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_PinotNoir_Carneros_Napa_2021-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27909;}s:8:\"tileview\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_PinotNoir_Carneros_Napa_2021-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41434;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22856,1612,'_wp_attachment_image_alt','Meadowcroft_PinotNoir_Carneros_Napa_2021'),(22857,1613,'_wp_attached_file','2023/02/MC_2018_CABSAUV_LOUVAU.png'),(22858,1613,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:34:\"2023/02/MC_2018_CABSAUV_LOUVAU.png\";s:8:\"filesize\";i:240119;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"MC_2018_CABSAUV_LOUVAU-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26049;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"MC_2018_CABSAUV_LOUVAU-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7840;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"MC_2018_CABSAUV_LOUVAU-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:149322;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:34:\"MC_2018_CABSAUV_LOUVAU-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26049;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:34:\"MC_2018_CABSAUV_LOUVAU-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47359;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:34:\"MC_2018_CABSAUV_LOUVAU-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32595;}s:8:\"tileview\";a:5:{s:4:\"file\";s:34:\"MC_2018_CABSAUV_LOUVAU-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41920;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22859,1613,'_wp_attachment_image_alt','Meadowcroft 2018 Louveau Cab'),(22860,1614,'_wp_attached_file','2023/02/16CSNVNC_1-1.png'),(22861,1614,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2023/02/16CSNVNC_1-1.png\";s:8:\"filesize\";i:250979;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"16CSNVNC_1-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28777;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"16CSNVNC_1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8440;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"16CSNVNC_1-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:158632;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:24:\"16CSNVNC_1-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28777;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:24:\"16CSNVNC_1-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51835;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:24:\"16CSNVNC_1-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35843;}s:8:\"tileview\";a:5:{s:4:\"file\";s:24:\"16CSNVNC_1-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46686;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22862,1614,'_wp_attachment_image_alt','Meadowcroft 2016 Louveau Cab'),(22863,1615,'_wp_attached_file','2023/02/Meadowcroft-MC_DRYCREEKZIN_20-1000x2722-1-scaled.webp'),(22864,1615,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:940;s:6:\"height\";i:2560;s:4:\"file\";s:61:\"2023/02/Meadowcroft-MC_DRYCREEKZIN_20-1000x2722-1-scaled.webp\";s:8:\"filesize\";i:73564;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"Meadowcroft-MC_DRYCREEKZIN_20-1000x2722-1-110x300.webp\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4404;}s:5:\"large\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-MC_DRYCREEKZIN_20-1000x2722-1-376x1024.webp\";s:5:\"width\";i:376;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:21216;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"Meadowcroft-MC_DRYCREEKZIN_20-1000x2722-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2860;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-MC_DRYCREEKZIN_20-1000x2722-1-768x2090.webp\";s:5:\"width\";i:768;s:6:\"height\";i:2090;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:56402;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:54:\"Meadowcroft-MC_DRYCREEKZIN_20-1000x2722-1-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6900;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:54:\"Meadowcroft-MC_DRYCREEKZIN_20-1000x2722-1-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8900;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:54:\"Meadowcroft-MC_DRYCREEKZIN_20-1000x2722-1-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6354;}s:8:\"tileview\";a:5:{s:4:\"file\";s:54:\"Meadowcroft-MC_DRYCREEKZIN_20-1000x2722-1-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9416;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-MC_DRYCREEKZIN_20-1000x2722-1-564x1536.webp\";s:5:\"width\";i:564;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:37766;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-MC_DRYCREEKZIN_20-1000x2722-1-752x2048.webp\";s:5:\"width\";i:752;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:54858;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:46:\"Meadowcroft-MC_DRYCREEKZIN_20-1000x2722-1.webp\";}'),(22865,1615,'_wp_attachment_image_alt','Meadowcroft Mae Vineyard Zinfandel'),(22869,1617,'_wp_attached_file','2023/02/Meadowcroft_Pinot_Noir_Anderson-Valley_15_bottleshot.png'),(22870,1617,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:64:\"2023/02/Meadowcroft_Pinot_Noir_Anderson-Valley_15_bottleshot.png\";s:8:\"filesize\";i:225483;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_Pinot_Noir_Anderson-Valley_15_bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24933;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_Pinot_Noir_Anderson-Valley_15_bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7855;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_Pinot_Noir_Anderson-Valley_15_bottleshot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:137768;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_Pinot_Noir_Anderson-Valley_15_bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24933;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_Pinot_Noir_Anderson-Valley_15_bottleshot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40512;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_Pinot_Noir_Anderson-Valley_15_bottleshot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28063;}s:8:\"tileview\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_Pinot_Noir_Anderson-Valley_15_bottleshot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39775;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22871,1617,'_wp_attachment_image_alt','Meadowcroft 2015 Anderson Valley Pinot Noir'),(22872,1618,'_wp_attached_file','2023/02/Meadowcroft_2020_PinotNoir_RussianriverValley_Bottleshot.png'),(22873,1618,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:68:\"2023/02/Meadowcroft_2020_PinotNoir_RussianriverValley_Bottleshot.png\";s:8:\"filesize\";i:222789;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_2020_PinotNoir_RussianriverValley_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25272;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_2020_PinotNoir_RussianriverValley_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7840;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_2020_PinotNoir_RussianriverValley_Bottleshot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:138246;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_2020_PinotNoir_RussianriverValley_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25272;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_2020_PinotNoir_RussianriverValley_Bottleshot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40873;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_2020_PinotNoir_RussianriverValley_Bottleshot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28344;}s:8:\"tileview\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_2020_PinotNoir_RussianriverValley_Bottleshot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40385;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22874,1618,'_wp_attachment_image_alt','Meadowcroft 2020 RRV Pinot Noir'),(22875,1619,'_wp_attached_file','2023/02/MC_ROUSSANNE_2017.png'),(22876,1619,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:29:\"2023/02/MC_ROUSSANNE_2017.png\";s:8:\"filesize\";i:277266;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"MC_ROUSSANNE_2017-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29919;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"MC_ROUSSANNE_2017-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9277;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"MC_ROUSSANNE_2017-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:158998;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:29:\"MC_ROUSSANNE_2017-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29919;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:29:\"MC_ROUSSANNE_2017-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44459;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:29:\"MC_ROUSSANNE_2017-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30898;}s:8:\"tileview\";a:5:{s:4:\"file\";s:29:\"MC_ROUSSANNE_2017-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47466;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22877,1619,'_wp_attachment_image_alt','Meadowcroft 2017 Roussanne'),(22878,1620,'_wp_attached_file','2023/02/MC2016_CH_SCTY_BottleShot-1.png'),(22879,1620,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:39:\"2023/02/MC2016_CH_SCTY_BottleShot-1.png\";s:8:\"filesize\";i:247552;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"MC2016_CH_SCTY_BottleShot-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27137;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"MC2016_CH_SCTY_BottleShot-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8632;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"MC2016_CH_SCTY_BottleShot-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141349;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:39:\"MC2016_CH_SCTY_BottleShot-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27137;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:39:\"MC2016_CH_SCTY_BottleShot-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42374;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:39:\"MC2016_CH_SCTY_BottleShot-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29345;}s:8:\"tileview\";a:5:{s:4:\"file\";s:39:\"MC2016_CH_SCTY_BottleShot-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42716;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22880,1620,'_wp_attachment_image_alt','Meadowcroft 2016 Carneros Sonoma Chardonnay'),(22881,1621,'_wp_attached_file','2023/02/17PNSCRR_1.png'),(22882,1621,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2023/02/17PNSCRR_1.png\";s:8:\"filesize\";i:252836;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"17PNSCRR_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29682;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"17PNSCRR_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8955;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"17PNSCRR_1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:158715;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:22:\"17PNSCRR_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29682;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:22:\"17PNSCRR_1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46102;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:22:\"17PNSCRR_1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31775;}s:8:\"tileview\";a:5:{s:4:\"file\";s:22:\"17PNSCRR_1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48133;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22883,1621,'_wp_attachment_image_alt','Meadowcroft 2017 RRV Pinot Noir'),(22884,1622,'_wp_attached_file','2023/02/MC17_Riesling_BottleShot_warm_dh.png'),(22885,1622,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:44:\"2023/02/MC17_Riesling_BottleShot_warm_dh.png\";s:8:\"filesize\";i:238607;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"MC17_Riesling_BottleShot_warm_dh-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25981;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"MC17_Riesling_BottleShot_warm_dh-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7824;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"MC17_Riesling_BottleShot_warm_dh-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:144808;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:44:\"MC17_Riesling_BottleShot_warm_dh-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25981;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:44:\"MC17_Riesling_BottleShot_warm_dh-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41022;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:44:\"MC17_Riesling_BottleShot_warm_dh-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27804;}s:8:\"tileview\";a:5:{s:4:\"file\";s:44:\"MC17_Riesling_BottleShot_warm_dh-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41819;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22886,1622,'_wp_attachment_image_alt','Meadowcroft 2017 Riesling'),(22887,1623,'_wp_attached_file','2023/02/Meadowcroft_2018_LosCarneros_Chardonnay-1.png'),(22888,1623,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:53:\"2023/02/Meadowcroft_2018_LosCarneros_Chardonnay-1.png\";s:8:\"filesize\";i:273230;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_2018_LosCarneros_Chardonnay-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29101;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_2018_LosCarneros_Chardonnay-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9066;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_2018_LosCarneros_Chardonnay-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:162235;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_2018_LosCarneros_Chardonnay-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29101;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_2018_LosCarneros_Chardonnay-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44895;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_2018_LosCarneros_Chardonnay-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30854;}s:8:\"tileview\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_2018_LosCarneros_Chardonnay-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46293;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22889,1623,'_wp_attachment_image_alt','Meadowcroft 2018 Carneros Sonoma Chardonnay'),(22890,1624,'_wp_attached_file','2023/02/19_Cab_NelsonRanch_Mendo_Bottleshot.png'),(22891,1624,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:47:\"2023/02/19_Cab_NelsonRanch_Mendo_Bottleshot.png\";s:8:\"filesize\";i:239541;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"19_Cab_NelsonRanch_Mendo_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25698;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"19_Cab_NelsonRanch_Mendo_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7729;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"19_Cab_NelsonRanch_Mendo_Bottleshot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:148266;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:47:\"19_Cab_NelsonRanch_Mendo_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25698;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:47:\"19_Cab_NelsonRanch_Mendo_Bottleshot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46783;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:47:\"19_Cab_NelsonRanch_Mendo_Bottleshot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32067;}s:8:\"tileview\";a:5:{s:4:\"file\";s:47:\"19_Cab_NelsonRanch_Mendo_Bottleshot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41439;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22892,1624,'_wp_attachment_image_alt','Meadowcroft 2019 Nelson Ranch Cabernet Sauvignon'),(22893,1625,'_wp_attached_file','2023/02/MC_Roussanne_2016_BottleShot-329x1024-1.png'),(22894,1625,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:51:\"2023/02/MC_Roussanne_2016_BottleShot-329x1024-1.png\";s:8:\"filesize\";i:244117;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"MC_Roussanne_2016_BottleShot-329x1024-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28171;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"MC_Roussanne_2016_BottleShot-329x1024-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8869;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"MC_Roussanne_2016_BottleShot-329x1024-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141286;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:51:\"MC_Roussanne_2016_BottleShot-329x1024-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28171;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:51:\"MC_Roussanne_2016_BottleShot-329x1024-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42160;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:51:\"MC_Roussanne_2016_BottleShot-329x1024-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29514;}s:8:\"tileview\";a:5:{s:4:\"file\";s:51:\"MC_Roussanne_2016_BottleShot-329x1024-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44105;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22895,1625,'_wp_attachment_image_alt','Meadowcroft 2015 Roussanne'),(22896,1626,'_wp_attached_file','2023/02/Meadowcroft_Zinfandel_2014_SpeedyCreek.png'),(22897,1626,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:50:\"2023/02/Meadowcroft_Zinfandel_2014_SpeedyCreek.png\";s:8:\"filesize\";i:246262;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_Zinfandel_2014_SpeedyCreek-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26594;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_Zinfandel_2014_SpeedyCreek-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8028;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_Zinfandel_2014_SpeedyCreek-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:153097;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_Zinfandel_2014_SpeedyCreek-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26594;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_Zinfandel_2014_SpeedyCreek-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48299;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_Zinfandel_2014_SpeedyCreek-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33580;}s:8:\"tileview\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_Zinfandel_2014_SpeedyCreek-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43057;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22898,1626,'_wp_attachment_image_alt','Meadowcroft 2014 Speedy Creek Zinfandel'),(22899,1627,'_wp_attached_file','2023/02/Meadowcroft_PiontNoir_AndersonValley_2018.png'),(22900,1627,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:53:\"2023/02/Meadowcroft_PiontNoir_AndersonValley_2018.png\";s:8:\"filesize\";i:222084;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_PiontNoir_AndersonValley_2018-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25041;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_PiontNoir_AndersonValley_2018-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7800;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_PiontNoir_AndersonValley_2018-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:137642;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_PiontNoir_AndersonValley_2018-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25041;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_PiontNoir_AndersonValley_2018-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40873;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_PiontNoir_AndersonValley_2018-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28346;}s:8:\"tileview\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_PiontNoir_AndersonValley_2018-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40106;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22901,1627,'_wp_attachment_image_alt','Meadowcroft 2018 Anderson Valley Pinot Noir'),(22902,1628,'_wp_attached_file','2023/02/MC_ROSE_17.png'),(22903,1628,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2023/02/MC_ROSE_17.png\";s:8:\"filesize\";i:284717;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"MC_ROSE_17-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31220;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"MC_ROSE_17-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9470;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"MC_ROSE_17-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:179829;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:22:\"MC_ROSE_17-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31220;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:22:\"MC_ROSE_17-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51336;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:22:\"MC_ROSE_17-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35304;}s:8:\"tileview\";a:5:{s:4:\"file\";s:22:\"MC_ROSE_17-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50663;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22904,1628,'_wp_attachment_image_alt','Meadowcroft 2017 Rosé of Malbec'),(22905,1629,'_wp_attached_file','2023/02/MC_Roussanne_Louvau_DryCreekValley.png'),(22906,1629,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:46:\"2023/02/MC_Roussanne_Louvau_DryCreekValley.png\";s:8:\"filesize\";i:273335;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"MC_Roussanne_Louvau_DryCreekValley-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29299;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"MC_Roussanne_Louvau_DryCreekValley-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9150;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"MC_Roussanne_Louvau_DryCreekValley-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:162503;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:46:\"MC_Roussanne_Louvau_DryCreekValley-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29299;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:46:\"MC_Roussanne_Louvau_DryCreekValley-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44829;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:46:\"MC_Roussanne_Louvau_DryCreekValley-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30630;}s:8:\"tileview\";a:5:{s:4:\"file\";s:46:\"MC_Roussanne_Louvau_DryCreekValley-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46592;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22907,1629,'_wp_attachment_image_alt','Meadowcroft 2018 Roussanne'),(22908,1630,'_wp_attached_file','2023/02/MC_AndersonPinot2020.png'),(22909,1630,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:32:\"2023/02/MC_AndersonPinot2020.png\";s:8:\"filesize\";i:226291;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"MC_AndersonPinot2020-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25749;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"MC_AndersonPinot2020-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7979;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"MC_AndersonPinot2020-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141901;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:32:\"MC_AndersonPinot2020-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25749;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:32:\"MC_AndersonPinot2020-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41112;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:32:\"MC_AndersonPinot2020-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28479;}s:8:\"tileview\";a:5:{s:4:\"file\";s:32:\"MC_AndersonPinot2020-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41494;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22910,1630,'_wp_attachment_image_alt','Meadowcroft 2020 Anderson Valley Pinot Noir'),(22911,1631,'_wp_attached_file','2023/02/21_Chard_Vinodelsol_SonomaCoast_bottleshot.png'),(22912,1631,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:54:\"2023/02/21_Chard_Vinodelsol_SonomaCoast_bottleshot.png\";s:8:\"filesize\";i:272122;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"21_Chard_Vinodelsol_SonomaCoast_bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28974;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"21_Chard_Vinodelsol_SonomaCoast_bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9012;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:54:\"21_Chard_Vinodelsol_SonomaCoast_bottleshot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:161164;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:54:\"21_Chard_Vinodelsol_SonomaCoast_bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28974;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:54:\"21_Chard_Vinodelsol_SonomaCoast_bottleshot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44410;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:54:\"21_Chard_Vinodelsol_SonomaCoast_bottleshot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30633;}s:8:\"tileview\";a:5:{s:4:\"file\";s:54:\"21_Chard_Vinodelsol_SonomaCoast_bottleshot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46057;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22913,1631,'_wp_attachment_image_alt','Meadowcroft 2021 Sonoma Coast Chardonnay'),(22914,1632,'_wp_attached_file','2023/02/Meadowcroft_Viognier_16_Bottleshot.png'),(22915,1632,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:46:\"2023/02/Meadowcroft_Viognier_16_Bottleshot.png\";s:8:\"filesize\";i:262057;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_Viognier_16_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28182;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_Viognier_16_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8953;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_Viognier_16_Bottleshot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:152418;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_Viognier_16_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28182;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_Viognier_16_Bottleshot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43562;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_Viognier_16_Bottleshot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30342;}s:8:\"tileview\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_Viognier_16_Bottleshot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44736;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22916,1632,'_wp_attachment_image_alt','Meadowcroft 2016 Viognier'),(22917,1633,'_wp_attached_file','2023/02/MC_2018_FrenchColombard_BottleShot.png'),(22918,1633,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:46:\"2023/02/MC_2018_FrenchColombard_BottleShot.png\";s:8:\"filesize\";i:334986;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"MC_2018_FrenchColombard_BottleShot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45868;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"MC_2018_FrenchColombard_BottleShot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12497;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"MC_2018_FrenchColombard_BottleShot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:271215;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:46:\"MC_2018_FrenchColombard_BottleShot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45868;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:46:\"MC_2018_FrenchColombard_BottleShot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68260;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:46:\"MC_2018_FrenchColombard_BottleShot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45842;}s:8:\"tileview\";a:5:{s:4:\"file\";s:46:\"MC_2018_FrenchColombard_BottleShot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:76954;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22919,1633,'_wp_attachment_image_alt','Meadowcroft 2018 French Colombard'),(22920,1634,'_wp_attached_file','2023/02/16PNNVLCv2_1.png'),(22921,1634,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2023/02/16PNNVLCv2_1.png\";s:8:\"filesize\";i:254094;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"16PNNVLCv2_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29563;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"16PNNVLCv2_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8884;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"16PNNVLCv2_1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:159553;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:24:\"16PNNVLCv2_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29563;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:24:\"16PNNVLCv2_1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45940;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:24:\"16PNNVLCv2_1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31515;}s:8:\"tileview\";a:5:{s:4:\"file\";s:24:\"16PNNVLCv2_1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47926;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22922,1634,'_wp_attachment_image_alt','Meadowcroft 2016 Carneros Pinot Noir'),(22923,1635,'_wp_attached_file','2023/02/Meadowcroft_Chardonnay_NapaValley_Carneros_2019.png'),(22924,1635,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:59:\"2023/02/Meadowcroft_Chardonnay_NapaValley_Carneros_2019.png\";s:8:\"filesize\";i:271325;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_Chardonnay_NapaValley_Carneros_2019-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28806;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_Chardonnay_NapaValley_Carneros_2019-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8985;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_Chardonnay_NapaValley_Carneros_2019-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:160262;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_Chardonnay_NapaValley_Carneros_2019-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28806;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_Chardonnay_NapaValley_Carneros_2019-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44423;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_Chardonnay_NapaValley_Carneros_2019-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30630;}s:8:\"tileview\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_Chardonnay_NapaValley_Carneros_2019-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45668;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22925,1635,'_wp_attachment_image_alt','Meadowcroft 2019 Carneros Chardonnay'),(22926,1636,'_wp_attached_file','2023/02/Meadowcroft_Syrah_California_2018.png'),(22927,1636,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:45:\"2023/02/Meadowcroft_Syrah_California_2018.png\";s:8:\"filesize\";i:221659;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"Meadowcroft_Syrah_California_2018-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24919;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"Meadowcroft_Syrah_California_2018-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7759;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"Meadowcroft_Syrah_California_2018-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:136995;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:45:\"Meadowcroft_Syrah_California_2018-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24919;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:45:\"Meadowcroft_Syrah_California_2018-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40569;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:45:\"Meadowcroft_Syrah_California_2018-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28211;}s:8:\"tileview\";a:5:{s:4:\"file\";s:45:\"Meadowcroft_Syrah_California_2018-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39889;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22928,1636,'_wp_attachment_image_alt','Meadowcroft 2018 Syrah'),(22929,1637,'_wp_attached_file','2023/02/Meadowcroft-Sparkling-Bottle-shot-1.png'),(22930,1637,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:47:\"2023/02/Meadowcroft-Sparkling-Bottle-shot-1.png\";s:8:\"filesize\";i:281843;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"Meadowcroft-Sparkling-Bottle-shot-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37035;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Meadowcroft-Sparkling-Bottle-shot-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11247;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"Meadowcroft-Sparkling-Bottle-shot-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:181314;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:47:\"Meadowcroft-Sparkling-Bottle-shot-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37035;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:47:\"Meadowcroft-Sparkling-Bottle-shot-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51048;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:47:\"Meadowcroft-Sparkling-Bottle-shot-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36040;}s:8:\"tileview\";a:5:{s:4:\"file\";s:47:\"Meadowcroft-Sparkling-Bottle-shot-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58906;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22931,1637,'_wp_attachment_image_alt','Meadowcroft Blanc de Blanc'),(22932,1638,'_wp_attached_file','2023/02/Meadowcroft_2020_Cornerstone_Pinotnoir_Bottleshotpng.png'),(22933,1638,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:64:\"2023/02/Meadowcroft_2020_Cornerstone_Pinotnoir_Bottleshotpng.png\";s:8:\"filesize\";i:217136;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_2020_Cornerstone_Pinotnoir_Bottleshotpng-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25108;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_2020_Cornerstone_Pinotnoir_Bottleshotpng-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7894;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_2020_Cornerstone_Pinotnoir_Bottleshotpng-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:135947;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_2020_Cornerstone_Pinotnoir_Bottleshotpng-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25108;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_2020_Cornerstone_Pinotnoir_Bottleshotpng-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39874;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_2020_Cornerstone_Pinotnoir_Bottleshotpng-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27616;}s:8:\"tileview\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_2020_Cornerstone_Pinotnoir_Bottleshotpng-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39713;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22934,1638,'_wp_attachment_image_alt','Meadowcroft 2020 Cornerstone Pinot Noir'),(22935,1639,'_wp_attached_file','2023/02/summer-pairings.jpg'),(22936,1639,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2023/02/summer-pairings.jpg\";s:8:\"filesize\";i:72941;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"summer-pairings-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20371;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"summer-pairings-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7131;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"summer-pairings-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80319;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:27:\"summer-pairings-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20371;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:27:\"summer-pairings-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27653;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:27:\"summer-pairings-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20344;}s:8:\"tileview\";a:5:{s:4:\"file\";s:27:\"summer-pairings-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22401;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22937,1639,'_wp_attachment_image_alt','Bottle of Meadowcroft Wine and mexican corn'),(22939,1640,'_wp_attached_file','2023/02/MC_FRENCHCOLUMBARD_2017.png'),(22940,1640,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:35:\"2023/02/MC_FRENCHCOLUMBARD_2017.png\";s:8:\"filesize\";i:278257;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"MC_FRENCHCOLUMBARD_2017-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31227;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"MC_FRENCHCOLUMBARD_2017-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9450;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"MC_FRENCHCOLUMBARD_2017-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:177524;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:35:\"MC_FRENCHCOLUMBARD_2017-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31227;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:35:\"MC_FRENCHCOLUMBARD_2017-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50432;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:35:\"MC_FRENCHCOLUMBARD_2017-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34566;}s:8:\"tileview\";a:5:{s:4:\"file\";s:35:\"MC_FRENCHCOLUMBARD_2017-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50418;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22941,1640,'_wp_attachment_image_alt','Meadowcroft 2017 French Colombard'),(22942,1641,'_wp_attached_file','2023/02/Meadowcroft_2015_CabSauv_Mendo.png'),(22943,1641,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:42:\"2023/02/Meadowcroft_2015_CabSauv_Mendo.png\";s:8:\"filesize\";i:245568;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Meadowcroft_2015_CabSauv_Mendo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26381;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Meadowcroft_2015_CabSauv_Mendo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7964;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"Meadowcroft_2015_CabSauv_Mendo-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:152188;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:42:\"Meadowcroft_2015_CabSauv_Mendo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26381;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:42:\"Meadowcroft_2015_CabSauv_Mendo-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47838;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:42:\"Meadowcroft_2015_CabSauv_Mendo-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33154;}s:8:\"tileview\";a:5:{s:4:\"file\";s:42:\"Meadowcroft_2015_CabSauv_Mendo-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42716;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22944,1641,'_wp_attachment_image_alt','Meadowcroft 2015 Nelson Ranch Cabernet Sauvignon'),(22945,1642,'_wp_attached_file','2023/02/17PNSCSC_1.png'),(22946,1642,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2023/02/17PNSCSC_1.png\";s:8:\"filesize\";i:253669;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"17PNSCSC_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29501;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"17PNSCSC_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8649;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"17PNSCSC_1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:159402;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:22:\"17PNSCSC_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29501;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:22:\"17PNSCSC_1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45594;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:22:\"17PNSCSC_1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31519;}s:8:\"tileview\";a:5:{s:4:\"file\";s:22:\"17PNSCSC_1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47707;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22947,1642,'_wp_attachment_image_alt','Meadowcroft 2017 Sonoma Coast Pinot Noir'),(22948,1643,'_wp_attached_file','2023/02/Meadowcroft_SauvBlanc_2016_BottleShot-1.png'),(22949,1643,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:51:\"2023/02/Meadowcroft_SauvBlanc_2016_BottleShot-1.png\";s:8:\"filesize\";i:336724;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_SauvBlanc_2016_BottleShot-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46266;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_SauvBlanc_2016_BottleShot-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12255;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_SauvBlanc_2016_BottleShot-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:271157;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_SauvBlanc_2016_BottleShot-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46266;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_SauvBlanc_2016_BottleShot-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68727;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_SauvBlanc_2016_BottleShot-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45913;}s:8:\"tileview\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_SauvBlanc_2016_BottleShot-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77597;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22950,1643,'_wp_attachment_image_alt','Meadowcroft 2016 Sauvignon Blanc'),(22951,1644,'_wp_attached_file','2023/02/rose-of-pinot-noir.png'),(22952,1644,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:30:\"2023/02/rose-of-pinot-noir.png\";s:8:\"filesize\";i:275323;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"rose-of-pinot-noir-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41068;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"rose-of-pinot-noir-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11510;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"rose-of-pinot-noir-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:211691;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:30:\"rose-of-pinot-noir-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41068;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:30:\"rose-of-pinot-noir-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57244;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:30:\"rose-of-pinot-noir-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39300;}s:8:\"tileview\";a:5:{s:4:\"file\";s:30:\"rose-of-pinot-noir-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67085;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22953,1644,'_wp_attachment_image_alt','Meadowcroft 2020 Rosé of Pinot Noir'),(22954,1645,'_wp_attached_file','2023/02/Meadowcroft_SauvBlanc_SonomaCoast_2021.png'),(22955,1645,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:50:\"2023/02/Meadowcroft_SauvBlanc_SonomaCoast_2021.png\";s:8:\"filesize\";i:266009;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_SauvBlanc_SonomaCoast_2021-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31167;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_SauvBlanc_SonomaCoast_2021-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9495;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_SauvBlanc_SonomaCoast_2021-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:172777;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_SauvBlanc_SonomaCoast_2021-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31167;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_SauvBlanc_SonomaCoast_2021-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48178;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_SauvBlanc_SonomaCoast_2021-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33654;}s:8:\"tileview\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_SauvBlanc_SonomaCoast_2021-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50403;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22956,1645,'_wp_attachment_image_alt','Meadowcroft 2021 Sauvignon Blanc'),(22957,1646,'_wp_attached_file','2023/02/Meadowcroft_Pinot_Noir_Anderson-Valley_16_bottleshot.png'),(22958,1646,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:64:\"2023/02/Meadowcroft_Pinot_Noir_Anderson-Valley_16_bottleshot.png\";s:8:\"filesize\";i:225485;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_Pinot_Noir_Anderson-Valley_16_bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24934;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_Pinot_Noir_Anderson-Valley_16_bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7858;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_Pinot_Noir_Anderson-Valley_16_bottleshot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:137758;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_Pinot_Noir_Anderson-Valley_16_bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24934;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_Pinot_Noir_Anderson-Valley_16_bottleshot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40512;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_Pinot_Noir_Anderson-Valley_16_bottleshot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28063;}s:8:\"tileview\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_Pinot_Noir_Anderson-Valley_16_bottleshot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39782;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22959,1646,'_wp_attachment_image_alt','Meadowcroft 2016 Anderson Valley Pinot Noir'),(22960,1647,'_wp_attached_file','2023/02/Meadowcroft_PinotNoir_Cornerstone_LosCarneros_2018.png'),(22961,1647,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:62:\"2023/02/Meadowcroft_PinotNoir_Cornerstone_LosCarneros_2018.png\";s:8:\"filesize\";i:224008;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_PinotNoir_Cornerstone_LosCarneros_2018-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25620;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_PinotNoir_Cornerstone_LosCarneros_2018-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7917;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_PinotNoir_Cornerstone_LosCarneros_2018-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139919;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_PinotNoir_Cornerstone_LosCarneros_2018-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25620;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_PinotNoir_Cornerstone_LosCarneros_2018-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40873;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_PinotNoir_Cornerstone_LosCarneros_2018-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28346;}s:8:\"tileview\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_PinotNoir_Cornerstone_LosCarneros_2018-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40935;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22962,1647,'_wp_attachment_image_alt','Meadowcroft 2018 Cornerstone Pinot Noir'),(22963,1648,'_wp_attached_file','2023/02/Meadowcroft-_21_Pinot_Noir_AndersonValley.png'),(22964,1648,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:53:\"2023/02/Meadowcroft-_21_Pinot_Noir_AndersonValley.png\";s:8:\"filesize\";i:230547;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26428;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8123;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:145458;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26428;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41198;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28532;}s:8:\"tileview\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42548;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22965,1648,'_wp_attachment_image_alt','Meadowcroft 2021 Anderson Valley Pinot Noir'),(22966,1649,'_wp_attached_file','2023/02/2021-Meadowcroft-Sonoma-Coast-Pinot_Bottleshot.png'),(22967,1649,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:58:\"2023/02/2021-Meadowcroft-Sonoma-Coast-Pinot_Bottleshot.png\";s:8:\"filesize\";i:230689;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"2021-Meadowcroft-Sonoma-Coast-Pinot_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26473;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"2021-Meadowcroft-Sonoma-Coast-Pinot_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8153;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:58:\"2021-Meadowcroft-Sonoma-Coast-Pinot_Bottleshot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:145612;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:58:\"2021-Meadowcroft-Sonoma-Coast-Pinot_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26473;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:58:\"2021-Meadowcroft-Sonoma-Coast-Pinot_Bottleshot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41194;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:58:\"2021-Meadowcroft-Sonoma-Coast-Pinot_Bottleshot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28529;}s:8:\"tileview\";a:5:{s:4:\"file\";s:58:\"2021-Meadowcroft-Sonoma-Coast-Pinot_Bottleshot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42641;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22968,1649,'_wp_attachment_image_alt','Meadowcroft 2021 Sonoma Coast Pinot Noir'),(22969,1650,'_wp_attached_file','2023/02/Meadowcroft_20_Chard_Napa_Carneros_BottleShot-.png'),(22970,1650,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:58:\"2023/02/Meadowcroft_20_Chard_Napa_Carneros_BottleShot-.png\";s:8:\"filesize\";i:270426;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_20_Chard_Napa_Carneros_BottleShot--300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28864;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_20_Chard_Napa_Carneros_BottleShot--150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8977;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_20_Chard_Napa_Carneros_BottleShot--768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:161232;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_20_Chard_Napa_Carneros_BottleShot--300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28864;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_20_Chard_Napa_Carneros_BottleShot--474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44646;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_20_Chard_Napa_Carneros_BottleShot--391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30531;}s:8:\"tileview\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_20_Chard_Napa_Carneros_BottleShot--300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45992;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22971,1650,'_wp_attachment_image_alt','Meadowcroft 2020 Carneros Chardonnay'),(22972,1651,'_wp_attached_file','2023/02/tom-bw.jpg'),(22973,1651,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:18:\"2023/02/tom-bw.jpg\";s:8:\"filesize\";i:93518;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"tom-bw-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19477;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"tom-bw-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6411;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"tom-bw-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87069;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:18:\"tom-bw-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19477;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:18:\"tom-bw-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28475;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:18:\"tom-bw-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20171;}s:8:\"tileview\";a:5:{s:4:\"file\";s:18:\"tom-bw-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24848;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22974,1651,'_wp_attachment_image_alt','tom-bw'),(22975,1652,'_wp_attached_file','2023/02/2020_Pinot_Blanc_Bottleshot-1.png'),(22976,1652,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:41:\"2023/02/2020_Pinot_Blanc_Bottleshot-1.png\";s:8:\"filesize\";i:271492;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"2020_Pinot_Blanc_Bottleshot-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29158;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"2020_Pinot_Blanc_Bottleshot-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9033;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"2020_Pinot_Blanc_Bottleshot-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:162401;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:41:\"2020_Pinot_Blanc_Bottleshot-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29158;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:41:\"2020_Pinot_Blanc_Bottleshot-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44273;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:41:\"2020_Pinot_Blanc_Bottleshot-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30531;}s:8:\"tileview\";a:5:{s:4:\"file\";s:41:\"2020_Pinot_Blanc_Bottleshot-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46414;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22977,1652,'_wp_attachment_image_alt','Meadowcroft 2020 Pinot Blanc'),(22978,1653,'_wp_attached_file','2023/02/Meadowcroft_2019_LouvauVineyard_DryCreekValley_Viognier.png'),(22979,1653,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:67:\"2023/02/Meadowcroft_2019_LouvauVineyard_DryCreekValley_Viognier.png\";s:8:\"filesize\";i:271562;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:67:\"Meadowcroft_2019_LouvauVineyard_DryCreekValley_Viognier-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28766;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:67:\"Meadowcroft_2019_LouvauVineyard_DryCreekValley_Viognier-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9009;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:67:\"Meadowcroft_2019_LouvauVineyard_DryCreekValley_Viognier-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:160350;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:67:\"Meadowcroft_2019_LouvauVineyard_DryCreekValley_Viognier-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28766;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:67:\"Meadowcroft_2019_LouvauVineyard_DryCreekValley_Viognier-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44423;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:67:\"Meadowcroft_2019_LouvauVineyard_DryCreekValley_Viognier-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30630;}s:8:\"tileview\";a:5:{s:4:\"file\";s:67:\"Meadowcroft_2019_LouvauVineyard_DryCreekValley_Viognier-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45702;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22980,1653,'_wp_attachment_image_alt','Meadowcroft 2019 Viognier'),(22981,1654,'_wp_attached_file','2023/02/MC_Roussanne_2021_Bottleshot.png'),(22982,1654,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:40:\"2023/02/MC_Roussanne_2021_Bottleshot.png\";s:8:\"filesize\";i:267183;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"MC_Roussanne_2021_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28044;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"MC_Roussanne_2021_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8914;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"MC_Roussanne_2021_Bottleshot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157180;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:40:\"MC_Roussanne_2021_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28044;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:40:\"MC_Roussanne_2021_Bottleshot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43236;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:40:\"MC_Roussanne_2021_Bottleshot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29615;}s:8:\"tileview\";a:5:{s:4:\"file\";s:40:\"MC_Roussanne_2021_Bottleshot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44621;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22983,1654,'_wp_attachment_image_alt','Meadowcroft 2021 Roussanne'),(22984,1655,'_wp_attached_file','2023/02/15CSNVEG_1.png'),(22985,1655,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2023/02/15CSNVEG_1.png\";s:8:\"filesize\";i:244996;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"15CSNVEG_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31298;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"15CSNVEG_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9708;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"15CSNVEG_1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:158594;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:22:\"15CSNVEG_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31298;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:22:\"15CSNVEG_1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47401;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:22:\"15CSNVEG_1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33009;}s:8:\"tileview\";a:5:{s:4:\"file\";s:22:\"15CSNVEG_1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50238;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22986,1655,'_wp_attachment_image_alt','Meadowcroft 2015 Mt Veeder Napa Cabernet Sauvignon Bottle'),(22987,1656,'_wp_attached_file','2023/02/MC_GSM_Rose_2021_BottleShot-1.png'),(22988,1656,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:41:\"2023/02/MC_GSM_Rose_2021_BottleShot-1.png\";s:8:\"filesize\";i:307549;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"MC_GSM_Rose_2021_BottleShot-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40178;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"MC_GSM_Rose_2021_BottleShot-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11189;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"MC_GSM_Rose_2021_BottleShot-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:230890;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:41:\"MC_GSM_Rose_2021_BottleShot-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40178;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:41:\"MC_GSM_Rose_2021_BottleShot-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57077;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:41:\"MC_GSM_Rose_2021_BottleShot-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38303;}s:8:\"tileview\";a:5:{s:4:\"file\";s:41:\"MC_GSM_Rose_2021_BottleShot-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66390;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22989,1656,'_wp_attachment_image_alt','Meadowcroft 2021 River Trace GSM Rosé'),(22990,1657,'_wp_attached_file','2023/02/13CSNVEG_1.png'),(22991,1657,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2023/02/13CSNVEG_1.png\";s:8:\"filesize\";i:242215;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"13CSNVEG_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30916;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"13CSNVEG_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9633;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"13CSNVEG_1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157111;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:22:\"13CSNVEG_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30916;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:22:\"13CSNVEG_1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47201;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:22:\"13CSNVEG_1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32766;}s:8:\"tileview\";a:5:{s:4:\"file\";s:22:\"13CSNVEG_1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49769;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22992,1657,'_wp_attachment_image_alt','Meadowcroft 2013 Mt Veeder Napa Cabernet Sauvignon Bottle'),(22993,1658,'_wp_attached_file','2023/02/petar-bw.jpg'),(22994,1658,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:20:\"2023/02/petar-bw.jpg\";s:8:\"filesize\";i:86772;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"petar-bw-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16378;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"petar-bw-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5017;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"petar-bw-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81007;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:20:\"petar-bw-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16378;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:20:\"petar-bw-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23836;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:20:\"petar-bw-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16689;}s:8:\"tileview\";a:5:{s:4:\"file\";s:20:\"petar-bw-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20530;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22995,1658,'_wp_attachment_image_alt','Peter Kirilov Black & White Photo'),(22996,1659,'_wp_attached_file','2023/02/MC_Roussanne_2016_BottleShot-329x1024-1-1.png'),(22997,1659,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:329;s:6:\"height\";i:1024;s:4:\"file\";s:53:\"2023/02/MC_Roussanne_2016_BottleShot-329x1024-1-1.png\";s:8:\"filesize\";i:266835;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"MC_Roussanne_2016_BottleShot-329x1024-1-1-96x300.png\";s:5:\"width\";i:96;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25623;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"MC_Roussanne_2016_BottleShot-329x1024-1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16735;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:53:\"MC_Roussanne_2016_BottleShot-329x1024-1-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55804;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:53:\"MC_Roussanne_2016_BottleShot-329x1024-1-1-329x324.png\";s:5:\"width\";i:329;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77305;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:53:\"MC_Roussanne_2016_BottleShot-329x1024-1-1-329x260.png\";s:5:\"width\";i:329;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61366;}s:8:\"tileview\";a:5:{s:4:\"file\";s:53:\"MC_Roussanne_2016_BottleShot-329x1024-1-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:76744;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22998,1659,'_wp_attachment_image_alt','Meadowcroft 2015 Roussanne'),(22999,1660,'_wp_attached_file','2023/02/testimonials.jpg'),(23000,1660,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:592;s:4:\"file\";s:24:\"2023/02/testimonials.jpg\";s:8:\"filesize\";i:92400;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"testimonials-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19020;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"testimonials-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7365;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"testimonials-768x568.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:568;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86155;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:24:\"testimonials-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23753;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:24:\"testimonials-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38332;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:24:\"testimonials-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27197;}s:8:\"tileview\";a:5:{s:4:\"file\";s:24:\"testimonials-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28337;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23001,1660,'_wp_attachment_image_alt','Bottle of Meadowcroft wine in lavender field'),(23002,1661,'_wp_attached_file','2023/02/Meadowcroft_2017_NapaValley_CabernetSauvignon.png'),(23003,1661,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:57:\"2023/02/Meadowcroft_2017_NapaValley_CabernetSauvignon.png\";s:8:\"filesize\";i:236104;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2017_NapaValley_CabernetSauvignon-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25577;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2017_NapaValley_CabernetSauvignon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7770;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2017_NapaValley_CabernetSauvignon-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:144604;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2017_NapaValley_CabernetSauvignon-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25577;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2017_NapaValley_CabernetSauvignon-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46122;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2017_NapaValley_CabernetSauvignon-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32240;}s:8:\"tileview\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2017_NapaValley_CabernetSauvignon-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41469;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23004,1661,'_wp_attachment_image_alt','Meadowcroft 2017 Napa Valley Cabernet Sauvignon Bottle'),(23005,1662,'_wp_attached_file','2023/02/MC_2018_Viognier_Louvau_DryCreekValley.png'),(23006,1662,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:50:\"2023/02/MC_2018_Viognier_Louvau_DryCreekValley.png\";s:8:\"filesize\";i:273095;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"MC_2018_Viognier_Louvau_DryCreekValley-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29246;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"MC_2018_Viognier_Louvau_DryCreekValley-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9117;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"MC_2018_Viognier_Louvau_DryCreekValley-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:162191;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:50:\"MC_2018_Viognier_Louvau_DryCreekValley-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29246;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:50:\"MC_2018_Viognier_Louvau_DryCreekValley-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44770;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:50:\"MC_2018_Viognier_Louvau_DryCreekValley-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30630;}s:8:\"tileview\";a:5:{s:4:\"file\";s:50:\"MC_2018_Viognier_Louvau_DryCreekValley-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46510;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23007,1663,'_wp_attached_file','2023/02/rose-of-pinot-noir.jpg'),(23008,1663,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:30:\"2023/02/rose-of-pinot-noir.jpg\";s:8:\"filesize\";i:21937;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"rose-of-pinot-noir-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4771;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"rose-of-pinot-noir-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1924;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"rose-of-pinot-noir-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20064;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:30:\"rose-of-pinot-noir-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4771;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:30:\"rose-of-pinot-noir-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6460;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:30:\"rose-of-pinot-noir-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4741;}s:8:\"tileview\";a:5:{s:4:\"file\";s:30:\"rose-of-pinot-noir-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6957;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23009,1662,'_wp_attachment_image_alt','Meadowcroft 2018 Viognier'),(23010,1663,'_wp_attachment_image_alt','rose-of-pinot-noir'),(23011,1664,'_wp_attached_file','2023/02/food-wine-blog1.jpg'),(23012,1664,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2023/02/food-wine-blog1.jpg\";s:8:\"filesize\";i:100276;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"food-wine-blog1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24634;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"food-wine-blog1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8519;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"food-wine-blog1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96908;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:27:\"food-wine-blog1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24634;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:27:\"food-wine-blog1-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35958;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:27:\"food-wine-blog1-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26469;}s:8:\"tileview\";a:5:{s:4:\"file\";s:27:\"food-wine-blog1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28530;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23013,1664,'_wp_attachment_image_alt','Food-wine-pairing-blog'),(23014,1665,'_wp_attached_file','2023/02/Meadowcroft-Sparkling-Bottle-shot.png'),(23015,1665,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:45:\"2023/02/Meadowcroft-Sparkling-Bottle-shot.png\";s:8:\"filesize\";i:281843;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"Meadowcroft-Sparkling-Bottle-shot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37035;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"Meadowcroft-Sparkling-Bottle-shot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11247;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"Meadowcroft-Sparkling-Bottle-shot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:181314;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:45:\"Meadowcroft-Sparkling-Bottle-shot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37035;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:45:\"Meadowcroft-Sparkling-Bottle-shot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51048;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:45:\"Meadowcroft-Sparkling-Bottle-shot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36040;}s:8:\"tileview\";a:5:{s:4:\"file\";s:45:\"Meadowcroft-Sparkling-Bottle-shot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58906;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23016,1665,'_wp_attachment_image_alt','Meadowcroft Blanc de Blanc'),(23019,1667,'_wp_attached_file','2023/02/Meadowcroft_SauvBlanc_SonomaCoast_2020.png'),(23020,1667,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:50:\"2023/02/Meadowcroft_SauvBlanc_SonomaCoast_2020.png\";s:8:\"filesize\";i:262974;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_SauvBlanc_SonomaCoast_2020-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31184;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_SauvBlanc_SonomaCoast_2020-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9454;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_SauvBlanc_SonomaCoast_2020-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:169009;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_SauvBlanc_SonomaCoast_2020-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31184;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_SauvBlanc_SonomaCoast_2020-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48581;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_SauvBlanc_SonomaCoast_2020-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33741;}s:8:\"tileview\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_SauvBlanc_SonomaCoast_2020-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49925;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23021,1667,'_wp_attachment_image_alt','Meadowcroft 2020 Sauvignon Blanc'),(23022,1668,'_wp_attached_file','2023/02/MC_FrenchColombard2019_Bottleshot.png'),(23023,1668,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:45:\"2023/02/MC_FrenchColombard2019_Bottleshot.png\";s:8:\"filesize\";i:294040;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"MC_FrenchColombard2019_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34151;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"MC_FrenchColombard2019_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9957;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"MC_FrenchColombard2019_Bottleshot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:196744;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:45:\"MC_FrenchColombard2019_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34151;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:45:\"MC_FrenchColombard2019_Bottleshot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54711;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:45:\"MC_FrenchColombard2019_Bottleshot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37342;}s:8:\"tileview\";a:5:{s:4:\"file\";s:45:\"MC_FrenchColombard2019_Bottleshot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55900;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23024,1668,'_wp_attachment_image_alt','Meadowcroft 2019 French Colombard'),(23025,1669,'_wp_attached_file','2023/02/Meadowcroft-Sparkling-Bottle-shot-1-1.png'),(23026,1669,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:265;s:6:\"height\";i:854;s:4:\"file\";s:49:\"2023/02/Meadowcroft-Sparkling-Bottle-shot-1-1.png\";s:8:\"filesize\";i:220754;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"Meadowcroft-Sparkling-Bottle-shot-1-1-93x300.png\";s:5:\"width\";i:93;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34748;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"Meadowcroft-Sparkling-Bottle-shot-1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23424;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:49:\"Meadowcroft-Sparkling-Bottle-shot-1-1-265x300.png\";s:5:\"width\";i:265;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72492;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:49:\"Meadowcroft-Sparkling-Bottle-shot-1-1-265x324.png\";s:5:\"width\";i:265;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77699;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:49:\"Meadowcroft-Sparkling-Bottle-shot-1-1-265x260.png\";s:5:\"width\";i:265;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62292;}s:8:\"tileview\";a:5:{s:4:\"file\";s:49:\"Meadowcroft-Sparkling-Bottle-shot-1-1-265x400.png\";s:5:\"width\";i:265;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93875;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23027,1670,'_wp_attached_file','2023/02/Meadowcroft_Roussanne_DCV_LouvauVineyard_2019.png'),(23028,1670,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:57:\"2023/02/Meadowcroft_Roussanne_DCV_LouvauVineyard_2019.png\";s:8:\"filesize\";i:271797;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_Roussanne_DCV_LouvauVineyard_2019-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28816;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_Roussanne_DCV_LouvauVineyard_2019-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9024;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_Roussanne_DCV_LouvauVineyard_2019-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:160675;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_Roussanne_DCV_LouvauVineyard_2019-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28816;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_Roussanne_DCV_LouvauVineyard_2019-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44423;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_Roussanne_DCV_LouvauVineyard_2019-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30630;}s:8:\"tileview\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_Roussanne_DCV_LouvauVineyard_2019-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45836;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23029,1669,'_wp_attachment_image_alt','Meadowcroft-Sparkling-Bottle-shot-1'),(23030,1670,'_wp_attachment_image_alt','Meadowcroft 2019 Roussanne'),(23031,1671,'_wp_attached_file','2023/02/Meadowcroft-2018_Cabernet_SpringMT_BottleShot.png'),(23032,1671,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:57:\"2023/02/Meadowcroft-2018_Cabernet_SpringMT_BottleShot.png\";s:8:\"filesize\";i:240222;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-2018_Cabernet_SpringMT_BottleShot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25872;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-2018_Cabernet_SpringMT_BottleShot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7777;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-2018_Cabernet_SpringMT_BottleShot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:149295;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-2018_Cabernet_SpringMT_BottleShot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25872;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-2018_Cabernet_SpringMT_BottleShot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47166;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-2018_Cabernet_SpringMT_BottleShot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32383;}s:8:\"tileview\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-2018_Cabernet_SpringMT_BottleShot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41830;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23033,1671,'_wp_attachment_image_alt','2018 Spring Mountain District Napa Valley Cabernet Sauvignon Bottle'),(23034,1672,'_wp_attached_file','2023/02/Meadowcroft_2017_Malbec_BottleShot_v2.png'),(23035,1672,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:49:\"2023/02/Meadowcroft_2017_Malbec_BottleShot_v2.png\";s:8:\"filesize\";i:239054;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_2017_Malbec_BottleShot_v2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25424;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_2017_Malbec_BottleShot_v2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7688;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_2017_Malbec_BottleShot_v2-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147195;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_2017_Malbec_BottleShot_v2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25424;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_2017_Malbec_BottleShot_v2-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46194;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_2017_Malbec_BottleShot_v2-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31781;}s:8:\"tileview\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_2017_Malbec_BottleShot_v2-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41116;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23036,1672,'_wp_attachment_image_alt','Meadowcroft 2017 Cru de la Ruche Malbec'),(23037,1673,'_wp_attached_file','2023/02/gsm.png'),(23038,1673,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:15:\"2023/02/gsm.png\";s:8:\"filesize\";i:269083;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"gsm-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40088;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"gsm-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11305;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"gsm-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:206792;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:15:\"gsm-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40088;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:15:\"gsm-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55179;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:15:\"gsm-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37789;}s:8:\"tileview\";a:5:{s:4:\"file\";s:15:\"gsm-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:65180;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23039,1673,'_wp_attachment_image_alt','Meadowcroft GSM Rosé'),(23043,1675,'_wp_attached_file','2023/02/Meadowcroft-River-Trace-2020_Bottleshot.png'),(23044,1675,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:51:\"2023/02/Meadowcroft-River-Trace-2020_Bottleshot.png\";s:8:\"filesize\";i:251166;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"Meadowcroft-River-Trace-2020_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29308;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"Meadowcroft-River-Trace-2020_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9169;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"Meadowcroft-River-Trace-2020_Bottleshot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157324;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:51:\"Meadowcroft-River-Trace-2020_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29308;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:51:\"Meadowcroft-River-Trace-2020_Bottleshot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43637;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:51:\"Meadowcroft-River-Trace-2020_Bottleshot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30330;}s:8:\"tileview\";a:5:{s:4:\"file\";s:51:\"Meadowcroft-River-Trace-2020_Bottleshot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46686;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23045,1675,'_wp_attachment_image_alt','Meadowcroft 2021 River Trace GSM'),(23046,1676,'_wp_attached_file','2023/02/2011_MC_KnightsValley_Zinfandel.png'),(23047,1676,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:43:\"2023/02/2011_MC_KnightsValley_Zinfandel.png\";s:8:\"filesize\";i:257895;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"2011_MC_KnightsValley_Zinfandel-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29067;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"2011_MC_KnightsValley_Zinfandel-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8842;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"2011_MC_KnightsValley_Zinfandel-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:155918;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:43:\"2011_MC_KnightsValley_Zinfandel-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29067;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:43:\"2011_MC_KnightsValley_Zinfandel-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50629;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:43:\"2011_MC_KnightsValley_Zinfandel-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35237;}s:8:\"tileview\";a:5:{s:4:\"file\";s:43:\"2011_MC_KnightsValley_Zinfandel-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46668;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23050,1676,'_wp_attachment_image_alt','Meadowcroft 2011 Speedy Creek Zinfandel'),(23051,1678,'_wp_attached_file','2023/02/Meadowcroft-2014-Napa-Valley-Cab-BottleShot.png'),(23052,1678,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:55:\"2023/02/Meadowcroft-2014-Napa-Valley-Cab-BottleShot.png\";s:8:\"filesize\";i:239355;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-2014-Napa-Valley-Cab-BottleShot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25439;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-2014-Napa-Valley-Cab-BottleShot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7643;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-2014-Napa-Valley-Cab-BottleShot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147462;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-2014-Napa-Valley-Cab-BottleShot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25439;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-2014-Napa-Valley-Cab-BottleShot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46271;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-2014-Napa-Valley-Cab-BottleShot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31800;}s:8:\"tileview\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-2014-Napa-Valley-Cab-BottleShot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41122;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23053,1678,'_wp_attachment_image_alt','Meadowcroft 2014 Napa Valley Cabernet Sauvignon Bottle'),(23054,1679,'_wp_attached_file','2023/02/2021_Pinot_Blanc_Bottleshot-1.png'),(23055,1679,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:41:\"2023/02/2021_Pinot_Blanc_Bottleshot-1.png\";s:8:\"filesize\";i:268864;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"2021_Pinot_Blanc_Bottleshot-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28281;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"2021_Pinot_Blanc_Bottleshot-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8936;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"2021_Pinot_Blanc_Bottleshot-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:159251;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:41:\"2021_Pinot_Blanc_Bottleshot-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28281;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:41:\"2021_Pinot_Blanc_Bottleshot-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43682;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:41:\"2021_Pinot_Blanc_Bottleshot-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29771;}s:8:\"tileview\";a:5:{s:4:\"file\";s:41:\"2021_Pinot_Blanc_Bottleshot-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45042;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23056,1679,'_wp_attachment_image_alt','Meadowcroft 2021 Pinot Blanc'),(23201,504,'_yoast_wpseo_content_score','90'),(23230,1576,'_yoast_wpseo_content_score','90'),(23231,1687,'_wp_attached_file','2023/02/Meadowcroft_Syrah_2014_BottleShot-1-scaled-1.png'),(23232,1687,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:56:\"2023/02/Meadowcroft_Syrah_2014_BottleShot-1-scaled-1.png\";s:8:\"filesize\";i:250358;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_Syrah_2014_BottleShot-1-scaled-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29891;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_Syrah_2014_BottleShot-1-scaled-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9337;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_Syrah_2014_BottleShot-1-scaled-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:152362;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_Syrah_2014_BottleShot-1-scaled-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29891;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_Syrah_2014_BottleShot-1-scaled-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47108;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_Syrah_2014_BottleShot-1-scaled-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32783;}s:8:\"tileview\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_Syrah_2014_BottleShot-1-scaled-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46957;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23233,1687,'_wp_attachment_image_alt','Meadowcroft 2014 Syrah'),(23234,1688,'_wp_attached_file','2023/02/Meadowcroft-_21_Pinot_Noir_AndersonValley-362x1024-1.png'),(23235,1688,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:64:\"2023/02/Meadowcroft-_21_Pinot_Noir_AndersonValley-362x1024-1.png\";s:8:\"filesize\";i:224322;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:64:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-362x1024-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26619;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:64:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-362x1024-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8114;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:64:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-362x1024-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:138913;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:64:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-362x1024-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26619;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:64:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-362x1024-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40817;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:64:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-362x1024-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28423;}s:8:\"tileview\";a:5:{s:4:\"file\";s:64:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-362x1024-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42241;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23236,1688,'_wp_attachment_image_alt','Meadowcroft 2021 Anderson Valley Pinot Noir'),(23237,1689,'_wp_attached_file','2023/02/Meadowcroft_2017CabSauv_Mendocino_NelsonRanch.png'),(23238,1689,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:57:\"2023/02/Meadowcroft_2017CabSauv_Mendocino_NelsonRanch.png\";s:8:\"filesize\";i:237497;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2017CabSauv_Mendocino_NelsonRanch-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25997;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2017CabSauv_Mendocino_NelsonRanch-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7807;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2017CabSauv_Mendocino_NelsonRanch-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146629;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2017CabSauv_Mendocino_NelsonRanch-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25997;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2017CabSauv_Mendocino_NelsonRanch-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46834;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2017CabSauv_Mendocino_NelsonRanch-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32845;}s:8:\"tileview\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2017CabSauv_Mendocino_NelsonRanch-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42123;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23239,1689,'_wp_attachment_image_alt','Meadowcroft 2017 Nelson Ranch Cabernet Sauvignon'),(23240,1690,'_wp_attached_file','2023/02/MC_15_Roussanne_BottleShot.png'),(23241,1690,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:38:\"2023/02/MC_15_Roussanne_BottleShot.png\";s:8:\"filesize\";i:257393;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"MC_15_Roussanne_BottleShot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30416;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"MC_15_Roussanne_BottleShot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9846;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"MC_15_Roussanne_BottleShot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157732;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:38:\"MC_15_Roussanne_BottleShot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30416;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:38:\"MC_15_Roussanne_BottleShot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47227;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:38:\"MC_15_Roussanne_BottleShot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32762;}s:8:\"tileview\";a:5:{s:4:\"file\";s:38:\"MC_15_Roussanne_BottleShot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47443;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23242,1690,'_wp_attachment_image_alt','Meadowcroft 2015 Roussanne'),(23243,1691,'_wp_attached_file','2023/02/MC_21_PinotGris_BottleShot-281x1024-1.png'),(23244,1691,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:49:\"2023/02/MC_21_PinotGris_BottleShot-281x1024-1.png\";s:8:\"filesize\";i:255072;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"MC_21_PinotGris_BottleShot-281x1024-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31650;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"MC_21_PinotGris_BottleShot-281x1024-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9587;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"MC_21_PinotGris_BottleShot-281x1024-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:165109;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:49:\"MC_21_PinotGris_BottleShot-281x1024-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31650;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:49:\"MC_21_PinotGris_BottleShot-281x1024-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48025;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:49:\"MC_21_PinotGris_BottleShot-281x1024-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33852;}s:8:\"tileview\";a:5:{s:4:\"file\";s:49:\"MC_21_PinotGris_BottleShot-281x1024-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51016;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23245,1691,'_wp_attachment_image_alt','Meadowcroft 2021 Pinot Gris'),(23246,1692,'_wp_attached_file','2023/02/18ZNOLDVINE_1-1.png'),(23247,1692,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2023/02/18ZNOLDVINE_1-1.png\";s:8:\"filesize\";i:238488;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"18ZNOLDVINE_1-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25256;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"18ZNOLDVINE_1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7638;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"18ZNOLDVINE_1-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146656;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:27:\"18ZNOLDVINE_1-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25256;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:27:\"18ZNOLDVINE_1-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45972;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:27:\"18ZNOLDVINE_1-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31559;}s:8:\"tileview\";a:5:{s:4:\"file\";s:27:\"18ZNOLDVINE_1-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40814;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23248,1692,'_wp_attachment_image_alt','Meadowcroft 2018 Old Vine Zindandel'),(23249,1693,'_wp_attached_file','2023/02/17ThePanorama_1.png'),(23250,1693,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2023/02/17ThePanorama_1.png\";s:8:\"filesize\";i:253769;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"17ThePanorama_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28819;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"17ThePanorama_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8682;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"17ThePanorama_1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:159722;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:27:\"17ThePanorama_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28819;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:27:\"17ThePanorama_1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52559;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:27:\"17ThePanorama_1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36477;}s:8:\"tileview\";a:5:{s:4:\"file\";s:27:\"17ThePanorama_1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47423;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23251,1693,'_wp_attachment_image_alt','Meadowcroft The Panorama Napa'),(23252,1694,'_wp_attached_file','2023/02/MC18_Riesling_BottleShot.png'),(23253,1694,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:36:\"2023/02/MC18_Riesling_BottleShot.png\";s:8:\"filesize\";i:238648;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"MC18_Riesling_BottleShot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25938;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"MC18_Riesling_BottleShot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7860;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"MC18_Riesling_BottleShot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:144630;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:36:\"MC18_Riesling_BottleShot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25938;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:36:\"MC18_Riesling_BottleShot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40940;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:36:\"MC18_Riesling_BottleShot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27767;}s:8:\"tileview\";a:5:{s:4:\"file\";s:36:\"MC18_Riesling_BottleShot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41827;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23254,1694,'_wp_attachment_image_alt','Meadowcroft 2018 Riesling'),(23255,1695,'_wp_attached_file','2023/02/2010_MC_Zinfandel-lg.png'),(23256,1695,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:32:\"2023/02/2010_MC_Zinfandel-lg.png\";s:8:\"filesize\";i:252259;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"2010_MC_Zinfandel-lg-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30401;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"2010_MC_Zinfandel-lg-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9083;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"2010_MC_Zinfandel-lg-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157948;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:32:\"2010_MC_Zinfandel-lg-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30401;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:32:\"2010_MC_Zinfandel-lg-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52062;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:32:\"2010_MC_Zinfandel-lg-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36280;}s:8:\"tileview\";a:5:{s:4:\"file\";s:32:\"2010_MC_Zinfandel-lg-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48444;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23257,1695,'_wp_attachment_image_alt','Meadowcroft 2010 Speedy Creek Zinfandel'),(23258,1696,'_wp_attached_file','2023/02/15CSSCLV_1.png'),(23259,1696,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2023/02/15CSSCLV_1.png\";s:8:\"filesize\";i:257405;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"15CSSCLV_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29589;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"15CSSCLV_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8647;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"15CSSCLV_1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:162746;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:22:\"15CSSCLV_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29589;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:22:\"15CSSCLV_1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53706;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:22:\"15CSSCLV_1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37000;}s:8:\"tileview\";a:5:{s:4:\"file\";s:22:\"15CSSCLV_1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48115;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23260,1696,'_wp_attachment_image_alt','Meadowcroft 2015 Louveau Cab'),(23261,1697,'_wp_attached_file','2023/02/MC_2017_CABSAUV_LOUVAU.png'),(23262,1697,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:34:\"2023/02/MC_2017_CABSAUV_LOUVAU.png\";s:8:\"filesize\";i:240004;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"MC_2017_CABSAUV_LOUVAU-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25741;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"MC_2017_CABSAUV_LOUVAU-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7748;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"MC_2017_CABSAUV_LOUVAU-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:148595;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:34:\"MC_2017_CABSAUV_LOUVAU-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25741;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:34:\"MC_2017_CABSAUV_LOUVAU-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46920;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:34:\"MC_2017_CABSAUV_LOUVAU-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32133;}s:8:\"tileview\";a:5:{s:4:\"file\";s:34:\"MC_2017_CABSAUV_LOUVAU-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41507;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23263,1697,'_wp_attachment_image_alt','Meadowcroft 2017 Louveau Cab'),(23264,1698,'_wp_attached_file','2023/02/Meadowcroft_NapaValley_CabernetSauvignon_2018_small.png'),(23265,1698,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:63:\"2023/02/Meadowcroft_NapaValley_CabernetSauvignon_2018_small.png\";s:8:\"filesize\";i:236058;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_NapaValley_CabernetSauvignon_2018_small-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25657;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_NapaValley_CabernetSauvignon_2018_small-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7723;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_NapaValley_CabernetSauvignon_2018_small-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:144848;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_NapaValley_CabernetSauvignon_2018_small-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25657;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_NapaValley_CabernetSauvignon_2018_small-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46079;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_NapaValley_CabernetSauvignon_2018_small-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32297;}s:8:\"tileview\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_NapaValley_CabernetSauvignon_2018_small-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41546;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23266,1698,'_wp_attachment_image_alt','Meadowcroft 2018 Napa Valley Cabernet Sauvignon Bottle'),(23267,1699,'_wp_attached_file','2023/02/MC_2019_WYLDVIN_CABERNET_Bottleshot.png'),(23268,1699,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:47:\"2023/02/MC_2019_WYLDVIN_CABERNET_Bottleshot.png\";s:8:\"filesize\";i:239485;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"MC_2019_WYLDVIN_CABERNET_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25726;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"MC_2019_WYLDVIN_CABERNET_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7754;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"MC_2019_WYLDVIN_CABERNET_Bottleshot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:148090;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:47:\"MC_2019_WYLDVIN_CABERNET_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25726;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:47:\"MC_2019_WYLDVIN_CABERNET_Bottleshot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46862;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:47:\"MC_2019_WYLDVIN_CABERNET_Bottleshot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32147;}s:8:\"tileview\";a:5:{s:4:\"file\";s:47:\"MC_2019_WYLDVIN_CABERNET_Bottleshot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41522;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23269,1699,'_wp_attachment_image_alt','Meadowcroft 2019 Louveau Cab'),(23270,1700,'_wp_attached_file','2023/02/MC_21_PinotGris_BottleShot.png'),(23271,1700,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:38:\"2023/02/MC_21_PinotGris_BottleShot.png\";s:8:\"filesize\";i:266326;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"MC_21_PinotGris_BottleShot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31912;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"MC_21_PinotGris_BottleShot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9618;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"MC_21_PinotGris_BottleShot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:173660;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:38:\"MC_21_PinotGris_BottleShot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31912;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:38:\"MC_21_PinotGris_BottleShot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49098;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:38:\"MC_21_PinotGris_BottleShot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34374;}s:8:\"tileview\";a:5:{s:4:\"file\";s:38:\"MC_21_PinotGris_BottleShot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51377;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23272,1700,'_wp_attachment_image_alt','Meadowcroft 2021 Pinot Gris'),(23273,1701,'_wp_attached_file','2023/02/MC2017_CS_MV_BottleShot-scaled-1.jpg'),(23274,1701,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:44:\"2023/02/MC2017_CS_MV_BottleShot-scaled-1.jpg\";s:8:\"filesize\";i:30515;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"MC2017_CS_MV_BottleShot-scaled-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6542;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"MC2017_CS_MV_BottleShot-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2451;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"MC2017_CS_MV_BottleShot-scaled-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27634;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:44:\"MC2017_CS_MV_BottleShot-scaled-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6542;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:44:\"MC2017_CS_MV_BottleShot-scaled-1-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9700;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:44:\"MC2017_CS_MV_BottleShot-scaled-1-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7036;}s:8:\"tileview\";a:5:{s:4:\"file\";s:44:\"MC2017_CS_MV_BottleShot-scaled-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9634;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23275,1701,'_wp_attachment_image_alt','Meadowcroft 2017 Mt Veeder Napa Cabernet Sauvignon Bottle'),(23276,1702,'_wp_attached_file','2023/02/All-She-Wrote-Wax.png'),(23277,1702,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:29:\"2023/02/All-She-Wrote-Wax.png\";s:8:\"filesize\";i:268977;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"All-She-Wrote-Wax-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35440;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"All-She-Wrote-Wax-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10834;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"All-She-Wrote-Wax-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:176359;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:29:\"All-She-Wrote-Wax-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35440;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:29:\"All-She-Wrote-Wax-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58668;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:29:\"All-She-Wrote-Wax-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40912;}s:8:\"tileview\";a:5:{s:4:\"file\";s:29:\"All-She-Wrote-Wax-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56225;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23278,1702,'_wp_attachment_image_alt','Meadowcroft All She Wrote Port'),(23279,1703,'_wp_attached_file','2023/02/balloon-2.jpg'),(23280,1703,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:424;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2023/02/balloon-2.jpg\";s:8:\"filesize\";i:39689;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"balloon-2-159x300.jpg\";s:5:\"width\";i:159;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8226;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"balloon-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4879;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:21:\"balloon-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13629;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:21:\"balloon-2-424x324.jpg\";s:5:\"width\";i:424;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19209;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:21:\"balloon-2-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13609;}s:8:\"tileview\";a:5:{s:4:\"file\";s:21:\"balloon-2-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18319;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23281,1703,'_wp_attachment_image_alt','Colorful hot air balloon over vineyard'),(23282,1704,'_wp_attached_file','2023/02/MC_Malbec_Rose_2020_BottleShot.png'),(23283,1704,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:42:\"2023/02/MC_Malbec_Rose_2020_BottleShot.png\";s:8:\"filesize\";i:308441;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"MC_Malbec_Rose_2020_BottleShot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40448;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"MC_Malbec_Rose_2020_BottleShot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11269;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"MC_Malbec_Rose_2020_BottleShot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:231962;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:42:\"MC_Malbec_Rose_2020_BottleShot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40448;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:42:\"MC_Malbec_Rose_2020_BottleShot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57636;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:42:\"MC_Malbec_Rose_2020_BottleShot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38767;}s:8:\"tileview\";a:5:{s:4:\"file\";s:42:\"MC_Malbec_Rose_2020_BottleShot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66816;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23284,1704,'_wp_attachment_image_alt','Meadowcroft 2020 Rosé of Malbec'),(23285,1705,'_wp_attached_file','2023/02/Meadowcroft_2016_Malbec_BottleShot.jpg.png'),(23286,1705,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:50:\"2023/02/Meadowcroft_2016_Malbec_BottleShot.jpg.png\";s:8:\"filesize\";i:239071;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_2016_Malbec_BottleShot.jpg-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25442;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_2016_Malbec_BottleShot.jpg-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7686;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_2016_Malbec_BottleShot.jpg-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147226;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_2016_Malbec_BottleShot.jpg-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25442;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_2016_Malbec_BottleShot.jpg-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46207;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_2016_Malbec_BottleShot.jpg-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31790;}s:8:\"tileview\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_2016_Malbec_BottleShot.jpg-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41138;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23287,1705,'_wp_attachment_image_alt','Meadowcroft 2016 Cru de la Ruche Malbec'),(23288,1706,'_wp_attached_file','2023/02/Meadowcroft-2018_Cabernet_SM_Bottleshot.png'),(23289,1706,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:51:\"2023/02/Meadowcroft-2018_Cabernet_SM_Bottleshot.png\";s:8:\"filesize\";i:240222;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"Meadowcroft-2018_Cabernet_SM_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25872;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"Meadowcroft-2018_Cabernet_SM_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7777;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"Meadowcroft-2018_Cabernet_SM_Bottleshot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:149295;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:51:\"Meadowcroft-2018_Cabernet_SM_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25872;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:51:\"Meadowcroft-2018_Cabernet_SM_Bottleshot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47166;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:51:\"Meadowcroft-2018_Cabernet_SM_Bottleshot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32383;}s:8:\"tileview\";a:5:{s:4:\"file\";s:51:\"Meadowcroft-2018_Cabernet_SM_Bottleshot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41830;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23290,1706,'_wp_attachment_image_alt','2018 Spring Mountain District Napa Valley Cabernet Sauvignon Bottle'),(23291,1707,'_wp_attached_file','2023/02/Meadowcroft_AnnivCuvee_Bottleshot.png'),(23292,1707,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:45:\"2023/02/Meadowcroft_AnnivCuvee_Bottleshot.png\";s:8:\"filesize\";i:293607;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"Meadowcroft_AnnivCuvee_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33131;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"Meadowcroft_AnnivCuvee_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9676;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"Meadowcroft_AnnivCuvee_Bottleshot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:188575;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:45:\"Meadowcroft_AnnivCuvee_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33131;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:45:\"Meadowcroft_AnnivCuvee_Bottleshot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60094;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:45:\"Meadowcroft_AnnivCuvee_Bottleshot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41322;}s:8:\"tileview\";a:5:{s:4:\"file\";s:45:\"Meadowcroft_AnnivCuvee_Bottleshot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54132;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23293,1707,'_wp_attachment_image_alt','Meadowcroft Anniversary Blend'),(23294,1708,'_wp_attached_file','2023/02/Meadowcroft-River-Trace-2017.png'),(23295,1708,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:40:\"2023/02/Meadowcroft-River-Trace-2017.png\";s:8:\"filesize\";i:225863;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-River-Trace-2017-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26048;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-River-Trace-2017-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8138;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-River-Trace-2017-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:142176;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-River-Trace-2017-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26048;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-River-Trace-2017-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42412;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-River-Trace-2017-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29169;}s:8:\"tileview\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-River-Trace-2017-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41780;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23296,1708,'_wp_attachment_image_alt','Meadowcroft 2017 River Trace GSM'),(23297,1709,'_wp_attached_file','2023/02/19_PinotNoir_Cornerstone.png'),(23298,1709,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:36:\"2023/02/19_PinotNoir_Cornerstone.png\";s:8:\"filesize\";i:224564;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"19_PinotNoir_Cornerstone-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25802;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"19_PinotNoir_Cornerstone-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7970;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"19_PinotNoir_Cornerstone-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:140558;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:36:\"19_PinotNoir_Cornerstone-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25802;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:36:\"19_PinotNoir_Cornerstone-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40873;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:36:\"19_PinotNoir_Cornerstone-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28344;}s:8:\"tileview\";a:5:{s:4:\"file\";s:36:\"19_PinotNoir_Cornerstone-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41274;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23299,1709,'_wp_attachment_image_alt','Meadowcroft 2019 Cornerstone Pinot Noir'),(23300,1710,'_wp_attached_file','2023/02/Meadowcroft_SauvBlanc_SonomaCoast_2019.png'),(23301,1710,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:50:\"2023/02/Meadowcroft_SauvBlanc_SonomaCoast_2019.png\";s:8:\"filesize\";i:262646;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_SauvBlanc_SonomaCoast_2019-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31078;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_SauvBlanc_SonomaCoast_2019-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9469;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_SauvBlanc_SonomaCoast_2019-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:169327;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_SauvBlanc_SonomaCoast_2019-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31078;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_SauvBlanc_SonomaCoast_2019-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48615;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_SauvBlanc_SonomaCoast_2019-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33805;}s:8:\"tileview\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_SauvBlanc_SonomaCoast_2019-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49993;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23302,1710,'_wp_attachment_image_alt','Meadowcroft 2019 Sauvignon Blanc'),(23303,1711,'_wp_attached_file','2023/02/rose-of-malbec.png'),(23304,1711,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/02/rose-of-malbec.png\";s:8:\"filesize\";i:278200;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"rose-of-malbec-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41597;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"rose-of-malbec-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11752;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"rose-of-malbec-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:215097;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:26:\"rose-of-malbec-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41597;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:26:\"rose-of-malbec-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58313;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:26:\"rose-of-malbec-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40024;}s:8:\"tileview\";a:5:{s:4:\"file\";s:26:\"rose-of-malbec-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68237;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23305,1711,'_wp_attachment_image_alt','Meadowcroft 2016 Rosé of Malbec'),(23306,1712,'_wp_attached_file','2023/02/Meadowcroft_2021_Rose_Sonoma-Coast_BottleShot.png'),(23307,1712,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:57:\"2023/02/Meadowcroft_2021_Rose_Sonoma-Coast_BottleShot.png\";s:8:\"filesize\";i:305033;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2021_Rose_Sonoma-Coast_BottleShot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39912;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2021_Rose_Sonoma-Coast_BottleShot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11157;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2021_Rose_Sonoma-Coast_BottleShot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:228874;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2021_Rose_Sonoma-Coast_BottleShot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39912;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2021_Rose_Sonoma-Coast_BottleShot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56466;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2021_Rose_Sonoma-Coast_BottleShot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38075;}s:8:\"tileview\";a:5:{s:4:\"file\";s:57:\"Meadowcroft_2021_Rose_Sonoma-Coast_BottleShot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:65752;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23308,1712,'_wp_attachment_image_alt','Meadowcroft 2021 Rosé of Pinot Noir'),(23309,1713,'_wp_attached_file','2023/02/Meadowcroft_NapaValley_CabernetSauvignon_2020_Bottleshot.png'),(23310,1713,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:68:\"2023/02/Meadowcroft_NapaValley_CabernetSauvignon_2020_Bottleshot.png\";s:8:\"filesize\";i:237709;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_NapaValley_CabernetSauvignon_2020_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25273;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_NapaValley_CabernetSauvignon_2020_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7664;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_NapaValley_CabernetSauvignon_2020_Bottleshot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146260;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_NapaValley_CabernetSauvignon_2020_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25273;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_NapaValley_CabernetSauvignon_2020_Bottleshot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46034;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_NapaValley_CabernetSauvignon_2020_Bottleshot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31625;}s:8:\"tileview\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_NapaValley_CabernetSauvignon_2020_Bottleshot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40830;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23311,1713,'_wp_attachment_image_alt','Meadowcroft Napa Valley Cabernet Sauvignon 2020'),(23312,1714,'_wp_attached_file','2023/02/Meadowcroft_Zin_Speedy_13.png'),(23313,1714,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:37:\"2023/02/Meadowcroft_Zin_Speedy_13.png\";s:8:\"filesize\";i:244701;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Meadowcroft_Zin_Speedy_13-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26453;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Meadowcroft_Zin_Speedy_13-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7982;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Meadowcroft_Zin_Speedy_13-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:155993;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:37:\"Meadowcroft_Zin_Speedy_13-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26453;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:37:\"Meadowcroft_Zin_Speedy_13-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48037;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:37:\"Meadowcroft_Zin_Speedy_13-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32993;}s:8:\"tileview\";a:5:{s:4:\"file\";s:37:\"Meadowcroft_Zin_Speedy_13-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43092;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23314,1714,'_wp_attachment_image_alt','Meadowcroft 2013 Speedy Creek Zinfandel'),(23315,1715,'_wp_attached_file','2023/02/MC_FrenchColombard2021_Bottleshot-281x1024-1.png'),(23316,1715,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:56:\"2023/02/MC_FrenchColombard2021_Bottleshot-281x1024-1.png\";s:8:\"filesize\";i:252311;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"MC_FrenchColombard2021_Bottleshot-281x1024-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30975;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"MC_FrenchColombard2021_Bottleshot-281x1024-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9444;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:56:\"MC_FrenchColombard2021_Bottleshot-281x1024-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:161529;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:56:\"MC_FrenchColombard2021_Bottleshot-281x1024-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30975;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:56:\"MC_FrenchColombard2021_Bottleshot-281x1024-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47881;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:56:\"MC_FrenchColombard2021_Bottleshot-281x1024-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33573;}s:8:\"tileview\";a:5:{s:4:\"file\";s:56:\"MC_FrenchColombard2021_Bottleshot-281x1024-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49948;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23317,1715,'_wp_attachment_image_alt','Meadowcroft 2021 French Colombard'),(23318,1716,'_wp_attached_file','2023/02/2017_ThePanorama_StagsLeapDistrict_Napa_RedBlend.png'),(23319,1716,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:60:\"2023/02/2017_ThePanorama_StagsLeapDistrict_Napa_RedBlend.png\";s:8:\"filesize\";i:239528;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"2017_ThePanorama_StagsLeapDistrict_Napa_RedBlend-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25610;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"2017_ThePanorama_StagsLeapDistrict_Napa_RedBlend-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7725;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:60:\"2017_ThePanorama_StagsLeapDistrict_Napa_RedBlend-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:148192;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:60:\"2017_ThePanorama_StagsLeapDistrict_Napa_RedBlend-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25610;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:60:\"2017_ThePanorama_StagsLeapDistrict_Napa_RedBlend-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46549;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:60:\"2017_ThePanorama_StagsLeapDistrict_Napa_RedBlend-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32035;}s:8:\"tileview\";a:5:{s:4:\"file\";s:60:\"2017_ThePanorama_StagsLeapDistrict_Napa_RedBlend-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41309;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23320,1716,'_wp_attachment_image_alt','Meadowcroft The Panorama Stags Leap'),(23321,1717,'_wp_attached_file','2023/02/Meadowcroft_Pinot_Noir_CarnerosNapa_15_bottleshot-1.png'),(23322,1717,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:63:\"2023/02/Meadowcroft_Pinot_Noir_CarnerosNapa_15_bottleshot-1.png\";s:8:\"filesize\";i:225182;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_Pinot_Noir_CarnerosNapa_15_bottleshot-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24864;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_Pinot_Noir_CarnerosNapa_15_bottleshot-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7793;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_Pinot_Noir_CarnerosNapa_15_bottleshot-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:137423;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_Pinot_Noir_CarnerosNapa_15_bottleshot-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24864;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_Pinot_Noir_CarnerosNapa_15_bottleshot-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40187;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_Pinot_Noir_CarnerosNapa_15_bottleshot-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27872;}s:8:\"tileview\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_Pinot_Noir_CarnerosNapa_15_bottleshot-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39593;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23323,1717,'_wp_attachment_image_alt','Meadowcroft 2015 Carneros Pinot Noir'),(23324,1718,'_wp_attached_file','2023/02/Meadowcroft_21_Chard_AV_MENDOCINO_BottleShot_-1.png'),(23325,1718,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:59:\"2023/02/Meadowcroft_21_Chard_AV_MENDOCINO_BottleShot_-1.png\";s:8:\"filesize\";i:283115;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_21_Chard_AV_MENDOCINO_BottleShot_-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29036;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_21_Chard_AV_MENDOCINO_BottleShot_-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9022;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_21_Chard_AV_MENDOCINO_BottleShot_-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:170219;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_21_Chard_AV_MENDOCINO_BottleShot_-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29036;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_21_Chard_AV_MENDOCINO_BottleShot_-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44440;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_21_Chard_AV_MENDOCINO_BottleShot_-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30391;}s:8:\"tileview\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_21_Chard_AV_MENDOCINO_BottleShot_-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46497;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23326,1718,'_wp_attachment_image_alt','Meadowcroft 2021 Anderson Chardonnay'),(23327,1719,'_wp_attached_file','2023/02/Meadowcroft_2021_Viognier_WYLDVIN_BottleShot.png'),(23328,1719,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:56:\"2023/02/Meadowcroft_2021_Viognier_WYLDVIN_BottleShot.png\";s:8:\"filesize\";i:271371;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_2021_Viognier_WYLDVIN_BottleShot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28675;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_2021_Viognier_WYLDVIN_BottleShot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8990;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_2021_Viognier_WYLDVIN_BottleShot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:159997;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_2021_Viognier_WYLDVIN_BottleShot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28675;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_2021_Viognier_WYLDVIN_BottleShot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44410;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_2021_Viognier_WYLDVIN_BottleShot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30633;}s:8:\"tileview\";a:5:{s:4:\"file\";s:56:\"Meadowcroft_2021_Viognier_WYLDVIN_BottleShot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45571;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23329,1719,'_wp_attachment_image_alt','Meadowcroft 2021 Viognier'),(23330,1720,'_wp_attached_file','2023/02/MC_Rose_2016_BottleShot.png'),(23331,1720,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:35:\"2023/02/MC_Rose_2016_BottleShot.png\";s:8:\"filesize\";i:308198;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"MC_Rose_2016_BottleShot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40341;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"MC_Rose_2016_BottleShot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11248;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"MC_Rose_2016_BottleShot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:231268;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:35:\"MC_Rose_2016_BottleShot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40341;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:35:\"MC_Rose_2016_BottleShot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57317;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:35:\"MC_Rose_2016_BottleShot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38518;}s:8:\"tileview\";a:5:{s:4:\"file\";s:35:\"MC_Rose_2016_BottleShot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66583;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23332,1720,'_wp_attachment_image_alt','Meadowcroft 2016 Rosé of Malbec'),(23333,1721,'_wp_attached_file','2023/02/MC_Veeeder_2018_Bottleshot_png.png'),(23334,1721,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:42:\"2023/02/MC_Veeeder_2018_Bottleshot_png.png\";s:8:\"filesize\";i:228493;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"MC_Veeeder_2018_Bottleshot_png-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28973;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"MC_Veeeder_2018_Bottleshot_png-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9153;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"MC_Veeeder_2018_Bottleshot_png-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147120;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:42:\"MC_Veeeder_2018_Bottleshot_png-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28973;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:42:\"MC_Veeeder_2018_Bottleshot_png-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44603;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:42:\"MC_Veeeder_2018_Bottleshot_png-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31168;}s:8:\"tileview\";a:5:{s:4:\"file\";s:42:\"MC_Veeeder_2018_Bottleshot_png-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46216;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23335,1721,'_wp_attachment_image_alt','Meadowcroft 2018 Mt Veeder Napa Cabernet Sauvignon Bottle'),(23336,1722,'_wp_attached_file','2023/02/MC_SONOMACOASTPINOT_2018.png'),(23337,1722,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:36:\"2023/02/MC_SONOMACOASTPINOT_2018.png\";s:8:\"filesize\";i:241956;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"MC_SONOMACOASTPINOT_2018-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27658;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"MC_SONOMACOASTPINOT_2018-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8411;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"MC_SONOMACOASTPINOT_2018-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:152178;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:36:\"MC_SONOMACOASTPINOT_2018-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27658;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:36:\"MC_SONOMACOASTPINOT_2018-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42092;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:36:\"MC_SONOMACOASTPINOT_2018-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29253;}s:8:\"tileview\";a:5:{s:4:\"file\";s:36:\"MC_SONOMACOASTPINOT_2018-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44450;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23338,1722,'_wp_attachment_image_alt','Meadowcroft 2018 Sonoma Coast Pinot Noir'),(23339,1723,'_wp_attached_file','2023/02/NV-Let_It_Bee_Bottleshot-1.png'),(23340,1723,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:38:\"2023/02/NV-Let_It_Bee_Bottleshot-1.png\";s:8:\"filesize\";i:86640;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"NV-Let_It_Bee_Bottleshot-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51288;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"NV-Let_It_Bee_Bottleshot-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15329;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"NV-Let_It_Bee_Bottleshot-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:261276;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:38:\"NV-Let_It_Bee_Bottleshot-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51288;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:38:\"NV-Let_It_Bee_Bottleshot-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79235;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:38:\"NV-Let_It_Bee_Bottleshot-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54599;}s:8:\"tileview\";a:5:{s:4:\"file\";s:38:\"NV-Let_It_Bee_Bottleshot-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:83035;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23341,1723,'_wp_attachment_image_alt','Meadowcroft Let it Bee'),(23342,1724,'_wp_attached_file','2023/02/MC_2020_WYLDVIN_CABERNET_Bottleshot-1.png'),(23343,1724,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:49:\"2023/02/MC_2020_WYLDVIN_CABERNET_Bottleshot-1.png\";s:8:\"filesize\";i:236675;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"MC_2020_WYLDVIN_CABERNET_Bottleshot-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25877;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"MC_2020_WYLDVIN_CABERNET_Bottleshot-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7807;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"MC_2020_WYLDVIN_CABERNET_Bottleshot-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:148244;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:49:\"MC_2020_WYLDVIN_CABERNET_Bottleshot-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25877;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:49:\"MC_2020_WYLDVIN_CABERNET_Bottleshot-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46801;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:49:\"MC_2020_WYLDVIN_CABERNET_Bottleshot-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32449;}s:8:\"tileview\";a:5:{s:4:\"file\";s:49:\"MC_2020_WYLDVIN_CABERNET_Bottleshot-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41561;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23344,1724,'_wp_attachment_image_alt','Meadowcroft 2020 Red Hills Cabernet Sauvignon'),(23348,1726,'_wp_attached_file','2023/02/Meadowcroft_Zin_Speedy_12-scaled-1.png'),(23349,1726,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:46:\"2023/02/Meadowcroft_Zin_Speedy_12-scaled-1.png\";s:8:\"filesize\";i:207559;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_Zin_Speedy_12-scaled-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25221;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_Zin_Speedy_12-scaled-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7666;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_Zin_Speedy_12-scaled-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:134446;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_Zin_Speedy_12-scaled-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25221;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_Zin_Speedy_12-scaled-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44599;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_Zin_Speedy_12-scaled-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31382;}s:8:\"tileview\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_Zin_Speedy_12-scaled-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40237;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23350,1726,'_wp_attachment_image_alt','Meadowcroft 2012 Speedy Creek Zinfandel'),(23351,1727,'_wp_attached_file','2023/02/MC_2019_Malbec_Clements_Hill_Bottleshot.png'),(23352,1727,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:51:\"2023/02/MC_2019_Malbec_Clements_Hill_Bottleshot.png\";s:8:\"filesize\";i:239226;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"MC_2019_Malbec_Clements_Hill_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25514;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"MC_2019_Malbec_Clements_Hill_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7728;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"MC_2019_Malbec_Clements_Hill_Bottleshot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147687;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:51:\"MC_2019_Malbec_Clements_Hill_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25514;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:51:\"MC_2019_Malbec_Clements_Hill_Bottleshot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46388;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:51:\"MC_2019_Malbec_Clements_Hill_Bottleshot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31895;}s:8:\"tileview\";a:5:{s:4:\"file\";s:51:\"MC_2019_Malbec_Clements_Hill_Bottleshot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41243;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23353,1727,'_wp_attachment_image_alt','Meadowcroft 2019 Cru de la Ruche Malbec'),(23354,1728,'_wp_attached_file','2023/02/Meadowcroft_2016_CabSauv_Mendo.png'),(23355,1728,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:42:\"2023/02/Meadowcroft_2016_CabSauv_Mendo.png\";s:8:\"filesize\";i:245574;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Meadowcroft_2016_CabSauv_Mendo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26399;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Meadowcroft_2016_CabSauv_Mendo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7967;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"Meadowcroft_2016_CabSauv_Mendo-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:152257;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:42:\"Meadowcroft_2016_CabSauv_Mendo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26399;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:42:\"Meadowcroft_2016_CabSauv_Mendo-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47869;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:42:\"Meadowcroft_2016_CabSauv_Mendo-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33172;}s:8:\"tileview\";a:5:{s:4:\"file\";s:42:\"Meadowcroft_2016_CabSauv_Mendo-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42717;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23356,1728,'_wp_attachment_image_alt','Meadowcroft 2016 Nelson Ranch Cabernet Sauvignon'),(23357,1729,'_wp_attached_file','2023/02/Meadowcroft-MC_DRYCREEKZIN_20.png'),(23358,1729,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:41:\"2023/02/Meadowcroft-MC_DRYCREEKZIN_20.png\";s:8:\"filesize\";i:238599;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Meadowcroft-MC_DRYCREEKZIN_20-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25438;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Meadowcroft-MC_DRYCREEKZIN_20-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7689;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Meadowcroft-MC_DRYCREEKZIN_20-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146995;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:41:\"Meadowcroft-MC_DRYCREEKZIN_20-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25438;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:41:\"Meadowcroft-MC_DRYCREEKZIN_20-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46187;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:41:\"Meadowcroft-MC_DRYCREEKZIN_20-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31737;}s:8:\"tileview\";a:5:{s:4:\"file\";s:41:\"Meadowcroft-MC_DRYCREEKZIN_20-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41084;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23359,1729,'_wp_attachment_image_alt','Meadowcroft 2020 Mae Vineyard Zinfandel'),(23360,1730,'_wp_attached_file','2023/02/Meadowcroft2016RRVChardonnayBottleShot.png'),(23361,1730,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:50:\"2023/02/Meadowcroft2016RRVChardonnayBottleShot.png\";s:8:\"filesize\";i:247870;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Meadowcroft2016RRVChardonnayBottleShot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27216;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Meadowcroft2016RRVChardonnayBottleShot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8639;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"Meadowcroft2016RRVChardonnayBottleShot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141514;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:50:\"Meadowcroft2016RRVChardonnayBottleShot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27216;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:50:\"Meadowcroft2016RRVChardonnayBottleShot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41564;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:50:\"Meadowcroft2016RRVChardonnayBottleShot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28760;}s:8:\"tileview\";a:5:{s:4:\"file\";s:50:\"Meadowcroft2016RRVChardonnayBottleShot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42910;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23362,1730,'_wp_attachment_image_alt','Meadowcroft 2015 RRV Chardonnay'),(23363,1731,'_wp_attached_file','2023/02/MC2015_CH_SC_BottleShot.png'),(23364,1731,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:35:\"2023/02/MC2015_CH_SC_BottleShot.png\";s:8:\"filesize\";i:264548;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"MC2015_CH_SC_BottleShot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28150;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"MC2015_CH_SC_BottleShot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8817;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"MC2015_CH_SC_BottleShot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:154715;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:35:\"MC2015_CH_SC_BottleShot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28150;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:35:\"MC2015_CH_SC_BottleShot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43860;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:35:\"MC2015_CH_SC_BottleShot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30422;}s:8:\"tileview\";a:5:{s:4:\"file\";s:35:\"MC2015_CH_SC_BottleShot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44705;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23365,1731,'_wp_attachment_image_alt','Meadowcroft 2015 Sonoma Coast Chardonnay'),(23366,1732,'_wp_attached_file','2023/02/16CSNVEG_1.png'),(23367,1732,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2023/02/16CSNVEG_1.png\";s:8:\"filesize\";i:243300;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"16CSNVEG_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31032;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"16CSNVEG_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9607;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"16CSNVEG_1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157439;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:22:\"16CSNVEG_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31032;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:22:\"16CSNVEG_1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47077;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:22:\"16CSNVEG_1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32867;}s:8:\"tileview\";a:5:{s:4:\"file\";s:22:\"16CSNVEG_1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49829;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23368,1732,'_wp_attachment_image_alt','Meadowcroft 2016 Mt Veeder Napa Cabernet Sauvignon Bottle'),(23372,1734,'_wp_attached_file','2023/02/MC_Roussanne_2020_Bottleshot_png.png'),(23373,1734,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:44:\"2023/02/MC_Roussanne_2020_Bottleshot_png.png\";s:8:\"filesize\";i:271369;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"MC_Roussanne_2020_Bottleshot_png-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29099;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"MC_Roussanne_2020_Bottleshot_png-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9030;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"MC_Roussanne_2020_Bottleshot_png-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:162242;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:44:\"MC_Roussanne_2020_Bottleshot_png-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29099;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:44:\"MC_Roussanne_2020_Bottleshot_png-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44273;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:44:\"MC_Roussanne_2020_Bottleshot_png-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30531;}s:8:\"tileview\";a:5:{s:4:\"file\";s:44:\"MC_Roussanne_2020_Bottleshot_png-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46308;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23374,1734,'_wp_attachment_image_alt','Meadowcroft 2020 Roussanne'),(23375,1735,'_wp_attached_file','2023/02/MC15_Riesling_BottleShot-scaled-1.jpg'),(23376,1735,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:45:\"2023/02/MC15_Riesling_BottleShot-scaled-1.jpg\";s:8:\"filesize\";i:19465;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"MC15_Riesling_BottleShot-scaled-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4258;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"MC15_Riesling_BottleShot-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1707;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"MC15_Riesling_BottleShot-scaled-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17901;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:45:\"MC15_Riesling_BottleShot-scaled-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4258;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:45:\"MC15_Riesling_BottleShot-scaled-1-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5678;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:45:\"MC15_Riesling_BottleShot-scaled-1-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4274;}s:8:\"tileview\";a:5:{s:4:\"file\";s:45:\"MC15_Riesling_BottleShot-scaled-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6145;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23377,1735,'_wp_attachment_image_alt','Meadowcroft 2015 Riesling'),(23378,1736,'_wp_attached_file','2023/02/14CSNVEG_1.png'),(23379,1736,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2023/02/14CSNVEG_1.png\";s:8:\"filesize\";i:241611;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"14CSNVEG_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31058;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"14CSNVEG_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9601;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"14CSNVEG_1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:156521;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:22:\"14CSNVEG_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31058;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:22:\"14CSNVEG_1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47342;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:22:\"14CSNVEG_1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33127;}s:8:\"tileview\";a:5:{s:4:\"file\";s:22:\"14CSNVEG_1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49646;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23380,1736,'_wp_attachment_image_alt','Meadowcroft 2014 Mt Veeder Napa Cabernet Sauvignon Bottle'),(23381,1737,'_wp_attached_file','2023/02/19PIINOTNOIR_RRValley_Screwcap.png'),(23382,1737,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:42:\"2023/02/19PIINOTNOIR_RRValley_Screwcap.png\";s:8:\"filesize\";i:221009;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"19PIINOTNOIR_RRValley_Screwcap-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25967;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"19PIINOTNOIR_RRValley_Screwcap-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7978;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"19PIINOTNOIR_RRValley_Screwcap-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:140556;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:42:\"19PIINOTNOIR_RRValley_Screwcap-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25967;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:42:\"19PIINOTNOIR_RRValley_Screwcap-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40456;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:42:\"19PIINOTNOIR_RRValley_Screwcap-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27927;}s:8:\"tileview\";a:5:{s:4:\"file\";s:42:\"19PIINOTNOIR_RRValley_Screwcap-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41651;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23383,1737,'_wp_attachment_image_alt','Meadowcroft 2019 RRV Pinot Noir'),(23384,1738,'_wp_attached_file','2023/02/MC_FrenchColombard2021_Bottleshot.png'),(23385,1738,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:45:\"2023/02/MC_FrenchColombard2021_Bottleshot.png\";s:8:\"filesize\";i:263486;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"MC_FrenchColombard2021_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31336;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"MC_FrenchColombard2021_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9496;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"MC_FrenchColombard2021_Bottleshot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:170034;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:45:\"MC_FrenchColombard2021_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31336;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:45:\"MC_FrenchColombard2021_Bottleshot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49003;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:45:\"MC_FrenchColombard2021_Bottleshot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34037;}s:8:\"tileview\";a:5:{s:4:\"file\";s:45:\"MC_FrenchColombard2021_Bottleshot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50272;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23386,1738,'_wp_attachment_image_alt','Meadowcroft 2021 French Colombard'),(23390,1740,'_wp_attached_file','2023/02/Meadowcroft_Zinfandel_2019_SpeedyCreek-1.png'),(23391,1740,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:52:\"2023/02/Meadowcroft_Zinfandel_2019_SpeedyCreek-1.png\";s:8:\"filesize\";i:238973;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_Zinfandel_2019_SpeedyCreek-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25544;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_Zinfandel_2019_SpeedyCreek-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7727;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_Zinfandel_2019_SpeedyCreek-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147406;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_Zinfandel_2019_SpeedyCreek-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25544;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_Zinfandel_2019_SpeedyCreek-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46409;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_Zinfandel_2019_SpeedyCreek-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31876;}s:8:\"tileview\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_Zinfandel_2019_SpeedyCreek-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41246;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23392,1740,'_wp_attachment_image_alt','Meadowcroft 2019 Speedy Creek Zinfandel'),(23393,1741,'_wp_attached_file','2023/02/MC_Pinot_Rose_2020_BottleShot.png'),(23394,1741,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:41:\"2023/02/MC_Pinot_Rose_2020_BottleShot.png\";s:8:\"filesize\";i:308645;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"MC_Pinot_Rose_2020_BottleShot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40455;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"MC_Pinot_Rose_2020_BottleShot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11254;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"MC_Pinot_Rose_2020_BottleShot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:231778;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:41:\"MC_Pinot_Rose_2020_BottleShot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40455;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:41:\"MC_Pinot_Rose_2020_BottleShot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57574;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:41:\"MC_Pinot_Rose_2020_BottleShot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38750;}s:8:\"tileview\";a:5:{s:4:\"file\";s:41:\"MC_Pinot_Rose_2020_BottleShot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66762;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23395,1741,'_wp_attachment_image_alt','Meadowcroft 2020 Rosé of Pinot Noir'),(23396,1742,'_wp_attached_file','2023/02/Meadowcroft-2019_Cabernet_Oakville_Bottleshot.png'),(23397,1742,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:57:\"2023/02/Meadowcroft-2019_Cabernet_Oakville_Bottleshot.png\";s:8:\"filesize\";i:246127;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-2019_Cabernet_Oakville_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30851;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-2019_Cabernet_Oakville_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9596;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-2019_Cabernet_Oakville_Bottleshot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:156383;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-2019_Cabernet_Oakville_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30851;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-2019_Cabernet_Oakville_Bottleshot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43366;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-2019_Cabernet_Oakville_Bottleshot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30635;}s:8:\"tileview\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-2019_Cabernet_Oakville_Bottleshot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48960;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23398,1742,'_wp_attachment_image_alt','2019 Oakville Napa Valley Cabernet Sauvignon Bottle'),(23399,1743,'_wp_attached_file','2023/02/Meadowcroft-River-Trace-2016.png'),(23400,1743,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:40:\"2023/02/Meadowcroft-River-Trace-2016.png\";s:8:\"filesize\";i:233172;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-River-Trace-2016-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26727;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-River-Trace-2016-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8295;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-River-Trace-2016-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146073;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-River-Trace-2016-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26727;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-River-Trace-2016-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44197;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-River-Trace-2016-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30298;}s:8:\"tileview\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-River-Trace-2016-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42713;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23401,1743,'_wp_attachment_image_alt','Meadowcroft 2016 River Trace GSM'),(23402,1744,'_wp_attached_file','2023/02/MC_VIOGNIER_2017.png'),(23403,1744,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:28:\"2023/02/MC_VIOGNIER_2017.png\";s:8:\"filesize\";i:254082;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"MC_VIOGNIER_2017-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27874;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"MC_VIOGNIER_2017-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8771;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"MC_VIOGNIER_2017-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146508;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:28:\"MC_VIOGNIER_2017-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27874;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:28:\"MC_VIOGNIER_2017-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42515;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:28:\"MC_VIOGNIER_2017-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29468;}s:8:\"tileview\";a:5:{s:4:\"file\";s:28:\"MC_VIOGNIER_2017-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43978;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23404,1744,'_wp_attachment_image_alt','Meadowcroft 2017 Viognier'),(23405,1745,'_wp_attached_file','2023/02/20_Chard_TaylorsCrown_Bottleshot.png'),(23406,1745,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:44:\"2023/02/20_Chard_TaylorsCrown_Bottleshot.png\";s:8:\"filesize\";i:271929;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"20_Chard_TaylorsCrown_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28970;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"20_Chard_TaylorsCrown_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9020;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"20_Chard_TaylorsCrown_Bottleshot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:161110;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:44:\"20_Chard_TaylorsCrown_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28970;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:44:\"20_Chard_TaylorsCrown_Bottleshot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44774;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:44:\"20_Chard_TaylorsCrown_Bottleshot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30633;}s:8:\"tileview\";a:5:{s:4:\"file\";s:44:\"20_Chard_TaylorsCrown_Bottleshot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46075;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23407,1745,'_wp_attachment_image_alt','Meadowcroft 2020 Sonoma Coast Chardonnay'),(23408,1746,'_wp_attached_file','2023/02/MC_ROSE_18.png'),(23409,1746,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2023/02/MC_ROSE_18.png\";s:8:\"filesize\";i:284755;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"MC_ROSE_18-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31238;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"MC_ROSE_18-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9471;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"MC_ROSE_18-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:179881;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:22:\"MC_ROSE_18-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31238;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:22:\"MC_ROSE_18-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51345;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:22:\"MC_ROSE_18-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35331;}s:8:\"tileview\";a:5:{s:4:\"file\";s:22:\"MC_ROSE_18-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50664;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23410,1746,'_wp_attachment_image_alt','Meadowcroft 2018 Rosé of Malbec'),(23414,1748,'_wp_attached_file','2023/02/Meadowcroft_PinotNoir_RRV15_BotteShot-scaled-1.jpg'),(23415,1748,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:58:\"2023/02/Meadowcroft_PinotNoir_RRV15_BotteShot-scaled-1.jpg\";s:8:\"filesize\";i:22050;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_PinotNoir_RRV15_BotteShot-scaled-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4895;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_PinotNoir_RRV15_BotteShot-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2102;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_PinotNoir_RRV15_BotteShot-scaled-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19630;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_PinotNoir_RRV15_BotteShot-scaled-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4895;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_PinotNoir_RRV15_BotteShot-scaled-1-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7064;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_PinotNoir_RRV15_BotteShot-scaled-1-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5275;}s:8:\"tileview\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_PinotNoir_RRV15_BotteShot-scaled-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7174;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23416,1748,'_wp_attachment_image_alt','Meadowcroft 2015 RRV Pinot Noir'),(23417,1749,'_wp_attached_file','2023/02/Meadowcroft-Red-Hills-2020-CabSauv-376x1024-1.png'),(23418,1749,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:57:\"2023/02/Meadowcroft-Red-Hills-2020-CabSauv-376x1024-1.png\";s:8:\"filesize\";i:228384;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-Red-Hills-2020-CabSauv-376x1024-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25731;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-Red-Hills-2020-CabSauv-376x1024-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7803;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-Red-Hills-2020-CabSauv-376x1024-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:137387;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-Red-Hills-2020-CabSauv-376x1024-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25731;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-Red-Hills-2020-CabSauv-376x1024-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45745;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-Red-Hills-2020-CabSauv-376x1024-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31865;}s:8:\"tileview\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-Red-Hills-2020-CabSauv-376x1024-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41182;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23419,1749,'_wp_attachment_image_alt','Meadowcroft 2020 Red Hills Cabernet Sauvignon'),(23423,1751,'_wp_attached_file','2023/02/rose-1.jpg'),(23424,1751,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:18:\"2023/02/rose-1.jpg\";s:8:\"filesize\";i:124329;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"rose-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25103;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"rose-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8260;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"rose-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110880;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:18:\"rose-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25103;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:18:\"rose-1-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41424;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:18:\"rose-1-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30356;}s:8:\"tileview\";a:5:{s:4:\"file\";s:18:\"rose-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28565;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23425,1751,'_wp_attachment_image_alt','Glass of rosé and sunglasses on outdoor table'),(23426,1752,'_wp_attached_file','2023/02/MC_Veeder_2019_Bottleshot_png-2.png'),(23427,1752,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:43:\"2023/02/MC_Veeder_2019_Bottleshot_png-2.png\";s:8:\"filesize\";i:228486;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"MC_Veeder_2019_Bottleshot_png-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28975;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"MC_Veeder_2019_Bottleshot_png-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9148;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"MC_Veeder_2019_Bottleshot_png-2-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147126;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:43:\"MC_Veeder_2019_Bottleshot_png-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28975;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:43:\"MC_Veeder_2019_Bottleshot_png-2-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44610;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:43:\"MC_Veeder_2019_Bottleshot_png-2-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31170;}s:8:\"tileview\";a:5:{s:4:\"file\";s:43:\"MC_Veeder_2019_Bottleshot_png-2-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46217;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23428,1752,'_wp_attachment_image_alt','Meadowcroft 2019 Mt Veeder Napa Cabernet Sauvignon Bottle'),(23429,1753,'_wp_attached_file','2023/02/Meadowcroft_Zinfandel_2018_SpeedyCreek.png'),(23430,1753,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:50:\"2023/02/Meadowcroft_Zinfandel_2018_SpeedyCreek.png\";s:8:\"filesize\";i:238884;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_Zinfandel_2018_SpeedyCreek-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25534;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_Zinfandel_2018_SpeedyCreek-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7703;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_Zinfandel_2018_SpeedyCreek-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147357;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_Zinfandel_2018_SpeedyCreek-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25534;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_Zinfandel_2018_SpeedyCreek-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46323;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_Zinfandel_2018_SpeedyCreek-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31821;}s:8:\"tileview\";a:5:{s:4:\"file\";s:50:\"Meadowcroft_Zinfandel_2018_SpeedyCreek-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41193;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23431,1753,'_wp_attachment_image_alt','Meadowcroft 2018 Speedy Creek Zinfandel'),(23432,1754,'_wp_attached_file','2023/02/Meadowcroft_PinotNoir_RRV18_BotteShot.png'),(23433,1754,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:49:\"2023/02/Meadowcroft_PinotNoir_RRV18_BotteShot.png\";s:8:\"filesize\";i:227239;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_PinotNoir_RRV18_BotteShot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25053;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_PinotNoir_RRV18_BotteShot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7803;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_PinotNoir_RRV18_BotteShot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:138616;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_PinotNoir_RRV18_BotteShot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25053;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_PinotNoir_RRV18_BotteShot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41256;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_PinotNoir_RRV18_BotteShot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28597;}s:8:\"tileview\";a:5:{s:4:\"file\";s:49:\"Meadowcroft_PinotNoir_RRV18_BotteShot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40075;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23434,1754,'_wp_attachment_image_alt','Meadowcroft 2018 RRV Pinot Noir'),(23435,1755,'_wp_attached_file','2023/02/MC_2020_WYLDVIN_CABERNET_Bottleshot.png'),(23436,1755,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:47:\"2023/02/MC_2020_WYLDVIN_CABERNET_Bottleshot.png\";s:8:\"filesize\";i:236675;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"MC_2020_WYLDVIN_CABERNET_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25877;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"MC_2020_WYLDVIN_CABERNET_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7807;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"MC_2020_WYLDVIN_CABERNET_Bottleshot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:148244;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:47:\"MC_2020_WYLDVIN_CABERNET_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25877;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:47:\"MC_2020_WYLDVIN_CABERNET_Bottleshot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46801;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:47:\"MC_2020_WYLDVIN_CABERNET_Bottleshot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32449;}s:8:\"tileview\";a:5:{s:4:\"file\";s:47:\"MC_2020_WYLDVIN_CABERNET_Bottleshot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41561;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23437,1755,'_wp_attachment_image_alt','Meadowcroft 2020 Red Hills Cabernet Sauvignon'),(23438,1756,'_wp_attached_file','2023/02/MC_Roussanne_2016_BottleShot-329x1024-2.png'),(23439,1756,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:51:\"2023/02/MC_Roussanne_2016_BottleShot-329x1024-2.png\";s:8:\"filesize\";i:244117;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"MC_Roussanne_2016_BottleShot-329x1024-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28171;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"MC_Roussanne_2016_BottleShot-329x1024-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8869;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"MC_Roussanne_2016_BottleShot-329x1024-2-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141286;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:51:\"MC_Roussanne_2016_BottleShot-329x1024-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28171;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:51:\"MC_Roussanne_2016_BottleShot-329x1024-2-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42160;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:51:\"MC_Roussanne_2016_BottleShot-329x1024-2-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29514;}s:8:\"tileview\";a:5:{s:4:\"file\";s:51:\"MC_Roussanne_2016_BottleShot-329x1024-2-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44105;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23440,1756,'_wp_attachment_image_alt','Meadowcroft 2016 Roussanne'),(23441,1757,'_wp_attached_file','2023/02/Meadowcroft_PinotNoir_AndersonValley_2019.png'),(23442,1757,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:53:\"2023/02/Meadowcroft_PinotNoir_AndersonValley_2019.png\";s:8:\"filesize\";i:222090;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_PinotNoir_AndersonValley_2019-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25064;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_PinotNoir_AndersonValley_2019-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7805;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_PinotNoir_AndersonValley_2019-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:137581;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_PinotNoir_AndersonValley_2019-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25064;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_PinotNoir_AndersonValley_2019-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40873;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_PinotNoir_AndersonValley_2019-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28346;}s:8:\"tileview\";a:5:{s:4:\"file\";s:53:\"Meadowcroft_PinotNoir_AndersonValley_2019-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40077;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23443,1757,'_wp_attachment_image_alt','Meadowcroft 2019 Anderson Valley Pinot Noir'),(23444,1758,'_wp_attached_file','2023/02/tom-medowncroft.jpg'),(23445,1758,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:591;s:6:\"height\";i:762;s:4:\"file\";s:27:\"2023/02/tom-medowncroft.jpg\";s:8:\"filesize\";i:85394;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"tom-medowncroft-233x300.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19321;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"tom-medowncroft-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7439;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:27:\"tom-medowncroft-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22641;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:27:\"tom-medowncroft-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32133;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:27:\"tom-medowncroft-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22976;}s:8:\"tileview\";a:5:{s:4:\"file\";s:27:\"tom-medowncroft-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29650;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23446,1758,'_wp_attachment_image_alt','Tom Meadowcroft'),(23447,1759,'_wp_attached_file','2023/02/16RIMDNV_1.png'),(23448,1759,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2023/02/16RIMDNV_1.png\";s:8:\"filesize\";i:237321;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"16RIMDNV_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27123;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"16RIMDNV_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7854;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"16RIMDNV_1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146575;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:22:\"16RIMDNV_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27123;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:22:\"16RIMDNV_1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42636;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:22:\"16RIMDNV_1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29216;}s:8:\"tileview\";a:5:{s:4:\"file\";s:22:\"16RIMDNV_1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44384;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23449,1759,'_wp_attachment_image_alt','Meadowcroft 2016 Riesling'),(23450,1760,'_wp_attached_file','2023/02/16CSNVNC_1.png'),(23451,1760,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2023/02/16CSNVNC_1.png\";s:8:\"filesize\";i:250979;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"16CSNVNC_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28777;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"16CSNVNC_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8440;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"16CSNVNC_1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:158632;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:22:\"16CSNVNC_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28777;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:22:\"16CSNVNC_1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51835;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:22:\"16CSNVNC_1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35843;}s:8:\"tileview\";a:5:{s:4:\"file\";s:22:\"16CSNVNC_1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46686;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23452,1760,'_wp_attachment_image_alt','Meadowcroft 2016 Louveau Cab'),(23453,1761,'_wp_attached_file','2023/02/Meadowcroft-2015-Napa-Valley-Cab-BottleShot-copy.png'),(23454,1761,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:60:\"2023/02/Meadowcroft-2015-Napa-Valley-Cab-BottleShot-copy.png\";s:8:\"filesize\";i:239331;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"Meadowcroft-2015-Napa-Valley-Cab-BottleShot-copy-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25415;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"Meadowcroft-2015-Napa-Valley-Cab-BottleShot-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7640;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:60:\"Meadowcroft-2015-Napa-Valley-Cab-BottleShot-copy-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147422;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:60:\"Meadowcroft-2015-Napa-Valley-Cab-BottleShot-copy-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25415;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:60:\"Meadowcroft-2015-Napa-Valley-Cab-BottleShot-copy-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46252;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:60:\"Meadowcroft-2015-Napa-Valley-Cab-BottleShot-copy-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31770;}s:8:\"tileview\";a:5:{s:4:\"file\";s:60:\"Meadowcroft-2015-Napa-Valley-Cab-BottleShot-copy-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41080;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23455,1761,'_wp_attachment_image_alt','Meadowcroft 2015 Napa Valley Cabernet Sauvignon Bottle'),(23456,1762,'_wp_attached_file','2023/02/petar-kirilov.jpg'),(23457,1762,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/02/petar-kirilov.jpg\";s:8:\"filesize\";i:99468;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"petar-kirilov-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19189;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"petar-kirilov-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5807;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"petar-kirilov-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93053;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:25:\"petar-kirilov-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19189;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:25:\"petar-kirilov-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27976;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:25:\"petar-kirilov-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19615;}s:8:\"tileview\";a:5:{s:4:\"file\";s:25:\"petar-kirilov-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23592;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23458,1762,'_wp_attachment_image_alt','Peter Kirilov'),(23459,1763,'_wp_attached_file','2023/02/Meadowcroft_Viognier_15_Bottleshot.png'),(23460,1763,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:46:\"2023/02/Meadowcroft_Viognier_15_Bottleshot.png\";s:8:\"filesize\";i:261983;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_Viognier_15_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28173;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_Viognier_15_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8952;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_Viognier_15_Bottleshot-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:152402;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_Viognier_15_Bottleshot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28173;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_Viognier_15_Bottleshot-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43562;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_Viognier_15_Bottleshot-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30342;}s:8:\"tileview\";a:5:{s:4:\"file\";s:46:\"Meadowcroft_Viognier_15_Bottleshot-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44730;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23461,1763,'_wp_attachment_image_alt','Meadowcroft 2015 Viognier'),(23462,1764,'_wp_attached_file','2023/02/16PNSCSO_1.png'),(23463,1764,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2023/02/16PNSCSO_1.png\";s:8:\"filesize\";i:252353;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"16PNSCSO_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29538;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"16PNSCSO_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8872;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"16PNSCSO_1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:159151;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:22:\"16PNSCSO_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29538;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:22:\"16PNSCSO_1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45513;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:22:\"16PNSCSO_1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31406;}s:8:\"tileview\";a:5:{s:4:\"file\";s:22:\"16PNSCSO_1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47617;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23464,1764,'_wp_attachment_image_alt','Meadowcroft 2016 Sonoma Coast Pinot Noir'),(23465,1765,'_wp_attached_file','2023/02/Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024-1.png'),(23466,1765,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:70:\"2023/02/Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024-1.png\";s:8:\"filesize\";i:232073;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26364;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7956;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:140887;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26364;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47048;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32798;}s:8:\"tileview\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42264;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23467,1765,'_wp_attachment_image_alt','Meadowcroft 2018 Cabernet Franc'),(23468,1766,'_wp_attached_file','2023/02/Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018.png'),(23469,1766,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:59:\"2023/02/Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018.png\";s:8:\"filesize\";i:240220;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26005;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7790;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:149254;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26005;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47242;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32475;}s:8:\"tileview\";a:5:{s:4:\"file\";s:59:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41830;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23470,1766,'_wp_attachment_image_alt','Meadowcroft 2018 Cabernet Franc'),(23471,1767,'_wp_attached_file','2023/02/2017_Cornerstone_CarnerosSonoma_PinotNoir.png'),(23472,1767,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:53:\"2023/02/2017_Cornerstone_CarnerosSonoma_PinotNoir.png\";s:8:\"filesize\";i:240136;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"2017_Cornerstone_CarnerosSonoma_PinotNoir-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27314;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"2017_Cornerstone_CarnerosSonoma_PinotNoir-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8404;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"2017_Cornerstone_CarnerosSonoma_PinotNoir-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:149315;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:53:\"2017_Cornerstone_CarnerosSonoma_PinotNoir-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27314;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:53:\"2017_Cornerstone_CarnerosSonoma_PinotNoir-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42105;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:53:\"2017_Cornerstone_CarnerosSonoma_PinotNoir-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28932;}s:8:\"tileview\";a:5:{s:4:\"file\";s:53:\"2017_Cornerstone_CarnerosSonoma_PinotNoir-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43671;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23473,1767,'_wp_attachment_image_alt','Meadowcroft 2017 Carneros Pinot Noir'),(23474,1768,'_wp_attached_file','2023/02/Meadowcroft_21_Chard_Napa_Carneros_BottleShot-.png'),(23475,1768,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:58:\"2023/02/Meadowcroft_21_Chard_Napa_Carneros_BottleShot-.png\";s:8:\"filesize\";i:270401;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_21_Chard_Napa_Carneros_BottleShot--300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28861;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_21_Chard_Napa_Carneros_BottleShot--150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8977;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_21_Chard_Napa_Carneros_BottleShot--768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:161204;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_21_Chard_Napa_Carneros_BottleShot--300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28861;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_21_Chard_Napa_Carneros_BottleShot--474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44647;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_21_Chard_Napa_Carneros_BottleShot--391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30531;}s:8:\"tileview\";a:5:{s:4:\"file\";s:58:\"Meadowcroft_21_Chard_Napa_Carneros_BottleShot--300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45999;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23476,1768,'_wp_attachment_image_alt','Meadowcroft 2021 Carneros Chardonnay'),(23477,1769,'_wp_attached_file','2023/02/AdobeStock_189815309-scaled-1.jpg'),(23478,1769,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:586;s:4:\"file\";s:41:\"2023/02/AdobeStock_189815309-scaled-1.jpg\";s:8:\"filesize\";i:52163;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"AdobeStock_189815309-scaled-1-300x220.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12032;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"AdobeStock_189815309-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5649;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"AdobeStock_189815309-scaled-1-768x563.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49046;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:41:\"AdobeStock_189815309-scaled-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15813;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:41:\"AdobeStock_189815309-scaled-1-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23721;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:41:\"AdobeStock_189815309-scaled-1-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17725;}s:8:\"tileview\";a:5:{s:4:\"file\";s:41:\"AdobeStock_189815309-scaled-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16970;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23479,1769,'_wp_attachment_image_alt','AdobeStock_189815309'),(23480,1770,'_wp_attached_file','2023/02/tom.jpg'),(23481,1770,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:650;s:6:\"height\";i:800;s:4:\"file\";s:15:\"2023/02/tom.jpg\";s:8:\"filesize\";i:74775;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"tom-244x300.jpg\";s:5:\"width\";i:244;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16103;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"tom-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6040;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:15:\"tom-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16888;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:15:\"tom-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21286;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:15:\"tom-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15539;}s:8:\"tileview\";a:5:{s:4:\"file\";s:15:\"tom-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22712;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23482,1771,'_wp_attached_file','2023/02/AdobeStock_143395665-scaled-1.jpg'),(23483,1771,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:41:\"2023/02/AdobeStock_143395665-scaled-1.jpg\";s:8:\"filesize\";i:65606;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"AdobeStock_143395665-scaled-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16209;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"AdobeStock_143395665-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5854;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"AdobeStock_143395665-scaled-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63416;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:41:\"AdobeStock_143395665-scaled-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16209;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:41:\"AdobeStock_143395665-scaled-1-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23618;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:41:\"AdobeStock_143395665-scaled-1-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17315;}s:8:\"tileview\";a:5:{s:4:\"file\";s:41:\"AdobeStock_143395665-scaled-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18297;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23484,1771,'_wp_attachment_image_alt','AdobeStock_143395665-scaled'),(23485,1772,'_wp_attached_file','2023/02/vineyard.jpg'),(23486,1772,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:20:\"2023/02/vineyard.jpg\";s:8:\"filesize\";i:112133;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"vineyard-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20140;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"vineyard-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5966;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"vineyard-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102066;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:20:\"vineyard-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20140;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:20:\"vineyard-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32139;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:20:\"vineyard-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22309;}s:8:\"tileview\";a:5:{s:4:\"file\";s:20:\"vineyard-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23847;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23487,1772,'_wp_attachment_image_alt','Vineyard under deep blue sky'),(23488,1773,'_wp_attached_file','2023/02/mexican-corn.jpg'),(23489,1773,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2023/02/mexican-corn.jpg\";s:8:\"filesize\";i:82667;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"mexican-corn-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20020;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"mexican-corn-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7086;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"mexican-corn-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79411;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:24:\"mexican-corn-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20020;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:24:\"mexican-corn-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26814;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:24:\"mexican-corn-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19665;}s:8:\"tileview\";a:5:{s:4:\"file\";s:24:\"mexican-corn-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23890;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23490,1773,'_wp_attachment_image_alt','Bottle of Meadowcroft Wine and mexican corn'),(23491,1774,'_wp_attached_file','2023/02/Screen-Shot-2022-02-21-at-1.54.05-PM.jpg'),(23492,1774,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:624;s:6:\"height\";i:800;s:4:\"file\";s:48:\"2023/02/Screen-Shot-2022-02-21-at-1.54.05-PM.jpg\";s:8:\"filesize\";i:83504;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2022-02-21-at-1.54.05-PM-234x300.jpg\";s:5:\"width\";i:234;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14758;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2022-02-21-at-1.54.05-PM-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5861;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2022-02-21-at-1.54.05-PM-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18627;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2022-02-21-at-1.54.05-PM-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29365;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2022-02-21-at-1.54.05-PM-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20917;}s:8:\"tileview\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2022-02-21-at-1.54.05-PM-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23856;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23493,1774,'_wp_attachment_image_alt','Meadowcroft Winter 2022 Newsletter Thumbnail'),(23494,1775,'_wp_attached_file','2023/02/fall-2022-newsletter-cover@3x.jpg'),(23495,1775,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:622;s:6:\"height\";i:800;s:4:\"file\";s:41:\"2023/02/fall-2022-newsletter-cover@3x.jpg\";s:8:\"filesize\";i:98051;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"fall-2022-newsletter-cover@3x-233x300.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17130;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"fall-2022-newsletter-cover@3x-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6869;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:41:\"fall-2022-newsletter-cover@3x-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24347;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:41:\"fall-2022-newsletter-cover@3x-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41582;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:41:\"fall-2022-newsletter-cover@3x-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29202;}s:8:\"tileview\";a:5:{s:4:\"file\";s:41:\"fall-2022-newsletter-cover@3x-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27603;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23496,1775,'_wp_attachment_image_alt','fall-2022-newsletter-cover'),(23497,1776,'_wp_attached_file','2023/02/vineyard-thumb.jpg'),(23498,1776,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/02/vineyard-thumb.jpg\";s:8:\"filesize\";i:113050;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"vineyard-thumb-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21746;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"vineyard-thumb-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6441;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"vineyard-thumb-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103720;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:26:\"vineyard-thumb-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21746;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:26:\"vineyard-thumb-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35064;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:26:\"vineyard-thumb-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24756;}s:8:\"tileview\";a:5:{s:4:\"file\";s:26:\"vineyard-thumb-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26635;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23499,1776,'_wp_attachment_image_alt','Vineyard under deep blue sky'),(23500,1777,'_wp_attached_file','2023/02/Meadowcroft_PinotNoir_SonomaCoast_15_BottleShot-scaled-1.jpg'),(23501,1777,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:68:\"2023/02/Meadowcroft_PinotNoir_SonomaCoast_15_BottleShot-scaled-1.jpg\";s:8:\"filesize\";i:25075;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_PinotNoir_SonomaCoast_15_BottleShot-scaled-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5444;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_PinotNoir_SonomaCoast_15_BottleShot-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2209;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_PinotNoir_SonomaCoast_15_BottleShot-scaled-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22990;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_PinotNoir_SonomaCoast_15_BottleShot-scaled-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5444;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_PinotNoir_SonomaCoast_15_BottleShot-scaled-1-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7559;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_PinotNoir_SonomaCoast_15_BottleShot-scaled-1-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5522;}s:8:\"tileview\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_PinotNoir_SonomaCoast_15_BottleShot-scaled-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8061;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23502,1777,'_wp_attachment_image_alt','Meadowcroft 2015 Sonoma Coast Pinot Noir'),(23507,1778,'_wp_attached_file','2022/04/vineyard-thumb.jpg'),(23508,1778,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2022/04/vineyard-thumb.jpg\";s:8:\"filesize\";i:112726;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"vineyard-thumb-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21663;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"vineyard-thumb-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6432;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"vineyard-thumb-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103553;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:26:\"vineyard-thumb-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21663;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:26:\"vineyard-thumb-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34953;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:26:\"vineyard-thumb-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24684;}s:8:\"tileview\";a:5:{s:4:\"file\";s:26:\"vineyard-thumb-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26530;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23509,1778,'_wp_attachment_image_alt','Vineyard under deep blue sky'),(23513,1779,'_wp_attached_file','2023/02/gsm.jpg'),(23514,1779,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:504;s:6:\"height\";i:800;s:4:\"file\";s:15:\"2023/02/gsm.jpg\";s:8:\"filesize\";i:19825;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"gsm-189x300.jpg\";s:5:\"width\";i:189;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4472;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"gsm-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2225;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:15:\"gsm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5512;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:15:\"gsm-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7586;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:15:\"gsm-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5519;}s:8:\"tileview\";a:5:{s:4:\"file\";s:15:\"gsm-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6962;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23515,1779,'_wp_attachment_image_alt','gsm'),(23516,1780,'_wp_attached_file','2023/02/Meadowcroft-_21_Pinot_Noir_AndersonValley.jpg'),(23517,1780,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:334;s:6:\"height\";i:800;s:4:\"file\";s:53:\"2023/02/Meadowcroft-_21_Pinot_Noir_AndersonValley.jpg\";s:8:\"filesize\";i:20884;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-125x300.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4753;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2406;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5672;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-334x324.jpg\";s:5:\"width\";i:334;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6557;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-334x260.jpg\";s:5:\"width\";i:334;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5115;}s:8:\"tileview\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8386;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23518,1781,'_wp_attached_file','2023/02/Meadowcroft-_21_Pinot_Noir_AndersonValley-1.png'),(23519,1781,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:362;s:6:\"height\";i:1024;s:4:\"file\";s:55:\"2023/02/Meadowcroft-_21_Pinot_Noir_AndersonValley-1.png\";s:8:\"filesize\";i:315121;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-1-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24455;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12909;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43499;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-1-362x324.png\";s:5:\"width\";i:362;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59755;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-1-362x260.png\";s:5:\"width\";i:362;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42451;}s:8:\"tileview\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-_21_Pinot_Noir_AndersonValley-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66601;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23520,1781,'_wp_attachment_image_alt','Meadowcroft-_21_Pinot_Noir_AndersonValley'),(23521,1782,'_wp_attached_file','2023/02/MC_21_PinotGris_BottleShot-1.png'),(23522,1782,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:281;s:6:\"height\";i:1024;s:4:\"file\";s:40:\"2023/02/MC_21_PinotGris_BottleShot-1.png\";s:8:\"filesize\";i:83058;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"MC_21_PinotGris_BottleShot-1-82x300.png\";s:5:\"width\";i:82;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27695;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"MC_21_PinotGris_BottleShot-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23911;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:40:\"MC_21_PinotGris_BottleShot-1-281x300.png\";s:5:\"width\";i:281;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68454;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:40:\"MC_21_PinotGris_BottleShot-1-281x324.png\";s:5:\"width\";i:281;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72205;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:40:\"MC_21_PinotGris_BottleShot-1-281x260.png\";s:5:\"width\";i:281;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62190;}s:8:\"tileview\";a:5:{s:4:\"file\";s:40:\"MC_21_PinotGris_BottleShot-1-281x400.png\";s:5:\"width\";i:281;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84039;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23525,1784,'_wp_attached_file','2023/02/Meadowcroft-2018_Cabernet_SM_Bottleshot-1.png'),(23526,1784,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:154;s:6:\"height\";i:600;s:4:\"file\";s:53:\"2023/02/Meadowcroft-2018_Cabernet_SM_Bottleshot-1.png\";s:8:\"filesize\";i:119442;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"Meadowcroft-2018_Cabernet_SM_Bottleshot-1-77x300.png\";s:5:\"width\";i:77;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26980;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-2018_Cabernet_SM_Bottleshot-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31474;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-2018_Cabernet_SM_Bottleshot-1-154x300.png\";s:5:\"width\";i:154;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72831;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-2018_Cabernet_SM_Bottleshot-1-154x324.png\";s:5:\"width\";i:154;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78130;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-2018_Cabernet_SM_Bottleshot-1-154x260.png\";s:5:\"width\";i:154;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62544;}s:8:\"tileview\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-2018_Cabernet_SM_Bottleshot-1-154x400.png\";s:5:\"width\";i:154;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:91331;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23529,1786,'_wp_attached_file','2023/02/rose-of-malbec-1.png'),(23530,1786,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:28:\"2023/02/rose-of-malbec-1.png\";s:8:\"filesize\";i:114099;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"rose-of-malbec-1-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39291;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"rose-of-malbec-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13744;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:28:\"rose-of-malbec-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50657;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:28:\"rose-of-malbec-1-300x324.png\";s:5:\"width\";i:300;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56239;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:28:\"rose-of-malbec-1-300x260.png\";s:5:\"width\";i:300;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43072;}s:8:\"tileview\";a:5:{s:4:\"file\";s:28:\"rose-of-malbec-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70171;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23531,1787,'_wp_attached_file','2023/02/MC_FrenchColombard2021_Bottleshot-281x1024-2.png'),(23532,1787,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:281;s:6:\"height\";i:1024;s:4:\"file\";s:56:\"2023/02/MC_FrenchColombard2021_Bottleshot-281x1024-2.png\";s:8:\"filesize\";i:342981;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"MC_FrenchColombard2021_Bottleshot-281x1024-2-82x300.png\";s:5:\"width\";i:82;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29200;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"MC_FrenchColombard2021_Bottleshot-281x1024-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23815;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:56:\"MC_FrenchColombard2021_Bottleshot-281x1024-2-281x300.png\";s:5:\"width\";i:281;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:86141;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:56:\"MC_FrenchColombard2021_Bottleshot-281x1024-2-281x324.png\";s:5:\"width\";i:281;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:91411;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:56:\"MC_FrenchColombard2021_Bottleshot-281x1024-2-281x260.png\";s:5:\"width\";i:281;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:74616;}s:8:\"tileview\";a:5:{s:4:\"file\";s:56:\"MC_FrenchColombard2021_Bottleshot-281x1024-2-281x400.png\";s:5:\"width\";i:281;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:108205;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23536,1789,'_wp_attached_file','2023/02/sauvignon-blanc-1.png'),(23537,1789,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:29:\"2023/02/sauvignon-blanc-1.png\";s:8:\"filesize\";i:122334;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"sauvignon-blanc-1-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43581;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"sauvignon-blanc-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16030;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:29:\"sauvignon-blanc-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61420;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:29:\"sauvignon-blanc-1-300x324.png\";s:5:\"width\";i:300;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67180;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:29:\"sauvignon-blanc-1-300x260.png\";s:5:\"width\";i:300;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50888;}s:8:\"tileview\";a:5:{s:4:\"file\";s:29:\"sauvignon-blanc-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:81360;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23538,1790,'_wp_attached_file','2023/02/Meadowcroft_2015_PinotNoir_Cornerstone_BottleShot-scaled-1.png'),(23539,1790,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:70:\"2023/02/Meadowcroft_2015_PinotNoir_Cornerstone_BottleShot-scaled-1.png\";s:8:\"filesize\";i:223037;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_2015_PinotNoir_Cornerstone_BottleShot-scaled-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26563;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_2015_PinotNoir_Cornerstone_BottleShot-scaled-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8135;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_2015_PinotNoir_Cornerstone_BottleShot-scaled-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141794;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_2015_PinotNoir_Cornerstone_BottleShot-scaled-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26563;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_2015_PinotNoir_Cornerstone_BottleShot-scaled-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43324;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_2015_PinotNoir_Cornerstone_BottleShot-scaled-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29803;}s:8:\"tileview\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_2015_PinotNoir_Cornerstone_BottleShot-scaled-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42228;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23540,1790,'_wp_attachment_image_alt','Meadowcroft 2015 Cornerstone Pinot Noir'),(23546,1793,'_wp_attached_file','2023/02/Meadowcroft-Red-Hills-2020-CabSauv-376x1024-1-1.png'),(23547,1793,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:376;s:6:\"height\";i:1024;s:4:\"file\";s:59:\"2023/02/Meadowcroft-Red-Hills-2020-CabSauv-376x1024-1-1.png\";s:8:\"filesize\";i:84704;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"Meadowcroft-Red-Hills-2020-CabSauv-376x1024-1-1-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22460;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"Meadowcroft-Red-Hills-2020-CabSauv-376x1024-1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18175;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:59:\"Meadowcroft-Red-Hills-2020-CabSauv-376x1024-1-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68294;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:59:\"Meadowcroft-Red-Hills-2020-CabSauv-376x1024-1-1-376x324.png\";s:5:\"width\";i:376;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:92277;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:59:\"Meadowcroft-Red-Hills-2020-CabSauv-376x1024-1-1-376x260.png\";s:5:\"width\";i:376;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:74852;}s:8:\"tileview\";a:5:{s:4:\"file\";s:59:\"Meadowcroft-Red-Hills-2020-CabSauv-376x1024-1-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:87288;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23548,1794,'_wp_attached_file','2023/02/Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024-2.png'),(23549,1794,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:376;s:6:\"height\";i:1024;s:4:\"file\";s:70:\"2023/02/Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024-2.png\";s:8:\"filesize\";i:277016;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024-2-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24734;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19422;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73991;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024-2-376x324.png\";s:5:\"width\";i:376;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:117833;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024-2-376x260.png\";s:5:\"width\";i:376;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:94999;}s:8:\"tileview\";a:5:{s:4:\"file\";s:70:\"Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024-2-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:94996;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23550,1795,'_wp_attached_file','2023/02/20_Malbec_Clements_Hill_Bottleshot-376x1024-11.png'),(23551,1795,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:376;s:6:\"height\";i:1024;s:4:\"file\";s:58:\"2023/02/20_Malbec_Clements_Hill_Bottleshot-376x1024-11.png\";s:8:\"filesize\";i:236697;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"20_Malbec_Clements_Hill_Bottleshot-376x1024-11-110x300.png\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24457;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"20_Malbec_Clements_Hill_Bottleshot-376x1024-11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19612;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:58:\"20_Malbec_Clements_Hill_Bottleshot-376x1024-11-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68117;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:58:\"20_Malbec_Clements_Hill_Bottleshot-376x1024-11-376x324.png\";s:5:\"width\";i:376;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:97606;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:58:\"20_Malbec_Clements_Hill_Bottleshot-376x1024-11-376x260.png\";s:5:\"width\";i:376;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78017;}s:8:\"tileview\";a:5:{s:4:\"file\";s:58:\"20_Malbec_Clements_Hill_Bottleshot-376x1024-11-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:86429;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23552,1795,'_wp_attachment_image_alt','Meadowcroft Cru de la Ruche Malbec'),(23560,1799,'inline_featured_image','0'),(23561,1799,'_edit_lock','1677060243:5'),(23562,1799,'_edit_last','5'),(23563,1799,'_wp_page_template','default'),(23564,1799,'content_block_0_layout_title',''),(23565,1799,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(23566,1799,'content_block_0_custom_css_class',''),(23567,1799,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(23568,1799,'content_block_0_banner_full_width','1'),(23569,1799,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(23570,1799,'content_block_0_banner_size','normal'),(23571,1799,'_content_block_0_banner_size','field_5bbe232929ec9'),(23572,1799,'content_block_0_add_parallax_effect','0'),(23573,1799,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(23574,1799,'content_block_0_add_veil_over_banner','1'),(23575,1799,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(23576,1799,'content_block_0_banner_content_position','centered'),(23577,1799,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(23578,1799,'content_block_0_banner_title','Thanks You'),(23579,1799,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(23580,1799,'content_block_0_banner_subtitle',''),(23581,1799,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(23582,1799,'content_block_0_banner_button_link',''),(23583,1799,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(23584,1799,'content_block_0_banner_button_new_tab','0'),(23585,1799,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(23586,1799,'content_block_0_show_down_arrow','0'),(23587,1799,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(23588,1799,'content_block_0_banner_image_description',''),(23589,1799,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(23590,1799,'content_block_0_banner_image','1006'),(23591,1799,'_content_block_0_banner_image','field_5bbe201718faf'),(23592,1799,'content_block_0_banner_image_position','center top'),(23593,1799,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(23594,1799,'content_block_0_banner_image_mobile','1006'),(23595,1799,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(23596,1799,'content_block_0_banner_image_mobile_position','center center'),(23597,1799,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(23598,1799,'content_block','a:2:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";}'),(23599,1799,'_content_block','field_5bbe19a7efa09'),(23601,1799,'_yoast_wpseo_estimated-reading-time-minutes','0'),(23602,1799,'_yoast_wpseo_wordproof_timestamp',''),(23604,1799,'content_block_1_layout_title',''),(23605,1799,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(23606,1799,'content_block_1_text_block_columns','one'),(23607,1799,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(23608,1799,'content_block_1_narrow_text_block_content','0'),(23609,1799,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(23610,1799,'content_block_1_reverse_colors','0'),(23611,1799,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(23612,1799,'content_block_1_enable_background_image','1'),(23613,1799,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(23614,1799,'content_block_1_parallax_effect_on_image','0'),(23615,1799,'_content_block_1_parallax_effect_on_image','field_5bbe319b39211'),(23616,1799,'content_block_1_custom_css_class',''),(23617,1799,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(23618,1799,'content_block_1_text_block_content_col_one','<h5 style=\"text-align: center;color: black;\">Thanks for contacting Meadowcroft Wines! We will get in touch with you shortly.</h5>'),(23619,1799,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(23620,1799,'content_block_1_background_image','933'),(23621,1799,'_content_block_1_background_image','field_5bbe2eb1a4ddb'),(23622,1799,'content_block_1_background_image_position','center center'),(23623,1799,'_content_block_1_background_image_position','field_5bbe2eb1a4ddc'),(23624,1799,'content_block_1_background_image_mobile','933'),(23625,1799,'_content_block_1_background_image_mobile','field_5bbe3b5e5f6f8'),(23626,1799,'content_block_1_background_image_position_mobile','center center'),(23627,1799,'_content_block_1_background_image_position_mobile','field_5bbe3b695f6f9'),(23628,1799,'_yoast_wpseo_content_score','90'),(23633,1802,'_wp_attached_file','2023/02/gerard1.jpeg'),(23634,1802,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:638;s:4:\"file\";s:20:\"2023/02/gerard1.jpeg\";s:8:\"filesize\";i:181009;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"gerard1-300x199.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21693;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"gerard1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10009;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"gerard1-768x510.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109014;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:20:\"gerard1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31310;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:20:\"gerard1-474x324.jpeg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48918;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:20:\"gerard1-391x260.jpeg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34309;}s:8:\"tileview\";a:5:{s:4:\"file\";s:20:\"gerard1-300x400.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39952;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23717,1806,'_wp_attached_file','2023/03/NV-Blanc-de-Blanc-final.pdf'),(23718,1806,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:31:\"NV-Blanc-de-Blanc-final-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192930;}s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"NV-Blanc-de-Blanc-final-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15248;}s:5:\"large\";a:5:{s:4:\"file\";s:40:\"NV-Blanc-de-Blanc-final-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103619;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"NV-Blanc-de-Blanc-final-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6895;}}s:8:\"filesize\";i:330519;}'),(23719,1807,'_wp_attached_file','2023/03/NV-Blanc-de-Noir-final.pdf'),(23720,1807,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:30:\"NV-Blanc-de-Noir-final-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:199487;}s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"NV-Blanc-de-Noir-final-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15027;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"NV-Blanc-de-Noir-final-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106329;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"NV-Blanc-de-Noir-final-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6844;}}s:8:\"filesize\";i:337285;}'),(23721,1808,'content_block_0_layout_title',''),(23722,1808,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(23723,1808,'content_block_0_custom_css_class',''),(23724,1808,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(23725,1808,'content_block_0_banner_full_width','1'),(23726,1808,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(23727,1808,'content_block_0_banner_size','short'),(23728,1808,'_content_block_0_banner_size','field_5bbe232929ec9'),(23729,1808,'content_block_0_add_parallax_effect','0'),(23730,1808,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(23731,1808,'content_block_0_add_veil_over_banner','1'),(23732,1808,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(23733,1808,'content_block_0_banner_content_position','centered'),(23734,1808,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(23735,1808,'content_block_0_banner_title','Upcoming Sonoma Wine Events'),(23736,1808,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(23737,1808,'content_block_0_banner_subtitle','Join Us'),(23738,1808,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(23739,1808,'content_block_0_banner_button_link',''),(23740,1808,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(23741,1808,'content_block_0_banner_button_new_tab','0'),(23742,1808,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(23743,1808,'content_block_0_show_down_arrow','0'),(23744,1808,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(23745,1808,'content_block_0_banner_image_description',''),(23746,1808,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(23747,1808,'content_block_0_banner_image','881'),(23748,1808,'_content_block_0_banner_image','field_5bbe201718faf'),(23749,1808,'content_block_0_banner_image_position','center center'),(23750,1808,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(23751,1808,'content_block_0_banner_image_mobile','882'),(23752,1808,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(23753,1808,'content_block_0_banner_image_mobile_position','center center'),(23754,1808,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(23755,1808,'content_block_1_layout_title',''),(23756,1808,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(23757,1808,'content_block_1_text_block_columns','one'),(23758,1808,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(23759,1808,'content_block_1_narrow_text_block_content','0'),(23760,1808,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(23761,1808,'content_block_1_reverse_colors','0'),(23762,1808,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(23763,1808,'content_block_1_enable_background_image','0'),(23764,1808,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(23765,1808,'content_block_1_custom_css_class',''),(23766,1808,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(23767,1808,'content_block_1_text_block_content_col_one','Meadowcroft Winery offers a wide range of events throughout the year. From intimate wine tastings to educational blending seminars, there is something for everyone. Our exclusive wine club events provide members with a unique opportunity to experience our award-winning wines paired with exquisite local foods. Meet the winemaker, learn about new releases, and savor some of the finest selections from our extensive portfolio.'),(23768,1808,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(23769,1808,'content_block_2_layout_title','Calendar'),(23770,1808,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(23771,1808,'content_block_2_text_block_columns','one'),(23772,1808,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(23773,1808,'content_block_2_narrow_text_block_content','0'),(23774,1808,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(23775,1808,'content_block_2_reverse_colors','0'),(23776,1808,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(23777,1808,'content_block_2_enable_background_image','0'),(23778,1808,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(23779,1808,'content_block_2_custom_css_class',''),(23780,1808,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(23781,1808,'content_block_2_text_block_content_col_one','[MEC id=\"1506\"]'),(23782,1808,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(23783,1808,'content_block_3_layout_title','Private Events'),(23784,1808,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(23785,1808,'content_block_3_text_block_columns','one'),(23786,1808,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(23787,1808,'content_block_3_narrow_text_block_content','1'),(23788,1808,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(23789,1808,'content_block_3_reverse_colors','1'),(23790,1808,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(23791,1808,'content_block_3_enable_background_image','1'),(23792,1808,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(23793,1808,'content_block_3_parallax_effect_on_image','0'),(23794,1808,'_content_block_3_parallax_effect_on_image','field_5bbe319b39211'),(23795,1808,'content_block_3_custom_css_class','private-events-block'),(23796,1808,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(23797,1808,'content_block_3_text_block_content_col_one','<h3 style=\"text-align: center;\">PRIVATE EVENTS</h3>\r\n<p style=\"text-align: center;\">Interested in having your next special event at our Tasting Room? We host dinner parties, wedding welcome receptions, company functions, and anniversary parties.  To book, <a href=\"/inquiry/\" data-uw-rm-brl=\"false\">Contact Us Today!</a></p>\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/12/2020_Meadowcroft_PrivateEvent_samplemenu.pdf\" target=\"_blank\" rel=\"noopener\" aria-label=\"More Information - opens in new tab\" data-gdpr-atts=\"{}\" data-uw-rm-ext-link=\"\" data-uw-pdf-br=\"1\" data-uw-pdf-doc=\"\">MORE INFORMATION</a></p>'),(23798,1808,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(23799,1808,'content_block_3_background_image','1508'),(23800,1808,'_content_block_3_background_image','field_5bbe2eb1a4ddb'),(23801,1808,'content_block_3_background_image_position','center center'),(23802,1808,'_content_block_3_background_image_position','field_5bbe2eb1a4ddc'),(23803,1808,'content_block_3_background_image_mobile','1508'),(23804,1808,'_content_block_3_background_image_mobile','field_5bbe3b5e5f6f8'),(23805,1808,'content_block_3_background_image_position_mobile','center center'),(23806,1808,'_content_block_3_background_image_position_mobile','field_5bbe3b695f6f9'),(23807,1808,'content_block','a:4:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";i:3;s:10:\"text_block\";}'),(23808,1808,'_content_block','field_5bbe19a7efa09'),(23809,726,'content_block_3_layout_title','Private Events'),(23810,726,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(23811,726,'content_block_3_text_block_columns','one'),(23812,726,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(23813,726,'content_block_3_narrow_text_block_content','1'),(23814,726,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(23815,726,'content_block_3_reverse_colors','1'),(23816,726,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(23817,726,'content_block_3_enable_background_image','1'),(23818,726,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(23819,726,'content_block_3_parallax_effect_on_image','0'),(23820,726,'_content_block_3_parallax_effect_on_image','field_5bbe319b39211'),(23821,726,'content_block_3_custom_css_class','private-events-block'),(23822,726,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(23823,726,'content_block_3_text_block_content_col_one','<h3 style=\"text-align: center;\">PRIVATE EVENTS</h3>\r\n<p style=\"text-align: center;\">Interested in having your next special event at our Tasting Room? We host dinner parties, wedding welcome receptions, company functions, and anniversary parties.  To book, <a href=\"/inquiry/\" data-uw-rm-brl=\"false\">Contact Us Today!</a></p>\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/12/2020_Meadowcroft_PrivateEvent_samplemenu.pdf\" target=\"_blank\" rel=\"noopener\" aria-label=\"More Information - opens in new tab\" data-gdpr-atts=\"{}\" data-uw-rm-ext-link=\"\" data-uw-pdf-br=\"1\" data-uw-pdf-doc=\"\">MORE INFORMATION</a></p>'),(23824,726,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(23825,726,'content_block_3_background_image','1508'),(23826,726,'_content_block_3_background_image','field_5bbe2eb1a4ddb'),(23827,726,'content_block_3_background_image_position','center center'),(23828,726,'_content_block_3_background_image_position','field_5bbe2eb1a4ddc'),(23829,726,'content_block_3_background_image_mobile','1508'),(23830,726,'_content_block_3_background_image_mobile','field_5bbe3b5e5f6f8'),(23831,726,'content_block_3_background_image_position_mobile','center center'),(23832,726,'_content_block_3_background_image_position_mobile','field_5bbe3b695f6f9'),(23835,1811,'content_block_0_layout_title',''),(23836,1811,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(23837,1811,'content_block_0_custom_css_class',''),(23838,1811,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(23839,1811,'content_block_0_banner_full_width','1'),(23840,1811,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(23841,1811,'content_block_0_banner_size','long'),(23842,1811,'_content_block_0_banner_size','field_5bbe232929ec9'),(23843,1811,'content_block_0_add_parallax_effect','0'),(23844,1811,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(23845,1811,'content_block_0_add_veil_over_banner','0'),(23846,1811,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(23847,1811,'content_block_0_banner_content_position','centered'),(23848,1811,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(23849,1811,'content_block_0_banner_title',''),(23850,1811,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(23851,1811,'content_block_0_banner_subtitle',''),(23852,1811,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(23853,1811,'content_block_0_banner_button_link',''),(23854,1811,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(23855,1811,'content_block_0_banner_button_new_tab','0'),(23856,1811,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(23857,1811,'content_block_0_show_down_arrow','0'),(23858,1811,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(23859,1811,'content_block_0_banner_image_description',''),(23860,1811,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(23861,1811,'content_block_0_banner_image','1555'),(23862,1811,'_content_block_0_banner_image','field_5bbe201718faf'),(23863,1811,'content_block_0_banner_image_position','center center'),(23864,1811,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(23865,1811,'content_block_0_banner_image_mobile','1556'),(23866,1811,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(23867,1811,'content_block_0_banner_image_mobile_position','center center'),(23868,1811,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(23869,1811,'content_block_1_layout_title','Page Title + Intro'),(23870,1811,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(23871,1811,'content_block_1_text_block_columns','one'),(23872,1811,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(23873,1811,'content_block_1_narrow_text_block_content','1'),(23874,1811,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(23875,1811,'content_block_1_reverse_colors','0'),(23876,1811,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(23877,1811,'content_block_1_enable_background_image','0'),(23878,1811,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(23879,1811,'content_block_1_custom_css_class','white-section'),(23880,1811,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(23881,1811,'content_block_1_text_block_content_col_one','<h1 style=\"text-align: center;\">A Wine Club Made Just for You</h1>\r\nMeadowcroft Winery produces small production vineyard designated wines with European heritage and California style. We honor &amp; respect tradition but know when it’s time to leave our fingerprints by removing barriers. We thought that our wine club should follow the same rules: <strong>No Rules.</strong>\r\n\r\nAs a member of the Meadowcroft Subscription Wine Club, you make the decisions and receive only the wines you choose when you choose to receive them. You select the frequency of shipments, customize your orders, skip shipments as needed, and cancel your subscription at any time without needing to ask permission.'),(23882,1811,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(23883,1811,'content_block_2_layout_title','Join Button'),(23884,1811,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(23885,1811,'content_block_2_text_block_columns','one'),(23886,1811,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(23887,1811,'content_block_2_narrow_text_block_content','0'),(23888,1811,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(23889,1811,'content_block_2_reverse_colors','0'),(23890,1811,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(23891,1811,'content_block_2_enable_background_image','0'),(23892,1811,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(23893,1811,'content_block_2_custom_css_class',''),(23894,1811,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(23895,1811,'content_block_2_text_block_content_col_one','[club_button slug=\"meadowcroft-subscription-wine-club\"]'),(23896,1811,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(23897,1811,'content_block_3_layout_title','Benefits'),(23898,1811,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(23899,1811,'content_block_3_text_block_columns','one'),(23900,1811,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(23901,1811,'content_block_3_narrow_text_block_content','0'),(23902,1811,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(23903,1811,'content_block_3_reverse_colors','0'),(23904,1811,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(23905,1811,'content_block_3_enable_background_image','0'),(23906,1811,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(23907,1811,'content_block_3_custom_css_class',''),(23908,1811,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(23909,1811,'content_block_3_text_block_content_col_one','&nbsp;\r\n<h2 style=\"text-align: center;\">Subscription Club Benefits</h2>'),(23910,1811,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(23911,1811,'content_block_4_layout_title','Benefits'),(23912,1811,'_content_block_4_layout_title','field_5bc11ca9a0d50-s'),(23913,1811,'content_block_4_text_block_columns','two'),(23914,1811,'_content_block_4_text_block_columns','field_5bbe2f81a4de0'),(23915,1811,'content_block_4_column_size','equal'),(23916,1811,'_content_block_4_column_size','field_columnsize'),(23917,1811,'content_block_4_narrow_text_block_content','0'),(23918,1811,'_content_block_4_narrow_text_block_content','field_5bbe342e08360'),(23919,1811,'content_block_4_reverse_colors','0'),(23920,1811,'_content_block_4_reverse_colors','field_5bbe3027a4de1'),(23921,1811,'content_block_4_enable_background_image','0'),(23922,1811,'_content_block_4_enable_background_image','field_5bbe30b1a4de2'),(23923,1811,'content_block_4_custom_css_class',''),(23924,1811,'_content_block_4_custom_css_class','field_5bbe30b1a4de2-1'),(23925,1811,'content_block_4_text_block_content_col_one','<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">$0</span>\r\nNo fee to join</p>\r\n<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">15%</span>\r\nDiscount on all wine purchases</p>\r\n<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">$15</span>\r\nFlat rate ground shipping on orders of 6+ bottles</p>\r\n<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">Schedule</span>\r\nChoose to receive wines every 2, 3, 4, or 6 months.  Change frequency at any time</p>\r\n<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">Enjoy</span>\r\nComplimentary wine tastings</p>'),(23926,1811,'_content_block_4_text_block_content_col_one','field_5bbe313b3920d'),(23927,1811,'content_block_4_text_block_content_col_two','<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">Skip Shipments</span>\r\nToo much wine? Traveling? Skip shipments as needed with a single click</p>\r\n<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">Customize</span>\r\nSelect only your favorite wines and quantities in each shipment</p>\r\n<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">Save</span>\r\nOn wine blending experiences and other winery offerings</p>\r\n<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">Attend</span>\r\nExclusive wine club events and other winery happenings</p>\r\n<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">Access</span>\r\nExclusive wine club offerings</p>'),(23928,1811,'_content_block_4_text_block_content_col_two','field_5bbe31593920e'),(23929,1811,'content_block_5_layout_title','Testimonial Slider'),(23930,1811,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(23931,1811,'content_block_5_text_block_columns','one'),(23932,1811,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(23933,1811,'content_block_5_narrow_text_block_content','0'),(23934,1811,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(23935,1811,'content_block_5_reverse_colors','1'),(23936,1811,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(23937,1811,'content_block_5_enable_background_image','1'),(23938,1811,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(23939,1811,'content_block_5_parallax_effect_on_image','0'),(23940,1811,'_content_block_5_parallax_effect_on_image','field_5bbe319b39211'),(23941,1811,'content_block_5_custom_css_class',''),(23942,1811,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(23943,1811,'content_block_5_text_block_content_col_one','[slick-slider category=\"30\" loop=\"true\" hover_pause=\"true\" dots=\"false\" arrows=\"false\" show_content=\"true\" show_title=\"false\" autoplay_interval=\"4000\" speed=\"300\" extra_class=\"wine-club\" design=\"design-5\"]'),(23944,1811,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(23945,1811,'content_block_5_background_image','947'),(23946,1811,'_content_block_5_background_image','field_5bbe2eb1a4ddb'),(23947,1811,'content_block_5_background_image_position','center center'),(23948,1811,'_content_block_5_background_image_position','field_5bbe2eb1a4ddc'),(23949,1811,'content_block_5_background_image_mobile','947'),(23950,1811,'_content_block_5_background_image_mobile','field_5bbe3b5e5f6f8'),(23951,1811,'content_block_5_background_image_position_mobile','center center'),(23952,1811,'_content_block_5_background_image_position_mobile','field_5bbe3b695f6f9'),(23953,1811,'content_block_6_layout_title','Legal'),(23954,1811,'_content_block_6_layout_title','field_5bc11ca9a0d50-s'),(23955,1811,'content_block_6_text_block_columns','one'),(23956,1811,'_content_block_6_text_block_columns','field_5bbe2f81a4de0'),(23957,1811,'content_block_6_narrow_text_block_content','1'),(23958,1811,'_content_block_6_narrow_text_block_content','field_5bbe342e08360'),(23959,1811,'content_block_6_reverse_colors','1'),(23960,1811,'_content_block_6_reverse_colors','field_5bbe3027a4de1'),(23961,1811,'content_block_6_enable_background_image','0'),(23962,1811,'_content_block_6_enable_background_image','field_5bbe30b1a4de2'),(23963,1811,'content_block_6_custom_css_class',''),(23964,1811,'_content_block_6_custom_css_class','field_5bbe30b1a4de2-1'),(23965,1811,'content_block_6_text_block_content_col_one','<h3 style=\"text-align: center;\"><span class=\"h5\">The Fine Print</span></h3>\r\n<p style=\"text-align: center;\"><small>Minimum 4 bottles per shipment. </small>\r\n<small>Default shipment frequency is every 3 months, change frequency at any time.</small>\r\n<small>State laws require someone 21 years of age or older to sign for the package at delivery - it is often preferable to ship to a business address. Purchaser is responsible for all re-routing and return shipping fees.</small></p>'),(23966,1811,'_content_block_6_text_block_content_col_one','field_5bbe313b3920d'),(23967,1811,'content_block','a:7:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";i:3;s:10:\"text_block\";i:4;s:10:\"text_block\";i:5;s:10:\"text_block\";i:6;s:10:\"text_block\";}'),(23968,1811,'_content_block','field_5bbe19a7efa09'),(23969,1554,'_yoast_wpseo_content_score','60'),(23970,1554,'content_block_4_column_size','equal'),(23971,1554,'_content_block_4_column_size','field_columnsize'),(23972,1554,'content_block_4_text_block_content_col_two','<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">Skip Shipments</span>\r\nToo much wine? Traveling? Skip shipments as needed with a single click</p>\r\n<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">Customize</span>\r\nSelect only your favorite wines and quantities in each shipment</p>\r\n<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">Save</span>\r\nOn wine blending experiences and other winery offerings</p>\r\n<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">Attend</span>\r\nExclusive wine club events and other winery happenings</p>\r\n<p class=\"club\" style=\"text-align: left;\"><span style=\"font-size: 25px;\">Access</span>\r\nExclusive wine club offerings</p>'),(23973,1554,'_content_block_4_text_block_content_col_two','field_5bbe31593920e'),(23975,1813,'_wp_attached_file','2023/03/SonomaBottle-MeadowcroftWines_SauvignonBlanc_2022.png'),(23976,1813,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1433;s:6:\"height\";i:5168;s:4:\"file\";s:61:\"2023/03/SonomaBottle-MeadowcroftWines_SauvignonBlanc_2022.png\";s:8:\"filesize\";i:8696272;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"SonomaBottle-MeadowcroftWines_SauvignonBlanc_2022-83x300.png\";s:5:\"width\";i:83;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27341;}s:5:\"large\";a:5:{s:4:\"file\";s:62:\"SonomaBottle-MeadowcroftWines_SauvignonBlanc_2022-284x1024.png\";s:5:\"width\";i:284;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:253915;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"SonomaBottle-MeadowcroftWines_SauvignonBlanc_2022-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23059;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:62:\"SonomaBottle-MeadowcroftWines_SauvignonBlanc_2022-768x2770.png\";s:5:\"width\";i:768;s:6:\"height\";i:2770;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1756926;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:61:\"SonomaBottle-MeadowcroftWines_SauvignonBlanc_2022-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89639;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:61:\"SonomaBottle-MeadowcroftWines_SauvignonBlanc_2022-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:162356;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:61:\"SonomaBottle-MeadowcroftWines_SauvignonBlanc_2022-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107783;}s:8:\"tileview\";a:5:{s:4:\"file\";s:61:\"SonomaBottle-MeadowcroftWines_SauvignonBlanc_2022-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:111433;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:62:\"SonomaBottle-MeadowcroftWines_SauvignonBlanc_2022-426x1536.png\";s:5:\"width\";i:426;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:555719;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:62:\"SonomaBottle-MeadowcroftWines_SauvignonBlanc_2022-568x2048.png\";s:5:\"width\";i:568;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:973819;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:63:\"SonomaBottle-MeadowcroftWines_SauvignonBlanc_2022-1200x4328.png\";s:5:\"width\";i:1200;s:6:\"height\";i:4328;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4164583;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23977,501,'_yoast_wpseo_focuskw','wines'),(23978,501,'_yoast_wpseo_title','Shop Wines in Sonoma County, CA | Meadowcroft Wines'),(23979,501,'_yoast_wpseo_metadesc','Looking for the perfect wine? Look no further! Shop Meadowcroft Wines & discover the best selection of red, white, & sparkling wines. Order now & savor every sip!'),(23980,501,'_yoast_wpseo_linkdex','41'),(23981,501,'_yoast_wpseo_content_score','90'),(24010,1574,'_yoast_wpseo_focuskw','Sparkling Wines'),(24011,1574,'_yoast_wpseo_title','Buy Best Sparkling Wines in Sonoma County, California'),(24012,1574,'_yoast_wpseo_metadesc','Explore the best sparkling wines Sonoma County has to offer! From crisp Chardonnays to rich Pinot Noirs, find your perfect bottle at our Meadowcroft Wines.'),(24013,1574,'_yoast_wpseo_linkdex','44'),(24014,506,'_yoast_wpseo_focuskw','White Wines'),(24015,506,'_yoast_wpseo_title','Experience the Best White Wines in Sonoma County, CA'),(24016,506,'_yoast_wpseo_metadesc','Looking to buy white wine in Sonoma County? Explore Meadowcroft\'s top picks of white wines from Sonoma County\'s winery.'),(24017,506,'_yoast_wpseo_linkdex','61'),(24018,506,'_yoast_wpseo_content_score','90'),(24023,1815,'content_block_0_layout_title',''),(24024,1815,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(24025,1815,'content_block_0_text_block_columns','one'),(24026,1815,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(24027,1815,'content_block_0_narrow_text_block_content','0'),(24028,1815,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(24029,1815,'content_block_0_reverse_colors','0'),(24030,1815,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(24031,1815,'content_block_0_enable_background_image','0'),(24032,1815,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(24033,1815,'content_block_0_custom_css_class',''),(24034,1815,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(24035,1815,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">Wines</h1>\r\nEvery soil tells the story of its people, their place, and their culture. It is from this culture that springs creations, like wine.  Anthropology, agriculture, and alchemy combine to form the foundation of Tom’s work with wine. He constantly explores, creates, and brings to his customers the cultural heritage of European wine styles, while infusing his wines with the exuberance of California’s innovation in winemaking.'),(24036,1815,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(24037,1815,'content_block_1_layout_title',''),(24038,1815,'_content_block_1_layout_title','field_5bc11ca9a0d50-v'),(24039,1815,'content_block_1_product_row_number','4up'),(24040,1815,'_content_block_1_product_row_number','field_5bc11c6da0d4f'),(24041,1815,'content_block_1_data_collection_slug','wines'),(24042,1815,'_content_block_1_data_collection_slug','field_5bc11ca9a0d50'),(24043,1815,'content_block_1_manually_enter_collection_slug','0'),(24044,1815,'_content_block_1_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(24045,1815,'content_block_1_product_display_feature','0'),(24046,1815,'_content_block_1_product_display_feature','field_5d1144d5e6922'),(24047,1815,'content_block_1_product_display_teaser','1'),(24048,1815,'_content_block_1_product_display_teaser','field_5d114505e6923'),(24049,1815,'content_block','a:2:{i:0;s:10:\"text_block\";i:1;s:18:\"product_collection\";}'),(24050,1815,'_content_block','field_5bbe19a7efa09'),(24051,1816,'content_block_0_layout_title','Page Title'),(24052,1816,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(24053,1816,'content_block_0_text_block_columns','one'),(24054,1816,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(24055,1816,'content_block_0_narrow_text_block_content','0'),(24056,1816,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(24057,1816,'content_block_0_reverse_colors','0'),(24058,1816,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(24059,1816,'content_block_0_enable_background_image','0'),(24060,1816,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(24061,1816,'content_block_0_custom_css_class',''),(24062,1816,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(24063,1816,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">Gifts &amp; Bundles</h1>'),(24064,1816,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(24065,1816,'content_block_1_layout_title',''),(24066,1816,'_content_block_1_layout_title','field_5bc11ca9a0d50-v'),(24067,1816,'content_block_1_product_row_number','3up'),(24068,1816,'_content_block_1_product_row_number','field_5bc11c6da0d4f'),(24069,1816,'content_block_1_data_collection_slug','gifts'),(24070,1816,'_content_block_1_data_collection_slug','field_5bc11ca9a0d50'),(24071,1816,'content_block_1_manually_enter_collection_slug','0'),(24072,1816,'_content_block_1_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(24073,1816,'content_block_1_product_display_feature','0'),(24074,1816,'_content_block_1_product_display_feature','field_5d1144d5e6922'),(24075,1816,'content_block_1_product_display_teaser','1'),(24076,1816,'_content_block_1_product_display_teaser','field_5d114505e6923'),(24077,1816,'content_block','a:2:{i:0;s:10:\"text_block\";i:1;s:18:\"product_collection\";}'),(24078,1816,'_content_block','field_5bbe19a7efa09'),(24080,412,'_yoast_wpseo_focuskw','Winery in Sonoma'),(24081,412,'_yoast_wpseo_linkdex','65'),(24082,445,'_yoast_wpseo_focuskw','Wine Tasting Room'),(24083,445,'_yoast_wpseo_linkdex','69'),(24089,1821,'_wp_attached_file','2023/03/White-Bee.png'),(24090,1821,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:150;s:6:\"height\";i:105;s:4:\"file\";s:21:\"2023/03/White-Bee.png\";s:8:\"filesize\";i:13134;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24104,1830,'_wp_attached_file','2023/03/Untitled-design-2.webp'),(24105,1830,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:600;s:4:\"file\";s:30:\"2023/03/Untitled-design-2.webp\";s:8:\"filesize\";i:11190;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Untitled-design-2-300x240.webp\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4438;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Untitled-design-2-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2502;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:30:\"Untitled-design-2-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5610;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:30:\"Untitled-design-2-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7488;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:30:\"Untitled-design-2-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5904;}s:8:\"tileview\";a:5:{s:4:\"file\";s:30:\"Untitled-design-2-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7640;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24106,1830,'_wp_attachment_image_alt','Benefits of aging wine'),(24107,1831,'_wp_attached_file','2023/03/Untitled-design-1-1.webp'),(24108,1831,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:32:\"2023/03/Untitled-design-1-1.webp\";s:8:\"filesize\";i:15068;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Untitled-design-1-1-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5504;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Untitled-design-1-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2362;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"Untitled-design-1-1-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18280;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:32:\"Untitled-design-1-1-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5504;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:32:\"Untitled-design-1-1-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8414;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:32:\"Untitled-design-1-1-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6386;}s:8:\"tileview\";a:5:{s:4:\"file\";s:32:\"Untitled-design-1-1-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7510;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24109,1831,'_wp_attachment_image_alt','Benefits-of-aging-wine'),(24162,1833,'_wp_attached_file','2023/03/Untitled-design-1.webp'),(24163,1833,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:900;s:4:\"file\";s:30:\"2023/03/Untitled-design-1.webp\";s:8:\"filesize\";i:32710;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Untitled-design-1-300x225.webp\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6750;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"Untitled-design-1-1024x768.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:35592;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Untitled-design-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3220;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Untitled-design-1-768x576.webp\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:23696;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:30:\"Untitled-design-1-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7558;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:30:\"Untitled-design-1-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11398;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:30:\"Untitled-design-1-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8308;}s:8:\"tileview\";a:5:{s:4:\"file\";s:30:\"Untitled-design-1-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8894;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24164,1833,'_wp_attachment_image_alt','Tips on correctly identifying aged wine'),(24165,1834,'_wp_attached_file','2023/03/Untitled-design-1-3.webp'),(24166,1834,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:32:\"2023/03/Untitled-design-1-3.webp\";s:8:\"filesize\";i:114254;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Untitled-design-1-3-300x169.webp\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9392;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"Untitled-design-1-3-1024x576.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:45822;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Untitled-design-1-3-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5258;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"Untitled-design-1-3-768x432.webp\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:32118;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:32:\"Untitled-design-1-3-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13070;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:32:\"Untitled-design-1-3-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19460;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:32:\"Untitled-design-1-3-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14918;}s:8:\"tileview\";a:5:{s:4:\"file\";s:32:\"Untitled-design-1-3-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:15854;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"Untitled-design-1-3-1536x864.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:80486;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:34:\"Untitled-design-1-3-2048x1152.webp\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:116382;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:33:\"Untitled-design-1-3-1200x675.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:57384;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24167,1834,'_wp_attachment_image_alt','Which wines to age'),(24171,1836,'_wp_attached_file','2023/03/Untitled-design-1-4.webp'),(24172,1836,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:640;s:6:\"height\";i:640;s:4:\"file\";s:32:\"2023/03/Untitled-design-1-4.webp\";s:8:\"filesize\";i:16944;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Untitled-design-1-4-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8250;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Untitled-design-1-4-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3624;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:32:\"Untitled-design-1-4-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8250;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:32:\"Untitled-design-1-4-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11560;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:32:\"Untitled-design-1-4-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8640;}s:8:\"tileview\";a:5:{s:4:\"file\";s:32:\"Untitled-design-1-4-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8908;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24173,1836,'_wp_attachment_image_alt','Tips on correctly identifying aged wine'),(24175,1837,'enable_banner','0'),(24176,1837,'_enable_banner','field_5bbe19c8efa0acb'),(24177,1837,'banner_full_width','0'),(24178,1837,'_banner_full_width','field_5bbe19c8efa0ac'),(24179,1837,'banner_size','normal'),(24180,1837,'_banner_size','field_5bbe232929ec9c'),(24181,1837,'add_parallax_effect','0'),(24182,1837,'_add_parallax_effect','field_5bbe219ccb6a9'),(24183,1837,'add_veil_over_banner','0'),(24184,1837,'_add_veil_over_banner','field_5bbe333f39212'),(24185,1837,'banner_content_position','centered'),(24186,1837,'_banner_content_position','field_5bbe259b02b62'),(24187,1837,'banner_title',''),(24188,1837,'_banner_title','field_5bbe1b78efa0b'),(24189,1837,'banner_subtitle',''),(24190,1837,'_banner_subtitle','field_5bbe1b83efa0c'),(24191,1837,'banner_button_link',''),(24192,1837,'_banner_button_link','field_5bbe1b8cefa0d'),(24193,1837,'banner_button_new_tab','0'),(24194,1837,'_banner_button_new_tab','field_5bbe1e6d18fae'),(24195,1837,'show_down_arrow','0'),(24196,1837,'_show_down_arrow','field_5bbe24f721165'),(24197,1837,'banner_image',''),(24198,1837,'_banner_image','field_5bbe201718fafa'),(24199,1837,'banner_image_position','center center'),(24200,1837,'_banner_image_position','field_5bbe278f9fb97'),(24201,1837,'banner_image_mobile',''),(24202,1837,'_banner_image_mobile','field_5bbe202818fb0b'),(24203,1837,'banner_image_mobile_position','center center'),(24204,1837,'_banner_image_mobile_position','field_5bbe279c9fb98'),(24205,1837,'hide_post_title','0'),(24206,1837,'_hide_post_title','field_5bbe18c8efa0ac'),(24207,1837,'custom_title',''),(24208,1837,'_custom_title','field_5bbe1b83pfa0c'),(24209,1837,'the_teaser','<span style=\"font-weight: 400;\">Have you ever wondered why some wines improve with time while others are best enjoyed when they’re young? Aging wine can have a major impact on the taste and texture of a bottle, transforming it into something far superior to its original form. </span>'),(24210,1837,'_the_teaser','field_5c1d78f88e54c'),(24211,1837,'hero_image','1830'),(24212,1837,'_hero_image','field_5d138e7f31334'),(24213,1837,'content_block',''),(24214,1837,'_content_block','field_5bbe19a7efa09'),(24224,1840,'inline_featured_image','0'),(24225,1840,'_edit_lock','1735277962:9'),(24226,1840,'_edit_last','9'),(24227,1841,'_wp_attached_file','2023/03/HERO-IMAGE-MEADOWCROFT-WINES.webp'),(24228,1841,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:600;s:4:\"file\";s:41:\"2023/03/HERO-IMAGE-MEADOWCROFT-WINES.webp\";s:8:\"filesize\";i:37684;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"HERO-IMAGE-MEADOWCROFT-WINES-300x240.webp\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:15682;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"HERO-IMAGE-MEADOWCROFT-WINES-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7216;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:41:\"HERO-IMAGE-MEADOWCROFT-WINES-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17826;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:41:\"HERO-IMAGE-MEADOWCROFT-WINES-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:25770;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:41:\"HERO-IMAGE-MEADOWCROFT-WINES-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:20110;}s:8:\"tileview\";a:5:{s:4:\"file\";s:41:\"HERO-IMAGE-MEADOWCROFT-WINES-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19370;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24229,1841,'_wp_attachment_image_alt','Refreshing Wine Cocktails - Meadowcroft Wines'),(24230,1842,'_wp_attached_file','2023/03/Featured-Image-800px.webp'),(24231,1842,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:33:\"2023/03/Featured-Image-800px.webp\";s:8:\"filesize\";i:45442;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Featured-Image-800px-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18084;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Featured-Image-800px-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7196;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"Featured-Image-800px-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:58486;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:33:\"Featured-Image-800px-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18084;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:33:\"Featured-Image-800px-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:25198;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:33:\"Featured-Image-800px-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19350;}s:8:\"tileview\";a:5:{s:4:\"file\";s:33:\"Featured-Image-800px-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19698;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24232,1842,'_wp_attachment_image_alt','5 Refreshing Wine Cocktails'),(24233,1843,'_wp_attached_file','2023/03/3.webp'),(24234,1843,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:14:\"2023/03/3.webp\";s:8:\"filesize\";i:99694;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"3-300x169.webp\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8304;}s:5:\"large\";a:5:{s:4:\"file\";s:15:\"3-1024x576.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:41076;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"3-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4422;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"3-768x432.webp\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:27926;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:14:\"3-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11024;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:14:\"3-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16792;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:14:\"3-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12956;}s:8:\"tileview\";a:5:{s:4:\"file\";s:14:\"3-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12816;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:15:\"3-1536x864.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:69760;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:16:\"3-2048x1152.webp\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:99824;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:15:\"3-1200x675.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:50904;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24235,1843,'_wp_attachment_image_alt','Kir Royal - cassis liqueur mixed with chilled sparkling white wine'),(24236,1844,'_wp_attached_file','2023/03/5.webp'),(24237,1844,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:14:\"2023/03/5.webp\";s:8:\"filesize\";i:73082;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"5-300x169.webp\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7776;}s:5:\"large\";a:5:{s:4:\"file\";s:15:\"5-1024x576.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:33654;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"5-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4832;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"5-768x432.webp\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:24258;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:14:\"5-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11266;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:14:\"5-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16300;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:14:\"5-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12480;}s:8:\"tileview\";a:5:{s:4:\"file\";s:14:\"5-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13294;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:15:\"5-1536x864.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:56850;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:16:\"5-2048x1152.webp\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:79172;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:15:\"5-1200x675.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:42548;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24238,1844,'_wp_attachment_image_alt','WineCocktails-peachbellini'),(24239,1840,'_thumbnail_id','1842'),(24240,1840,'enable_banner','0'),(24241,1840,'_enable_banner','field_5bbe19c8efa0acb'),(24242,1840,'banner_full_width','0'),(24243,1840,'_banner_full_width','field_5bbe19c8efa0ac'),(24244,1840,'banner_size','normal'),(24245,1840,'_banner_size','field_5bbe232929ec9c'),(24246,1840,'add_parallax_effect','0'),(24247,1840,'_add_parallax_effect','field_5bbe219ccb6a9'),(24248,1840,'add_veil_over_banner','0'),(24249,1840,'_add_veil_over_banner','field_5bbe333f39212'),(24250,1840,'banner_content_position','centered'),(24251,1840,'_banner_content_position','field_5bbe259b02b62'),(24252,1840,'banner_title',''),(24253,1840,'_banner_title','field_5bbe1b78efa0b'),(24254,1840,'banner_subtitle',''),(24255,1840,'_banner_subtitle','field_5bbe1b83efa0c'),(24256,1840,'banner_button_link',''),(24257,1840,'_banner_button_link','field_5bbe1b8cefa0d'),(24258,1840,'banner_button_new_tab','0'),(24259,1840,'_banner_button_new_tab','field_5bbe1e6d18fae'),(24260,1840,'show_down_arrow','0'),(24261,1840,'_show_down_arrow','field_5bbe24f721165'),(24262,1840,'banner_image',''),(24263,1840,'_banner_image','field_5bbe201718fafa'),(24264,1840,'banner_image_position','center center'),(24265,1840,'_banner_image_position','field_5bbe278f9fb97'),(24266,1840,'banner_image_mobile',''),(24267,1840,'_banner_image_mobile','field_5bbe202818fb0b'),(24268,1840,'banner_image_mobile_position','center center'),(24269,1840,'_banner_image_mobile_position','field_5bbe279c9fb98'),(24270,1840,'hide_post_title','0'),(24271,1840,'_hide_post_title','field_5bbe18c8efa0ac'),(24272,1840,'custom_title',''),(24273,1840,'_custom_title','field_5bbe1b83pfa0c'),(24274,1840,'the_teaser','For all oenophiles and aspiring vintners, there’s nothing like the classic simplicity of a glass of chilled white or full-bodied red. But sometimes, it can be fun to mix up your routine with creative enhancements — something new and exciting that you’ve never tasted before!'),(24275,1840,'_the_teaser','field_5c1d78f88e54c'),(24276,1840,'hero_image','1841'),(24277,1840,'_hero_image','field_5d138e7f31334'),(24278,1840,'content_block',''),(24279,1840,'_content_block','field_5bbe19a7efa09'),(24280,1840,'_yoast_wpseo_primary_category','2'),(24281,1840,'_yoast_wpseo_focuskw','Wine Cocktails'),(24282,1840,'_yoast_wpseo_title','Discover 5 Refreshing Wine Cocktails'),(24283,1840,'_yoast_wpseo_metadesc','Elevate your cocktail game with these 5 refreshing wine cocktails that will tantalize your taste buds and leave you wanting more.'),(24284,1840,'_yoast_wpseo_linkdex','74'),(24285,1840,'_yoast_wpseo_content_score','30'),(24286,1840,'_yoast_wpseo_estimated-reading-time-minutes','7'),(24287,1840,'_yoast_wpseo_wordproof_timestamp',''),(24288,1845,'_wp_attached_file','2023/03/4.webp'),(24289,1845,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:14:\"2023/03/4.webp\";s:8:\"filesize\";i:120482;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"4-300x169.webp\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7942;}s:5:\"large\";a:5:{s:4:\"file\";s:15:\"4-1024x576.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:41080;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"4-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4780;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"4-768x432.webp\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:27322;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:14:\"4-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11578;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:14:\"4-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16434;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:14:\"4-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12624;}s:8:\"tileview\";a:5:{s:4:\"file\";s:14:\"4-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:15098;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:15:\"4-1536x864.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:73532;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:16:\"4-2048x1152.webp\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:111748;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:15:\"4-1200x675.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:51950;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24290,1845,'_wp_attachment_image_alt','WineCocktails'),(24297,1848,'_wp_attached_file','2023/03/plantmaniabanner.jpeg'),(24298,1848,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:29:\"2023/03/plantmaniabanner.jpeg\";s:8:\"filesize\";i:199540;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"plantmaniabanner-300x169.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22035;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"plantmaniabanner-1024x576.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79095;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"plantmaniabanner-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15365;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"plantmaniabanner-768x432.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56819;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:29:\"plantmaniabanner-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24983;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:29:\"plantmaniabanner-474x324.jpeg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36565;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:29:\"plantmaniabanner-391x260.jpeg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29793;}s:8:\"tileview\";a:5:{s:4:\"file\";s:29:\"plantmaniabanner-300x400.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27099;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"plantmaniabanner-1536x864.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128784;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:30:\"plantmaniabanner-1200x675.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96755;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24299,1848,'_wp_attachment_image_alt','Plantmania at Cornerstone'),(24373,1850,'_wp_attached_file','2023/03/winemusic-web.jpg'),(24374,1850,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1500;s:4:\"file\";s:25:\"2023/03/winemusic-web.jpg\";s:8:\"filesize\";i:331792;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"winemusic-web-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18273;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"winemusic-web-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114733;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"winemusic-web-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6918;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"winemusic-web-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74715;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:25:\"winemusic-web-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18273;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:25:\"winemusic-web-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27833;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:25:\"winemusic-web-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20645;}s:8:\"tileview\";a:5:{s:4:\"file\";s:25:\"winemusic-web-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25409;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:27:\"winemusic-web-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142744;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24375,1850,'_wp_attachment_image_alt','Wine & Music'),(24456,504,'_yoast_wpseo_focuskw','Sonoma red wines'),(24457,504,'_yoast_wpseo_title','Experience the Best Sonoma Red Wines Today | Meadowcroft Wines'),(24458,504,'_yoast_wpseo_metadesc','Our Sonoma red wines are perfect for any occasion. With a variety of flavors to choose from, we have the perfect wine for you. Click now and find the best wine for your next party.'),(24459,504,'_yoast_wpseo_linkdex','48'),(24460,1576,'_yoast_wpseo_focuskw','California Rose Wines'),(24461,1576,'_yoast_wpseo_title','Discover the Best California Rose Wines | Meadowcroft Wines'),(24462,1576,'_yoast_wpseo_metadesc','Looking for a top-quality California rose wine? From the best wineries to the perfect food pairings, we\'ve got you covered. Click now and have great taste of it.'),(24463,1576,'_yoast_wpseo_linkdex','52'),(24464,1577,'_yoast_wpseo_focuskw','Exclusive Wine Club'),(24465,1577,'_yoast_wpseo_title','Join Our Wine Club for Exclusive Wine Offerings - Meadowcroft Wines'),(24466,1577,'_yoast_wpseo_metadesc','Elevate your wine collection with our exclusive wine club. Get access to limited-edition bottles and rare blends.'),(24467,1577,'_yoast_wpseo_linkdex','34'),(24471,1854,'_wp_attached_file','2023/03/health-benefits-red-wines-meadowcroftwines.webp'),(24472,1854,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:600;s:4:\"file\";s:55:\"2023/03/health-benefits-red-wines-meadowcroftwines.webp\";s:8:\"filesize\";i:63398;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"health-benefits-red-wines-meadowcroftwines-300x240.webp\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19242;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"health-benefits-red-wines-meadowcroftwines-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12360;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:55:\"health-benefits-red-wines-meadowcroftwines-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:21592;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:55:\"health-benefits-red-wines-meadowcroftwines-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:29376;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:55:\"health-benefits-red-wines-meadowcroftwines-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:23210;}s:8:\"tileview\";a:5:{s:4:\"file\";s:55:\"health-benefits-red-wines-meadowcroftwines-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:25670;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24473,1854,'_wp_attachment_image_alt','health-benefits-red-wines-meadowcroftwines'),(24474,1855,'_wp_attached_file','2023/03/Featured-Image-800px-1.webp'),(24475,1855,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:35:\"2023/03/Featured-Image-800px-1.webp\";s:8:\"filesize\";i:55294;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Featured-Image-800px-1-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14504;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Featured-Image-800px-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4992;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"Featured-Image-800px-1-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:61206;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:35:\"Featured-Image-800px-1-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14504;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:35:\"Featured-Image-800px-1-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19832;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:35:\"Featured-Image-800px-1-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14778;}s:8:\"tileview\";a:5:{s:4:\"file\";s:35:\"Featured-Image-800px-1-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17430;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24476,1855,'_wp_attachment_image_alt','Red Wine Health Benefits - Meadowcroft Wines'),(24477,1856,'_wp_attached_file','2023/03/Internal-Images-Meadowcroft-Wines.webp'),(24478,1856,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:46:\"2023/03/Internal-Images-Meadowcroft-Wines.webp\";s:8:\"filesize\";i:126538;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"Internal-Images-Meadowcroft-Wines-300x169.webp\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8130;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"Internal-Images-Meadowcroft-Wines-1024x576.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:40354;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"Internal-Images-Meadowcroft-Wines-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4672;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"Internal-Images-Meadowcroft-Wines-768x432.webp\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:26932;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:46:\"Internal-Images-Meadowcroft-Wines-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11680;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:46:\"Internal-Images-Meadowcroft-Wines-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17324;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:46:\"Internal-Images-Meadowcroft-Wines-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12922;}s:8:\"tileview\";a:5:{s:4:\"file\";s:46:\"Internal-Images-Meadowcroft-Wines-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13778;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:47:\"Internal-Images-Meadowcroft-Wines-1536x864.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:75840;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:48:\"Internal-Images-Meadowcroft-Wines-2048x1152.webp\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:113570;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"Internal-Images-Meadowcroft-Wines-1200x675.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:49694;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24479,1856,'_wp_attachment_image_alt','Health-Benefits-Red_Wine'),(24529,1857,'_wp_attached_file','2023/04/Resveratrol-1-scaled.webp'),(24530,1857,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1779;s:4:\"file\";s:33:\"2023/04/Resveratrol-1-scaled.webp\";s:8:\"filesize\";i:683998;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Resveratrol-1-300x208.webp\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:22812;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"Resveratrol-1-1024x712.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:180532;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Resveratrol-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9926;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"Resveratrol-1-768x534.webp\";s:5:\"width\";i:768;s:6:\"height\";i:534;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:112534;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:26:\"Resveratrol-1-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:31630;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:26:\"Resveratrol-1-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:49584;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:26:\"Resveratrol-1-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:35020;}s:8:\"tileview\";a:5:{s:4:\"file\";s:26:\"Resveratrol-1-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:37352;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"Resveratrol-1-1536x1067.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:331342;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:28:\"Resveratrol-1-2048x1423.webp\";s:5:\"width\";i:2048;s:6:\"height\";i:1423;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:504004;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:27:\"Resveratrol-1-1200x834.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:834;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:230914;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:18:\"Resveratrol-1.webp\";}'),(24531,1857,'_wp_attachment_image_alt','Resveratrol - Meadowcroft Wines'),(24534,1859,'inline_featured_image','0'),(24535,1859,'_edit_lock','1684325909:5'),(24536,1859,'_edit_last','5'),(24541,1862,'_wp_attached_file','2023/04/Sonoma-Valley-Meadowcroft-Wines.webp'),(24542,1862,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:600;s:4:\"file\";s:44:\"2023/04/Sonoma-Valley-Meadowcroft-Wines.webp\";s:8:\"filesize\";i:59278;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"Sonoma-Valley-Meadowcroft-Wines-300x240.webp\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16824;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"Sonoma-Valley-Meadowcroft-Wines-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7080;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:44:\"Sonoma-Valley-Meadowcroft-Wines-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19440;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:44:\"Sonoma-Valley-Meadowcroft-Wines-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:31258;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:44:\"Sonoma-Valley-Meadowcroft-Wines-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:22708;}s:8:\"tileview\";a:5:{s:4:\"file\";s:44:\"Sonoma-Valley-Meadowcroft-Wines-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:24952;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24543,1862,'_wp_attachment_image_alt','sonoma valley red wine - meadowcroft wines'),(24544,1863,'_wp_attached_file','2023/04/3.png'),(24545,1863,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:13:\"2023/04/3.png\";s:8:\"filesize\";i:5601108;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"3-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:111350;}s:5:\"large\";a:5:{s:4:\"file\";s:14:\"3-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1040490;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48803;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:13:\"3-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:619656;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:13:\"3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:175339;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:13:\"3-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:303771;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:13:\"3-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:209823;}s:8:\"tileview\";a:5:{s:4:\"file\";s:13:\"3-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:216627;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:14:\"3-1536x864.png\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2154307;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:15:\"3-2048x1152.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3524541;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:14:\"3-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1386161;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24546,1863,'_wp_attachment_image_alt','Red Wine Making - Sonoma Valley - Meadowcroft Wines'),(24547,1859,'hide_post_title','0'),(24548,1859,'_hide_post_title','field_5bbe18c8efa0ac'),(24549,1859,'custom_title',''),(24550,1859,'_custom_title','field_5bbe1b83pfa0c'),(24551,1859,'the_teaser','<span style=\"font-weight: 400;\">Red wine has been a deeply-rooted element of our culture for centuries, and its intricacies have sparked curiosity among many. With its bold flavors and captivating complexity, red wine is the ideal companion to social gatherings, special occasions and memorable meals.</span>'),(24552,1859,'_the_teaser','field_5c1d78f88e54c'),(24553,1859,'hero_image','1862'),(24554,1859,'_hero_image','field_5d138e7f31334'),(24555,1859,'enable_banner','0'),(24556,1859,'_enable_banner','field_5bbe19c8efa0acb'),(24557,1859,'banner_full_width','0'),(24558,1859,'_banner_full_width','field_5bbe19c8efa0ac'),(24559,1859,'banner_size','normal'),(24560,1859,'_banner_size','field_5bbe232929ec9c'),(24561,1859,'add_parallax_effect','0'),(24562,1859,'_add_parallax_effect','field_5bbe219ccb6a9'),(24563,1859,'add_veil_over_banner','0'),(24564,1859,'_add_veil_over_banner','field_5bbe333f39212'),(24565,1859,'banner_content_position','centered'),(24566,1859,'_banner_content_position','field_5bbe259b02b62'),(24567,1859,'banner_title',''),(24568,1859,'_banner_title','field_5bbe1b78efa0b'),(24569,1859,'banner_subtitle',''),(24570,1859,'_banner_subtitle','field_5bbe1b83efa0c'),(24571,1859,'banner_button_link',''),(24572,1859,'_banner_button_link','field_5bbe1b8cefa0d'),(24573,1859,'banner_button_new_tab','0'),(24574,1859,'_banner_button_new_tab','field_5bbe1e6d18fae'),(24575,1859,'show_down_arrow','0'),(24576,1859,'_show_down_arrow','field_5bbe24f721165'),(24577,1859,'banner_image',''),(24578,1859,'_banner_image','field_5bbe201718fafa'),(24579,1859,'banner_image_position','center center'),(24580,1859,'_banner_image_position','field_5bbe278f9fb97'),(24581,1859,'banner_image_mobile',''),(24582,1859,'_banner_image_mobile','field_5bbe202818fb0b'),(24583,1859,'banner_image_mobile_position','center center'),(24584,1859,'_banner_image_mobile_position','field_5bbe279c9fb98'),(24585,1859,'content_block',''),(24586,1859,'_content_block','field_5bbe19a7efa09'),(24587,1859,'_yoast_wpseo_primary_category',''),(24588,1859,'_yoast_wpseo_content_score','60'),(24589,1859,'_yoast_wpseo_estimated-reading-time-minutes','6'),(24590,1859,'_yoast_wpseo_wordproof_timestamp',''),(24591,1864,'_wp_attached_file','2023/04/4.png'),(24592,1864,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:13:\"2023/04/4.png\";s:8:\"filesize\";i:5724501;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"4-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:117178;}s:5:\"large\";a:5:{s:4:\"file\";s:14:\"4-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1088197;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54572;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:13:\"4-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:652691;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:13:\"4-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:198075;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:13:\"4-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:325823;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:13:\"4-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:223769;}s:8:\"tileview\";a:5:{s:4:\"file\";s:13:\"4-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:258579;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:14:\"4-1536x864.png\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2213230;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:15:\"4-2048x1152.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3600287;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:14:\"4-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1440441;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24593,1864,'_wp_attachment_image_alt','red wines grapes'),(24594,1865,'_wp_attached_file','2023/04/5.png'),(24595,1865,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:13:\"2023/04/5.png\";s:8:\"filesize\";i:3414480;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"5-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85798;}s:5:\"large\";a:5:{s:4:\"file\";s:14:\"5-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:664564;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41184;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:13:\"5-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:412058;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:13:\"5-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133570;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:13:\"5-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:214248;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:13:\"5-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:152016;}s:8:\"tileview\";a:5:{s:4:\"file\";s:13:\"5-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:169407;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:14:\"5-1536x864.png\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1312315;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:15:\"5-2048x1152.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2091709;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:14:\"5-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:867325;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24596,1865,'_wp_attachment_image_alt','Future of wines'),(24597,1866,'_wp_attached_file','2023/04/Sonoma-Valley-Meadowcroft-Wines-2.webp'),(24598,1866,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:46:\"2023/04/Sonoma-Valley-Meadowcroft-Wines-2.webp\";s:8:\"filesize\";i:83154;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"Sonoma-Valley-Meadowcroft-Wines-2-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19862;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"Sonoma-Valley-Meadowcroft-Wines-2-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7086;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"Sonoma-Valley-Meadowcroft-Wines-2-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:93576;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:46:\"Sonoma-Valley-Meadowcroft-Wines-2-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19862;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:46:\"Sonoma-Valley-Meadowcroft-Wines-2-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:32642;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:46:\"Sonoma-Valley-Meadowcroft-Wines-2-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:23486;}s:8:\"tileview\";a:5:{s:4:\"file\";s:46:\"Sonoma-Valley-Meadowcroft-Wines-2-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:24498;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24599,1866,'_wp_attachment_image_alt','Sonoma Valley - Meadowcroft Wines'),(24600,1859,'_thumbnail_id','1866'),(24601,1859,'_yoast_wpseo_focuskw','Making Red Wine'),(24602,1859,'_yoast_wpseo_title','An Exploration of the History and Tradition of Making Red Wine'),(24603,1859,'_yoast_wpseo_metadesc','Discover the captivating history and tradition behind the art of red wine making. Unveil the secrets of the finest grapes, fermenting techniques, & more in this in-depth exploration.'),(24604,1859,'_yoast_wpseo_linkdex','65'),(24609,1869,'content_block_0_layout_title',''),(24610,1869,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(24611,1869,'content_block_0_text_block_columns','one'),(24612,1869,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(24613,1869,'content_block_0_narrow_text_block_content','0'),(24614,1869,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(24615,1869,'content_block_0_reverse_colors','0'),(24616,1869,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(24617,1869,'content_block_0_enable_background_image','0'),(24618,1869,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(24619,1869,'content_block_0_custom_css_class',''),(24620,1869,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(24621,1869,'content_block_0_text_block_content_col_one','[c7_content]'),(24622,1869,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(24623,1869,'content_block','a:1:{i:0;s:10:\"text_block\";}'),(24624,1869,'_content_block','field_5bbe19a7efa09'),(24625,567,'_yoast_wpseo_focuskw','CABERNET SAUVIGNON'),(24626,567,'_yoast_wpseo_title','2019 CABERNET SAUVIGNON, OAKVILLE | MEADOWCROFT WINES'),(24627,567,'_yoast_wpseo_metadesc','Looking for a delicious and well-priced Cabernet Sauvignon? Check out our 2019 vintage, Oakville edition. This wine is perfect for any occasion, so order a bottle today'),(24628,567,'_yoast_wpseo_linkdex','30'),(24629,567,'_yoast_wpseo_wordproof_timestamp',''),(24631,1565,'_yoast_wpseo_title','The Ultimate Guide to Food and Wine Pairing: Elevate Your Palate'),(24872,1574,'_yoast_wpseo_content_score','60'),(24888,1885,'inline_featured_image','0'),(24889,1886,'inline_featured_image','0'),(24890,1887,'inline_featured_image','0'),(24891,1888,'inline_featured_image','0'),(24892,1889,'inline_featured_image','0'),(24893,1890,'inline_featured_image','0'),(24894,1891,'inline_featured_image','0'),(24895,1892,'inline_featured_image','0'),(35765,1889,'_edit_lock','1683054716:2'),(37683,2628,'web_id','08fcb5db-d134-44f5-b8f1-9670a7d50c00'),(37684,2628,'slug','5-00-glass-deposit'),(37685,2628,'title','$5.00 Glass Deposit'),(37686,2628,'type','Wine'),(37687,2628,'image',NULL),(37688,2628,'teaser',''),(37689,2628,'content',''),(37690,2628,'subtitle',''),(37691,2628,'price','500'),(37692,2628,'web_status','Not Available'),(37693,2628,'admin_status','Not Available'),(37694,2628,'varietal',NULL),(37695,2628,'appellation',NULL),(37696,2628,'vintage',NULL),(37697,2628,'rating',''),(37698,2628,'wine_vertical',''),(37699,2628,'wine_score',''),(37700,2629,'web_id','6444cad5-9a5f-4eb8-94b4-0d0c174f7dd1'),(37701,2629,'slug','2005-cabernet-sauvignon-mt-veeder-estate'),(37702,2629,'title','2005 Cabernet Sauvignon, Mt. Veeder Estate'),(37703,2629,'type','Wine'),(37704,2629,'image',NULL),(37705,2629,'teaser','LIBRARY RELEASE'),(37706,2629,'content',NULL),(37707,2629,'subtitle','Napa Valley'),(37708,2629,'price','34500'),(37709,2629,'web_status','Retired'),(37710,2629,'admin_status','Available'),(37711,2629,'varietal','Cabernet Sauvignon'),(37712,2629,'appellation','Mt. Veeder'),(37713,2629,'vintage','2005'),(37714,2629,'rating',''),(37715,2629,'wine_vertical',''),(37716,2629,'wine_score',''),(37717,2630,'web_id','95acd968-3503-4d29-8213-3b081d4cc641'),(37718,2630,'slug','2006-mt-veeder-cabernet-sauvignon'),(37719,2630,'title','2006 Cabernet Sauvignon, Mt. Veeder Estate'),(37720,2630,'type','Wine'),(37721,2630,'image',NULL),(37722,2630,'teaser','LIBRARY RELEASE'),(37723,2630,'content',NULL),(37724,2630,'subtitle',NULL),(37725,2630,'price','9500'),(37726,2630,'web_status','Retired'),(37727,2630,'admin_status','Available'),(37728,2630,'varietal','Cabernet Sauvignon'),(37729,2630,'appellation','Mt. Veeder'),(37730,2630,'vintage','2006'),(37731,2630,'rating',''),(37732,2630,'wine_vertical',''),(37733,2630,'wine_score',''),(37734,2631,'web_id','8bb14836-44b1-47b8-8e9f-2426d8e3b0e9'),(37735,2631,'slug','2007-cabernet-sauvignon-mt-veeder-estate'),(37736,2631,'title','2007 Cabernet Sauvignon, Mt. Veeder Estate'),(37737,2631,'type','Wine'),(37738,2631,'image',NULL),(37739,2631,'teaser','LIBRARY RELEASE'),(37740,2631,'content',''),(37741,2631,'subtitle','Napa Valley'),(37742,2631,'price','31100'),(37743,2631,'web_status','Not Available'),(37744,2631,'admin_status','Available'),(37745,2631,'varietal','Cabernet Sauvignon'),(37746,2631,'appellation','Mt. Veeder'),(37747,2631,'vintage','2007'),(37748,2631,'rating',''),(37749,2631,'wine_vertical',''),(37750,2631,'wine_score',''),(37751,2632,'web_id','693b5edd-4752-4d8e-8a69-f40f2e0436c4'),(37752,2632,'slug','2007-1-5-liter-meadowcroft-mt-veeder-cabernet'),(37753,2632,'title','2007 Cabernet Sauvignon, Mt. Veeder Estate 1.5L'),(37754,2632,'type','Wine'),(37755,2632,'image','https://images.commerce7.com/meadowcroft-wines/images/original/screen-shot-2022-09-25-at-11-57-12-am-1664132259593.png'),(37756,2632,'teaser',''),(37757,2632,'content','2007 1.5 Liter Meadowcroft Mt Veeder Cabernet'),(37758,2632,'subtitle',''),(37759,2632,'price','62200'),(37760,2632,'web_status','Retired'),(37761,2632,'admin_status','Not Available'),(37762,2632,'varietal','Cabernet Sauvignon'),(37763,2632,'appellation','Mt. Veeder'),(37764,2632,'vintage','2007'),(37765,2632,'rating',''),(37766,2632,'wine_vertical',''),(37767,2632,'wine_score',''),(37768,2633,'web_id','08a2717f-6b83-46f7-8329-8f65d0b66b9a'),(37769,2633,'slug','2008-mt-veeder-cabernet-sauvignon'),(37770,2633,'title','2008 Cabernet Sauvignon, Mt. Veeder Estate'),(37771,2633,'type','Wine'),(37772,2633,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_12-1660261096343.jpeg'),(37773,2633,'teaser','LIBRARY RELEASE'),(37774,2633,'content','<div><span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">Tasting Note: &nbsp;This bold yet balanced Cabernet delights the nose and the palate with aromatics and flavors of blackberry, black cherry, and black currant. &nbsp;A hint of the mountain forest also combines with both the aromatics and the flavors.</span></div>\n<div>&nbsp;</div>\n<div>\n<div>Food Pairing: &nbsp;This vintage pairs exceptionally well with grilled meats such as steaks and chops as well as anything chocolate.</div>\n</div>'),(37775,2633,'subtitle',''),(37776,2633,'price','28300'),(37777,2633,'web_status','Not Available'),(37778,2633,'admin_status','Available'),(37779,2633,'varietal','Cabernet Sauvignon'),(37780,2633,'appellation','Mt. Veeder'),(37781,2633,'vintage','2008'),(37782,2633,'meta_data_feature-text','<div>Library Release</div>Mt. Veeder, Napa Valley'),(37783,2633,'meta_data_technical-notes','<div>Appellation: &nbsp;Mt. Veeder, Napa</div><div>Varietal: &nbsp;Cabernet Sauvignon</div><div>Harvest Date: &nbsp;October 2008</div><div>Bottle Date: &nbsp;March 2011</div><div>Production: &nbsp;200 cases</div><div>Alcohol: &nbsp;14.4%</div>'),(37784,2633,'rating',''),(37785,2633,'wine_vertical',''),(37786,2633,'wine_score',''),(37787,2634,'web_id','ca9a9311-1873-4c49-b295-a4412a3178c3'),(37788,2634,'slug','2009-mount-veeder-cabernet-3l'),(37789,2634,'title','2009 Cabernet Sauvignon,  Mt. Veeder Estate 3L'),(37790,2634,'type','Wine'),(37791,2634,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_830-1660261149018.png'),(37792,2634,'teaser','LIBRARY RELEASE  |  LARGE FORMAT'),(37793,2634,'content','<div>TASTING NOTES: &nbsp;Rich dark fruit such as black currant, blackberry and ripe plum delights the nose and palate. &nbsp;Silky smooth, with a long finish of moderate tannins, coupled with just a hint of chocolate. &nbsp;A touch of mountain forest also combines with both the aromatics and the flavors.&nbsp;</div>\n<div><br />\n<div>FOOD PAIRING: &nbsp;Like most Napa Valley Cabernets, this wine pairs exceptionally well with grilled steaks and chop as well as anything chocolate.</div>\n</div>\n<div>&nbsp;</div>\n<div>3L bottle is equivalent to four standard 750ml bottles.</div>'),(37794,2634,'subtitle',''),(37795,2634,'price','100000'),(37796,2634,'web_status','Not Available'),(37797,2634,'admin_status','Not Available'),(37798,2634,'varietal','Cabernet Sauvignon'),(37799,2634,'appellation','Mt. Veeder'),(37800,2634,'vintage','2009'),(37801,2634,'meta_data_review-text','<div><span style=\"font-weight: bold;\"\">AWARDS AND REVIEWS</span></div>94 pts | &nbsp;Wine Enthusiast &nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2005 Mt Veeder Cabernet Sauvignon</span><div>91 pts | &nbsp;Wine Enthusiast &nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2008 Mt Veeder Cabernet Sauvignon</span></div>\"'),(37802,2634,'meta_data_feature-text','Mt. Veeder, Napa Valley'),(37803,2634,'meta_data_wine-notes','$500.00'),(37804,2634,'meta_data_technical-notes','Appellation: &nbsp;Mt. Veeder, Napa<br>Varietal: &nbsp;Cabernet Sauvignon<br>Harvested: &nbsp;September 28, 2009<br>Barrel Aged: &nbsp;36 months<br>Bottle Date: &nbsp;November 6, 2012<br>Production: 160 cases<br>'),(37805,2634,'rating',''),(37806,2634,'wine_vertical',''),(37807,2634,'wine_score',''),(37808,2635,'web_id','eb4f2cbe-8ecc-4c6e-9bb2-0438db8c4d60'),(37809,2635,'slug','2009-mt-veeder-cabernet-sauvignon'),(37810,2635,'title','2009 Cabernet Sauvignon, Mt. Veeder Estate'),(37811,2635,'type','Wine'),(37812,2635,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_526-1660261140964.png'),(37813,2635,'teaser','LIBRARY RELEASE'),(37814,2635,'content','<div>TASTING NOTES:&nbsp;&nbsp;Rich dark fruit such as black currant, blackberry and ripe plum delights the nose and the palate. Silky&nbsp;smooth with&nbsp;a long&nbsp;finish of&nbsp;moderate tannins coupled with&nbsp;just a hint of chocolate.&nbsp; A touch of the mountain forest also&nbsp;combines with both the aromatics and the flavors.</div>\n<div><br />\n<div>FOOD PAIRING: &nbsp;This wine pairs exceptionally well with grilled steaks and chops as well as anything with chocolate.</div>\n</div>'),(37815,2635,'subtitle',''),(37816,2635,'price','25000'),(37817,2635,'web_status','Not Available'),(37818,2635,'admin_status','Available'),(37819,2635,'varietal','Cabernet Sauvignon'),(37820,2635,'appellation','Mt. Veeder'),(37821,2635,'vintage','2009'),(37822,2635,'meta_data_review-text','<div><span style=\"font-weight: bold;\"\">AWARDS AND REVIEWS</span></div>94 pts | &nbsp;Wine Enthusiast &nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2005 Mt Veeder Cabernet Sauvignon</span><div>91 pts | &nbsp;Wine Enthusiast &nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2008 Mt Veeder Cabernet Sauvignon<br></span>91 pts | &nbsp;James Suckling &nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2013 Mt Veeder Cabernet Sauvignon</span></div>\"'),(37823,2635,'meta_data_feature-text','Mt. Veeder, Napa Valley'),(37824,2635,'meta_data_wine-notes','$125.00'),(37825,2635,'meta_data_technical-notes','Appellation: &nbsp;Mt. Veeder, Napa<br>Varietal: &nbsp;Cabernet Sauvignon<br>Harvested: &nbsp;September&nbsp;28, 2009<br>Barrel Aged: &nbsp;36 months<br>Bottle Date: &nbsp;November 2012<br>Production: 160 cases<br>'),(37826,2635,'rating',''),(37827,2635,'wine_vertical',''),(37828,2635,'wine_score',''),(37829,2636,'web_id','828a5c2f-1aca-4231-b95e-ce1243a84c12'),(37830,2636,'slug','2009-1-5-liter-meadowcroft-mt-veeder-cabernet'),(37831,2636,'title','2009 Cabernet Sauvignon, Mt. Veeder Estate 1.5L'),(37832,2636,'type','Wine'),(37833,2636,'image',NULL),(37834,2636,'teaser','LIBRARY RELEASE   |  LARGE FORMAT'),(37835,2636,'content','<div>TASTING NOTES: &nbsp;Rich dark fruit such as black currant, blackberry and ripe plum delights the nose and palate. &nbsp;Silky smooth, with a long finish of moderate tannins, coupled with just a hint of chocolate. &nbsp;A touch of mountain forest also combines with both the aromatics and the flavors.&nbsp;</div>\n<div><br />\n<div>FOOD PAIRING: &nbsp;Like most Napa Valley Cabernets, this wine pairs exceptionally well with grilled steaks and chop as well as anything chocolate.</div>\n</div>'),(37836,2636,'subtitle',''),(37837,2636,'price','50000'),(37838,2636,'web_status','Not Available'),(37839,2636,'admin_status','Available'),(37840,2636,'varietal','Cabernet Sauvignon'),(37841,2636,'appellation','Mt. Veeder'),(37842,2636,'vintage','2009'),(37843,2636,'rating',''),(37844,2636,'wine_vertical',''),(37845,2636,'wine_score',''),(37846,2637,'web_id','f34914a7-2477-4c9c-8e5f-f51f265f737d'),(37847,2637,'slug','2009-cabernet-sauvignon-mt-veeder-estate-375ml'),(37848,2637,'title','2009 Cabernet Sauvignon, Mt. Veeder Estate 375ml'),(37849,2637,'type','Wine'),(37850,2637,'image',NULL),(37851,2637,'teaser','LIBRARY RELEASE'),(37852,2637,'content',''),(37853,2637,'subtitle','Napa Valley'),(37854,2637,'price','12500'),(37855,2637,'web_status','Not Available'),(37856,2637,'admin_status','Available'),(37857,2637,'varietal','Cabernet Sauvignon'),(37858,2637,'appellation','Mt. Veeder'),(37859,2637,'vintage','2009'),(37860,2637,'rating',''),(37861,2637,'wine_vertical',''),(37862,2637,'wine_score',''),(37863,2638,'web_id','c123575c-5aa5-4005-ac9b-4af5fafcb0aa'),(37864,2638,'slug','2009-meadowcroft-sonoma-valley-sangiovese'),(37865,2638,'title','2009 Sangiovese, Sonoma Valley'),(37866,2638,'type','Wine'),(37867,2638,'image',NULL),(37868,2638,'teaser',''),(37869,2638,'content',''),(37870,2638,'subtitle',''),(37871,2638,'price','12900'),(37872,2638,'web_status','Not Available'),(37873,2638,'admin_status','Not Available'),(37874,2638,'varietal','Sangiovese'),(37875,2638,'appellation','Sonoma Valley'),(37876,2638,'vintage','2009'),(37877,2638,'rating',''),(37878,2638,'wine_vertical',''),(37879,2638,'wine_score',''),(37880,2639,'web_id','e705a3c4-f8f4-40a8-a7bd-37a35b254f90'),(37881,2639,'slug','2010-cabernet-sauvignon-oak-knoll-reserve'),(37882,2639,'title','2010 Cabernet Sauvignon, Oak Knoll Reserve'),(37883,2639,'type','Wine'),(37884,2639,'image',NULL),(37885,2639,'teaser',NULL),(37886,2639,'content',NULL),(37887,2639,'subtitle','Napa Valley'),(37888,2639,'price','7500'),(37889,2639,'web_status','Not Available'),(37890,2639,'admin_status','Available'),(37891,2639,'varietal','Cabernet Sauvignon'),(37892,2639,'appellation','Oak Knoll District of Napa Valley'),(37893,2639,'vintage','2010'),(37894,2639,'rating',''),(37895,2639,'wine_vertical',''),(37896,2639,'wine_score',''),(37897,2640,'web_id','7d151de7-8ee4-4159-ade1-e48c02ca27d0'),(37898,2640,'slug','2010-sangiovese-sonoma-valley'),(37899,2640,'title','2010 Sangiovese, Sonoma Valley'),(37900,2640,'type','Wine'),(37901,2640,'image','https://images.commerce7.com/meadowcroft-wines/images/original/2010_mc_sangiovese-lg-1663717263780.jpg'),(37902,2640,'teaser',''),(37903,2640,'content',''),(37904,2640,'subtitle','Sonoma County'),(37905,2640,'price','12900'),(37906,2640,'web_status','Not Available'),(37907,2640,'admin_status','Available'),(37908,2640,'varietal','Sangiovese'),(37909,2640,'appellation','Sonoma County'),(37910,2640,'vintage','2010'),(37911,2640,'rating',''),(37912,2640,'wine_vertical',''),(37913,2640,'wine_score',''),(37914,2641,'web_id','16b37628-498d-49bd-b07a-3b8bc6905912'),(37915,2641,'slug','2011-cabernet-sauvignon-mt-veeder-estate'),(37916,2641,'title','2011 Cabernet Sauvignon, Mt. Veeder Estate'),(37917,2641,'type','Wine'),(37918,2641,'image','https://images.commerce7.com/meadowcroft-wines/images/original/mc2011_cs_mv_bottleshot-1663717362436.jpg'),(37919,2641,'teaser','The 2011 vintage was a complex and cool growing year. The cooler growing days and cool evenings contribute markedly to the beautifully ripe fruit flavors of blackberry and blueberry with smooth, integrated tannins. The wine spent 38 months in French and Hungarian oak barrels.'),(37920,2641,'content','<div>TASTING NOTES: &nbsp;Dark ripe fruit flavors of blackberry, and blueberry with bold, yet integrated tannins. A hint of the mountain forest and toasted rich oak also combine these aromatics and flavors to create this massively rich Cabernet wine.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING: &nbsp;Try the Mt Veeder Cabernet Sauvignon with a medium-rare porterhouse steak pan seared in duck fat for a symphony of incredible flavor.</div>'),(37921,2641,'subtitle','LIBRARY RELEASE'),(37922,2641,'price','21300'),(37923,2641,'web_status','Not Available'),(37924,2641,'admin_status','Available'),(37925,2641,'varietal','Cabernet Sauvignon'),(37926,2641,'appellation','Mt. Veeder'),(37927,2641,'vintage','2011'),(37928,2641,'rating',''),(37929,2641,'wine_vertical',''),(37930,2641,'wine_score',''),(37931,2642,'web_id','8926bc58-1092-478f-95a4-6ddb72f366bc'),(37932,2642,'slug','2012-cabernet-sauvignon-mt-veeder-estate-15l'),(37933,2642,'title','2012 Cabernet Sauvignon, Mt. Veeder 1.5 liter'),(37934,2642,'type','Wine'),(37935,2642,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_868-1657832657710.png'),(37936,2642,'teaser','LIBRARY RELEASE | LARGE FORMAT'),(37937,2642,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>TASTING NOTES: Beautiful ripe black fruit flavors with boldly integrated tannins and a hint of smoky cedar. The wine spent 38 months in Hungarian and French oak barrels to create this masterfully composed Napa Valley Cabernet.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING: One classic deserves another, pair our Estate Cabernet with a medium-rare Porterhouse Steak pan sauteed with duck fat for a symphony of incredible flavor.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">Appellation: &nbsp;Mt. Veeder, Napa<br />Varietal: &nbsp;Cabernet Sauvignon<br />Harvested: &nbsp;September 2012<br />Barrel Aged: &nbsp;38 months<br />Bottle Date: &nbsp;November 2015<br />Production: 24 bottles</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"review_notes\">\n<h3>AWARDS AND REVIEWS</h3>\n<div class=\"ecp-html-content\">\n<div>AWARDS AND REVIEWS</div>\n94 pts | &nbsp;Wine Enthusiast &nbsp;| &nbsp;2005 Mt Veeder Cabernet Sauvignon\n<div>91 pts | &nbsp;Wine Enthusiast &nbsp;| &nbsp;2008 Mt Veeder Cabernet Sauvignon</div>\n<div>&nbsp;</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://client-assets.ecellar1.com/meadowcroftwines/prod_pdf_868.pdf\" target=\"_blank\" rel=\"noopener\">Download Complete Wine Tasting Notes</a></div>'),(37938,2642,'subtitle','Napa Valley'),(37939,2642,'price','38600'),(37940,2642,'web_status','Available'),(37941,2642,'admin_status','Available'),(37942,2642,'varietal','Cabernet Sauvignon'),(37943,2642,'appellation','Mt. Veeder'),(37944,2642,'vintage','2012'),(37945,2642,'rating',''),(37946,2642,'wine_vertical',''),(37947,2642,'wine_score',''),(37948,2643,'web_id','6767b6b9-1f77-4c1b-82f0-0a36853b132c'),(37949,2643,'slug','2012-mt-veeder-cabernet-sauvignon'),(37950,2643,'title','2012 Cabernet Sauvignon, Mt. Veeder Estate'),(37951,2643,'type','Wine'),(37952,2643,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_744-1660261145881.png'),(37953,2643,'teaser','LIBRARY RELEASE'),(37954,2643,'content','<div><span style=\"font-weight: bold;\">TASTING NOTES: &nbsp;</span>Beautiful ripe black fruit flavors with boldly integrated tannins and a hint of smoky cedar. &nbsp;The wine spent 38 months in Hungarian and French oak barrels to create this masterfully composed Napa Valley Cabernet.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING: &nbsp;One classic deserves another, pair our Estate Cabernet with a medium-rare Porterhouse Steak pan sauteed with duck fat for a symphony of incredible flavor.</div>'),(37955,2643,'subtitle',NULL),(37956,2643,'price','19300'),(37957,2643,'web_status','Not Available'),(37958,2643,'admin_status','Available'),(37959,2643,'varietal','Cabernet Sauvignon'),(37960,2643,'appellation','Mt. Veeder'),(37961,2643,'vintage','2012'),(37962,2643,'meta_data_review-text','<div><span style=\"font-weight: bold;\"\">AWARDS AND REVIEWS</span></div>94 pts | &nbsp;Wine Enthusiast &nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2005 Mt Veeder Cabernet Sauvignon</span><div>91 pts | &nbsp;Wine Enthusiast &nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2008 Mt Veeder Cabernet Sauvignon</span></div>\"'),(37963,2643,'meta_data_feature-text','Napa Valley'),(37964,2643,'meta_data_wine-notes','$84.00'),(37965,2643,'meta_data_technical-notes','Appellation: &nbsp;Mt. Veeder, Napa<br>Varietal: &nbsp;Cabernet Sauvignon<br>Harvested: &nbsp;September 2012<br>Barrel Aged: &nbsp;38 months<br>Bottle Date: &nbsp;November 2015<br>Production: 103 cases'),(37966,2643,'rating',''),(37967,2643,'wine_vertical',''),(37968,2643,'wine_score',''),(37969,2644,'web_id','4e7055cf-7c54-4873-9359-9109a1f47605'),(37970,2644,'slug','2012-mt--vedeer-3l'),(37971,2644,'title','2012 Cabernet Sauvignon, Mt. Veeder Estate 3L'),(37972,2644,'type','Wine'),(37973,2644,'image','https://images.commerce7.com/meadowcroft-wines/images/original/mc2012_cs_mv_bottleshot-1664132609759.png'),(37974,2644,'teaser','LIBRARY RELEASE | LARGE FORMAT'),(37975,2644,'content',''),(37976,2644,'subtitle',''),(37977,2644,'price','50000'),(37978,2644,'web_status','Not Available'),(37979,2644,'admin_status','Available'),(37980,2644,'varietal','Cabernet Sauvignon'),(37981,2644,'appellation','Mt. Veeder'),(37982,2644,'vintage','2012'),(37983,2644,'rating',''),(37984,2644,'wine_vertical',''),(37985,2644,'wine_score',''),(37986,2645,'web_id','238520b8-e420-48ff-b4e7-7e1a55fc80cc'),(37987,2645,'slug','2012-cabernet-sauvignon-napa-valley-college'),(37988,2645,'title','2012 Cabernet Sauvignon, Napa Valley College'),(37989,2645,'type','Wine'),(37990,2645,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_cabsauv_napacol_12-1663717498296.png'),(37991,2645,'teaser','A classic Napa Valley style cabernet sauvignon with delicate intensity showing black pepper, red currant, and bright black cherry.'),(37992,2645,'content','<p>TASTING NOTES: &nbsp;Our 2012 Napa Cabernet Sauvignon has a delicate intensity with black pepper, red currant, bright black cherry, and a whisper of violet on the nose. &nbsp;The smooth velvety tannins and balanced acid lend themselves to becoming a Meadowcroft classic! &nbsp;Drink now through 2025.&nbsp;</p>'),(37993,2645,'subtitle','Napa Valley'),(37994,2645,'price','16000'),(37995,2645,'web_status','Not Available'),(37996,2645,'admin_status','Available'),(37997,2645,'varietal','Cabernet Sauvignon'),(37998,2645,'appellation','Napa Valley'),(37999,2645,'vintage','2012'),(38000,2645,'rating',''),(38001,2645,'wine_vertical',''),(38002,2645,'wine_score',''),(38003,2646,'web_id','c82a662f-7112-4ac3-a0fa-39c4c4005a4d'),(38004,2646,'slug','2012-cabernet-sauvignon-sonoma-county-'),(38005,2646,'title','2012 Cabernet Sauvignon, Sonoma County'),(38006,2646,'type','Wine'),(38007,2646,'image','https://images.commerce7.com/meadowcroft-wines/images/original/2012_mc_cabernet-lg-1663717576059.png'),(38008,2646,'teaser',NULL),(38009,2646,'content',NULL),(38010,2646,'subtitle',NULL),(38011,2646,'price','7500'),(38012,2646,'web_status','Not Available'),(38013,2646,'admin_status','Available'),(38014,2646,'varietal','Cabernet Sauvignon'),(38015,2646,'appellation','Sonoma County'),(38016,2646,'vintage','2012'),(38017,2646,'rating',''),(38018,2646,'wine_vertical',''),(38019,2646,'wine_score',''),(38020,2647,'web_id','f13ed1c0-511c-44ba-926d-d1eabf0f8e10'),(38021,2647,'slug','2013-cabernet-franc-giles-vineyard'),(38022,2647,'title','2013 Cabernet Franc, Giles Vineyard'),(38023,2647,'type','Wine'),(38024,2647,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_cabfranc_giles_13_bottleshot-1663717640010.png'),(38025,2647,'teaser',''),(38026,2647,'content','<p>2013 Meadowcroft Giles Vineyard Cabernet Franc</p>'),(38027,2647,'subtitle','Sonoma County'),(38028,2647,'price','7500'),(38029,2647,'web_status','Not Available'),(38030,2647,'admin_status','Available'),(38031,2647,'varietal','Cabernet Franc'),(38032,2647,'appellation','Sonoma County'),(38033,2647,'vintage','2013'),(38034,2647,'rating',''),(38035,2647,'wine_vertical',''),(38036,2647,'wine_score',''),(38037,2648,'web_id','79b3dc24-b4ae-42f2-be81-56c3c77eae59'),(38038,2648,'slug','2013-cabernet-sauvignon-mt-veeder-estate'),(38039,2648,'title','2013 Cabernet Sauvignon, Mt. Veeder Estate'),(38040,2648,'type','Wine'),(38041,2648,'image','https://images.commerce7.com/meadowcroft-wines/images/original/mc2013_cs_mv_bottleshot-1663717705728.png'),(38042,2648,'teaser','LIBRARY RELEASE'),(38043,2648,'content','<div>TASTING NOTES: &nbsp;The 2013 vintage was a complex and cool growing year. Warm days and cool evenings contributed markedly to the dark ripe fruit flavors of blackberry and crushed blueberries with bold, integrated tannins. &nbsp;A hint of mountain forest and toasty expressive oak.</div>\n<div><br />\n<div>FOOD PAIRING: &nbsp;One classic deserves another, pair our Estate Cabernet with a medium-rare mignon for a symphony of incredible flavor.<br />\n<div>&nbsp;</div>\n</div>\n</div>'),(38044,2648,'subtitle','Napa Valley'),(38045,2648,'price','9500'),(38046,2648,'web_status','Not Available'),(38047,2648,'admin_status','Available'),(38048,2648,'varietal','Cabernet Sauvignon'),(38049,2648,'appellation','Mt. Veeder'),(38050,2648,'vintage','2013'),(38051,2648,'rating',''),(38052,2648,'wine_vertical',''),(38053,2648,'wine_score',''),(38054,2649,'web_id','2978d910-b9b4-4f8d-8656-5ffe64ee54ee'),(38055,2649,'slug','2013-cabernet-sauvignon-mt-veeder-estate-1-5l-duplicate'),(38056,2649,'title','2013 Cabernet Sauvignon, Mt. Veeder Estate 1.5L'),(38057,2649,'type','Wine'),(38058,2649,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_868-1657832657710.png'),(38059,2649,'teaser','LIBRARY RELEASE | LARGE FORMAT'),(38060,2649,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>TASTING NOTES: Beautiful ripe black fruit flavors with boldly integrated tannins and a hint of smoky cedar. The wine spent 38 months in Hungarian and French oak barrels to create this masterfully composed Napa Valley Cabernet.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING: One classic deserves another, pair our Estate Cabernet with a medium-rare Porterhouse Steak pan sauteed with duck fat for a symphony of incredible flavor.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">Appellation: &nbsp;Mt. Veeder, Napa<br />Varietal: &nbsp;Cabernet Sauvignon<br />Harvested: &nbsp;September 2013<br />Barrel Aged: &nbsp;38 months<br />Bottle Date: &nbsp;November 2016<br />Production: 24 bottles</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"review_notes\">\n<h3>AWARDS AND REVIEWS</h3>\n<div class=\"ecp-html-content\">\n<div>AWARDS AND REVIEWS</div>\n94 pts | &nbsp;Wine Enthusiast &nbsp;| &nbsp;2005 Mt Veeder Cabernet Sauvignon\n<div>91 pts | &nbsp;Wine Enthusiast &nbsp;| &nbsp;2008 Mt Veeder Cabernet Sauvignon</div>\n<div>&nbsp;</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://client-assets.ecellar1.com/meadowcroftwines/prod_pdf_868.pdf\" target=\"_blank\" rel=\"noopener\">Download Complete Wine Tasting Notes</a></div>'),(38061,2649,'subtitle','Napa Valley'),(38062,2649,'price','38600'),(38063,2649,'web_status','Not Available'),(38064,2649,'admin_status','Available'),(38065,2649,'varietal','Cabernet Sauvignon'),(38066,2649,'appellation','Mt. Veeder'),(38067,2649,'vintage','2013'),(38068,2649,'rating',''),(38069,2649,'wine_vertical',''),(38070,2649,'wine_score',''),(38071,2650,'web_id','1ef07341-9154-4ade-b816-394ea712b815'),(38072,2650,'slug','2014-cabernet-sauvignon-mt-veeder-estate'),(38073,2650,'title','2014 Cabernet Sauvignon, Mt. Veeder Estate'),(38074,2650,'type','Wine'),(38075,2650,'image','https://images.commerce7.com/meadowcroft-wines/images/original/mc2014_cs_mv_bottleshot-1663717774390.png'),(38076,2650,'teaser','LIBRARY RELEASE'),(38077,2650,'content','<div>TASTING NOTES:&nbsp;&nbsp;Concentrated and structured, this opulent wine builds slowly.&nbsp; The flavors of blackberry and crushed blueberries turn juicy on the midpalate before exposing the complex length of integrated tannins with a hint of mountain forest.&nbsp; This wine will be best enjoyed now through 2025.&nbsp;&nbsp;</div>\n<div><br />\n<div>FOOD PAIRING: &nbsp;This wine is an excellent match for steak with Frites and the rich, complex lamb shank tagine.</div>\n</div>'),(38078,2650,'subtitle','Napa Valley'),(38079,2650,'price','16000'),(38080,2650,'web_status','Not Available'),(38081,2650,'admin_status','Available'),(38082,2650,'varietal','Cabernet Sauvignon'),(38083,2650,'appellation','Mt. Veeder'),(38084,2650,'vintage','2014'),(38085,2650,'rating',''),(38086,2650,'wine_vertical',''),(38087,2650,'wine_score',''),(38088,2651,'web_id','2d3d598f-8236-43cb-b01d-2c45e736db1b'),(38089,2651,'slug','2014-cabernet-sauvignon-napa-valley'),(38090,2651,'title','2014 Cabernet Sauvignon, Napa Valley'),(38091,2651,'type','Wine'),(38092,2651,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft-2014-napa-valley-cab-bottleshot-1663717841835.png'),(38093,2651,'teaser','For Napa Valley, the 2014 vintage was a dream vintage with quality along the lines of 2012 and 2013 vintages.  Cabernet Sauvignon experienced ideal weather conditions and showed excellent quality in the vineyards with superior concentration.'),(38094,2651,'content','<p>TASTING NOTES:&nbsp; Dark, ripe berries with a hint of toasted oak aromas lead into dark chocolate and cassis flavors that shine through the structured, mouth-filling tannins that are silky and plush.&nbsp; This is sure to improve with age; best now through 2025.&nbsp;&nbsp;<br /><br />FOOD PAIRING:&nbsp;&nbsp;This versatile, food-friendly cabernet sauvignon pairs well with traditional main courses such as steaks and braised short ribs.&nbsp; Try this cabernet sauvignon with your favorite comfort foods such as meatloaf, polenta with Bolognese, or beef pot pies.&nbsp;&nbsp;</p>'),(38095,2651,'subtitle',NULL),(38096,2651,'price','3500'),(38097,2651,'web_status','Not Available'),(38098,2651,'admin_status','Available'),(38099,2651,'varietal','Cabernet Sauvignon'),(38100,2651,'appellation','Napa Valley'),(38101,2651,'vintage','2014'),(38102,2651,'rating',''),(38103,2651,'wine_vertical',''),(38104,2651,'wine_score',''),(38105,2652,'web_id','fcd31af4-2c42-4421-b9a5-dda97a54469e'),(38106,2652,'slug','2014-cornerstone-vineyards-pinot-noir'),(38107,2652,'title','2014 Pinot Noir, Cornerstone Vineyards'),(38108,2652,'type','Wine'),(38109,2652,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_2014_pinonoir_bottleshot-1663717913697.jpg'),(38110,2652,'teaser',''),(38111,2652,'content',''),(38112,2652,'subtitle','Los Carneros, Sonoma County'),(38113,2652,'price','0'),(38114,2652,'web_status','Not Available'),(38115,2652,'admin_status','Not Available'),(38116,2652,'varietal',NULL),(38117,2652,'appellation',NULL),(38118,2652,'vintage',NULL),(38119,2652,'rating',''),(38120,2652,'wine_vertical',''),(38121,2652,'wine_score',''),(38122,2653,'web_id','dd8f69c4-8053-4b30-bbc7-616cd22a5181'),(38123,2653,'slug','2014-zinfandel-speedy-creek-vineyard'),(38124,2653,'title','2014 Zinfandel, Speedy Creek Vineyard'),(38125,2653,'type','Wine'),(38126,2653,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_zinfandel_2014_speedycreek-1663717986617.png'),(38127,2653,'teaser','Nestled in the mountains above Knights Valley, Speedy Creek Vineyard produces amazing zinfandel.  Warm sunny days and mild summer nights provide the ideal climate to allow the grapes to reach their maximum degree of ripeness.'),(38128,2653,'content','<p>TASTING NOTE: &nbsp;Dusty plum and cherry aromas lead into full-bodied, well-developed flavors of blackberry dotted in black-peppery meat and dusty tannins. &nbsp;It maintains a tread of acidity that allows it to stay bright.</p>\n<div>&nbsp;</div>\n<div>FOOD PAIRINGS: &nbsp;A dish with bold flavors will complement the 2014 Speedy Creek Vineyard Zinfandel. &nbsp;Try Bacon-Cured Skirt Steak with Chanterelles and Shallots with this rich, vibrant zinfandel. &nbsp;This wine also complements classic American fare such as burgers, pasta, and pizza.</div>'),(38129,2653,'subtitle','Knights Valley, Sonoma County'),(38130,2653,'price','3400'),(38131,2653,'web_status','Not Available'),(38132,2653,'admin_status','Not Available'),(38133,2653,'varietal','Zinfandel'),(38134,2653,'appellation','Knights Valley'),(38135,2653,'vintage','2014'),(38136,2653,'rating',''),(38137,2653,'wine_vertical',''),(38138,2653,'wine_score',''),(38139,2654,'web_id','2af6c01e-8c55-437e-9dde-391336546dab'),(38140,2654,'slug','2015-cabernet-sauvignon-mt-veeder-estate'),(38141,2654,'title','2015 Cabernet Sauvignon, Mt. Veeder Estate'),(38142,2654,'type','Wine'),(38143,2654,'image','https://images.commerce7.com/meadowcroft-wines/images/original/mc2015_cs_mv_bottleshot-1663718071745.png'),(38144,2654,'teaser','LIBRARY RELEASE'),(38145,2654,'content','<div>TASTING NOTES:&nbsp;&nbsp;Concentrated and structured, this opulent wine builds slowly.&nbsp; The flavors of blackberry and crushed blueberries turn juicy on the midpalate before exposing the complex length of integrated tannins with a hint of mountain forest.&nbsp; This wine will be best enjoyed now through 2025.&nbsp;&nbsp;</div>\n<div><br />\n<div>FOOD PAIRING: &nbsp;This wine is an excellent match for steak with frites and the rich, complex lamb shank tagine.</div>\n</div>'),(38146,2654,'subtitle','Napa Valley'),(38147,2654,'price','14500'),(38148,2654,'web_status','Not Available'),(38149,2654,'admin_status','Available'),(38150,2654,'varietal','Cabernet Sauvignon'),(38151,2654,'appellation','Mt. Veeder'),(38152,2654,'vintage','2015'),(38153,2654,'rating',''),(38154,2654,'wine_vertical',''),(38155,2654,'wine_score',''),(38156,2655,'web_id','e96239a2-8ade-4432-9bb7-0736a9697576'),(38157,2655,'slug','2015-louvau-vineyard-dry-creek-zinfandel'),(38158,2655,'title','2015 Zinfandel, Louvau Vineyard'),(38159,2655,'type','Wine'),(38160,2655,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_zin_2015_drycreek-1663718139534.png'),(38161,2655,'teaser',NULL),(38162,2655,'content',NULL),(38163,2655,'subtitle','Dry Creek, Sonoma County'),(38164,2655,'price','4500'),(38165,2655,'web_status','Not Available'),(38166,2655,'admin_status','Available'),(38167,2655,'varietal',NULL),(38168,2655,'appellation',NULL),(38169,2655,'vintage',NULL),(38170,2655,'rating',''),(38171,2655,'wine_vertical',''),(38172,2655,'wine_score',''),(38173,2656,'web_id','242b083c-d7ec-4534-a93b-f7088d20d3c3'),(38174,2656,'slug','2016-cabernet-franc-giles-vineyard'),(38175,2656,'title','2016 Cabernet Franc, Giles Vineyard'),(38176,2656,'type','Wine'),(38177,2656,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft-cab-franc-2016-1663719058739.png'),(38178,2656,'teaser','Meadowcroft’s third vintage of Cabernet Franc from the Giles Vineyard in Sonoma Valley is a sumptuous and decadent experience.'),(38179,2656,'content','<div>TASTING NOTE:&nbsp; Oak nuisances and generous tannin, this wine mixes red currant, boysenberry, and earthiness.&nbsp; Dry and full-bodied, it shows characteristics of ripeness and balances.&nbsp; Drink now or cellar until 2026.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING: &nbsp;A perfect date wine, pair with a brasserie style steak au poivre et frites and end with a dark chocolate pot-de-cr&egrave;me for a complete amorous experience.</div>'),(38180,2656,'subtitle','Sonoma Valley'),(38181,2656,'price','3000'),(38182,2656,'web_status','Not Available'),(38183,2656,'admin_status','Available'),(38184,2656,'varietal','Cabernet Franc'),(38185,2656,'appellation','Sonoma Valley'),(38186,2656,'vintage','2016'),(38187,2656,'rating',''),(38188,2656,'wine_vertical',''),(38189,2656,'wine_score',''),(38190,2657,'web_id','8d181bf6-a381-48f4-86cb-58c74873c978'),(38191,2657,'slug','2016-mendocino-cabernet-sauvignon'),(38192,2657,'title','2016 Cabernet Sauvignon, Mendocino County'),(38193,2657,'type','Wine'),(38194,2657,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_2016_cabsauv_mendo-1663719137556.png'),(38195,2657,'teaser',NULL),(38196,2657,'content',NULL),(38197,2657,'subtitle','Mendocino'),(38198,2657,'price','3000'),(38199,2657,'web_status','Not Available'),(38200,2657,'admin_status','Available'),(38201,2657,'varietal',NULL),(38202,2657,'appellation',NULL),(38203,2657,'vintage',NULL),(38204,2657,'rating',''),(38205,2657,'wine_vertical',''),(38206,2657,'wine_score',''),(38207,2658,'web_id','5e23a942-0a65-4c87-98e8-0cf95af6b0ef'),(38208,2658,'slug','2016-cabernet-sauvignon-mt-veeder-estate-15l'),(38209,2658,'title','2016 Cabernet Sauvignon, Mt. Veeder 1.5 liter'),(38210,2658,'type','Wine'),(38211,2658,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1194-1657832497958.png'),(38212,2658,'teaser','LIBRARY RELEASE | LARGE FORMAT'),(38213,2658,'content','<p><strong>TASTING NOTES:&nbsp;&nbsp;</strong>Densely rich and concentrated on the palate, this full-bodied wine is an intense tangle of dark chocolate and ripe boysenberry.&nbsp; Earthy, it flaunts graphite and toasted oak elements with a streak of fresh acidity on the finish.&nbsp; This wine will be best enjoyed now through 2029.</p>\n<p><strong>FOOD PAIRING: &nbsp;</strong>This wine is an excellent match for rosemary-pepper beef rib roast with porcini jus, pan-roasted veal chops with cabernet sauce, or a hanger steak with pommes frites.</p>\n<h3 style=\"font-weight: 600;\">TECHNICAL NOTES</h3>\n<p>Appellation:&nbsp; Mt. Veeder, Napa Valley</p>\n<p>Varietal:&nbsp; Cabernet Sauvignon</p>\n<p>Harvested:&nbsp; October 2016</p>\n<p>Barrel-Aged:&nbsp; 36 months</p>\n<p>Bottle Date:&nbsp; November 2018</p>\n<p>&nbsp;</p>\n<h3 style=\"font-weight: 600;\">AWARDS AND REVIEWS</h3>\n<p>98 pts GOLD |&nbsp;&nbsp;<a href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\">Sunset Wine Competition</a>&nbsp; |&nbsp; 2016 Mt Veeder Cabernet Sauvignon</p>\n<p>94 pts | &nbsp;<a href=\"https://www.winemag.com/\">Wine Enthusiast</a>&nbsp;&nbsp;| &nbsp;<em>2005 Mt Veeder Cabernet Sauvignon</em></p>\n<p>91 pts | &nbsp;<a href=\"https://www.winemag.com/\">Wine Enthusiast</a>&nbsp;&nbsp;| &nbsp;<em>2008 Mt Veeder Cabernet Sauvignon<br /></em>91 pts | &nbsp;<a href=\"https://www.jamessuckling.com/\">James Suckling</a>&nbsp;&nbsp;| &nbsp;<em>2013 Mt Veeder Cabernet Sauvignon</em><br />93 pts |&nbsp;&nbsp;<a href=\"https://www.sommeliercompany.com/\">Sommelier Company</a>&nbsp;|&nbsp;&nbsp;<em>2016 Mt Veeder Cabernet Sauvignon</em></p>\n<p style=\"font-weight: 400;\" data-ecp-handle=\"view_pdf\"><a href=\"https://client-assets.ecellar1.com/meadowcroftwines/prod_pdf_1194.pdf\">Download Complete Wine Tasting Notes</a></p>'),(38214,2658,'subtitle','Napa Valley'),(38215,2658,'price','26400'),(38216,2658,'web_status','Not Available'),(38217,2658,'admin_status','Available'),(38218,2658,'varietal','Cabernet Sauvignon'),(38219,2658,'appellation','Mt. Veeder'),(38220,2658,'vintage','2016'),(38221,2658,'rating',''),(38222,2658,'wine_vertical',''),(38223,2658,'wine_score',''),(38224,2659,'web_id','02cc33c0-3cd0-46b1-a039-a9fd7a8bbcd9'),(38225,2659,'slug','2016-mt-veeder-cabernet-sauvignon'),(38226,2659,'title','2016 Cabernet Sauvignon, Mt. Veeder Estate'),(38227,2659,'type','Wine'),(38228,2659,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1004-1660260681456.png'),(38229,2659,'teaser','SINGLE VINEYARD |  LIMITED PRODUCTION'),(38230,2659,'content','<p><span style=\"font-weight: bold;\">TASTING NOTES:&nbsp; </span>Densely rich and concentrated on the palate<span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">, this full-bodied wine is an intense tangle of dark chocolate and ripe boysenberry.&nbsp; Earthy, it flaunts graphite and toasted oak elements with a streak of fresh acidity on the finish.&nbsp; This wine will be best enjoyed now through 2029.</span></p>\n<div><br />\n<div>FOOD PAIRING: &nbsp;This wine is an excellent match for rosemary-pepper beef rib roast with porcini jus, pan-roasted veal chops with cabernet sauce, or a hanger steak with Pommes Frites.</div>\n</div>'),(38231,2659,'subtitle',''),(38232,2659,'price','13200'),(38233,2659,'web_status','Not Available'),(38234,2659,'admin_status','Available'),(38235,2659,'varietal','Cabernet Sauvignon'),(38236,2659,'appellation','Mt. Veeder'),(38237,2659,'vintage','2016'),(38238,2659,'meta_data_review-text','<div>98 pts GOLD |&nbsp; <a href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"_blank\"\">Sunset Wine Competition</a>&nbsp; |&nbsp; 2016 Mt Veeder Cabernet Sauvignon</div><div>94 pts | &nbsp;<a href=\"\"https://www.winemag.com/\"\" title=\"\"Wine Enthusiast\"\" target=\"\"_blank\"\">Wine Enthusiast</a> &nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2005 Mt Veeder Cabernet Sauvignon</span><br></div><div>91 pts | &nbsp;<a href=\"\"https://www.winemag.com/\"\" title=\"\"Wine Enthusiast\"\" target=\"\"_blank\"\">Wine Enthusiast</a> &nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2008 Mt Veeder Cabernet Sauvignon<br></span>91 pts | &nbsp;<a href=\"\"https://www.jamessuckling.com/\"\" title=\"\"James Suckling\"\" target=\"\"_blank\"\">James Suckling</a> &nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2013 Mt Veeder Cabernet Sauvignon</span><br>93 pts |&nbsp; <a href=\"\"https://www.sommeliercompany.com/\"\" title=\"\"Sommelier Company\"\" target=\"\"_blank\"\">Sommelier Company</a> |&nbsp; <span style=\"\"font-style: italic;\"\">2016 Mt Veeder Cabernet Sauvignon</span></div>\"'),(38239,2659,'meta_data_feature-text','Mt Veeder, Napa Valley'),(38240,2659,'meta_data_wine-notes','$105.60<br>'),(38241,2659,'meta_data_technical-notes','<div>Appellation:&nbsp; Mt. Veeder, Napa Valley<div>Varietal:&nbsp; Cabernet Sauvignon</div><div>Harvested:&nbsp; October 2016</div><div>Barrel-Aged:&nbsp; 36 months</div><div>Bottle Date:&nbsp; November 2018</div><div>Production:&nbsp; 200 cases</div></div>'),(38242,2659,'rating',''),(38243,2659,'wine_vertical',''),(38244,2659,'wine_score',''),(38245,2660,'web_id','7dee6fca-7969-429e-bb70-b31c25c1640c'),(38246,2660,'slug','2016-cabernet-sauvignon-napa-valley'),(38247,2660,'title','2016 Cabernet Sauvignon, Napa Valley'),(38248,2660,'type','Wine'),(38249,2660,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft-2016-napa-cab-bottle-shot-1663719215532.png'),(38250,2660,'teaser',''),(38251,2660,'content',''),(38252,2660,'subtitle',''),(38253,2660,'price','6500'),(38254,2660,'web_status','Not Available'),(38255,2660,'admin_status','Not Available'),(38256,2660,'varietal','Cabernet Sauvignon'),(38257,2660,'appellation','Napa Valley'),(38258,2660,'vintage','2016'),(38259,2660,'rating',''),(38260,2660,'wine_vertical',''),(38261,2660,'wine_score',''),(38262,2661,'web_id','baaa4ce1-1e41-43f2-b644-852de9b35493'),(38263,2661,'slug','2016-cabernet-sauvignon-napa-valley-375-ml'),(38264,2661,'title','2016 Cabernet Sauvignon, Napa Valley 375 ml'),(38265,2661,'type','Wine'),(38266,2661,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1085-1660261695377.png'),(38267,2661,'teaser','Full-Size Flavors, Half the Bottle Size, 375ml'),(38268,2661,'content','<div>TASTING NOTES:&nbsp; Blackberry with hints of cedar cigar box and toasted oak grace the nose of this elegant cabernet sauvignon. Rich cassis and bittersweet chocolate shine through the structured, mouth-filling tannins that are silky and plush. This is sure to improve with age; best now through 2028.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp; This versatile, food friendly cabernet sauvignon pairs well with traditional main courses such as steaks and braised short ribs. Try this cabernet sauvignon with your favorite comfort food such as meatloaf, polenta with Bolognese, or beef pot pies.</div>'),(38269,2661,'subtitle',NULL),(38270,2661,'price','3500'),(38271,2661,'web_status','Not Available'),(38272,2661,'admin_status','Available'),(38273,2661,'varietal','Cabernet Sauvignon'),(38274,2661,'appellation','Mt. Veeder'),(38275,2661,'vintage','2016'),(38276,2661,'meta_data_review-text','<div>AWARDS AND REVIEWS</div>\n<div>90 pt |&nbsp; James Suckling</div>\n<div>A prototypical, modern Napa red that has the big cassis character of fully ripe cabernet sauvignon, moderate tannins that are already well integrated and nice freshness at the finish.&nbsp; Makes you want to order or cook some Osso Bucco.&nbsp; &nbsp;</div>\n<div>&nbsp;</div>\n<p>94 pts | &nbsp;Chris Sawyer, Certified Sommelier&nbsp; |&nbsp; 2014 vintage</p>\n<div>&nbsp;On the palate, the generous flavors of black raspberry, dark cherry, cassis, ripe currants, cinnamon, hickory spice and dark chocolate truffle are complemented with a harmonious mixture of smooth, silky texture, chewy tannins, firm structure, and a lingering finish. Overall, an extremely well-crafted wine that is not only approachable when young, but also worthy of cellaring for more 10-15 years.</div>'),(38277,2661,'meta_data_feature-text','<p>Napa Valley, Half Bottle</p>\n<div>&nbsp;</div>'),(38278,2661,'rating',''),(38279,2661,'wine_vertical',''),(38280,2661,'wine_score',''),(38281,2662,'web_id','3463ff74-2b73-4154-8ad3-06b971165592'),(38282,2662,'slug','2016-cabernet-sauvignon-nelson-ranch'),(38283,2662,'title','2016 Cabernet Sauvignon, Nelson Ranch'),(38284,2662,'type','Wine'),(38285,2662,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_2016_cabsauv_mendo-1-1664132699964.png'),(38286,2662,'teaser','Picked at the peak of ripeness, this hand harvest cabernet sauvignon is from a single vineyard in the Mendocino County.  The cooler growing season allows for a longer maturation producing an elegant and complex wine.'),(38287,2662,'content','<div>TASTING NOTE:&nbsp;&nbsp;Black cherry and dark, ripe berries with a hint of toasted oak grace the nose of this elegant cabernet sauvignon. &nbsp;Dark chocolate and blueberry flavors shine through the structured, mouthfilling tannins that are silky and plush. &nbsp;This is sure to improve with time; best now through 2025.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING: &nbsp;This versatile, food friendly cabernet sauvignon pairs well with traditional main courses such as braised short ribs, but will also complement more adventurous dishes like Chorizo Poached in Red Wine or Beef Stir-Fry with Fresh and Pickled Ginger.&nbsp;&nbsp;</div>'),(38288,2662,'subtitle','Mendocino County'),(38289,2662,'price','4200'),(38290,2662,'web_status','Not Available'),(38291,2662,'admin_status','Not Available'),(38292,2662,'varietal','Cabernet Sauvignon'),(38293,2662,'appellation','Mendocino'),(38294,2662,'vintage','2016'),(38295,2662,'rating',''),(38296,2662,'wine_vertical',''),(38297,2662,'wine_score',''),(38298,2663,'web_id','6bbffbc7-07f0-43db-b9a6-fac9d0ddf6ba'),(38299,2663,'slug','2016-meadowcroft-russian-river-valley-chardonnay'),(38300,2663,'title','2016 Chardonnay,  Russian River Valley'),(38301,2663,'type','Wine'),(38302,2663,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft2016rrvchardonnaybottleshot-1664132818495.png'),(38303,2663,'teaser',''),(38304,2663,'content','<div>Our Russian River Chardonnay is a Burgundian style wine with minimal new oak exposure allowing the true varietal flavors to shine. &nbsp;Well balanced and delicious.&nbsp;&nbsp;</div>\n<div>&nbsp;</div>\n<p>TASTING NOTE:&nbsp;There&rsquo;s beautiful balance to this wine. Pretty aromas of citrus blossom and ripe stone fruit spring from the glass.&nbsp; &nbsp;Flavors of lemon, Bosc pear, and&nbsp; minerality are complemented by crisp acidity and a lingering finish.</p>\n<div><br />\n<div>FOOD PAIRING:&nbsp;&nbsp; Keep this chardonnay the star of the evening by pairing it with a simple salad with nuts or a cauliflower cream sauce over pasta.</div>\n</div>'),(38305,2663,'subtitle','Russian River Valley, Sonoma County'),(38306,2663,'price','0'),(38307,2663,'web_status','Not Available'),(38308,2663,'admin_status','Not Available'),(38309,2663,'varietal',NULL),(38310,2663,'appellation',NULL),(38311,2663,'vintage',NULL),(38312,2663,'meta_data_technical-notes','<div>Appellation: Russian River Valley, Sonoma County</div>\n<div>Varietal: 100% Chardonnay</div>\n<div>Harvested: September 2016</div>\n<div>Bottle Date: March 2018</div>\n<div>Production: 112 Cases</div>\n<div>Alcohol: 13.3%</div>'),(38313,2663,'rating',''),(38314,2663,'wine_vertical',''),(38315,2663,'wine_score',''),(38316,2664,'web_id','4dc23521-60fa-4005-a65b-26c552e33072'),(38317,2664,'slug','2016-cru-de-la-ruche-malbec-15l'),(38318,2664,'title','2016 Cru de la Ruche Malbec 1.5L Shiner'),(38319,2664,'type','Wine'),(38320,2664,'image',NULL),(38321,2664,'teaser',NULL),(38322,2664,'content',NULL),(38323,2664,'subtitle','Lodi'),(38324,2664,'price','10500'),(38325,2664,'web_status','Available'),(38326,2664,'admin_status','Available'),(38327,2664,'varietal',NULL),(38328,2664,'appellation',NULL),(38329,2664,'vintage',NULL),(38330,2664,'rating',''),(38331,2664,'wine_vertical',''),(38332,2664,'wine_score',''),(38333,2665,'web_id','c68b9d87-d4c4-4c9e-970a-1d646c56d34f'),(38334,2665,'slug','2016-gsm-chalk-hill'),(38335,2665,'title','2016 GSM, Chalk Hill'),(38336,2665,'type','Wine'),(38337,2665,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft-river-trace-2016-1664132934580.png'),(38338,2665,'teaser',''),(38339,2665,'content',''),(38340,2665,'subtitle','Sonoma County'),(38341,2665,'price','3000'),(38342,2665,'web_status','Not Available'),(38343,2665,'admin_status','Not Available'),(38344,2665,'varietal','Blend'),(38345,2665,'appellation','Chalk Hill'),(38346,2665,'vintage','2016'),(38347,2665,'rating',''),(38348,2665,'wine_vertical',''),(38349,2665,'wine_score',''),(38350,2666,'web_id','15e67bc9-23f7-423a-960e-79283052c8d9'),(38351,2666,'slug','2016-los-carneros-napa-pinot-noir'),(38352,2666,'title','2016 Pinot Noir, Carneros'),(38353,2666,'type','Wine'),(38354,2666,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_980-1660262104906.png'),(38355,2666,'teaser',''),(38356,2666,'content','<div><span style=\"font-weight: bold;\"\">TASTING NOTE: &nbsp;</span>This small-production wine is dense and powerful'),(38357,2666,'subtitle','Napa Valley'),(38358,2666,'price','4200'),(38359,2666,'web_status','Not Available'),(38360,2666,'admin_status','Not Available'),(38361,2666,'varietal',NULL),(38362,2666,'appellation',NULL),(38363,2666,'vintage',NULL),(38364,2666,'meta_data_feature-text','Los Carneros, Napa County'),(38365,2666,'meta_data_wine-notes','$33.60'),(38366,2666,'meta_data_technical-notes','<div>Appellation: &nbsp;Carneros, Napa County</div><div>Varietal: &nbsp;Pinot Noir</div><div>Harvest Date: &nbsp;September 2016</div><div>Bottle Date: &nbsp;January 2018</div><div>Production: 105 cases</div><div>Alcohol: &nbsp;13.5%</div>'),(38367,2666,'rating',''),(38368,2666,'wine_vertical',''),(38369,2666,'wine_score',''),(38370,2667,'web_id','512f6410-4de7-4a94-a18a-db427a3bca0e'),(38371,2667,'slug','2016-river-trace-gsm'),(38372,2667,'title','2016 River Trace GSM'),(38373,2667,'type','Wine'),(38374,2667,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft-river-trace-2016-1664132977226.png'),(38375,2667,'teaser',NULL),(38376,2667,'content',NULL),(38377,2667,'subtitle','Chalk Hill'),(38378,2667,'price','3500'),(38379,2667,'web_status','Not Available'),(38380,2667,'admin_status','Available'),(38381,2667,'varietal',NULL),(38382,2667,'appellation',NULL),(38383,2667,'vintage',NULL),(38384,2667,'rating',''),(38385,2667,'wine_vertical',''),(38386,2667,'wine_score',''),(38387,2668,'web_id','b289188f-aaa5-49a2-9460-b50636b4999a'),(38388,2668,'slug','2016-meadowcroft-dry-creek-valley-louvau-zinfandel'),(38389,2668,'title','2016 Zinfandel, Louvau Vineyard'),(38390,2668,'type','Wine'),(38391,2668,'image','https://images.commerce7.com/meadowcroft-wines/images/original/mc_drycreekzin_2016-1664133604213.png'),(38392,2668,'teaser',''),(38393,2668,'content',''),(38394,2668,'subtitle','Dry Creek Valley, Sonoma County'),(38395,2668,'price','0'),(38396,2668,'web_status','Not Available'),(38397,2668,'admin_status','Not Available'),(38398,2668,'varietal',NULL),(38399,2668,'appellation',NULL),(38400,2668,'vintage',NULL),(38401,2668,'rating',''),(38402,2668,'wine_vertical',''),(38403,2668,'wine_score',''),(38404,2669,'web_id','2cb31fa6-8ffb-4a73-95b2-eaff60182663'),(38405,2669,'slug','2017-giles-vineyard-cabernet-franc'),(38406,2669,'title','2017 Cabernet Franc, Giles Vineyard'),(38407,2669,'type','Wine'),(38408,2669,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1031-1660261053599.png'),(38409,2669,'teaser','CLUB EXCLUSIVE'),(38410,2669,'content','<div>Meadowcroft&rsquo;s fifth and final vintage of Cabernet Franc from the Giles Vineyard in Sonoma Valley is a sumptuous and decadent experience.&nbsp;<span style=\"font-weight: bold;\"><br /></span></div>\n<div>&nbsp;</div>\n<div>\n<div>TASTING NOTE:&nbsp; Sumptuous olallieberry and black currant aromas lead to a well-balanced mouthfeel.&nbsp; Rich and full-bodied, this wine shows characteristics of blueberry compote with nuisances of white pepper, bittersweet chocolate, and wet stone.&nbsp; Drink now or cellar until 2029.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING: &nbsp;This wine is an excellent pairing with a brasserie-style steak au poivre.&nbsp; The complexity of this wine complements dishes with texture and depth such as braised meats like Boeuf Bourguignon.&nbsp;</div>\n<div>&nbsp;</div>\n<div>**CLUB EXCLUSIVE WINE:&nbsp; This wine is&nbsp;only&nbsp;available to club members; thus, the wine is already priced with a club discount.&nbsp; No additional club discount applies.</div>\n</div>'),(38411,2669,'subtitle','Sonoma Valley'),(38412,2669,'price','4500'),(38413,2669,'web_status','Not Available'),(38414,2669,'admin_status','Available'),(38415,2669,'varietal','Cabernet Franc'),(38416,2669,'appellation','Sonoma Valley'),(38417,2669,'vintage','2017'),(38418,2669,'meta_data_feature-text','Sonoma Valley'),(38419,2669,'meta_data_wine-notes','$45.00'),(38420,2669,'meta_data_technical-notes','<div>Appellation:&nbsp;<span style=\"line-height: 1.5;\"\">Giles Vineyard'),(38421,2669,'rating',''),(38422,2669,'wine_vertical',''),(38423,2669,'wine_score',''),(38424,2670,'web_id','8ae831bc-54c5-4d1f-8615-4db8374d0776'),(38425,2670,'slug','2017-cabernet-sauvignon-mt-veeder-estate'),(38426,2670,'title','2017 Cabernet Sauvignon, Mt. Veeder Estate'),(38427,2670,'type','Wine'),(38428,2670,'image','https://images.commerce7.com/meadowcroft-wines/images/original/mc2017_cs_mv_bottleshot_transparent-background-1664133892060.png'),(38429,2670,'teaser','SINGLE VINEYARD |  LIMITED PRODUCTION'),(38430,2670,'content','<div>TASTING NOTES:&nbsp;&nbsp;Perched at the top of&nbsp; Mount Veeder in Napa Valley, this high elevation vineyard is the sole source of cabernet sauvignon for this densely rich and concentrated, full-bodied wine.&nbsp; &nbsp;Aromas of dark chocolate and ripe mountain blueberry explode in tones of black currant, sage, and exotic black pepper.&nbsp; &nbsp; The palate offers a smooth and tingling in acidity,&nbsp; yet also shows length and breadth.&nbsp; This wine will be best enjoyed now through 2030.</div>\n<div><br />\n<div>FOOD PAIRING: &nbsp;The 2017 Mount Veeder Napa Valley Cabernet Sauvignon is an excellent match for rosemary-pepper beef rib roast with porcini jus, pan-roasted veal chops with cabernet sauce, or a hanger steak with Pommes Frites.</div>\n</div>'),(38431,2670,'subtitle','Napa Valley'),(38432,2670,'price','9500'),(38433,2670,'web_status','Not Available'),(38434,2670,'admin_status','Available'),(38435,2670,'varietal',NULL),(38436,2670,'appellation',NULL),(38437,2670,'vintage',NULL),(38438,2670,'meta_data_review-text','<div>98 pts GOLD |&nbsp; Sunset Wine Competition&nbsp; |&nbsp; 2016 Mt Veeder Cabernet Sauvignon</div>\n<div>94 pts |&nbsp; Wine Enthusiast&nbsp; |&nbsp; 2005 Mt Veeder Cabernet Sauvignon</div>\n<div>91 pts |&nbsp; Wine Enthusiast&nbsp; |&nbsp; 2008 Mt Veeder Cabernet Sauvignon</div>\n<div>91 pts |&nbsp; James Suckling&nbsp; |&nbsp; 2013 Mt Veeder Cabernet Sauvignon</div>\n<div>93 pts |&nbsp; Sommelier Company |&nbsp; 2016 Mt Veeder Cabernet Sauvignon</div>'),(38439,2670,'meta_data_feature-text','<p>Mt Veeder, Napa Valley</p>'),(38440,2670,'meta_data_wine-notes','<p>$88.00</p>'),(38441,2670,'meta_data_technical-notes','<div>Appellation:&nbsp; Mt. Veeder, Napa Valley</div>\n<div>Varietal:&nbsp; Cabernet Sauvignon</div>\n<div>Harvested:&nbsp; October 2017</div>\n<div>Bottle Date:&nbsp; November 2019</div>\n<div>Production:&nbsp; 168 cases</div>'),(38442,2670,'rating',''),(38443,2670,'wine_vertical',''),(38444,2670,'wine_score',''),(38445,2671,'web_id','d6996581-50bf-45bc-81e8-0a646665d84f'),(38446,2671,'slug','2017-malbec-clements-hill'),(38447,2671,'title','2017 Malbec, Clements Hill'),(38448,2671,'type','Wine'),(38449,2671,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_2017_malbec_bottleshot_v2-1664134150250.png'),(38450,2671,'teaser','The name Cru de la Ruche, meaning vintage of the beehive, is a nod to our connection to the honeybee and its amazing ability to transform nectar into honey paralleling the transformation from grapes to wine.'),(38451,2671,'content','<div>TASTING NOTE: &nbsp;Alluring peppery spice and leather aromas pack this full-bodied wine with pleasure.&nbsp; Saturated with blackberry and blackgrape&nbsp;flavors, this wine has a layered and nicely viscous texture.&nbsp; The oak is present yet polished alongside lengthy tannins and a lasting mouthfeel.\n<div><br />\n<div>FOOD PAIRING:&nbsp; &nbsp;Try this malbec with a variety of bold cuisines as it won&rsquo;t be overshadowed by heavily flavored foods.&nbsp; Also perfect for sipping on its own.</div>\n</div>\n</div>\n<div>&nbsp;</div>'),(38452,2671,'subtitle','Lodi'),(38453,2671,'price','2500'),(38454,2671,'web_status','Not Available'),(38455,2671,'admin_status','Available'),(38456,2671,'varietal','Malbec'),(38457,2671,'appellation','Clements Hills'),(38458,2671,'vintage','2017'),(38459,2671,'rating',''),(38460,2671,'wine_vertical',''),(38461,2671,'wine_score',''),(38462,2672,'web_id','d204884d-78cc-4e91-976d-00c7de2a1cf1'),(38463,2672,'slug','meadowcroft-2017-the-panorama-red-blend'),(38464,2672,'title','2017 Panorama Red Blend'),(38465,2672,'type','Wine'),(38466,2672,'image',NULL),(38467,2672,'teaser',NULL),(38468,2672,'content',NULL),(38469,2672,'subtitle','Napa Valley'),(38470,2672,'price','3000'),(38471,2672,'web_status','Not Available'),(38472,2672,'admin_status','Available'),(38473,2672,'varietal',NULL),(38474,2672,'appellation',NULL),(38475,2672,'vintage',NULL),(38476,2672,'rating',''),(38477,2672,'wine_vertical',''),(38478,2672,'wine_score',''),(38479,2673,'web_id','f4645a2c-ca37-46af-b30b-e9722902db62'),(38480,2673,'slug','2017-sangiovese-speedy-creek-vineyard'),(38481,2673,'title','2017 Sangiovese, Speedy Creek Vineyard'),(38482,2673,'type','Wine'),(38483,2673,'image','https://images.commerce7.com/meadowcroft-wines/images/original/mc_sangiovese_2017_bottleshot-1664134252531.png'),(38484,2673,'teaser','From the Speedy Creek Vineyard in the Knights Valley AVA of Sonoma County, this wine has been much-anticipated by fans!'),(38485,2673,'content','<p>Tasting Note:&nbsp; Rich and righteously balanced body with berry compote on the nose, this wine evokes dark Luxardo cherries and blackberries complemented by earthy tobacco flavors on the&nbsp;velvety finish.<br /><br /></p>\n<div>Food Pairing: &nbsp;For a well-composed and delectable wine, an equally as succulent dish is recommended. &nbsp;A porchetta roasted rabbit with fennel will complement its complexity.</div>'),(38486,2673,'subtitle','Knights Valley, Sonoma County'),(38487,2673,'price','3000'),(38488,2673,'web_status','Not Available'),(38489,2673,'admin_status','Available'),(38490,2673,'varietal','Sangiovese'),(38491,2673,'appellation','Knights Valley'),(38492,2673,'vintage','2017'),(38493,2673,'rating',''),(38494,2673,'wine_vertical',''),(38495,2673,'wine_score',''),(38496,2674,'web_id','3a08d71c-d2fd-412f-b3d3-42f25e04b5f0'),(38497,2674,'slug','2018-cabernet-franc-rivino-vineyard'),(38498,2674,'title','2018 Cabernet Franc, Rivino Vineyard'),(38499,2674,'type','Wine'),(38500,2674,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_cabernetfranc_rivino_mendocino_2018-1657748822267.png'),(38501,2674,'teaser',NULL),(38502,2674,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>Meadowcroft&rsquo;s first vintage of Rivino Mendocino Cabernet Franc is sourced from a boutique, 100% family-owned estate vineyard farmed and nestled on the edge of the Russian River in Mendocino, California. Rivino is a combination of the words: River and Vino: &ldquo;Where the river becomes the wine.&rdquo;</div>\n<div>&nbsp;</div>\n<div>TASTING NOTE:&nbsp; A varietal most often used to enhance other red varietals with a touch of spice, herbal lift, or rich depth of fruit, Cab Franc is rarely produced as a single varietal. Our Rivino Vineyard Cabernet Franc features aromas of black cherries, wet earth, eucalyptus, and pink peppercorns. The palate is precise, layered flavors of wild berries, fennel, spice, and a hint of savoriness, finishing with a hint of cocoa nib. Drink now or cellar until 2030</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp; The high acidity and medium tannins in this wine make it ideal for pairing with tomato-based sauces, traditional BBQ, and fresh herbs. A great choice to serve alongside roasted poultry and grilled meats, as well as rich vegetarian fare like lentil stew.&nbsp;</div>\n<div>&nbsp;</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">\n<div>Appellation: Rivino Vineyard, Mendocino County</div>\n<div>Varietal: Cabernet Franc</div>\n<div>Harvested: October 2018</div>\n<div>Bottle Date: November 2020</div>\n<div>Production: 112 cases</div>\n<div>Alcohol:&nbsp; 12.60%&nbsp;</div>\n<div>&nbsp;</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/03/Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018.png\" target=\"_blank\" rel=\"noopener\">Download Complete Wine Tasting Notes</a></div>'),(38503,2674,'subtitle','Mendocino County'),(38504,2674,'price','4500'),(38505,2674,'web_status','Not Available'),(38506,2674,'admin_status','Not Available'),(38507,2674,'varietal','Cabernet Franc'),(38508,2674,'appellation','Mendocino'),(38509,2674,'vintage','2018'),(38510,2674,'rating',''),(38511,2674,'wine_vertical',''),(38512,2674,'wine_score',''),(38513,2675,'web_id','3c2a1ffb-07cb-4227-96f9-09215eb9f3e7'),(38514,2675,'slug','2018-mt-veeder-cabernet-sauvignon'),(38515,2675,'title','2018 Cabernet Sauvignon, Mt. Veeder Estate'),(38516,2675,'type','Wine'),(38517,2675,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1109-1660261696777.png'),(38518,2675,'teaser',NULL),(38519,2675,'content','<p><span style=\"font-weight: bold;\">TASTING NOTES:&nbsp;&nbsp;</span>Perched at the top of&nbsp; Mount Veeder in Napa Valley<span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">, this high-elevation vineyard is the sole source of cabernet sauvignon for this densely rich and concentrated, full-bodied wine.&nbsp; &nbsp;Aromas of dark chocolate and ripe mountain blueberry explode in tones of black currant, sage, and exotic black pepper.&nbsp; &nbsp; The palate offers a smooth and tingling acidity, yet also shows length and breadth.&nbsp; This wine will be best enjoyed now through 2030.</span></p>\n<div><br />\n<div>FOOD PAIRING: &nbsp;The 2018 Mount Veeder Napa Valley Cabernet Sauvignon is an excellent match for rosemary-pepper beef rib roast with porcini jus, pan-roasted veal chops with cabernet sauce, or a hanger steak with Pommes Frites.</div>\n<div>&nbsp;</div>\n<div>&nbsp;</div>\n</div>'),(38520,2675,'subtitle','Napa Valley'),(38521,2675,'price','12500'),(38522,2675,'web_status','Not Available'),(38523,2675,'admin_status','Available'),(38524,2675,'varietal','Cabernet Sauvignon'),(38525,2675,'appellation','Mt. Veeder'),(38526,2675,'vintage','2018'),(38527,2675,'meta_data_review-text','<div>98 pts GOLD |&nbsp; Sunset Wine Competition&nbsp; |&nbsp; 2016 Mt Veeder Cabernet Sauvignon</div>\n<div>90pts |&nbsp; James Suckling&nbsp; |&nbsp; 2016 Mt Veeder Cabernet Sauvignon</div>\n<div>93 pts |&nbsp; Sommelier Company |&nbsp; 2016 Mt Veeder Cabernet Sauvignon</div>\n<div>94 pts |&nbsp; Wine Enthusiast&nbsp; |&nbsp; 2005 Mt Veeder Cabernet Sauvignon</div>\n<div>91 pts |&nbsp; Wine Enthusiast&nbsp; |&nbsp; 2008 Mt Veeder Cabernet Sauvignon</div>\n<div>91 pts |&nbsp; James Suckling&nbsp; |&nbsp; 2013 Mt Veeder Cabernet Sauvignon</div>\n<div>&nbsp;</div>'),(38528,2675,'meta_data_feature-text','<p>Mt Veeder, Napa Valley</p>'),(38529,2675,'meta_data_wine-notes','<p>$92.00</p>'),(38530,2675,'meta_data_technical-notes','<div>\n<div>Appellation:&nbsp; Mt. Veeder, Napa Valley</div>\n<div>Varietal:&nbsp; Cabernet Sauvignon</div>\n<div>Harvested:&nbsp; October 2018</div>\n<div>Bottle Date:&nbsp; May 2021</div>\n<div>Production:&nbsp; 168 cases</div>\n</div>\n<div>&nbsp;</div>'),(38531,2675,'rating',''),(38532,2675,'wine_vertical',''),(38533,2675,'wine_score',''),(38534,2676,'web_id','8cd0944f-f288-42ff-81b6-14c708d3fa35'),(38535,2676,'slug','2018-meadowcroft-napa-valley-cabernet-sauvignon'),(38536,2676,'title','2018 Cabernet Sauvignon, Napa Valley'),(38537,2676,'type','Wine'),(38538,2676,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1026-1660261052362.png'),(38539,2676,'teaser',NULL),(38540,2676,'content','<div>&nbsp;<span style=\"font-weight: bold;\">TASTING NOTES:&nbsp; </span>Blackberry with hints of cedar cigar box and toasted oak grace the nose of this elegant cabernet sauvignon.&nbsp; Rich cassis and bittersweet chocolate shine through the structured</div>'),(38541,2676,'subtitle',NULL),(38542,2676,'price','3000'),(38543,2676,'web_status','Not Available'),(38544,2676,'admin_status','Available'),(38545,2676,'varietal',NULL),(38546,2676,'appellation','Napa Valley'),(38547,2676,'vintage','2018'),(38548,2676,'meta_data_review-text','<div>90 pt |&nbsp; James Suckling&nbsp; |&nbsp; 2016 vintage<br></div><div><span style=\"font-style: italic;\"\">A prototypical, modern Napa red that has the big cassis character of fully ripe cabernet sauvignon, moderate tannins that are already well integrated and nice freshness at the finish.&nbsp; Makes you want to order or cook some Osso Bucco.&nbsp; &nbsp;</span></div><div><br></div>94 pts | &nbsp;Chris Sawyer, Certified Sommelier&nbsp; |&nbsp; 2014 vintage<br><div><span style=\"\"font-style: italic;\"\">&nbsp;On the palate, the generous flavors of black raspberry, dark cherry, cassis, ripe currants, cinnamon, hickory spice and dark chocolate truffle are complemented with a harmonious mixture of smooth, silky texture, chewy tannins, firm structure, and a lingering finish. Overall, an extremely well-crafted wine that is not only approachable when young, but also worthy of cellaring for more 10-15 years.</span></div>\"'),(38549,2676,'meta_data_feature-text','Napa Valley'),(38550,2676,'meta_data_technical-notes','<div>Appellation: &nbsp;Napa Valley<br>Varietal: &nbsp;Cabernet Sauvignon<br>Harvested: &nbsp;October 2018<br>Barrel-Aged:&nbsp; 15 months<br>Bottle Date:&nbsp; January 2020<br>Production: 1,816 cases<br></div>'),(38551,2676,'rating',''),(38552,2676,'wine_vertical',''),(38553,2676,'wine_score',''),(38554,2677,'web_id','1109990d-ffa4-4820-b056-11c687a86dcd'),(38555,2677,'slug','2018-napa-valley-cabernet-sauvignon-375-ml'),(38556,2677,'title','2018 Cabernet Sauvignon, Napa Valley 375 ml'),(38557,2677,'type','Wine'),(38558,2677,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1085-1660261695377.png'),(38559,2677,'teaser','Full-Size Flavors, Half the Bottle Size, 375ml'),(38560,2677,'content','<div>TASTING NOTES:&nbsp; Blackberry with hints of cedar cigar box and toasted oak\ngrace the nose of this elegant cabernet sauvignon. Rich cassis\nand bittersweet chocolate shine through the structured,\nmouth-filling tannins that are silky and plush. This is sure to\nimprove with age; best now through 2028.\n</div><div><br></div><div>FOOD PAIRING:&nbsp; This versatile, food friendly cabernet sauvignon pairs well\nwith traditional main courses such as steaks and braised\nshort ribs. Try this cabernet sauvignon with your favorite\ncomfort food such as meatloaf, polenta with Bolognese, or\nbeef pot pies.</div>'),(38561,2677,'subtitle',''),(38562,2677,'price','3500'),(38563,2677,'web_status','Not Available'),(38564,2677,'admin_status','Available'),(38565,2677,'varietal','Cabernet Sauvignon'),(38566,2677,'appellation','Mt. Veeder'),(38567,2677,'vintage','2018'),(38568,2677,'meta_data_review-text','<div><span style=\"font-weight: bold;\"\">AWARDS AND REVIEWS</span></div>94 pts | &nbsp;Chris Sawyer, Certified Sommelier&nbsp; |&nbsp; 2014 vintage<br><div><span style=\"\"font-style: italic;\"\">&nbsp;On the palate, the generous flavors of black raspberry, dark cherry, cassis, ripe currants, cinnamon, hickory spice and dark chocolate truffle are complemented with a harmonious mixture of smooth, silky texture, chewy tannins, firm structure, and a lingering finish. Overall, an extremely well-crafted wine that is not only approachable when young, but also worthy of cellaring for more 10-15 years.</span></div>\"'),(38569,2677,'meta_data_feature-text','Napa Valley, Half Bottle<div><br></div>'),(38570,2677,'meta_data_wine-notes','$28<br>'),(38571,2677,'meta_data_technical-notes','Appellation: Napa Valley, Napa County<div>Varietal: Cabernet Sauvignon<div>Harvest Date: September 2018</div><div>Case Production: 230 cases</div></div>'),(38572,2677,'rating',''),(38573,2677,'wine_vertical',''),(38574,2677,'wine_score',''),(38575,2678,'web_id','256634fb-6063-41cc-83f4-bda6e25dcaa1'),(38576,2678,'slug','2018-cabernet-sauvignon-nelson-ranch-vineyard'),(38577,2678,'title','2018 Cabernet Sauvignon, Nelson Ranch Vineyard'),(38578,2678,'type','Wine'),(38579,2678,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_2018cabsauv_mendocino_nelsonranch-1657749148705.png'),(38580,2678,'teaser',NULL),(38581,2678,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>Picked at the peak of ripeness, this hand harvest cabernet sauvignon is from a single vineyard in Mendocino County. &nbsp;The cooler growing season allows for a longer maturation producing an elegant and complex wine.</div>\n<div>&nbsp;</div>\n<div>TASTING NOTE:&nbsp; Ripe blueberry with a hint of crushed rocks and toasted oak grace the nose of this elegant cabernet sauvignon. Rich licorice and brambly blackberry flavors shine through the structured, mouth-filling tannins that are silky and plush.&nbsp; This is sure to improve with time; best now through 2026.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp;&nbsp;This versatile, food-friendly cabernet sauvignon pairs well with traditional main courses such as rosemary braised lamb shanks and filet mignon with rich balsamic glass, but also will complement more adventurous dishes like blue cheese burgers and Asian barbecue short ribs.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">\n<div>Appellation: &nbsp;Mendocino County<br />Varietal: &nbsp;Cabernet Sauvignon<br />Harvest Date: &nbsp;September 2018<br />Bottled Date: &nbsp;January 2019<br />Alcohol: &nbsp;14.5%<br />Case Production: &nbsp;200 cases\n<div>\n<div>&nbsp;</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/05/19_Cab_NelsonRanch_Mendo_Techsheet.pdf\" target=\"_blank\" rel=\"noopener\">Download Complete Wine Tasting Notes</a></div>'),(38582,2678,'subtitle','Mendocino County'),(38583,2678,'price','5000'),(38584,2678,'web_status','Not Available'),(38585,2678,'admin_status','Not Available'),(38586,2678,'varietal','Cabernet Sauvignon'),(38587,2678,'appellation','Mendocino'),(38588,2678,'vintage','2018'),(38589,2678,'rating',''),(38590,2678,'wine_vertical',''),(38591,2678,'wine_score',''),(38592,2679,'web_id','07de4f53-48d4-4b9d-8424-3d9f0716c8e3'),(38593,2679,'slug','2018-cabernet-sauvignon-spring-mountain-district'),(38594,2679,'title','2018 Cabernet Sauvignon, Spring Mtn. District'),(38595,2679,'type','Wine'),(38596,2679,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft-2018_cabernet_springmt_bottleshot-1657752299317.png'),(38597,2679,'teaser',''),(38598,2679,'content','<p><strong>TASTING NOTES:&nbsp;</strong></p>\n<p>Sourced from 50-year-old family-owned vineyards on the eastern slopes of Spring Mountain, this 2018 vintage Cabernet Sauvignon has a refined elegance. Opening with an abundance of blackberry jam, candied violets, crushed earth, and currants, this youthful Cabernet suggests unquestionable aging potential but is delicious now. The mouthfeel is pure satin, laced with mocha and plum. Tannins are firm but exist mainly on the back palate, framed by subtle spice. This wine is a quintessential California mountain cabernet, reflecting the artistry and tradition of old-world winemaking.</p>\n<p><strong>FOOD PAIRING: &nbsp;</strong></p>\n<p>The refined complexity of this versatile wine makes it a delicious match for the main course of any special meal. The delightful acidity in this cab cuts through fattier dishes and cheeses. Vegetables with strong herbs like rosemary or mint are also a great pairing.</p>\n<h3 style=\"font-weight: 600;\">TECHNICAL NOTES</h3>\n<p>Appellation:&nbsp; Spring Mountain District, Napa Valley</p>\n<p>Varietal:&nbsp; Cabernet Sauvignon</p>\n<p>Harvested:&nbsp; October 2018</p>\n<p>Bottle Date:&nbsp; May 2021</p>\n<p>Production:&nbsp; 241 cases</p>\n<p>&nbsp;</p>\n<h3 style=\"font-weight: 600;\">AWARDS AND REVIEWS</h3>\n<p>95 points &nbsp;|&nbsp;&nbsp;<a href=\"http://https//www.criticschallenge.com/cgi-bin/rtbin/sbpg/rt_hdln_dsply2.cgi?Autoincrement=000031&amp;value_6=Results\">2021 Critics Challenge</a>&nbsp;| &nbsp;Platinum Medal</p>\n<p><em>&ldquo;A gorgeous, layered nose of classic varietal blackberry and cassis aromas plus chocolate and faint dried herbs entices, and the palate delivers on that promise.&nbsp; The generous texture carries the flavors on the midpalate, and supple tannins keep the flavor pumping through an extended finish.&nbsp; A new player to me, and one worth watching.&nbsp; Bravo!&nbsp; A Platinum Award winner at the 2021 Critics Challenge International Wine &amp; Spirits Competition.&rdquo;&nbsp; &nbsp;</em><em>&nbsp; &nbsp;<br />95&nbsp;<a href=\"http://www.winereviewonline.com/about_us.cfm?#%20RC\"><strong>Rich Cook</strong></a>&nbsp;Jul 6, 2021</em></p>\n<p>&nbsp;</p>\n<p>91 points &nbsp;|&nbsp;&nbsp;<a href=\"https://www.jamessuckling.com/\">JamesSuckling.com</a>&nbsp;</p>\n<p><em>\"Crushed raspberries, ripe cherries, blackberries, dried thyme, lavender, and spice box on the nose. Medium-bodied with plush tannins. Round, creamy, and polished with pretty vanilla notes on the finish. Drink from 2023.\"&nbsp;<strong>James Suckling</strong><br /></em></p>\n<p>&nbsp;</p>\n<p style=\"font-weight: 400;\" data-ecp-handle=\"view_pdf\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/05/Meadowcroft_2018CabernetSauvignonSpringMT_TECHSheet.pdf\">Download Complete Wine Tasting Notes</a></p>'),(38599,2679,'subtitle','Napa Valley'),(38600,2679,'price','12500'),(38601,2679,'web_status','Not Available'),(38602,2679,'admin_status','Available'),(38603,2679,'varietal','Cabernet Sauvignon'),(38604,2679,'appellation','Spring Mountain District'),(38605,2679,'vintage','2018'),(38606,2679,'rating',''),(38607,2679,'wine_vertical',''),(38608,2679,'wine_score',''),(38609,2680,'web_id','65ba93b7-728d-4748-8665-758312b09d6c'),(38610,2680,'slug','2018-cru-de-la-ruche-malbec'),(38611,2680,'title','2018 Cru de la Ruche Malbec'),(38612,2680,'type','Wine'),(38613,2680,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1030-1660261692482.png'),(38614,2680,'teaser','The name Cru de la Ruche, meaning vintage of the beehive, is a nod to our connection to the honeybee and its amazing ability to transform nectar into honey paralleling the transformation from grapes to wine.'),(38615,2680,'content','<div><span style=\"font-weight: bold;\">TASTING NOTE: &nbsp;</span>Alluring peppery spice and leather aromas pack this full-bodied wine with pleasure.&nbsp; Saturated with blackberry and black grape flavors<span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">, this wine has a layered and nicely viscous texture.&nbsp; The oak is present yet polished alongside lengthy tannins and a lasting mouthfeel.</span>\n<div>\n<div><br />\n<div>FOOD PAIRING:&nbsp; &nbsp;Try this malbec with a variety of bold cuisines as it won&rsquo;t be overshadowed by heavily flavored foods.&nbsp; Also perfect for sipping on its own.</div>\n<div>&nbsp;</div>\n<div>92 pts, GOLD MEDAL, SUNSET INTERNATIONAL WINE COMPETITION<br />GOLD MEDAL, SAN FRANCISCO CHRONICLE WINE COMPETITION</div>\n</div>\n</div>\n<div>&nbsp;</div>\n</div>'),(38616,2680,'subtitle',''),(38617,2680,'price','3600'),(38618,2680,'web_status','Not Available'),(38619,2680,'admin_status','Available'),(38620,2680,'varietal','Malbec'),(38621,2680,'appellation','Lodi'),(38622,2680,'vintage','2018'),(38623,2680,'meta_data_review-text','<div>92 pts GOLD |&nbsp; <a href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"\"\">Sunset International Wine Competition</a>&nbsp;<span style=\"\"font-style: italic;\"\">(2018 vintage)</span><br></div><div>GOLD |&nbsp; <a href=\"\"https://winejudging.com/\"\" title=\"\"SF Chronicle Wine Competition\"\" target=\"\"\"\">San Francisco Chronicle&nbsp;Wine Competition</a>&nbsp;<span style=\"\"font-style: italic;\"\">(2018 vintage)</span><br></div><div>92 pts GOLD |&nbsp; <a href=\"\"https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"\"\">Sunset International Wine Competition </a><span style=\"\"font-style: italic;\"\">(2017 vintage)</span></div><div>GOLD |&nbsp; <a href=\"\"https://winejudging.com/\"\" title=\"\"SF Chronicle Wine Competition\"\" target=\"\"\"\">San Francisco Chronicle&nbsp;Wine Competition</a>&nbsp;<span style=\"\"font-style: italic;\"\">(2017 vintage)</span><br>GOLD |&nbsp; <a href=\"\"https://winejudging.com/\"\" title=\"\"SF Chronicle Wine Competition\"\" target=\"\"\"\">San Francisco Chronicle&nbsp;Wine Competition </a><span style=\"\"font-style: italic;\"\">(2016 vintage)</span></div><div>DOUBLE GOLD | <a href=\"\"https://winejudging.com/\"\" title=\"\"SF Chronicle Wine Competition\"\" target=\"\"\"\">San Francisco Chronicle Wine Competition</a> <span style=\"\"font-style: italic;\"\">(2014 vintage)</span><br><span style=\"\"font-style: italic;\"\">Unanimous Gold voted by a five-member judging panel.&nbsp;</span></div>\"'),(38624,2680,'meta_data_feature-text','Clements Hills'),(38625,2680,'meta_data_wine-notes','$28.80'),(38626,2680,'meta_data_technical-notes','Appellation:  Clements Hill, San Joaquin County\nVarietal:  Malbec\nHarvested:  November 2018\nProduction:  232 cases\nAlcohol:  14.75%'),(38627,2680,'rating',''),(38628,2680,'wine_vertical',''),(38629,2680,'wine_score',''),(38630,2681,'web_id','5fb8d990-e049-4049-8143-6d0bfd76d695'),(38631,2681,'slug','2018-pinot-noir-sonoma-coast-375ml'),(38632,2681,'title','2018 Pinot Noir, Sonoma Coast 375mL'),(38633,2681,'type','Wine'),(38634,2681,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1071-1657824692437.png'),(38635,2681,'teaser',NULL),(38636,2681,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>TASTING NOTES: Packed with summer ripen strawberries accented by Bing cherries and elegant tannins, this refined pinot noir is a beauty. The mouthfeel is velvety and the finish lingers pleasantly. Drink now through 2027.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRINGS:&nbsp;&nbsp;This pinot noir will complement a variety of dishes such as Fennel-Garlic Pork Roast, Stuffed Eggplant with Lamb and Pine Nuts, or Leek and Pecorino Wood Fire Pizza. This wine is also excellent on its own.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">\n<div>FORMAT: 375ml (Half- Bottle)</div>\nAppellation: Sonoma Coast, Sonoma County Pinot Noir<br />Harvest Date: September 2018<br />Barrel Regime: French oak barrels<br />Bottling Date: October 2020<br />Production: 980 Cases<br />Alcohol: 13.50%<br />pH: 3.69</div>\n<div class=\"ecp-html-content tech-notes\">&nbsp;</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://client-assets.ecellar1.com/meadowcroftwines/prod_pdf_1071.pdf\" target=\"_blank\" rel=\"noopener\">Download Complete Wine Tasting Notes</a></div>'),(38637,2681,'subtitle','Sonoma Coast, Sonoma County'),(38638,2681,'price','2000'),(38639,2681,'web_status','Available'),(38640,2681,'admin_status','Available'),(38641,2681,'varietal','Pinot Noir'),(38642,2681,'appellation','Sonoma Coast'),(38643,2681,'vintage','2018'),(38644,2681,'rating',''),(38645,2681,'wine_vertical',''),(38646,2681,'wine_score',''),(38647,2682,'web_id','44572385-0ea4-4da4-a42a-1b48f833703a'),(38648,2682,'slug','2018-speedy-creek-vineyard-sangiovese'),(38649,2682,'title','2018 Sangiovese, Speedy Creek Vineyard'),(38650,2682,'type','Wine'),(38651,2682,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_2018_sangiovese_speedycreek_knightsvalley-1664134319981.png'),(38652,2682,'teaser',NULL),(38653,2682,'content',NULL),(38654,2682,'subtitle','Knights Valley'),(38655,2682,'price','0'),(38656,2682,'web_status','Not Available'),(38657,2682,'admin_status','Not Available'),(38658,2682,'varietal',NULL),(38659,2682,'appellation',NULL),(38660,2682,'vintage',NULL),(38661,2682,'rating',''),(38662,2682,'wine_vertical',''),(38663,2682,'wine_score',''),(38664,2683,'web_id','c6fc7984-c3bc-47b3-9d42-a0e4a5aefca8'),(38665,2683,'slug','2018-louvau-vineyard-zinfandel'),(38666,2683,'title','2018 Zinfandel, Louvau Vineyard'),(38667,2683,'type','Wine'),(38668,2683,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1079-1660261065854.png'),(38669,2683,'teaser',NULL),(38670,2683,'content','<p>TASTING NOTE:&nbsp; A limited production of Zinfandel from the Louvau Vineyard in the Dry Creek Valley, Sonoma County. Upfront aromas of blackberry jam and plum are buttressed by underpinnings of jammy<span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">, dark fruit flavors. The palate is rich and complex, with warm clove and cinnamon spice.&nbsp; The finish is sumptuous, with lingering mocha and traces of vanilla from the 25% French oak used in the aging of this wine.</span></p>\n<p style=\"font-weight: 400;\"><strong>FOOD PAIRING:&nbsp;&nbsp;</strong>Tom\'s paring recommendations are pork rag&ugrave; or mushroom risotto with truffles. He also suggests something simple and classic, like a Coney Island hot dog. Whatever you pair, this zin makes an easy match because of its intense aromatics, which can stand up to a multitude of flavors.</p>\n<p style=\"font-weight: 400;\">&nbsp;</p>\n<p style=\"font-weight: 400;\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/03/Meadowcroft-MC_DRYCREEKZIN_19_Techsheet.pdf\">Download Complete Tasting Notes</a></p>'),(38671,2683,'subtitle','Dry Creek Valley, Sonoma County'),(38672,2683,'price','4500'),(38673,2683,'web_status','Not Available'),(38674,2683,'admin_status','Not Available'),(38675,2683,'varietal','Zinfandel'),(38676,2683,'appellation','Dry Creek Valley'),(38677,2683,'vintage','2018'),(38678,2683,'meta_data_review-text','<div><div><span style=\"font-weight: bold;\"\">AWARDS &amp; REVIEWS</span></div>94 points &nbsp;|&nbsp; <a href=\"\"http://https://www.criticschallenge.com/cgi-bin/rtbin/sbpg/rt_hdln_dsply2.cgi?Autoincrement=000031&amp;value_6=Results\"\" title=\"\"\"\" target=\"\"\"\">2021 Critics Challenge</a> | &nbsp;Platinum Medal</div><div><p class=\"\"MsoNormal\"\" style=\"\"margin: 0in; font-size: 12pt; font-family: Calibri, sans-serif; color: rgb(0, 0, 0);\"\"><i><span style=\"\"font-family: D-DIN, serif; color: rgb(10, 10, 10);\"\">\"\"Here is a structured Zinfandel that shows plenty of oak toast and spice in front at present, and it promises to fold into the brooding berry fruit as the firmness mellows with a bit of bottle aging in your cellar.&nbsp; It will be well worth the wait.&nbsp; A Platinum Award winner at the 2021 Critics Challenge International Wine &amp; Spirits Competition.\"\"&nbsp; &nbsp; &nbsp; &nbsp;<br>94&nbsp;<a href=\"\"http://www.winereviewonline.com/about_us.cfm?#%20RC\"\"><span style=\"\"color: rgb(10, 10, 10); text-decoration-line: underline; font-weight: bold;\"\">Rich Cook</span></a>&nbsp;Jul 6, 2021<o:p></o:p></span></i></p><p class=\"\"MsoNormal\"\" style=\"\"margin: 0in; font-size: 12pt; font-family: Calibri, sans-serif; color: rgb(0, 0, 0);\"\"><span style=\"\"color: rgb(10, 10, 10); font-family: D-DIN;\"\">92 pts GOLD |&nbsp;&nbsp;</span><a href=\"\"https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"\"\" style=\"\"background-color: rgb(255, 255, 255); font-family: D-DIN;\"\">Sunset International Wine Competition</a><span style=\"\"color: rgb(10, 10, 10); font-family: D-DIN;\"\">&nbsp;</span><span style=\"\"color: rgb(10, 10, 10); font-family: D-DIN; font-style: italic;\"\">(2018 vintage)</span><i><span style=\"\"font-family: D-DIN, serif; color: rgb(10, 10, 10);\"\"><br></span></i></p><p class=\"\"MsoNormal\"\" style=\"\"margin: 0in; font-size: 12pt; font-family: Calibri, sans-serif; color: rgb(0, 0, 0);\"\"><span style=\"\"color: rgb(10, 10, 10); font-family: D-DIN;\"\">GOLD |&nbsp; <a href=\"\"http://harvestfair.org/professional-wine-competition/\"\" title=\"\"\"\" target=\"\"\"\">Sonoma County Harvest Fair Wine Competition</a>&nbsp;</span><span style=\"\"color: rgb(10, 10, 10); font-family: D-DIN; font-style: italic;\"\">(2018 vintage)</span><span style=\"\"color: rgb(10, 10, 10); font-family: D-DIN; font-style: italic;\"\"><br></span></p><div><br></div></div><div><span style=\"\"font-weight: bold;\"\">The Sommelier Company&nbsp; |&nbsp; 90 points</span></div><div><span style=\"\"font-style: italic;\"\">\"\"Supple and juicy, balanced and refined—this is Zinfandel’s elegant side. The foreground is equal measures of brambly dark fruit and concentrated red fruit, with an enduring overlay of rose perfume. Eastern and barbecue spices linger on the finish with black licorice, molasses and cocoa,\"\"&nbsp;</span>Adam Edmonsond. (2014 vintage)</div><div><br></div><div><span style=\"\"font-style: italic;\"\">\"\"This Zinfandel shows a wide, layered multiplicity of aromas and flavors. The body is typically full but not a jammy Zinfandel body. Characteristic of Dry Creek, its balance is noteworthy, and that allows delicate flavors on the palate to keep in step with a complex nose,\"\"&nbsp;</span>Jörn Kleinhans, CSW. (2014 vintage)</div>\"'),(38679,2683,'meta_data_feature-text','Dry Creek, Sonoma County'),(38680,2683,'meta_data_wine-notes','$36.00'),(38681,2683,'meta_data_technical-notes','<div>Appellation: &nbsp;Dry Creek Valley, Sonoma County</div><div>Varietal: &nbsp;80% Zinfandel, 20% Petite Sirah</div><div>Harvest Date: &nbsp;October 2018</div><div>Bottling Date: &nbsp;January 2019</div><div>Case Production: 198 cases</div><div>Alcohol: 15.67%</div>'),(38682,2683,'rating',''),(38683,2683,'wine_vertical',''),(38684,2683,'wine_score',''),(38685,2684,'web_id','bb4c6e2a-4433-4668-89e1-387e21818908'),(38686,2684,'slug','2018-zinfandel-louvau-vineyard-375ml'),(38687,2684,'title','2018 Zinfandel, Louvau Vineyard 375mL'),(38688,2684,'type','Wine'),(38689,2684,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1080-1657824871071.png'),(38690,2684,'teaser','Limited production Zinfandel from the Louvau Vineyard in the Dry Creek Valley, Sonoma County.'),(38691,2684,'content','<p><strong>TASTING NOTE:</strong>&nbsp; Rich fruit notes of blackberry and cherry, followed by subtle secondary botanical notes of cherry wood and anise blossom define the nose.&nbsp; The front palate exhibits a firm structure with intense flavors of blackberry pie, currants, and clove. The racy acidity on the mid-palate stands up to noticeable tannins, leading into a robust, lingering, and supple finish.</p>\n<p><strong>FOOD PAIRING:&nbsp;&nbsp;</strong>This balanced Zinfandel pairs well with a variety of dishes such as spicy baby back ribs, classic BBQ fare, rich mole sauces, and pasta with red sauce.&nbsp; On its own, this wine is an indulgent delight.</p>\n<h3 style=\"font-weight: 600;\">TECHNICAL NOTES</h3>\n<p>Format: 375ml (Half-Bottle)</p>\n<p>Appellation: &nbsp;Dry Creek Valley, Sonoma County</p>\n<p>Varietal: &nbsp;Zinfandel</p>\n<p>Harvest Date: &nbsp;October 2016</p>\n<p>Bottling Date: &nbsp;January 2019</p>\n<p>Case Production: 195 cases</p>\n<p>Alcohol: 14.5%</p>\n<h3 style=\"font-weight: 600;\">AWARDS AND REVIEWS</h3>\n<p><strong>The Sommelier Company&nbsp; |&nbsp; 90 points</strong></p>\n<p><em>\"Supple and juicy, balanced and refined&mdash;this is Zinfandel&rsquo;s elegant side. The foreground is equal measures of brambly dark fruit and concentrated red fruit, with an enduring overlay of rose perfume. Eastern and barbecue spices linger on the finish with black licorice, molasses and cocoa,\"&nbsp;</em>Adam Edmonsond. (2014 vintage)</p>\n<p><em>\"This Zinfandel shows a wide, layered multiplicity of aromas and flavors. The body is typically full but not a jammy Zinfandel body. Characteristic of Dry Creek, its balance is noteworthy, and that allows delicate flavors on the palate to keep in step with a complex nose,\"&nbsp;</em>J&ouml;rn Kleinhans, CSW. (2014 vintage)</p>\n<p style=\"font-weight: 400;\" data-ecp-handle=\"view_pdf\"><a href=\"https://client-assets.ecellar1.com/meadowcroftwines/prod_pdf_1080.pdf\">Download Complete Wine Tasting Notes</a></p>'),(38692,2684,'subtitle','Dry Creek Valley, Sonoma County'),(38693,2684,'price','2000'),(38694,2684,'web_status','Not Available'),(38695,2684,'admin_status','Available'),(38696,2684,'varietal','Zinfandel'),(38697,2684,'appellation','Dry Creek Valley'),(38698,2684,'vintage','2018'),(38699,2684,'rating',''),(38700,2684,'wine_vertical',''),(38701,2684,'wine_score',''),(38702,2685,'web_id','34e34bb3-f8f1-4a2e-8cf0-237890b247fb'),(38703,2685,'slug','2018-zinfandel-speedy-creek-vineyard'),(38704,2685,'title','2018 Zinfandel, Speedy Creek Vineyard'),(38705,2685,'type','Wine'),(38706,2685,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_zinfandel_2018_speedycreek-1688597852272.png'),(38707,2685,'teaser',NULL),(38708,2685,'content','<p>Nestled in the mountains above Knights Valley, Speedy Creek Vineyard produces amazing zinfandel. &nbsp;Warm sunny days and mild summer nights provide the ideal climate to allow the grapes to reach their maximum degree of ripeness.</p>\n<p><strong>TASTING NOTE:&nbsp;&nbsp;</strong></p>\n<p>On the nose, candied blueberries and nutmeg are framed by clarified butter and shortbread. On the palate, ripe blackberries are followed by secondary flavors of wild mint, fennel, chicory, and tangy dried cherry with a hint of black pepper on the back palate Best now through 2027.</p>\n<p><strong>FOOD PAIRINGS:&nbsp;&nbsp;</strong></p>\n<p>The cheerful acidity and layered complexities of this special Zin are perfect for pairing with bold-flavored dishes like Korean short ribs, brisket, or grilled vegetables.&nbsp;</p>\n<p>&nbsp;</p>\n<h3 style=\"font-weight: 600;\">TECHNICAL NOTES</h3>\n<p>Appellation: &nbsp;Knights Valley, Sonoma County</p>\n<p>Varietal: &nbsp;Zinfandel</p>\n<p>Harvested: &nbsp;September 2018</p>\n<p>Bottle Date: &nbsp;November 2020</p>\n<p>Production: &nbsp;160 Cases</p>\n<p>&nbsp;</p>\n<p style=\"font-weight: 400;\" data-ecp-handle=\"view_pdf\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/05/Meadowcroft_2018_SpeedyCreek_Zin_TECHSheet.pdf\">Download Complete Wine Tasting Notes</a></p>'),(38709,2685,'subtitle','Knights Valley, Sonoma County'),(38710,2685,'price','4500'),(38711,2685,'web_status','Not Available'),(38712,2685,'admin_status','Available'),(38713,2685,'varietal','Zinfandel'),(38714,2685,'appellation','Knights Valley'),(38715,2685,'vintage','2018'),(38716,2685,'rating',''),(38717,2685,'wine_vertical',''),(38718,2685,'wine_score',''),(38719,2686,'web_id','1476552e-346a-44eb-9e52-dc96224af25e'),(38720,2686,'slug','2018-zinfandel-speedy-creek-vineyard-shiner-'),(38721,2686,'title','2018 Zinfandel, Speedy Creek Vineyard **SHINER**'),(38722,2686,'type','Wine'),(38723,2686,'image',NULL),(38724,2686,'teaser',NULL),(38725,2686,'content',NULL),(38726,2686,'subtitle','SHINER'),(38727,2686,'price','0'),(38728,2686,'web_status','Not Available'),(38729,2686,'admin_status','Not Available'),(38730,2686,'varietal',NULL),(38731,2686,'appellation',NULL),(38732,2686,'vintage',NULL),(38733,2686,'rating',''),(38734,2686,'wine_vertical',''),(38735,2686,'wine_score',''),(38736,2687,'web_id','2ce86d95-afbe-48a0-97db-362d4e47cfd2'),(38737,2687,'slug','2019-cab-franc-rivino-vineyard'),(38738,2687,'title','2019 Cabernet Franc, Rivino Vineyard'),(38739,2687,'type','Wine'),(38740,2687,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_cab-franc-rivino-2019-1688597992428.png'),(38741,2687,'teaser',NULL),(38742,2687,'content','<p>TASTING NOTES: <span id=\"page70R_mcid4\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">A varietal most often used to enhance other red varietals with a&nbsp;</span></span><span id=\"page70R_mcid5\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">touch of spice, herbal lift, or rich depth of fruit, Cabernet Franc&nbsp;</span></span><span id=\"page70R_mcid6\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">is rarely produced as a single varietal. Meadowcroft&rsquo;s first vintage&nbsp;</span></span><span id=\"page70R_mcid7\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">of Rivino Mendocino Cabernet Franc is sourced from a boutique,&nbsp;</span></span><span id=\"page70R_mcid8\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">100% family-owned estate vineyard farmed nestled on the edge&nbsp;</span></span><span id=\"page70R_mcid9\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">of the Russian River in Mendocino, California. Our Rivino&nbsp;</span></span><span id=\"page70R_mcid10\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Vineyard Cabernet Franc features aromas of subtle cocoa, herbal&nbsp;</span></span><span id=\"page70R_mcid11\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">notes, dark red and black fruits. The palate is precise, layered&nbsp;</span></span><span id=\"page70R_mcid12\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">flavors of cranberry, blueberry, spice, and a hint of savoriness,&nbsp;</span></span><span id=\"page70R_mcid13\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">finishing with a hint of cocoa nib.</span></span></p>\n<p><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">FOOD PAIRING: <span id=\"page70R_mcid16\" class=\"markedContent\">The high acidity and medium tannins in this wine make it&nbsp;</span><span id=\"page70R_mcid17\" class=\"markedContent\">ideal for pairing with tomato based-sauces, traditional&nbsp;</span><span id=\"page70R_mcid18\" class=\"markedContent\">BBQ, and fresh herbs. A great choice to serve alongside&nbsp;</span><span id=\"page70R_mcid19\" class=\"markedContent\">roasted poultry and grilled meats, as well as rich vegetarian&nbsp;</span><span id=\"page70R_mcid20\" class=\"markedContent\">fare like lentil stew.</span></span></span></p>\n<p><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/08/TechSheet-2019CabFranc-Final-1.pdf\"><strong>Wine Notes</strong></a></p>\n<p>&nbsp;</p>\n<p><strong><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">TECHNICAL DATA:</span></span></strong></p>\n<p><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\"><span id=\"page70R_mcid23\" class=\"markedContent\">Appelation:</span><span id=\"page70R_mcid24\" class=\"markedContent\"> Rivino Vineyard, Mendocino County</span><span id=\"page70R_mcid25\" class=\"markedContent\"><br role=\"presentation\" />Varietal:</span><span id=\"page70R_mcid26\" class=\"markedContent\"> Cabernet Franc</span><span id=\"page70R_mcid27\" class=\"markedContent\"><br role=\"presentation\" />Harvested:</span><span id=\"page70R_mcid28\" class=\"markedContent\"> September, 2019</span><span id=\"page70R_mcid29\" class=\"markedContent\"><br role=\"presentation\" />Bottled:</span><span id=\"page70R_mcid30\" class=\"markedContent\"> June 2022</span><span id=\"page70R_mcid31\" class=\"markedContent\"><br role=\"presentation\" />Production:</span><span id=\"page70R_mcid32\" class=\"markedContent\"> 125 Cases</span></span></span></p>'),(38743,2687,'subtitle','Mendocino County'),(38744,2687,'price','4500'),(38745,2687,'web_status','Not Available'),(38746,2687,'admin_status','Available'),(38747,2687,'varietal','Cabernet Franc'),(38748,2687,'appellation','Mendocino'),(38749,2687,'vintage','2019'),(38750,2687,'rating',''),(38751,2687,'wine_vertical',''),(38752,2687,'wine_score',''),(38753,2688,'web_id','40798b52-8e57-45d8-a736-7ef7e99d4951'),(38754,2688,'slug','2019-cabernet-sauvignon--nelson-ranch-vineyard'),(38755,2688,'title','2019 Cabernet Sauvignon,  Nelson Ranch Vineyard'),(38756,2688,'type','Wine'),(38757,2688,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1248-1660261109467.png'),(38758,2688,'teaser',NULL),(38759,2688,'content','<p>TASTING NOTE:&nbsp; Elegant and rich<span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">, this Cabernet Sauvignon leads with notes of wild blueberries, fennel, and ripe red cherries. Sumptuous flavors of black currants and blackberries are layered with bedrock flavors of savory bay leaf and baking spice This is sure to evolve beautifully in the glass; best now through 2026.</span></p>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp;&nbsp;Crafted to pair with food, this full-bodied wine pairs deliciously with red meat, hearty pasta, and strong cheeses. Try a Waygu burger with blue cheese and caramelized onions. Not a meat fan? This wine would also pair well with a salad with berries in it or with a fruit-based dressing.</div>\n<div>&nbsp;</div>\n<div>&nbsp;</div>\n<div><strong>TECHNICAL DATA:</strong></div>\n<div>&nbsp;</div>\n<div><span id=\"page64R_mcid16\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Appelation: Nelson Ranch Vineyard,&nbsp;</span></span><span id=\"page64R_mcid16\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\"><span id=\"page64R_mcid29\" class=\"markedContent\">Mendocino County</span></span></span><span id=\"page64R_mcid17\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Varietal:&nbsp;<span id=\"page64R_mcid29\" class=\"markedContent\">Cabernet Sauvignon</span></span></span><span id=\"page64R_mcid18\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Harvested: <span id=\"page64R_mcid29\" class=\"markedContent\">September 2019</span></span></span><span id=\"page64R_mcid19\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Bottled: <span id=\"page64R_mcid29\" class=\"markedContent\">March 2022</span></span></span><span id=\"page64R_mcid20\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Production: <span id=\"page64R_mcid29\" class=\"markedContent\">238 Cases</span></span></span><span id=\"page64R_mcid29\" class=\"markedContent\"><br /></span></div>'),(38760,2688,'subtitle','Mendocino County'),(38761,2688,'price','5500'),(38762,2688,'web_status','Not Available'),(38763,2688,'admin_status','Not Available'),(38764,2688,'varietal','Cabernet Sauvignon'),(38765,2688,'appellation','Mendocino'),(38766,2688,'vintage','2019'),(38767,2688,'meta_data_feature-text','Mendocino'),(38768,2688,'meta_data_wine-notes','$40.00'),(38769,2688,'meta_data_technical-notes','<div> Appellation: &nbsp;Mendocino County<br>Varietal: &nbsp;Cabernet Sauvignon<br>Harvest Date: &nbsp;September 2019<br>Bottled Date: &nbsp;March 2022<br>Alcohol: &nbsp;14.58%<br>Case Production: &nbsp;238 cases<div><div><br></div></div></div>'),(38770,2688,'rating',''),(38771,2688,'wine_vertical',''),(38772,2688,'wine_score',''),(38773,2689,'web_id','f67a2028-796d-4ff4-a10e-9d3876e82613'),(38774,2689,'slug','2019-mt-veeder-cabernet-sauvignon'),(38775,2689,'title','2019 Cabernet Sauvignon, Mt. Veeder Estate'),(38776,2689,'type','Wine'),(38777,2689,'image','https://images.commerce7.com/meadowcroft-wines/images/original/mc_veeder_2019_bottleshot_png-1663715126398.png'),(38778,2689,'teaser',''),(38779,2689,'content','<p><strong>TASTING NOTES:</strong>&nbsp;&nbsp;Perched at the top of Mount Veeder in Napa Valley, this high-elevation vineyard is the sole source of cabernet sauvignon for this densely rich and concentrated, full-bodied wine. Aromas of dark chocolate and ripe mountain blueberry explode in tones of black currant, sage, and exotic black pepper. The palate offers a smooth and tingling acidity,&nbsp; yet also shows length and breadth.&nbsp; This wine will be best enjoyed now through 2030.</p>\n<p><strong>FOOD PAIRING:</strong> &nbsp;The 2019 Mount Veeder Napa Valley Cabernet Sauvignon is an excellent match for rosemary-pepper beef rib roast with porcini jus, pan-roasted veal chops with cabernet sauce, or a hanger steak with Pommes Frites.</p>\n<p><strong>TECHNICAL DATA:</strong></p>\n<p><span id=\"page64R_mcid24\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Appelation: <span id=\"page64R_mcid31\" class=\"markedContent\">Mount Veeder, Napa Valley</span></span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Varietal: <span id=\"page64R_mcid31\" class=\"markedContent\">Cabernet Sauvignon</span></span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Harvested: <span id=\"page64R_mcid31\" class=\"markedContent\">September 2019</span></span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Bottled:&nbsp;<span id=\"page64R_mcid31\" class=\"markedContent\">May 2021</span></span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Production: <span id=\"page64R_mcid31\" class=\"markedContent\">52 Cases</span></span><br role=\"presentation\" /></span><span id=\"page64R_mcid31\" class=\"markedContent\"><br /></span></p>\n<p><strong>ACCOLADES:</strong> 93 pts International Wine Report</p>'),(38780,2689,'subtitle',''),(38781,2689,'price','12500'),(38782,2689,'web_status','Not Available'),(38783,2689,'admin_status','Available'),(38784,2689,'varietal','Cabernet Sauvignon'),(38785,2689,'appellation','Mt. Veeder'),(38786,2689,'vintage','2019'),(38787,2689,'meta_data_review-text','<div>98 pts GOLD |&nbsp; Sunset Wine Competition&nbsp; |&nbsp; 2016 Mt Veeder Cabernet Sauvignon</div>\n<div>90pts |&nbsp; James Suckling&nbsp; |&nbsp; 2016 Mt Veeder Cabernet Sauvignon</div>\n<div>93 pts |&nbsp; Sommelier Company |&nbsp; 2016 Mt Veeder Cabernet Sauvignon</div>\n<div>94 pts |&nbsp; Wine Enthusiast&nbsp; |&nbsp; 2005 Mt Veeder Cabernet Sauvignon</div>\n<div>91 pts |&nbsp; Wine Enthusiast&nbsp; |&nbsp; 2008 Mt Veeder Cabernet Sauvignon</div>\n<div>91 pts |&nbsp; James Suckling&nbsp; |&nbsp; 2013 Mt Veeder Cabernet Sauvignon</div>\n<div>&nbsp;</div>'),(38788,2689,'meta_data_feature-text','<p>Mt Veeder, Napa Valley</p>'),(38789,2689,'meta_data_wine-notes','<p>$92.00</p>'),(38790,2689,'meta_data_technical-notes','<div>\n<div>Appellation:&nbsp; Mt. Veeder, Napa Valley</div>\n<div>Varietal:&nbsp; Cabernet Sauvignon</div>\n<div>Harvested:&nbsp; October 2019</div>\n<div>Bottle Date:&nbsp; May 2021</div>\n<div>Production:&nbsp; 168 cases</div>\n</div>\n<div>&nbsp;</div>'),(38791,2689,'rating',''),(38792,2689,'wine_vertical',''),(38793,2689,'wine_score',''),(38794,2690,'web_id','b9b0b4e8-4ba0-4943-95db-a2f027fc7c0b'),(38795,2690,'slug','2019-cabernet-sauvignon-napa-valley'),(38796,2690,'title','2019 Cabernet Sauvignon, Napa Valley'),(38797,2690,'type','Wine'),(38798,2690,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1118-1660261078573.png'),(38799,2690,'teaser',NULL),(38800,2690,'content','<p><span style=\"font-weight: bold;\">TASTING NOTES:&nbsp; </span>Despite unpredictable weather<span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">, the 2019 vintage was a perfect \"storm\" of growing conditions in the Napa Valley. Our 2019 Napa Cabernet is true to vintage, showcasing stellar fruit concentration, ample acidity, and depth. Upfront aromatics offer suggestions of boysenberry jam, elderberry, plum, anise seed, and vanilla bean. The mouthfeel is smooth despite the firm tannins, and the finish is extended and laden with cocoa, black pepper, and leather. This is sure to improve with age; best now through 2029.</span></p>\n<div>&nbsp;</div>\n<div>\n<div><strong>FOOD PAIRING:</strong>&nbsp;&nbsp;This versatile, food-friendly wine pairs well with traditional main courses such as steaks and braised short ribs. Try serving with your favorite comfort food such as meatloaf, polenta with Bolognese, or beef pot pies.</div>\n<div>&nbsp;</div>\n<div><strong>ACCOLADES:</strong></div>\n<div><strong>92pts</strong> - International Wine Review</div>\n</div>'),(38801,2690,'subtitle',NULL),(38802,2690,'price','6500'),(38803,2690,'web_status','Not Available'),(38804,2690,'admin_status','Not Available'),(38805,2690,'varietal','Cabernet Sauvignon'),(38806,2690,'appellation','Napa Valley'),(38807,2690,'vintage','2019'),(38808,2690,'meta_data_review-text','<div>90 pt |&nbsp; James Suckling&nbsp; |&nbsp; 2016 vintage<br></div><div><span style=\"font-style: italic;\"\">A prototypical, modern Napa red that has the big cassis character of fully ripe cabernet sauvignon, moderate tannins that are already well integrated and nice freshness at the finish.&nbsp; Makes you want to order or cook some Osso Bucco.&nbsp; &nbsp;</span></div><div><br></div>94 pts | &nbsp;Chris Sawyer, Certified Sommelier&nbsp; |&nbsp; 2014 vintage<br><div><span style=\"\"font-style: italic;\"\">&nbsp;On the palate, the generous flavors of black raspberry, dark cherry, cassis, ripe currants, cinnamon, hickory spice and dark chocolate truffle are complemented with a harmonious mixture of smooth, silky texture, chewy tannins, firm structure, and a lingering finish. Overall, an extremely well-crafted wine that is not only approachable when young, but also worthy of cellaring for more 10-15 years.</span></div>\"'),(38809,2690,'meta_data_feature-text','Special Shipping offer on 6+ Bottles'),(38810,2690,'meta_data_wine-notes','$52.00'),(38811,2690,'meta_data_technical-notes','<div>Appellation: &nbsp;Napa Valley<br>Varietal: &nbsp;Cabernet Sauvignon<br>Harvested:&nbsp; October 2019<br>Bottle Date:&nbsp; May 2021<br>Production: 620 cases<br></div>'),(38812,2690,'rating',''),(38813,2690,'wine_vertical',''),(38814,2690,'wine_score',''),(38815,2691,'web_id','3a6e3a9c-ef26-40f7-a4b8-3b4befa08b68'),(38816,2691,'slug','2019-cabernet-sauvignon-oakville'),(38817,2691,'title','2019 Cabernet Sauvignon, Oakville'),(38818,2691,'type','Wine'),(38819,2691,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft-2019_cabernet_oakville_bottleshot-1657822026564.png'),(38820,2691,'teaser',NULL),(38821,2691,'content','<p style=\"font-weight: 400;\" data-ecp-handle=\"description\" aria-label=\"Product description\">The inaugural vintage of our Oakville Cabernet Sauvignon is generous and supple, sourced from a wine-growing region that is known for producing powerful, rich, structured wines due to the volcanic and clay soils and high elevation weather conditions.</p>\n<p style=\"font-weight: 400;\" data-ecp-handle=\"description\" aria-label=\"Product description\">TASTING NOTES: This rich, complex wine features blueberry and blackberry characteristics framed by notes of violets and tea leaves. Full-bodied, with firm and silky tannins, the flavor profile is dominated by vivid flavors of cassis, blackberries, and mocha. This wine is an ideal candidate for cellaring and should mature well over the next 10 years.</p>\n<p>FOOD PAIRING:&nbsp;The bold, robust flavors and tannins in this cabernet pair nicely with proteins like steak, veal, lamb, or bison. Complex spices, not spicy, but flavorful, bring out the fruit characteristics of this wine. Plant-based pairings like olives, eggplants, and mushrooms prepared with fresh herbs work well.</p>\n<h3 style=\"font-weight: 600;\">TECHNICAL NOTES</h3>\n<p>Appellation: Oakville, Napa Valley</p>\n<p>Varietal:&nbsp;91% Cabernet Sauvignon, 9% Petite Verdot&nbsp;</p>\n<p>Harvested: September 2019</p>\n<p>Bottling Date: December 2021</p>\n<p>Production: 150 cases</p>\n<p>Alcohol: 14.84%</p>\n<p>&nbsp;</p>\n<h3 style=\"font-weight: 600;\">AWARDS AND REVIEWS</h3>\n<p>91 points &nbsp;|&nbsp;&nbsp;<a href=\"https://www.jamessuckling.com/\">JamesSuckling.com</a>&nbsp;</p>\n<p><em>\"Crushed raspberries, ripe cherries, blackberries, dried thyme, lavender, and spice box on the nose. Medium-bodied with plush tannins. Round, creamy, and polished with pretty vanilla notes on the finish. Drink from 2023.\"&nbsp;<strong>James Suckling</strong></em></p>\n<p>Silver |&nbsp;<a href=\"https://winejudging.com/medal-winners/2022-medal-winners/\">San Francisco International Wines Competition</a>&nbsp;(2022)</p>\n<p style=\"font-weight: 400;\" data-ecp-handle=\"view_pdf\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/05/Meadowcroft-2019_Cabernet_Oakville_Techsheet.pdf\">Download Complete Wine Tasting Notes</a></p>'),(38822,2691,'subtitle',NULL),(38823,2691,'price','12500'),(38824,2691,'web_status','Not Available'),(38825,2691,'admin_status','Available'),(38826,2691,'varietal','Cabernet Sauvignon'),(38827,2691,'appellation','Oakville'),(38828,2691,'vintage','2019'),(38829,2691,'meta_data_review-text','<p>91 points &nbsp;|&nbsp;&nbsp;<a href=\"https://www.jamessuckling.com/\">JamesSuckling.com</a>&nbsp;</p>\n<p><em>\"Crushed raspberries, ripe cherries, blackberries, dried thyme, lavender, and spice box on the nose. Medium-bodied with plush tannins. Round, creamy, and polished with pretty vanilla notes on the finish. Drink from 2023.\"&nbsp;<strong>James Suckling</strong></em></p>\n<p>Silver |&nbsp;<a href=\"https://winejudging.com/medal-winners/2022-medal-winners/\">San Francisco International Wines Competition</a>&nbsp;(2022)</p>'),(38830,2691,'meta_data_feature-text','<p>Napa Valley</p>'),(38831,2691,'meta_data_wine-notes','<p>This rich, complex wine features blueberry and blackberry characteristics framed by notes of violets and tea leaves. Full-bodied, with firm and silky tannins, the flavor profile is dominated by vivid flavors of cassis, blackberries, and mocha. This wine is an ideal candidate for cellaring and should mature well over the next 10 years.</p>'),(38832,2691,'meta_data_technical-notes','<p>Appellation: Oakville, Napa Valley</p>\n<p>Varietal:&nbsp;91% Cabernet Sauvignon, 9% Petite Verdot&nbsp;</p>\n<p>Harvested: September 2019</p>\n<p>Bottling Date: December 2021</p>\n<p>Production: 150 cases</p>\n<p>Alcohol: 14.84%</p>'),(38833,2691,'rating',''),(38834,2691,'wine_vertical',''),(38835,2691,'wine_score',''),(38836,2692,'web_id','d40e432e-e010-44d9-902f-8a246dd0f89b'),(38837,2692,'slug','2017-cabernet-sauvignon-louvau-vineyard'),(38838,2692,'title','2017 Cabernet Sauvignon, Louvau Vineyard'),(38839,2692,'type','Wine'),(38840,2692,'image','https://images.commerce7.com/meadowcroft-wines/images/original/mc_2019_wyldvin_cabernet_bottleshot-1657751607274.png'),(38841,2692,'teaser',NULL),(38842,2692,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>TASTING NOTE:&nbsp; Reminiscent of an old-world style Cabernet, with an earthiness that complements the fruit. The nose features a pleasant dustiness that evolves into notes of leather and a dollop of black fruit. The palate exhibits a&nbsp; black fruit character with flavors of blackberries and plum. The finish lingers with a balanced tannic structure.&nbsp;. Drink now through 2028.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING: &nbsp;This rich and robust Cabernet is a great match with a filet or grilled t-bone.&nbsp; Not too heavy for pulled pork or&nbsp; Italian dishes,&nbsp; but full-bodied enough to serve with short ribs or a&nbsp; mushroom bacon burger.&nbsp; Umami flavors like&nbsp; Shitake mushrooms and roasted red peppers also pair nicely with this wine.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">Appellation: &nbsp;Dry Creek Valley, Sonoma County<br />Varietal:&nbsp; 72% Cabernet, 15% Mourvedre, 4% Cab Franc, 5 % Petite Sirah, 4 % Merlot<br /><br /><br />\n<div>&nbsp;</div>\n<div>&nbsp;</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://client-assets.ecellar1.com/meadowcroftwines/prod_pdf_1223.pdf\" target=\"_blank\" rel=\"noopener\">Download Complete Wine Tasting Notes</a></div>'),(38843,2692,'subtitle','Dry Creek Valley, Sonoma County'),(38844,2692,'price','5000'),(38845,2692,'web_status','Not Available'),(38846,2692,'admin_status','Available'),(38847,2692,'varietal','Cabernet Sauvignon'),(38848,2692,'appellation','Sonoma County'),(38849,2692,'vintage','2017'),(38850,2692,'rating',''),(38851,2692,'wine_vertical',''),(38852,2692,'wine_score',''),(38853,2693,'web_id','acb34a69-3cbe-4e9a-962e-784782313f4c'),(38854,2693,'slug','2019-chardonnay-bonneau-vineyard'),(38855,2693,'title','2019 Chardonnay, Bonneau Vineyard'),(38856,2693,'type','Wine'),(38857,2693,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_2019_loscarneros_sonoma_chardonnay-1657237969890.png'),(38858,2693,'teaser',''),(38859,2693,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">TASTING NOTE:&nbsp;&nbsp;This elegant wine features aromas of baked pear, crisp apple and vanilla bean. Layered notes of pie crust, caramel and baking spices are framed by toasted oak. Expect a delicate, extended finish on this well-balanced chardonnay.<br /><br />\n<div>FOOD PAIRING:&nbsp;&nbsp;This wine will pair gracefully with any cheese and charcuterie board.&nbsp; This wine would also complement entrees such as Roasted Halibut with Lemon, Olives, and Rosemary; Buttermilk-Brined Roasted Chicken; or Pasta Carbonara.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">\n<div>Appellation: Los Carneros, Sonoma County</div>\n<div>Varietal:&nbsp; Chardonnay</div>\n<div>Harvested:&nbsp; September 2019</div>\n<div>Barrel Regime:&nbsp; 20% New French Oak</div>\n<div>Bottled Date:&nbsp; June 2020</div>\n<div>Production:&nbsp; 300 cases</div>\n<div>Alchohol: 13.2%</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://client-assets.ecellar1.com/meadowcroftwines/prod_pdf_1074.pdf\" target=\"_blank\" rel=\"noopener\">Download Complete Wine Tasting Notes</a></div>'),(38860,2693,'subtitle','Los Carneros, Sonoma County'),(38861,2693,'price','3500'),(38862,2693,'web_status','Available'),(38863,2693,'admin_status','Available'),(38864,2693,'varietal','Chardonnay'),(38865,2693,'appellation','Los Carneros'),(38866,2693,'vintage','2019'),(38867,2693,'rating',''),(38868,2693,'wine_vertical',''),(38869,2693,'wine_score',''),(38870,2694,'web_id','5b33243c-6c48-444e-8c7b-771da9700d79'),(38871,2694,'slug','2019-napa-los-carneros-chardonnay'),(38872,2694,'title','2019 Chardonnay, Los Carneros'),(38873,2694,'type','Wine'),(38874,2694,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1025-1660261051213.png'),(38875,2694,'teaser','The Carneros region of Napa County is known for producing high-quality chardonnay grapes.  With rolling hills and fertile soil, Carneros experiences late afternoon breezes from the Pacific Ocean which naturally cools this area.'),(38876,2694,'content','<p><span>TASTING NOTE:&nbsp;</span> Complex aromas of vanilla, tropical fruit, and hints of baking spices are complemented by subtle toasty oak.&nbsp; The entry is honeyed with ripe citrus, peach, well-integrated nuttiness, and a touch of minerality.&nbsp; This wine has a beautiful balance and a lingering finish.&nbsp;<br /><br /></p>\n<div>FOOD PAIRING:&nbsp;&nbsp;This wine will pair gracefully with any cheese and charcuterie board.&nbsp; This wine would also complement entrees such as Roasted Halibut with Lemon, Olives, and Rosemary; Buttermilk-Brined Roasted Chicken; or Pasta Carbonara.</div>\n<p>&nbsp;</p>'),(38877,2694,'subtitle','Napa Valley'),(38878,2694,'price','3200'),(38879,2694,'web_status','Not Available'),(38880,2694,'admin_status','Available'),(38881,2694,'varietal','Chardonnay'),(38882,2694,'appellation','Carneros'),(38883,2694,'vintage','2019'),(38884,2694,'meta_data_feature-text','Los Carneros, Napa'),(38885,2694,'meta_data_wine-notes','$25.60'),(38886,2694,'meta_data_technical-notes','<div>Appellation: Los Carneros, Napa Valley</div><div>Varietal:&nbsp; Chardonnay</div><div>Harvested:&nbsp; August 2019</div><div>Barrel Regime:&nbsp; 25% New French Oak</div><div>Bottled Date:&nbsp; June 2020</div><div>Production:&nbsp; 1,200 cases</div>'),(38887,2694,'rating',''),(38888,2694,'wine_vertical',''),(38889,2694,'wine_score',''),(38890,2695,'web_id','cf49800b-f4cb-4e80-b74c-a66d6407049e'),(38891,2695,'slug','2019-chardonnay-napa-valley-375ml'),(38892,2695,'title','2019 Chardonnay, Napa Valley 375mL'),(38893,2695,'type','Wine'),(38894,2695,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1065-1657824427266.png'),(38895,2695,'teaser',NULL),(38896,2695,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>TASTING NOTES:&nbsp; &nbsp;A sumptuous bouquet of Honeycrisp apple and juicy pear blend with notes of toasted marshmallow, this wine has focused on ripe apple, honeysuckle, and a touch of lemon meringue on the finish.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp; The 2019 Napa Valley Chardonnay will pair with the fresh and lively flavors of Mexican street foods such as ceviche tacos and Elote, grilled freshly shucked corn served with Cotjia cheese, Mexican crema, cilantro, chili, and lime.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">\n<div>Appellation:&nbsp;Napa Valley</div>\n<div>Varietal:&nbsp; Chardonnay</div>\n<div>Harvested:&nbsp; September 2019</div>\n<div>Bottled Date:&nbsp; November 2020</div>\n<div>Production:&nbsp; 170 Cases</div>\n</div>\n</div>'),(38897,2695,'subtitle',NULL),(38898,2695,'price','1800'),(38899,2695,'web_status','Not Available'),(38900,2695,'admin_status','Not Available'),(38901,2695,'varietal','Chardonnay'),(38902,2695,'appellation','Napa Valley'),(38903,2695,'vintage','2019'),(38904,2695,'rating',''),(38905,2695,'wine_vertical',''),(38906,2695,'wine_score',''),(38907,2696,'web_id','0899abda-429b-42fb-808c-962dd6136075'),(38908,2696,'slug','2019-cru-de-la-ruche-malbec-clements-hill'),(38909,2696,'title','2019 Cru de la Ruche Malbec, Clements Hill'),(38910,2696,'type','Wine'),(38911,2696,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1072-1660262382740.png'),(38912,2696,'teaser','The name Cru de la Ruche, meaning vintage of the beehive, is a nod to our connection to the honeybee and its amazing ability to transform nectar into honey paralleling the transformation from grapes to wine.'),(38913,2696,'content','<div><span style=\"font-weight: bold;\">TASTING NOTE:&nbsp;&nbsp;</span>&nbsp; This wine is saturated with dark fruit aromas and flavors of brambly blackberry and blueberry<span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">, accented by herbaceous secondary notes of leather and tobacco.&nbsp; Pleasantly viscous, with complex layers and grippy tannins.&nbsp; Expect a dancing acidity, with a rich mouthfeel and spicy oaked finish that lingers.</span>\n<div>\n<div><br />\n<div>FOOD PAIRING:&nbsp; &nbsp;Try this malbec with a variety of bold cuisines as it won&rsquo;t be overshadowed by heavily flavored foods.&nbsp; Also perfect for sipping on its own.</div>\n</div>\n</div>\n<div>&nbsp;</div>\n</div>'),(38914,2696,'subtitle','Lodi'),(38915,2696,'price','4000'),(38916,2696,'web_status','Not Available'),(38917,2696,'admin_status','Available'),(38918,2696,'varietal','Malbec'),(38919,2696,'appellation','Clements Hills'),(38920,2696,'vintage','2019'),(38921,2696,'meta_data_review-text','<div>95 pts DOUBLE GOLD |&nbsp;&nbsp;<a href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"\"\" style=\"\"background-color: rgb(255, 255, 255);\"\">Sunset International Wine Competition</a>&nbsp;<span style=\"\"font-style: italic;\"\">(2019 vintage)</span><br></div><div>92 pts GOLD |&nbsp; <a href=\"\"https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"\"\">Sunset International Wine Competition</a>&nbsp;<span style=\"\"font-style: italic;\"\">(2018 vintage)</span><br></div><div>GOLD |&nbsp; <a href=\"\"https://winejudging.com/\"\" title=\"\"SF Chronicle Wine Competition\"\" target=\"\"\"\">San Francisco Chronicle&nbsp;Wine Competition</a>&nbsp;<span style=\"\"font-style: italic;\"\">(2018 vintage)</span><br></div><div>92 pts GOLD |&nbsp; <a href=\"\"https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"\"\">Sunset International Wine Competition </a><span style=\"\"font-style: italic;\"\">(2017 vintage)</span></div><div>GOLD |&nbsp; <a href=\"\"https://winejudging.com/\"\" title=\"\"SF Chronicle Wine Competition\"\" target=\"\"\"\">San Francisco Chronicle&nbsp;Wine Competition</a>&nbsp;<span style=\"\"font-style: italic;\"\">(2017 vintage)</span><br>GOLD |&nbsp; <a href=\"\"https://winejudging.com/\"\" title=\"\"SF Chronicle Wine Competition\"\" target=\"\"\"\">San Francisco Chronicle&nbsp;Wine Competition </a><span style=\"\"font-style: italic;\"\">(2016 vintage)</span></div><div>DOUBLE GOLD | <a href=\"\"https://winejudging.com/\"\" title=\"\"SF Chronicle Wine Competition\"\" target=\"\"\"\">San Francisco Chronicle Wine Competition</a> <span style=\"\"font-style: italic;\"\">(2014 vintage)</span><br><span style=\"\"font-style: italic;\"\">Unanimous Gold voted by a five-member judging panel.&nbsp;</span></div>\"'),(38922,2696,'meta_data_feature-text','Lodi&nbsp;'),(38923,2696,'meta_data_wine-notes','$32.00'),(38924,2696,'meta_data_technical-notes','<div>Appellation:  Clements Hill, San Joaquin County&nbsp;</div><div>Varietal:  Malbec&nbsp;</div><div>Harvested: October 2019&nbsp;</div><div>Production:  200 cases&nbsp;</div><div>Alcohol:  14.75%</div>'),(38925,2696,'rating',''),(38926,2696,'wine_vertical',''),(38927,2696,'wine_score',''),(38928,2697,'web_id','4557f310-db06-47d6-958a-50b0de96c377'),(38929,2697,'slug','2019-russian-river-valley-french-colombard'),(38930,2697,'title','2019 French Colombard, Russian River Valley'),(38931,2697,'type','Wine'),(38932,2697,'image','https://images.commerce7.com/meadowcroft-wines/images/original/mc_frenchcolombard2019_bottleshot-1664134885945.png'),(38933,2697,'teaser',''),(38934,2697,'content','<div>Fermented in 90% Stainless Steel and 10% new French oak, our 2019 French Colombard expresses bright fruit flavors and refreshing acidity. &nbsp;French Colombard is a white French grape variety that is the offspring of Gouasi blanc and Chenin Blanc. &nbsp;In France, French Colombard is among the permitted white grape varieties in Bordeaux.&nbsp;&nbsp;</div>\n<div>&nbsp;</div>\n<div>TASTING NOTES: &nbsp;Aromas of white nectarine and subtle citrus come together in this refreshing wine.&nbsp; The palate is round and luscious notes of grapefruit and tangerine.&nbsp; The wine finishes with satisfying acidity.<br /><br /></div>\n<div>FOOD PAIRINGS: &nbsp;This refreshing wine will complement lively ceviche or creamy seafood risotto.&nbsp; The acidity in the wine is also a great match for spicy Indian dishes.</div>'),(38935,2697,'subtitle','Sonoma County'),(38936,2697,'price','0'),(38937,2697,'web_status','Not Available'),(38938,2697,'admin_status','Not Available'),(38939,2697,'varietal',NULL),(38940,2697,'appellation',NULL),(38941,2697,'vintage',NULL),(38942,2697,'meta_data_wine-notes','<div>TASTING NOTES: &nbsp;Aromas of white nectarine and subtle citrus come together in this refreshing wine.&nbsp; The palate is round and luscious notes of grapefruit and tangerine.&nbsp; The wine finishes with satisfying acidity.<br /><br /></div>\n<div>FOOD PAIRINGS: &nbsp;This refreshing wine will complement lively ceviche or creamy seafood risotto.&nbsp; The acidity in the wine is also a great match for spicy Indian dishes.&nbsp;</div>'),(38943,2697,'meta_data_technical-notes','<p>Appellation:&nbsp; Cameron Vineyard, Russian River Valley</p>\n<div>Fermentation:&nbsp; 90% Stainless Steel; 10% New French Oak</div>\n<div>Harvest Date:&nbsp; September 2019</div>\n<div>Bottling Date:&nbsp; June 2020</div>\n<div>Case Production:&nbsp;84 cases</div>\n<div>Alcohol:&nbsp; 13.3%</div>'),(38944,2697,'rating',''),(38945,2697,'wine_vertical',''),(38946,2697,'wine_score',''),(38947,2698,'web_id','6a5881d6-045e-49a4-8591-27e46beff7b5'),(38948,2698,'slug','1-5l-napa-to-sonoma-half-marathon-2019'),(38949,2698,'title','2019 Napa to Sonoma Half Marathon 1.5L'),(38950,2698,'type','Wine'),(38951,2698,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_986-1660261163509.png'),(38952,2698,'teaser',''),(38953,2698,'content','<div><span style=\"font-family: inherit; font-size: 1rem;\">Winegrower Tom Meadowcroft crafted this Los Carneros Sonoma Pinot Noir in honor of the</span></div>'),(38954,2698,'subtitle',''),(38955,2698,'price','11000'),(38956,2698,'web_status','Retired'),(38957,2698,'admin_status','Not Available'),(38958,2698,'varietal',NULL),(38959,2698,'appellation',NULL),(38960,2698,'vintage',NULL),(38961,2698,'meta_data_feature-text','Los Carneros, Sonoma'),(38962,2698,'meta_data_wine-notes','$88.00'),(38963,2698,'meta_data_technical-notes','Appellation: &nbsp;Los Carneros, Sonoma County<br><span style=\"line-height: 1.5;\"\">Varietal: &nbsp;Pinot Noir<br></span><span style=\"\"line-height: 1.5;\"\">Harvested:&nbsp; September 2017</span><span style=\"\"line-height: 1.5;\"\"><br></span><span style=\"\"line-height: 1.5;\"\">Production: &nbsp;40 cases</span>\"'),(38964,2698,'rating',''),(38965,2698,'wine_vertical',''),(38966,2698,'wine_score',''),(38967,2699,'web_id','b90d5687-7f52-4121-8394-357a8e7be0c3'),(38968,2699,'slug','2019-anderson-valley-pinot-noir'),(38969,2699,'title','2019 Pinot Noir, Anderson Valley'),(38970,2699,'type','Wine'),(38971,2699,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1024-1660261049945.png'),(38972,2699,'teaser',''),(38973,2699,'content','<p><span style=\"font-weight: bold;\">TASTING NOTES: &nbsp;</span>This elegant wine overflows with bright strawberry and floral with hints of toasted oak aromas and beautifully ripe pure cherry and raspberry flavors along with bergamot tea that adds complexity and interest.&nbsp; The silky-smooth texture keeps you wanting more.&nbsp;</p>\n<div><br />\n<div>\n<div><span>PAIRING NOTES:</span>&nbsp; Try this pinot noir with sesame-crusted seared ahi tuna over arugula salad.&nbsp; The elegant tannins of this wine will pair with a wide variety of cuisines from spicy to comfort foods.&nbsp; Also perfect for sipping on its own.</div>\n</div>\n</div>'),(38974,2699,'subtitle',''),(38975,2699,'price','3800'),(38976,2699,'web_status','Not Available'),(38977,2699,'admin_status','Not Available'),(38978,2699,'varietal','Pinot Noir'),(38979,2699,'appellation','Anderson Valley'),(38980,2699,'vintage','2019'),(38981,2699,'meta_data_review-text','<div>91 pts |&nbsp; Wilfred Wong of <span style=\"font-style: italic;\"\">www.wine.com&nbsp;</span>&nbsp;<br></div><div><span style=\"\"font-style: italic;\"\">The 2019 Meadowcroft Pinot Noir is a beautifully balanced wine. This wine shows pleasing red fruit, dried herbs, and savory accents in the aromas and on the palate. Pair it with a mildly-seasoned lamb stew.&nbsp;</span><br><br></div>\"'),(38982,2699,'meta_data_feature-text','Anderson Valley'),(38983,2699,'meta_data_wine-notes','$30.40'),(38984,2699,'meta_data_technical-notes','<div>Appellation: &nbsp;Anderson Valley, Mendocino County</div><div>Varietal: &nbsp;Pinot Noir</div><div>Harvested: &nbsp;September 2019</div><div>Bottle Date:&nbsp; January 2020</div><div>Production:&nbsp; 900 cases</div>'),(38985,2699,'rating',''),(38986,2699,'wine_vertical',''),(38987,2699,'wine_score',''),(38988,2700,'web_id','bf8338ec-b660-40bd-9f36-237a7fee3ffd'),(38989,2700,'slug','2019-meadowcroft-los-carneros-cornerstone-vineyard-pinot-noir'),(38990,2700,'title','2019 Pinot Noir, Cornerstone Vineyard'),(38991,2700,'type','Wine'),(38992,2700,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1112-1660261735486.png'),(38993,2700,'teaser',NULL),(38994,2700,'content','<p><span style=\"font-weight: bold;\">TASTING NOTE:&nbsp;</span> Supple<span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">, rich, and earthy- this archetypal Carneros pinot does not disappoint. The nose leads with black cherry compote and candied blackberries balanced with hints of black tea and cola. On the palate, the rich, dark fruit flavors align with a hint of cinnamon spice and sun-baked earth. The intensity of this wine extends through the finish, which lingers deliciously.</span></p>\n<div><br />\n<div>FOOD PAIRING: &nbsp;A reliable pairing for this wine is wild mushroom risotto, or a cheese plate, as this Pinot will pair nicely with a wide variety of cheeses. Try with an aged Camembert or creamy gouda alongside some cured meats.</div>\n</div>'),(38995,2700,'subtitle','Los Carneros, Sonoma County'),(38996,2700,'price','4600'),(38997,2700,'web_status','Not Available'),(38998,2700,'admin_status','Not Available'),(38999,2700,'varietal','Pinot Noir'),(39000,2700,'appellation','Los Carneros'),(39001,2700,'vintage','2019'),(39002,2700,'meta_data_review-text','<div><span style=\"font-weight: bold;\"\">AWARDS AND REVIEWS</span></div><div><div>CRITICS CHALLENGE 2021 | &nbsp;<span style=\"\"font-style: italic;\"\">2019 Cornerstone Pinot Noir</span></div><div>GOLD 93 Points</div></div><div><a href=\"\"http://https://www.jamessuckling.com/\"\" title=\"\"James Suckling \"\" target=\"\"\"\">James Suckling</a>&nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2015 Cornerstone Pinot Noir</span><br></div><span style=\"\"font-style: italic;\"\">A little jammy with strawberry and cherry character. &nbsp;Full body, round and juicy palate.&nbsp;</span><div><a href=\"\"http://https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"\"\">Sunset International Wine Competition </a>&nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2015 Cornerstone Pinot Noir</span></div><div>SILVER MEDAL</div>\"'),(39003,2700,'meta_data_feature-text','Los Carneros'),(39004,2700,'meta_data_wine-notes','$36.80<br>'),(39005,2700,'meta_data_technical-notes','Appellation: &nbsp;Los Carneros, Sonoma County<br><span style=\"line-height: 1.5;\"\">Varietal: &nbsp;Pinot Noir<br></span><span style=\"\"line-height: 1.5;\"\">Harvested: &nbsp;September 2019<br>B</span><span style=\"\"line-height: 1.5;\"\">ottle Date:&nbsp; May 2021<br></span><span style=\"\"line-height: 1.5;\"\">Production:&nbsp; 173 cases</span><br>\"'),(39006,2700,'rating',''),(39007,2700,'wine_vertical',''),(39008,2700,'wine_score',''),(39009,2701,'web_id','51e9965e-813b-425e-bcfd-03b7e424755d'),(39010,2701,'slug','2019-russian-river-valley-pinot-noir'),(39011,2701,'title','2019 Pinot Noir, Russian River Valley'),(39012,2701,'type','Wine'),(39013,2701,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1081-1660261694272.png'),(39014,2701,'teaser',NULL),(39015,2701,'content','<p><span style=\"font-weight: bold;\">TASTING NOTE:&nbsp; </span>This wine is complex from the start<span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">, with layers of cranberry, cherry, raspberry, and a subtle forest floor. Secondary notes and flavors of cola, tea, and a touch of spice. This is an intensely elegant wine with a fine backbone of bright acidity that helps to provide further texture and strength towards the mid-palate, leading to a persistent and juicy finish of sun-ripened strawberries.</span></p>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp;&nbsp;With its bright cola and cherry notes, our 2019 Russian River Pinot Noir pairs beautifully with duck and is a great match for sweeter sauces and exotic spice blends like Chinese five-spice or sumac. Try it also with mushrooms, or heartier fish like tuna or wild salmon.</div>'),(39016,2701,'subtitle',NULL),(39017,2701,'price','4200'),(39018,2701,'web_status','Not Available'),(39019,2701,'admin_status','Not Available'),(39020,2701,'varietal','Pinot Noir'),(39021,2701,'appellation','Russian River Valley'),(39022,2701,'vintage','2019'),(39023,2701,'meta_data_review-text','<div><span style=\"font-weight: bold;\"\">AWARDS AND REVIEWS</span><br><div><div>GOLD MEDAL |&nbsp; <span style=\"\"font-style: italic;\"\">2018 Russian River Valley Pinot Noir</span><br></div><span style=\"\"font-style: italic;\"\">San Francisco Chronicle Wine Competition</span><span style=\"\"font-style: italic;\"\"><br></span></div><div><span style=\"\"font-style: italic;\"\"><br></span></div><span style=\"\"font-weight: bold;\"\"></span></div><div>James Suckling&nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2015 Russian River Valley Pinot Noir</span><br></div><div><span style=\"\"font-style: italic;\"\">Lots of ripe cherries with some jam character. &nbsp;Full body, light tannins.</span></div><div><span style=\"\"font-style: italic;\"\"><br></span></div>\"'),(39024,2701,'meta_data_feature-text','Russian River Valley<br>'),(39025,2701,'meta_data_wine-notes','$33.60'),(39026,2701,'meta_data_technical-notes','Appellations: &nbsp;Russian River Valley, Sonoma County<div>Varietal: &nbsp;Pinot Noir</div><div>Harvested: &nbsp;September 2019</div><div>Bottle Date:&nbsp; October 2020<br>Production:&nbsp; 130 cases</div>'),(39027,2701,'rating',''),(39028,2701,'wine_vertical',''),(39029,2701,'wine_score',''),(39030,2702,'web_id','3ac5dfa8-598f-4d26-a9b0-99d5794ed806'),(39031,2702,'slug','2019-sonoma-coast-pinot-noir'),(39032,2702,'title','2019 Pinot Noir, Sonoma Coast'),(39033,2702,'type','Wine'),(39034,2702,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1169-1660261088827.png'),(39035,2702,'teaser',NULL),(39036,2702,'content','<div><span style=\"font-weight: bold;\">TASTING NOTES:&nbsp;</span>This cool-climate Pinot Noir is a tribute to the excellent 2019 vintage. Bursting with bright red fruit aromatics laced with cherry cola and sweet tea notes. Medium-bodied<span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">, with lush characteristics of raspberry, cranberry, and cherry pie. Drink</span></div>\n<div>\n<div>now through 2028.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRINGS:&nbsp;&nbsp;A go-to, effortless everyday pinot, this wine pairs easily. Serve with simple cheese and charcuterie, wood-fired pizza, or roasted pork or chicken. Pinot noir pairs with earthy flavors, like mushrooms and truffles, and light garden dishes, such as</div>\n<div>sundried tomato pesto with summer squash and basil.</div>\n</div>'),(39037,2702,'subtitle',NULL),(39038,2702,'price','3800'),(39039,2702,'web_status','Not Available'),(39040,2702,'admin_status','Not Available'),(39041,2702,'varietal','Pinot Noir'),(39042,2702,'appellation','Sonoma Coast'),(39043,2702,'vintage','2019'),(39044,2702,'meta_data_review-text','<p><span style=\"font-weight: bold;\">AWARDS AND REVIEWS</span></p>\n<div>GOLD MEDAL&nbsp;</div>\n<div>2019 Sonoma Coast Pinot Noir</div>\n<div><a href=\"https://enofileonline.com/awardsbybrandgoldplus.aspx?compid=2842\" target=\"_blank\" rel=\"noopener\">Sunset International Wine Competition</a></div>'),(39045,2702,'meta_data_wine-notes','<p>$30.40</p>'),(39046,2702,'meta_data_technical-notes','<p>Appellation: Sonoma Coast, Sonoma County Pinot Noir<br />Harvest Date: September 2019<br />Barrel Regime: French oak barrels<br />Bottling Date: August 2021<br />Production: 695 Cases<br />Alcohol: 13.26%<br />pH: 3.83</p>'),(39047,2702,'rating',''),(39048,2702,'wine_vertical',''),(39049,2702,'wine_score',''),(39050,2703,'web_id','5cb6b6d4-b8dc-4c41-9821-008f2dfea219'),(39051,2703,'slug','2019-river-trace-grenache-syrah-mourvedre'),(39052,2703,'title','2019 River Trace Grenache Syrah Mourvedre'),(39053,2703,'type','Wine'),(39054,2703,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft-river-trace-2019-1657735222251.png'),(39055,2703,'teaser','\"The right River Trace guided its seekers to wonderful treasures.  May this River Trace bring you to that same magical place,\" Tom Meadowcroft.'),(39056,2703,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>TASTING NOTE:&nbsp;&nbsp;This Rhone-style blend showcases stunning aromatics of boysenberries, candied-violets, and mountain blueberries.&nbsp; Exquisitely smooth on the palate, the flavors are fruit-rich with suggestions of plum, dried cherries, and black tea.&nbsp; The tannins are subtle, and the finish is well-balanced with a delicate spice note on the back palate.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp;&nbsp;This full-bodied, age-worthy wine is an excellent match for high-fat, flavorful dishes like grilled or barbecued red meats, aged cheeses, and earthy recipes that call for lentils, mushrooms, or olives. Because this wine is so lush, it\'s a great choice to serve by the glass on its own.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">\n<div>Appellation:&nbsp; Lodi, Contra Costa &amp; Sonoma, California</div>\n<div>Varietal: 30% Syrah, 26% Grenache, and 30% Mourv&eacute;dre,&nbsp;3% Petite Sirah, 11% Carignane</div>\n<div>Harvest Date: September 2019</div>\n<div>Bottling Date: January 2021&nbsp;</div>\n<div>Production:&nbsp; 235 cases</div>\n<div>Alcohol:&nbsp; 14.73%</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"review_notes\">\n<h3>AWARDS AND REVIEWS</h3>\n<div class=\"ecp-html-content\">\n<div>93 pts GOLD&nbsp; |&nbsp;&nbsp;<a title=\"Sunset Wine Competition\" href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\" target=\"\">Sunset International Wine Competition&nbsp;</a>(2017 vintage)</div>\n<div>BEST OF CLASS |&nbsp;&nbsp;<a title=\"SF Chronicle Wine Competition\" href=\"https://winejudging.com/\" target=\"\">San Francisco Chronicle&nbsp;Wine Competition</a></div>\n<div>A muscular and enduring take of the increasingly popular GSM style pulled off here with unusual panache and vibrancy.&nbsp; &nbsp;(2016 Vintage)<br />Unanimous Gold voted by a five-member judging panel.&nbsp;</div>\n<div>&nbsp;</div>\n<div>**CLUB EXCLUSIVE WINE:&nbsp; This wine is&nbsp;only&nbsp;available to club members; thus, the wine is already priced with club discount.&nbsp; No additional club discount applies.</div>\n<div>&nbsp;</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://client-assets.ecellar1.com/meadowcroftwines/prod_pdf_1089.pdf\" target=\"_blank\" rel=\"noopener\">Download Complete Wine Tasting Notes</a></div>'),(39057,2703,'subtitle','Lodi, Contra Costa & Sonoma, California'),(39058,2703,'price','5000'),(39059,2703,'web_status','Not Available'),(39060,2703,'admin_status','Available'),(39061,2703,'varietal','Blend'),(39062,2703,'appellation',NULL),(39063,2703,'vintage','2019'),(39064,2703,'rating',''),(39065,2703,'wine_vertical',''),(39066,2703,'wine_score',''),(39067,2704,'web_id','188af393-8689-46d4-9559-f9f1bb6a5305'),(39068,2704,'slug','2019-river-trace-grenache-syrah-mourvedre-shiner-'),(39069,2704,'title','2019 River Trace Grenache Syrah Mourvedre *SHINER**'),(39070,2704,'type','Wine'),(39071,2704,'image',NULL),(39072,2704,'teaser',''),(39073,2704,'content',''),(39074,2704,'subtitle','SHINER'),(39075,2704,'price','0'),(39076,2704,'web_status','Retired'),(39077,2704,'admin_status','Not Available'),(39078,2704,'varietal',NULL),(39079,2704,'appellation',NULL),(39080,2704,'vintage',NULL),(39081,2704,'rating',''),(39082,2704,'wine_vertical',''),(39083,2704,'wine_score',''),(39084,2705,'web_id','759387e2-154d-441d-bdea-0d776eeaea9e'),(39085,2705,'slug','2019-louvau-vineyard-roussane'),(39086,2705,'title','2019 Roussanne, Louvau Vineyard'),(39087,2705,'type','Wine'),(39088,2705,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_roussanne_dcv_louvauvineyard_2019-1664134966708.png'),(39089,2705,'teaser',NULL),(39090,2705,'content','<div>Originally grown in the Rhone wine region of France, Roussanne is a primary component in the white wines of Chateauneuf-du-Pape. &nbsp; Roussanne drinks very well as a young wine, but will develop more complexity and depth if aged 7-8 years.</div>\n<div>&nbsp;</div>\n<div>TASTING NOTES: &nbsp;Aromas of brioche and nasturtium flowers are complemented by grilled peaches.&nbsp; This wine is balanced with papaya and dried peach flavors with hints of vanilla and baking spice on the palate.&nbsp; An appetizing layer of subtle acidity balances out the full mouth feel.&nbsp;&nbsp;</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp; A full-bodied white, this wine is excellent with rich shellfish or poultry dishes.&nbsp; Try this wine with Moroccan-spiced chicken or steamed clams and mussels in a white wine butter sauce with plenty of sourdough bread.</div>'),(39091,2705,'subtitle','Dry Creek Valley'),(39092,2705,'price','0'),(39093,2705,'web_status','Not Available'),(39094,2705,'admin_status','Not Available'),(39095,2705,'varietal',NULL),(39096,2705,'appellation',NULL),(39097,2705,'vintage',NULL),(39098,2705,'meta_data_technical-notes','<div>Appellation: &nbsp;Dry Creek Valley, Sonoma County</div>\n<div>Varietal: Roussanne</div>\n<div>Fermentation: &nbsp;French oak barrel</div>\n<div>Harvest Date: September 2019</div>\n<div>Bottling Date: February 2020</div>\n<div>Production:&nbsp; 112 cases</div>'),(39099,2705,'rating',''),(39100,2705,'wine_vertical',''),(39101,2705,'wine_score',''),(39102,2706,'web_id','049e6f28-1374-4dca-9150-a90c1e79c8a1'),(39103,2706,'slug','2019-sangiovese-speedy-creek-vineyard'),(39104,2706,'title','2019 Sangiovese, Speedy Creek Vineyard'),(39105,2706,'type','Wine'),(39106,2706,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_2019_sangiovese_speedycreek_knightsvalley_bottleshot-1657674124459.png'),(39107,2706,'teaser','From the Speedy Creek Vineyard in the Knights Valley AVA of Sonoma County, this wine has been much-anticipated by fans and sells out every vintage.'),(39108,2706,'content','<p style=\"font-weight: 400;\" data-ecp-handle=\"description\" aria-label=\"Product description\"><strong>Tasting Note</strong>:&nbsp; The mountain-grown fruit sourced for this rich wine is cultivated on volcanic soils, resulting in intense red fruit aromatics and flavors. Layers of strawberries, red cherries, and ripe plum are framed by savory hints of tomato and tea leaf. The finish is plush, with bright acidity, firm tannins, and an extended suggestion of vanilla and baking spice.&nbsp; &nbsp;Drink now through 2024.<br /><br /></p>\n<p><strong>Food Pairing</strong>:&nbsp; Due to the vibrant acidity and substantial tannins in this wine, it is extraordinarily food-friendly. Serve with cured meats and aged cheeses, grilled vegetables, or anything Italian- inspired. Copping is a fantastic match because its tomato base, fresh herbs, and rich seafood.&nbsp;&nbsp;</p>\n<p>&nbsp;</p>\n<h3 style=\"font-weight: 600;\">TECHNICAL NOTES</h3>\n<p>Appellation: Knights Valley, Sonoma County<br />Varietal: Sangiovese<br />Harvested: September 2019<br />Production: 209 cases<br />Alcohol: 14.79%</p>\n<h3 style=\"font-weight: 600;\">AWARDS AND REVIEWS</h3>\n<p>GOLD |&nbsp;<a href=\"https://winejudging.com/medal_winners_2022/awards_by_winery.php\">2022 San Francisco Chronicle Wine Judging Competition</a>&nbsp;(2019 Vintage)</p>\n<p>91 pts GOLD |&nbsp;&nbsp;<a href=\"https://www.criticschallenge.com/\">Critics Challenge International Wine Competition</a>&nbsp;<em>(2019 vintage)</em></p>\n<p>GOLD |&nbsp;&nbsp;<a href=\"http://http//harvestfair.org/professional-wine-competition/\">Sonoma County Harvest Fair Wine Competition</a>&nbsp;(2019 vintage)</p>\n<p>92 pts GOLD |&nbsp;&nbsp;<a href=\"http://https//sunsetcompetitions.com/sunset-international-wine-competition/\">Sunset International Wine Competition</a>&nbsp;(2018 vintage)</p>\n<p>&nbsp;</p>\n<p style=\"font-weight: 400;\" data-ecp-handle=\"view_pdf\"><a href=\"https://client-assets.ecellar1.com/meadowcroftwines/prod_pdf_1088.pdf\">Download Complete Wine Tasting Notes</a></p>'),(39109,2706,'subtitle','Knights Valley, Sonoma County'),(39110,2706,'price','5500'),(39111,2706,'web_status','Not Available'),(39112,2706,'admin_status','Not Available'),(39113,2706,'varietal','Sangiovese'),(39114,2706,'appellation','Knights Valley'),(39115,2706,'vintage','2019'),(39116,2706,'rating',''),(39117,2706,'wine_vertical',''),(39118,2706,'wine_score',''),(39119,2707,'web_id','df6dd5cc-c187-4446-ada7-ec10c651d539'),(39120,2707,'slug','2019-sauvignon-blanc-napa-valley-shiner-'),(39121,2707,'title','2019 Sauvignon Blanc, Napa Valley **SHINER**'),(39122,2707,'type','Wine'),(39123,2707,'image',NULL),(39124,2707,'teaser',''),(39125,2707,'content',''),(39126,2707,'subtitle','SHINER'),(39127,2707,'price','0'),(39128,2707,'web_status','Retired'),(39129,2707,'admin_status','Not Available'),(39130,2707,'varietal',NULL),(39131,2707,'appellation',NULL),(39132,2707,'vintage',NULL),(39133,2707,'rating',''),(39134,2707,'wine_vertical',''),(39135,2707,'wine_score',''),(39136,2708,'web_id','f9364cd5-609c-4cce-8421-2844e814238e'),(39137,2708,'slug','2019-stag-s-leap-cabernet-sauvignon'),(39138,2708,'title','2019 Cabernet Sauvignon, Stags Leap District'),(39139,2708,'type','Wine'),(39140,2708,'image','https://images.commerce7.com/meadowcroft-wines/images/original/19-stagsleap-cab-1695679542448.png'),(39141,2708,'teaser',NULL),(39142,2708,'content','<p><span id=\"page63R_mcid4\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">TASTING NOTES: The 2019 Stags Leap Cabernet is a full-bodied red wine that&nbsp;</span></span><span id=\"page63R_mcid5\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">beautifully expresses aromas of espresso bean, black currant,&nbsp;</span></span><span id=\"page63R_mcid6\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">and dried cranberry. On the palate, it delivers the complex, yet&nbsp;</span></span><span id=\"page63R_mcid7\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">balanced flavors of amarena cherry, vanilla, ripe blueberry, and&nbsp;</span></span><span id=\"page63R_mcid8\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">hints of cocoa.</span></span></p>\n<p><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">FOOD PAIRING: <span id=\"page63R_mcid11\" class=\"markedContent\">With its rich tannins and intense fruit flavors, this wine calls for&nbsp;</span><span id=\"page63R_mcid12\" class=\"markedContent\">food affinities that match its complexity and weight. Some of the&nbsp;</span><span id=\"page63R_mcid13\" class=\"markedContent\">recommended pairings for this wine include grilled steaks, roasted&nbsp;</span><span id=\"page63R_mcid14\" class=\"markedContent\">lamb, hearty stews, and aged cheeses. The wine&rsquo;s robustness can&nbsp;</span><span id=\"page63R_mcid15\" class=\"markedContent\">also handle spicy or smoky flavors, making it a perfect match for&nbsp;</span><span id=\"page63R_mcid16\" class=\"markedContent\">barbecued meats, bold sauces, and flavorful spices.</span></span></span></p>\n<p><strong><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\"><span class=\"markedContent\">TECHNICAL DATA</span></span></span></strong></p>\n<p><span id=\"page63R_mcid19\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Appelation:</span></span><span id=\"page63R_mcid20\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">Stag&rsquo;s Leap District, Napa Valley</span></span><span id=\"page63R_mcid21\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Varietal:</span></span><span id=\"page63R_mcid22\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">Cabernet Sauvignon</span></span><span id=\"page63R_mcid23\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Harvested:</span></span><span id=\"page63R_mcid24\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">September, 2019</span></span><span id=\"page63R_mcid25\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Bottled:</span></span><span id=\"page63R_mcid26\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">December, 2022</span></span><span id=\"page63R_mcid27\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Production:</span></span><span id=\"page63R_mcid28\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">76 Cases</span></span></p>\n<p><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/09/TechSheet-2019-Cab-StagsLeap-Final-2.pdf\"><strong>Download Complete Wine Notes</strong></a></p>'),(39143,2708,'subtitle','Napa Valley'),(39144,2708,'price','12500'),(39145,2708,'web_status','Available'),(39146,2708,'admin_status','Available'),(39147,2708,'varietal','Cabernet Sauvignon'),(39148,2708,'appellation','Stags Leap District'),(39149,2708,'vintage','2019'),(39150,2708,'rating',''),(39151,2708,'wine_vertical',''),(39152,2708,'wine_score',''),(39153,2709,'web_id','666ae8f6-b87a-42e8-b263-35a53bc7c0bc'),(39154,2709,'slug','2019-zinfandel-speedy-creek-vineyard'),(39155,2709,'title','2019 Zinfandel, Speedy Creek Vineyard'),(39156,2709,'type','Wine'),(39157,2709,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1259-1660261701817.png'),(39158,2709,'teaser',NULL),(39159,2709,'content','<p><span style=\"font-weight: bold;\">TASTING NOTE:&nbsp;&nbsp;</span>Spirited aromas of white cherry<span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">, plums, and caramel lead to complex layers of cherry cobbler and black licorice. The palate is polished and smooth, with a finish intertwined with toasted vanilla. Best now through 2030.</span></p>\n<p><strong>FOOD PAIRINGS:&nbsp;&nbsp;</strong>Fire up your grill and serve this flavorful Zinfandel with grilled pork chops or ribs prepared with stone fruit salsa or spicy BBQ sauce. This wine will play nicely with bold flavors that have spice as well as a touch of sweetness.</p>\n<p><strong>TECHNICAL DATA:</strong></p>\n<p><span id=\"page61R_mcid21\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Appelation: Speedy Creek Vineyard,&nbsp;<span id=\"page61R_mcid28\" class=\"markedContent\">Knights Valley</span></span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Varietal: <span id=\"page61R_mcid28\" class=\"markedContent\">Zinfandel</span></span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Harvested: <span id=\"page61R_mcid28\" class=\"markedContent\">September 2019</span></span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Bottled: <span id=\"page61R_mcid28\" class=\"markedContent\">April 2022</span></span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Production: <span id=\"page61R_mcid28\" class=\"markedContent\">184 Cases</span></span><br role=\"presentation\" /></span><span id=\"page61R_mcid28\" class=\"markedContent\"><br /></span></p>\n<p><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2021/04/MC_2019SangioveseSpeedyCreekKnightsValley_TECHSheet.pdf\">Download Complete Tasting Notes</a></p>'),(39160,2709,'subtitle','Knight\'s Valley'),(39161,2709,'price','3000'),(39162,2709,'web_status','Not Available'),(39163,2709,'admin_status','Available'),(39164,2709,'varietal','Zinfandel'),(39165,2709,'appellation','Knights Valley'),(39166,2709,'vintage','2019'),(39167,2709,'meta_data_feature-text','<p>Knights Valley, Sonoma County</p>'),(39168,2709,'meta_data_wine-notes','<p>$36.00</p>'),(39169,2709,'meta_data_technical-notes','<div>Appellation: &nbsp;Knights Valley, Sonoma County<br />\n<div>Varietal: &nbsp;Zinfandel</div>\n<div>Harvested: &nbsp;September 2019</div>\n<div>Bottle Date: &nbsp;April 2022</div>\n<div>Production: &nbsp;184 Cases</div>\n</div>'),(39170,2709,'rating',''),(39171,2709,'wine_vertical',''),(39172,2709,'wine_score',''),(39173,2710,'web_id','3fe7d7db-cf94-4430-b399-55a4d1dbb701'),(39174,2710,'slug','2019-meadowcroft-dry-creek-valley-zinfandel-wyldvin-vineyard'),(39175,2710,'title','2019 Zinfandel, Wyldvin Vineyard'),(39176,2710,'type','Wine'),(39177,2710,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_19_zin_wyldvin-1663871071977.png'),(39178,2710,'teaser',NULL),(39179,2710,'content','<p>Limited production of Zinfandel from the Wyldvin Vineyard, &nbsp;(previously Louvau Vineyard) in the Dry Creek Valley, Sonoma County.</p>\n<p><strong>TASTING NOTES:</strong>&nbsp; Mesmerizing aromas of blueberry pie, fresh garden herbs, and almonds lead to a focused palate with flavors of huckleberry, blackberry jam, cassis, and baking spices. The finish is rich and round, with lingering tannins and notes of black currant, 5-spice, violets, and cocoa powder.</p>\n<p><strong>FOOD PAIRING:</strong>&nbsp;&nbsp;This balanced, spicy Zinfandel makes a beautiful pairing with baby back ribs on the grill, Korean BBQ, or even chili.&nbsp;&nbsp;</p>\n<p><strong>TECHNICAL DATA:</strong></p>\n<p>Appellation: Wyldvin Vineyard, Dry Creek Valley<br />Varietal: Zinfandel<br />Harvested: September, 2019<br />Bottled: April, 2022<br />Production: 202 Cases</p>\n<p><strong style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/08/TechSheet-2019WyldvinZin-Final-1.pdf\" target=\"_blank\" rel=\"noopener\">Download Complete Tasting Notes</a></strong></p>'),(39180,2710,'subtitle','Dry Creek Valley, Sonoma County'),(39181,2710,'price','4500'),(39182,2710,'web_status','Available'),(39183,2710,'admin_status','Available'),(39184,2710,'varietal','Zinfandel'),(39185,2710,'appellation','Dry Creek Valley'),(39186,2710,'vintage','2019'),(39187,2710,'meta_data_review-text','<div><div><span style=\"font-weight: bold;\"\">AWARDS &amp; REVIEWS</span></div>94 points &nbsp;|&nbsp; <a href=\"\"http://https://www.criticschallenge.com/cgi-bin/rtbin/sbpg/rt_hdln_dsply2.cgi?Autoincrement=000031&amp;value_6=Results\"\" title=\"\"\"\" target=\"\"\"\">2021 Critics Challenge</a> | &nbsp;Platinum Medal</div><div><p class=\"\"MsoNormal\"\" style=\"\"margin: 0in; font-size: 12pt; font-family: Calibri, sans-serif; color: rgb(0, 0, 0);\"\"><i><span style=\"\"font-family: D-DIN, serif; color: rgb(10, 10, 10);\"\">\"\"Here is a structured Zinfandel that shows plenty of oak toast and spice in front at present, and it promises to fold into the brooding berry fruit as the firmness mellows with a bit of bottle aging in your cellar.&nbsp; It will be well worth the wait.&nbsp; A Platinum Award winner at the 2021 Critics Challenge International Wine &amp; Spirits Competition.\"\"&nbsp; &nbsp; &nbsp; &nbsp;<br>94&nbsp;<a href=\"\"http://www.winereviewonline.com/about_us.cfm?#%20RC\"\"><span style=\"\"color: rgb(10, 10, 10); text-decoration-line: underline; font-weight: bold;\"\">Rich Cook</span></a>&nbsp;Jul 6, 2021<o:p></o:p></span></i></p><p class=\"\"MsoNormal\"\" style=\"\"margin: 0in; font-size: 12pt; font-family: Calibri, sans-serif; color: rgb(0, 0, 0);\"\"><span style=\"\"color: rgb(10, 10, 10); font-family: D-DIN;\"\">92 pts GOLD |&nbsp;&nbsp;</span><a href=\"\"https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"\"\" style=\"\"background-color: rgb(255, 255, 255); font-family: D-DIN;\"\">Sunset International Wine Competition</a><span style=\"\"color: rgb(10, 10, 10); font-family: D-DIN;\"\">&nbsp;</span><span style=\"\"color: rgb(10, 10, 10); font-family: D-DIN; font-style: italic;\"\">(2018 vintage)</span><i><span style=\"\"font-family: D-DIN, serif; color: rgb(10, 10, 10);\"\"><br></span></i></p><p class=\"\"MsoNormal\"\" style=\"\"margin: 0in; font-size: 12pt; font-family: Calibri, sans-serif; color: rgb(0, 0, 0);\"\"><span style=\"\"color: rgb(10, 10, 10); font-family: D-DIN;\"\">GOLD |&nbsp; <a href=\"\"http://harvestfair.org/professional-wine-competition/\"\" title=\"\"\"\" target=\"\"\"\">Sonoma County Harvest Fair Wine Competition</a>&nbsp;</span><span style=\"\"color: rgb(10, 10, 10); font-family: D-DIN; font-style: italic;\"\">(2018 vintage)</span><span style=\"\"color: rgb(10, 10, 10); font-family: D-DIN; font-style: italic;\"\"><br></span></p><div><br></div></div><div><span style=\"\"font-weight: bold;\"\">The Sommelier Company&nbsp; |&nbsp; 90 points</span></div><div><span style=\"\"font-style: italic;\"\">\"\"Supple and juicy, balanced and refined—this is Zinfandel’s elegant side. The foreground is equal measures of brambly dark fruit and concentrated red fruit, with an enduring overlay of rose perfume. Eastern and barbecue spices linger on the finish with black licorice, molasses and cocoa,\"\"&nbsp;</span>Adam Edmonsond. (2014 vintage)</div><div><br></div><div><span style=\"\"font-style: italic;\"\">\"\"This Zinfandel shows a wide, layered multiplicity of aromas and flavors. The body is typically full but not a jammy Zinfandel body. Characteristic of Dry Creek, its balance is noteworthy, and that allows delicate flavors on the palate to keep in step with a complex nose,\"\"&nbsp;</span>Jörn Kleinhans, CSW. (2014 vintage)</div>\"'),(39188,2710,'meta_data_feature-text','Dry Creek, Sonoma County'),(39189,2710,'meta_data_wine-notes','$36.00'),(39190,2710,'meta_data_technical-notes','<div>Appellation: &nbsp;Dry Creek Valley, Sonoma County</div><div>Varietal: &nbsp;76 % Zinfandel, 12% Petite Sirah, 12% Cabernet</div><div>Harvest Date: &nbsp;September 2019</div><div>Bottling Date: &nbsp;December 2021</div><div>Case Production: 431 cases</div><div>Alcohol: 15.20%</div>'),(39191,2710,'rating',''),(39192,2710,'wine_vertical',''),(39193,2710,'wine_score',''),(39194,2711,'web_id','974913ac-66dc-4a1d-a787-3ea6f0003a02'),(39195,2711,'slug','2019-meadowcroft-dry-creek-valley-zinfandel-wyldvin-vineyard-375ml'),(39196,2711,'title','2019 Zinfandel, Wyldvin,  375ml'),(39197,2711,'type','Wine'),(39198,2711,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_19_zin_wyldvin-1663800047388.png'),(39199,2711,'teaser',''),(39200,2711,'content','<p style=\"font-weight: 400;\"><strong>TASTING NOTE:</strong>&nbsp; Rich fruit notes of blackberry and cherry, followed by subtle secondary botanical notes of cherry wood and anise blossom define the nose.&nbsp; The front palate exhibits a firm structure with intense flavors of blackberry pie, currants, and clove. The racy acidity on the mid-palate stands up to noticeable tannins, leading into a robust, lingering, and supple finish.</p>\n<p style=\"font-weight: 400;\"><strong>FOOD PAIRING:&nbsp;&nbsp;</strong>This balanced Zinfandel pairs well with a variety of dishes such as spicy baby back ribs, classic BBQ fare, rich mole sauces, and pasta with red sauce.&nbsp; On its own, this wine is an indulgent delight.</p>'),(39201,2711,'subtitle','Dry Creek Valley, Sonoma County'),(39202,2711,'price','1600'),(39203,2711,'web_status','Available'),(39204,2711,'admin_status','Available'),(39205,2711,'varietal',NULL),(39206,2711,'appellation',NULL),(39207,2711,'vintage',NULL),(39208,2711,'meta_data_wine-notes','<p style=\"font-weight: 400;\"><strong>TASTING NOTE:</strong>&nbsp; Rich fruit notes of blackberry and cherry, followed by subtle secondary botanical notes of cherry wood and anise blossom define the nose.&nbsp; The front palate exhibits a firm structure with intense flavors of blackberry pie, currants, and clove. The racy acidity on the mid-palate stands up to noticeable tannins, leading into a robust, lingering, and supple finish.</p>\n<p style=\"font-weight: 400;\"><strong>FOOD PAIRING:&nbsp;&nbsp;</strong>This balanced Zinfandel pairs well with a variety of dishes such as spicy baby back ribs, classic BBQ fare, rich mole sauces, and pasta with red sauce.&nbsp; On its own, this wine is an indulgent delight.</p>'),(39209,2711,'meta_data_technical-notes','<div>Format: 375ml (Half-Bottle)</div>\n<div>Appellation: &nbsp;Dry Creek Valley, Sonoma County</div>\n<div>Varietal: &nbsp;Zinfandel</div>\n<div>Alcohol: 14.5%</div>'),(39210,2711,'rating',''),(39211,2711,'wine_vertical',''),(39212,2711,'wine_score',''),(39213,2712,'web_id','a459812a-31a5-456b-ab37-45e7889b514b'),(39214,2712,'slug','2020-bent-press-malbec-agrelo-mendoza-argentina'),(39215,2712,'title','2020 Bent Press Malbec Agrelo Mendoza, Argentina'),(39216,2712,'type','Wine'),(39217,2712,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1244-1660261108193.png'),(39218,2712,'teaser','90 Points from James Suckling'),(39219,2712,'content','<div>Our Story ....began with three Sonoma families coming together with sleeves rolled up and babies in carriers while harvesting to create our first wine at home. Three men were sent to complete one simple task. The task of picking up the wine press. Turning the corner on our way home, we watched wide-eyed as the press hurdled out of the truck and into the intersection of HWY 29 and 121. In our excitement, no one remembered to strap the press down. This memory, along with our wounded pride and the bent press never fails to bring us laughter. It also reminds us of the lengths we will go to to bring the finest wines California has to offer to our extended family and friends.</div>\n<div>&nbsp;</div>\n<div><span style=\"font-weight: bold;\">WHAT YOU WILL TASTE</span></div>\n<div>Supple and smooth on the palate, this exceptional wine features vibrant blueberry and raspberry fruit aromas framed by herbaceous secondary notes. Balanced and complex, the finish has bright acidity, making this a wonderful wine to pair with food. We hope you enjoy this Malbec made with organic grapes that are grown at 3500 feet above sea level and are irrigated with pristine waters from the snowmelt of the Andes Mountains.</div>\n<div>&nbsp;</div>\n<div><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/08/FT-Bent-Press-Malbec-2020-3.pdf\">Download Complete Tasting Notes</a></div>'),(39220,2712,'subtitle',''),(39221,2712,'price','1900'),(39222,2712,'web_status','Not Available'),(39223,2712,'admin_status','Available'),(39224,2712,'varietal','Malbec'),(39225,2712,'appellation',NULL),(39226,2712,'vintage','2020'),(39227,2712,'meta_data_review-text','<p class=\"MsoNormal\">90 points &nbsp;|&nbsp;&nbsp;<a title=\"\" target=\"\">JamesSuckling.com</a><a>&nbsp;</a></p>\n<p class=\"\"><em>\"\"&lsquo;Ripe blueberries, walnuts and dried herbs on the nose. Medium body with creamy tannins. Dark, plush and fruity with vivid acidity. From organically grown grapes. Drink now.&lsquo;.\"\"&nbsp;James Suckling</em></p>\n<p>\"</p>'),(39228,2712,'meta_data_feature-text','<p class=\"p1\"><strong>This wine has the aromas of blueberries, walnuts, and dried herbs. Medium body with creamy tannins and vivid acidity. Made from organically grown grapes.<span class=\"Apple-converted-space\">&nbsp;</span></strong></p>'),(39229,2712,'meta_data_wine-notes','<p>19.00</p>'),(39230,2712,'meta_data_technical-notes','<p><span style=\"font-weight: bold;\">TECHNICAL DATA</span></p>\n<div>\n<p class=\"p1\"><strong>Grapes: </strong>100% Organic Malbec.</p>\n<p class=\"p1\"><strong>Region: </strong>Agrelo, Luj&aacute;n de Cuyo, Mendoza. Argentina.</p>\n<p class=\"p1\"><strong>Winemaking: </strong>Fermentation in stainless steel tanks at 24-26&deg;C for 14 days.</p>\n<p class=\"p1\"><strong>Oak Aging: </strong>10% of the wine was aged in 500 liter barrels of medium-toasted French oak.</p>\n<p class=\"p1\"><strong>| ALC. 14 | RS. 5 | AT. 5.54 | pH. 3.67 |<span class=\"Apple-converted-space\">&nbsp;</span></strong></p>\n</div>'),(39231,2712,'rating',''),(39232,2712,'wine_vertical',''),(39233,2712,'wine_score',''),(39234,2713,'web_id','1ede3ade-8c8f-46c8-97b8-fc990f57dc89'),(39235,2713,'slug','2020-bent-press-malbec-case-special'),(39236,2713,'title','2020 Bent Press Malbec Case Special'),(39237,2713,'type','Bundle'),(39238,2713,'image','https://images.commerce7.com/meadowcroft-wines/images/original/bentpresscasespecial-1661893495788.png'),(39239,2713,'teaser','90 points from James Suckling'),(39240,2713,'content','<div>Our Story ....began with three Sonoma families coming together with sleeves rolled up and babies in carriers while harvesting to create our first wine at home. Three men were sent to complete one simple task. The task of picking up the wine press. Turning the corner on our way home, we watched wide-eyed as the press hurdled out of the truck and into the intersection of HWY 29 and 121. In our excitement, no one remembered to strap the press down. This memory, along with our wounded pride and the bent press never fails to bring us laughter. It also reminds us of the lengths we will go to to bring the finest wines California has to offer to our extended family and friends.</div>\n<div>&nbsp;</div>\n<div><span style=\"font-weight: bold;\">WHAT YOU WILL TASTE</span></div>\n<div>Supple and smooth on the palate, this exceptional wine features vibrant blueberry and raspberry fruit aromas framed by herbaceous secondary notes. Balanced and complex, the finish has bright acidity, making this a wonderful wine to pair with food. We hope you enjoy this Malbec made with organic grapes that are grown at 3500 feet above sea level and are irrigated with pristine waters from the snowmelt of the Andes Mountains.</div>\n<div>&nbsp;</div>\n<div><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/09/FT-Bent-Press-Malbec-2020.pdf\">Download Complete Tasting Notes</a></div>'),(39241,2713,'subtitle','Save $48 on this exceptional wine!'),(39242,2713,'price','18000'),(39243,2713,'web_status','Retired'),(39244,2713,'admin_status','Not Available'),(39245,2713,'meta_data_review-text','<p>90 points &nbsp;|&nbsp;&nbsp;JamesSuckling.com&nbsp;</p>\n<p><em>\"\"&lsquo;Ripe blueberries, walnuts and dried herbs on the nose. Medium body with creamy tannins. Dark, plush and fruity with vivid acidity. From organically grown grapes. Drink now.&lsquo;.\"\"&nbsp;James Suckling</em></p>\n<p>\"</p>'),(39246,2713,'meta_data_feature-text','<p>This wine has the aromas of blueberries, walnuts, and dried herbs. Medium body with creamy tannins and vivid acidity. Made from organically grown grapes.<span class=\"Apple-converted-space\">&nbsp;</span></p>'),(39247,2713,'meta_data_wine-notes','<p>$180.00 with $20 flat rate ground shipping ( excludes AK &amp; HI)</p>'),(39248,2713,'meta_data_technical-notes','<p><span style=\"font-weight: bold;\">TECHNICAL DATA</span></p>\n<div>\n<p class=\"p1\"><strong>Grapes: </strong>100% Organic Malbec.</p>\n<p class=\"p1\"><strong>Region: </strong>Agrelo, Luj&aacute;n de Cuyo, Mendoza. Argentina.</p>\n<p class=\"p1\"><strong>Winemaking: </strong>Fermentation in stainless steel tanks at 24-26&deg;C for 14 days.</p>\n<p class=\"p1\"><strong>Oak Aging: </strong>10% of the wine was aged in 500 liter barrels of medium-toasted French oak.</p>\n<p class=\"p1\"><strong>| ALC. 14 | RS. 5 | AT. 5.54 | pH. 3.67 |<span class=\"Apple-converted-space\">&nbsp;</span></strong></p>\n</div>'),(39249,2713,'rating',''),(39250,2713,'wine_vertical',''),(39251,2713,'wine_score',''),(39252,2714,'web_id','8a343f40-dfce-4355-8bad-051ffe250012'),(39253,2714,'slug','2020-cabernet-sauvignon-mt-veeder-estate-750'),(39254,2714,'title','2020 Cabernet Sauvignon, Mt. Veeder Estate'),(39255,2714,'type','Wine'),(39256,2714,'image','https://images.commerce7.com/meadowcroft-wines/images/original/mc20_cabernet-sauvignon_veeder_napa-valley_label-1663716057620.png'),(39257,2714,'teaser',NULL),(39258,2714,'content','<p style=\"font-weight: 400;\"><strong>TASTING NOTES:</strong> <span id=\"page64R_mcid4\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Sourced from high atop the rugged Mt. Veeder AVA, vineyard,&nbsp;</span></span><span id=\"page64R_mcid5\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">this intense and powerful Cabernet is an extraordinary example&nbsp;</span></span><span id=\"page64R_mcid6\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">of the potential that comes from fruit cultivated at a high&nbsp;</span></span><span id=\"page64R_mcid7\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">elevation on volcanic soils. Secondary notes of vanilla and&nbsp;</span></span><span id=\"page64R_mcid8\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">blackberry pie, round out this full-bodied mountain Cabernet</span></span><span id=\"page64R_mcid9\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Sauvignon. This wine will be best enjoyed now through 2035.</span></span></p>\n<p style=\"font-weight: 400;\"><strong>FOOD PAIRING: </strong><span id=\"page64R_mcid11\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">We recommend this bold, robust Cabernet with the traditional&nbsp;</span></span><span id=\"page64R_mcid12\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">choice of steak, burgers, or slow-braised beef dishes. Anything&nbsp;</span></span><span id=\"page64R_mcid13\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">with a bit of spice or charring will complement the rich fruit&nbsp;</span></span><span id=\"page64R_mcid14\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">flavors and tannins. Full-flavored mushrooms or foraged wild&nbsp;</span></span><span id=\"page64R_mcid15\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">mushrooms, have an intense umami flavor that marries well with&nbsp;</span></span><span id=\"page64R_mcid16\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">the intensity of this wine.</span></span></p>\n<p style=\"font-weight: 400;\"><strong><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">TECHNICAL DATA:</span></span></strong></p>\n<p style=\"font-weight: 400;\"><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\"><span id=\"page64R_mcid19\" class=\"markedContent\">Appelation:</span><span id=\"page64R_mcid20\" class=\"markedContent\"> Mount Veeder, Napa Valley</span><span id=\"page64R_mcid21\" class=\"markedContent\"><br role=\"presentation\" />Varietal:</span><span id=\"page64R_mcid22\" class=\"markedContent\"> Cabernet Sauvignon</span><span id=\"page64R_mcid23\" class=\"markedContent\"><br role=\"presentation\" />Harvested:</span><span id=\"page64R_mcid24\" class=\"markedContent\"> September, 2020</span><span id=\"page64R_mcid25\" class=\"markedContent\"><br role=\"presentation\" />Bottled:</span><span id=\"page64R_mcid26\" class=\"markedContent\"> June, 2022</span><span id=\"page64R_mcid27\" class=\"markedContent\"><br role=\"presentation\" />Production:</span><span id=\"page64R_mcid28\" class=\"markedContent\"> 90 Cases</span></span></span></p>\n<p style=\"font-weight: 400;\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/08/TechSheet-2020-Cab-MtVeeder-Final-1.pdf\"><strong>Wine Notes</strong></a></p>'),(39259,2714,'subtitle','Napa Valley'),(39260,2714,'price','12500'),(39261,2714,'web_status','Available'),(39262,2714,'admin_status','Available'),(39263,2714,'varietal','Cabernet Sauvignon'),(39264,2714,'appellation','Mt. Veeder'),(39265,2714,'vintage','2020'),(39266,2714,'meta_data_review-text','<div>98 pts GOLD |&nbsp;&nbsp;<a title=\"\" href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\" target=\"\">Sunset Wine Competition</a>&nbsp; |&nbsp; 2016 Mt Veeder Cabernet Sauvignon</div>\n<div>94 pts | &nbsp;<a title=\"\" target=\"\">Wine Enthusiast</a>&nbsp;&nbsp;| &nbsp;<span>2005 Mt Veeder Cabernet Sauvignon</span></div>\n<div>91 pts | &nbsp;<a title=\"\" target=\"\">Wine Enthusiast</a>&nbsp;&nbsp;| &nbsp;<span>2008 Mt Veeder Cabernet Sauvignon<br /></span>91 pts | &nbsp;<a title=\"\" target=\"\">James Suckling</a>&nbsp;&nbsp;| &nbsp;<span>2013 Mt Veeder Cabernet Sauvignon</span><br />93 pts |&nbsp;&nbsp;<a title=\"\" target=\"\">Sommelier Company</a>&nbsp;|&nbsp;&nbsp;<span>2016 Mt Veeder Cabernet Sauvignon</span></div>\n<p>\"</p>'),(39267,2714,'meta_data_feature-text','<p>Mt. Veeder, Napa Valley</p>'),(39268,2714,'meta_data_wine-notes','<p>$211.20</p>'),(39269,2714,'meta_data_technical-notes','<div>Appellation:&nbsp; Mt. Veeder, Napa Valley</div>\n<div>Varietal:&nbsp; Cabernet Sauvignon</div>\n<div>Harvested:&nbsp; October 2018</div>\n<div>Bottle Date:&nbsp; May 2021</div>\n<div>Production:&nbsp; 168 cases</div>'),(39270,2714,'rating',''),(39271,2714,'wine_vertical',''),(39272,2714,'wine_score',''),(39273,2715,'web_id','d1d654d8-17ae-4c9c-93d2-d2a74d57bd3f'),(39274,2715,'slug','2020--mt--veeder-napa-valley-cabernet-sauvignon-magnum-1-5l-waxed'),(39275,2715,'title','2020 Cabernet Sauvignon, Mt. Veeder Estate 1.5L'),(39276,2715,'type','Wine'),(39277,2715,'image','https://images.commerce7.com/meadowcroft-wines/images/original/mc_veeeder_dh-1663716091832.png'),(39278,2715,'teaser',''),(39279,2715,'content','<p style=\"font-weight: 400;\"><strong>LARGE FORMAT - ALMOST SOLD OUT!</strong></p>\n<p style=\"font-weight: 400;\"><strong>TASTING NOTES: </strong><span id=\"page64R_mcid4\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Sourced from high atop the rugged Mt. Veeder AVA, vineyard,&nbsp;</span></span><span id=\"page64R_mcid5\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">this intense and powerful Cabernet is an extraordinary example&nbsp;</span></span><span id=\"page64R_mcid6\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">of the potential that comes from fruit cultivated at a high&nbsp;</span></span><span id=\"page64R_mcid7\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">elevation on volcanic soils. Secondary notes of vanilla and&nbsp;</span></span><span id=\"page64R_mcid8\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">blackberry pie, round out this full-bodied mountain Cabernet</span></span><span id=\"page64R_mcid9\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Sauvignon. This wine will be best enjoyed now through 2035.</span></span></p>\n<p style=\"font-weight: 400;\"><strong>FOOD PAIRING: </strong><span id=\"page64R_mcid11\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">We recommend this bold, robust Cabernet with the traditional&nbsp;</span></span><span id=\"page64R_mcid12\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">choice of steak, burgers, or slow-braised beef dishes. Anything&nbsp;</span></span><span id=\"page64R_mcid13\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">with a bit of spice or charring will complement the rich fruit&nbsp;</span></span><span id=\"page64R_mcid14\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">flavors and tannins. Full-flavored mushrooms or foraged wild&nbsp;</span></span><span id=\"page64R_mcid15\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">mushrooms, have an intense umami flavor that marries well with&nbsp;</span></span><span id=\"page64R_mcid16\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">the intensity of this wine.</span></span></p>\n<p style=\"font-weight: 400;\"><strong><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">TECHNICAL DATA:</span></span></strong></p>\n<p style=\"font-weight: 400;\"><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\"><span id=\"page64R_mcid19\" class=\"markedContent\">Appelation:</span><span id=\"page64R_mcid20\" class=\"markedContent\"> Mount Veeder, Napa Valley</span><span id=\"page64R_mcid21\" class=\"markedContent\"><br role=\"presentation\" />Varietal:</span><span id=\"page64R_mcid22\" class=\"markedContent\"> Cabernet Sauvignon</span><span id=\"page64R_mcid23\" class=\"markedContent\"><br role=\"presentation\" />Harvested:</span><span id=\"page64R_mcid24\" class=\"markedContent\"> September, 2020</span><span id=\"page64R_mcid25\" class=\"markedContent\"><br role=\"presentation\" />Bottled:</span><span id=\"page64R_mcid26\" class=\"markedContent\"> June, 2022</span><span id=\"page64R_mcid27\" class=\"markedContent\"><br role=\"presentation\" />Production:</span><span id=\"page64R_mcid28\" class=\"markedContent\"> 90 Cases</span></span></span></p>'),(39280,2715,'subtitle','Napa Valley'),(39281,2715,'price','26400'),(39282,2715,'web_status','Available'),(39283,2715,'admin_status','Available'),(39284,2715,'varietal','Cabernet Sauvignon'),(39285,2715,'appellation','Mt. Veeder'),(39286,2715,'vintage','2020'),(39287,2715,'meta_data_review-text','<div>98 pts GOLD |&nbsp;&nbsp;<a href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"_blank\"\">Sunset Wine Competition</a>&nbsp; |&nbsp; 2016 Mt Veeder Cabernet Sauvignon</div><div>94 pts | &nbsp;<a href=\"\"https://www.winemag.com/\"\" title=\"\"Wine Enthusiast\"\" target=\"\"_blank\"\">Wine Enthusiast</a>&nbsp;&nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2005 Mt Veeder Cabernet Sauvignon</span><br></div><div>91 pts | &nbsp;<a href=\"\"https://www.winemag.com/\"\" title=\"\"Wine Enthusiast\"\" target=\"\"_blank\"\">Wine Enthusiast</a>&nbsp;&nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2008 Mt Veeder Cabernet Sauvignon<br></span>91 pts | &nbsp;<a href=\"\"https://www.jamessuckling.com/\"\" title=\"\"James Suckling\"\" target=\"\"_blank\"\">James Suckling</a>&nbsp;&nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2013 Mt Veeder Cabernet Sauvignon</span><br>93 pts |&nbsp;&nbsp;<a href=\"\"https://www.sommeliercompany.com/\"\" title=\"\"Sommelier Company\"\" target=\"\"_blank\"\">Sommelier Company</a>&nbsp;|&nbsp;&nbsp;<span style=\"\"font-style: italic;\"\">2016 Mt Veeder Cabernet Sauvignon</span></div>\"'),(39288,2715,'meta_data_feature-text','Mt. Veeder, Napa Valley'),(39289,2715,'meta_data_wine-notes','$211.20<br>'),(39290,2715,'meta_data_technical-notes','<p class=\"MsoNormal\"\" style=\"\"margin: 0in; font-size: 12pt; font-family: Calibri'),(39291,2715,'rating',''),(39292,2715,'wine_vertical',''),(39293,2715,'wine_score',''),(39294,2716,'web_id','71a767c6-21db-4f9f-97ac-ba4a54fe2ac0'),(39295,2716,'slug','2020-cabernet-sauvignon-napa-valley'),(39296,2716,'title','2020 Cabernet Sauvignon, Napa Valley'),(39297,2716,'type','Wine'),(39298,2716,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1253-1660261111474.png'),(39299,2716,'teaser',NULL),(39300,2716,'content','<p><strong>TASTING NOTES:</strong>&nbsp;A rich and compelling nose of blackberry, blueberries, sandalwood, and dried herbs is augmented by layers of plum and cherry, cocoa, and graphite. Bold and full-bodied, this wine is structured firmly around a solid core of rich fruit, licorice, and herbs. Supple, ripe tannins provide ample backbone. The mouthfeel is plush and unctuous while retaining stability and finesse. The finish is extended, with lingering flavors of caramel, sweet oak, and chocolate.&nbsp; &nbsp;Decant to reveal the complexity; best now through 2030.</p>\n<p>&nbsp;</p>\n<p><strong>FOOD PAIRING:&nbsp;</strong>&nbsp;A quintessential Cabernet, this bold and structured wine is an effortless match with well-marbled beef and long-braised stews and sauces. Dishes with fresh herbs will marry nicely with the earthy notes, while the bold fruit will complement hard cheeses like Parmesan or Asiago.</p>\n<p><strong>TECHNICAL DATA:</strong></p>\n<p>Appellation:&nbsp;Napa Valley<br />Varietal: Cabernet Sauvignon<br />Harvested: September 2020<br />Bottled: March 2022<br />Production: 578 Cases</p>\n<div>\n<div>&nbsp;</div>\n<div><strong><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/05/Meadowcroft_2020CabernetSauvignonNapaValley_TECHSheet.pdf\">Download Complete Tasting Notes</a></strong></div>\n</div>'),(39301,2716,'subtitle',NULL),(39302,2716,'price','6500'),(39303,2716,'web_status','Not Available'),(39304,2716,'admin_status','Available'),(39305,2716,'varietal','Cabernet Sauvignon'),(39306,2716,'appellation','Napa Valley'),(39307,2716,'vintage','2020'),(39308,2716,'meta_data_review-text','<div>90 pt |&nbsp; James Suckling&nbsp; |&nbsp; 2016 vintage</div>\n<div><span style=\"font-style: italic;\">A prototypical, modern Napa red that has the big cassis character of fully ripe cabernet sauvignon, moderate tannins that are already well integrated and nice freshness at the finish.&nbsp; Makes you want to order or cook some Osso Bucco.&nbsp; &nbsp;</span></div>\n<div>&nbsp;</div>\n<p>94 pts | &nbsp;Chris Sawyer, Certified Sommelier&nbsp; |&nbsp; 2014 vintage</p>\n<div><span>&nbsp;On the palate, the generous flavors of black raspberry, dark cherry, cassis, ripe currants, cinnamon, hickory spice and dark chocolate truffle are complemented with a harmonious mixture of smooth, silky texture, chewy tannins, firm structure, and a lingering finish. Overall, an extremely well-crafted wine that is not only approachable when young, but also worthy of cellaring for more 10-15 years.</span></div>\n<p>\"</p>'),(39309,2716,'meta_data_wine-notes','<p>$52.00</p>'),(39310,2716,'meta_data_technical-notes','<div>Appellation: &nbsp;Napa Valley<br />Varietal: &nbsp;Cabernet Sauvignon<br />Harvested:&nbsp; September 2020<br />Bottle Date:&nbsp; March 2022<br />Production: 578 cases</div>'),(39311,2716,'rating',''),(39312,2716,'wine_vertical',''),(39313,2716,'wine_score',''),(39314,2717,'web_id','33aacf27-727e-4cc7-942b-14892d65e415'),(39315,2717,'slug','2020-cabernet-sauvignon-napa-valley-375-ml'),(39316,2717,'title','2020 Cabernet Sauvignon, Napa Valley 375 ml'),(39317,2717,'type','Wine'),(39318,2717,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_napavalley_cabernetsauvignon_2020_bottleshot-1663716121956.png'),(39319,2717,'teaser','Full-Size Flavors, Half the Bottle Size, 375ml'),(39320,2717,'content','<div>The rich and compelling nose of blackberry, blueberries, sandalwood and dried herbs are augmented by layers of plum, cherry, cocoa, and graphite.</div>\n<div>&nbsp;</div>\n<div>TASTING NOTES:&nbsp;A rich and compelling nose of blackberry, blueberries, sandalwood and dried herbs are augmented by layers of plum and cherry, cocoa and graphite. Bold and full bodied, this wine is structured firmly around a solid core of rich fruit, licorice and herbs. Supple, ripe tannins provide ample backbone. The mouth-feel is plush and unctuous while retaining stability and finesse. The finish is extended, with lingering flavors of caramel, sweet oak and chocolate.&nbsp; &nbsp;Decant to open up the complexity; best now through 2030.</div>\n<div>&nbsp;</div>\n<div>\n<div>FOOD PAIRING:&nbsp;&nbsp;A quintessential Cabernet, this bold and structured wine is an effortless match with well-marbled beef and long-braised stews and sauces. Dishes with fresh herbs will marry nicely with the earthy notes, while the bold fruit will complement hard cheeses like Parmesan or Asiago.</div>\n</div>'),(39321,2717,'subtitle',''),(39322,2717,'price','3500'),(39323,2717,'web_status','Not Available'),(39324,2717,'admin_status','Available'),(39325,2717,'varietal','Cabernet Sauvignon'),(39326,2717,'appellation','Mt. Veeder'),(39327,2717,'vintage','2018'),(39328,2717,'meta_data_review-text','<div><span style=\"font-weight: bold;\">AWARDS AND REVIEWS</span></div>\n<div>\n<div>90 pt |&nbsp; James Suckling&nbsp; |&nbsp; 2016 vintage</div>\n<div>A prototypical, modern Napa red that has the big cassis character of fully ripe cabernet sauvignon, moderate tannins that are already well integrated and nice freshness at the finish.&nbsp; Makes you want to order or cook some Osso Bucco.&nbsp; &nbsp;</div>\n<div>&nbsp;</div>\n94 pts | &nbsp;Chris Sawyer, Certified Sommelier&nbsp; |&nbsp; 2014 vintage<br />\n<div>&nbsp;On the palate, the generous flavors of black raspberry, dark cherry, cassis, ripe currants, cinnamon, hickory spice and dark chocolate truffle are complemented with a harmonious mixture of smooth, silky texture, chewy tannins, firm structure, and a lingering finish. Overall, an extremely well-crafted wine that is not only approachable when young, but also worthy of cellaring for more 10-15 years.</div>\n.</div>'),(39329,2717,'meta_data_feature-text','<p>Napa Valley, Half Bottle</p>\n<div>&nbsp;</div>'),(39330,2717,'meta_data_wine-notes','<p>$28</p>'),(39331,2717,'meta_data_technical-notes','<p>Appellation: &nbsp;Napa Valley<br />Varietal: &nbsp;Cabernet Sauvignon<br />Harvested:&nbsp; September 2020<br />Bottle Date:&nbsp; March 2022<br /><br /></p>'),(39332,2717,'rating',''),(39333,2717,'wine_vertical',''),(39334,2717,'wine_score',''),(39335,2718,'web_id','595fef2b-6f52-4eb7-bd3c-3fa4fe94b7c5'),(39336,2718,'slug','2020-cabernet-sauvignon-oakville-napa-valley'),(39337,2718,'title','2020 Cabernet Sauvignon, Oakville'),(39338,2718,'type','Wine'),(39339,2718,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft-2020_cabernet_oakville_bottleshot-1664135420194.png'),(39340,2718,'teaser',NULL),(39341,2718,'content','<p><strong>TASTING NOTES:</strong> <span id=\"page64R_mcid4\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Sourced from a renowned wine-growing region that is known&nbsp;</span></span><span id=\"page64R_mcid5\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">for its exceptional quality wines, this particular wine showcases&nbsp;</span></span><span id=\"page64R_mcid6\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">powerful, rich and structured characteristics due to the volcanic&nbsp;</span></span><span id=\"page64R_mcid7\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">and clay soils and high elevation weather conditions. This&nbsp;</span></span><span id=\"page64R_mcid8\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">indulgent wine is a complex blend of dark cherry and black plum&nbsp;</span></span><span id=\"page64R_mcid9\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">flavors, with hints of cranberry and citrus for added depth. It&nbsp;</span></span><span id=\"page64R_mcid10\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">finishes with firm and silky tannins. A true delight, this wine is&nbsp;</span></span><span id=\"page64R_mcid11\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">meant to evolve over time, with a lifespan of 10-12 years.</span></span></p>\n<div><br />\n<div>\n<div><strong>FOOD PAIRING:</strong>&nbsp;The bold, robust flavors and tannins in this cabernet pair nicely with proteins like steak, veal, lamb, or bison. Complex spices, not spicy, but flavorful, bring out the fruit characteristics of this wine. Plant-based pairings like olives, eggplants, and mushrooms prepared with fresh herbs work well.</div>\n<div>&nbsp;</div>\n<div><strong>TECHNICAL DATA:</strong></div>\n<div>&nbsp;</div>\n<div><strong><span id=\"page64R_mcid18\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Appellation:</span></span></strong><span id=\"page64R_mcid19\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">Oakville, Napa Valley</span></span><span id=\"page64R_mcid20\" class=\"markedContent\"><br role=\"presentation\" /><strong><span dir=\"ltr\" role=\"presentation\">Varietal:</span></strong></span><span id=\"page64R_mcid21\" class=\"markedContent\"><strong> </strong><span dir=\"ltr\" role=\"presentation\">Cabernet Sauvignon</span></span><span id=\"page64R_mcid22\" class=\"markedContent\"><br role=\"presentation\" /><strong><span dir=\"ltr\" role=\"presentation\">Harvested:</span></strong></span><span id=\"page64R_mcid23\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">September, 2020</span></span><span id=\"page64R_mcid24\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\"><strong>Bottled</strong>:</span></span><span id=\"page64R_mcid25\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">December 2022</span></span><span id=\"page64R_mcid26\" class=\"markedContent\"><br role=\"presentation\" /><strong><span dir=\"ltr\" role=\"presentation\">Production:</span></strong></span><span id=\"page64R_mcid27\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">54 Cases</span></span></div>\n<div>&nbsp;</div>\n<div><strong><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">ACCOLADES:&nbsp;</span></span></strong></div>\n<div><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\"><strong>92 pts</strong> - International Wine Report</span></span></div>\n<div><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\"><strong>92 pts</strong> - Wine Enthusiast</span></span></div>\n<div>&nbsp;</div>\n<div><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/09/TechSheet-2020-Cab-Oakville-Final-1.pdf\"><strong><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Download PDF Wine Notes</span></span></strong></a></div>\n</div>\n</div>'),(39342,2718,'subtitle','Napa Valley'),(39343,2718,'price','12500'),(39344,2718,'web_status','Available'),(39345,2718,'admin_status','Available'),(39346,2718,'varietal','Cabernet Sauvignon'),(39347,2718,'appellation','Oakville'),(39348,2718,'vintage','2020'),(39349,2718,'meta_data_review-text','<p style=\"font-weight: 400;\"><strong>AWARDS &amp; REVIEWS</strong></p>\n<p>91 points &nbsp;|&nbsp;&nbsp;<a href=\"https://www.jamessuckling.com/\">JamesSuckling.com</a>&nbsp;</p>\n<p><em>\"Crushed raspberries, ripe cherries, blackberries, dried thyme, lavender, and spice box on the nose. Medium-bodied with plush tannins. Round, creamy, and polished with pretty vanilla notes on the finish. Drink from 2023.\"&nbsp;<strong>James Suckling</strong></em></p>\n<p><em><strong>&nbsp;</strong></em></p>\n<p><span style=\"font-weight: 400;\">Silver |&nbsp;</span><a style=\"font-weight: 400;\" href=\"https://winejudging.com/medal-winners/2022-medal-winners/\">San Francisco International Wines Competition</a><span style=\"font-weight: 400;\">&nbsp;(2022)</span></p>'),(39350,2718,'meta_data_feature-text','<p>Oakville, Napa Valley</p>'),(39351,2718,'meta_data_wine-notes','<p>$125.00</p>'),(39352,2718,'meta_data_technical-notes','<p>Appellation: Oakville, Napa Valley</p>\n<div>Varietal:&nbsp;91% Cabernet Sauvignon, 9% Petite Verdot&nbsp;</div>\n<div>Harvested: September 2020</div>\n<div>Bottling Date: April 2022</div>\n<div>Production: 150 cases</div>\n<div>Alcohol: 14.84%</div>'),(39353,2718,'rating',''),(39354,2718,'wine_vertical',''),(39355,2718,'wine_score',''),(39356,2719,'web_id','5a129829-870c-4791-91d1-b774686c0457'),(39357,2719,'slug','2020-cabernet-sauvignon-oakville-shiner-'),(39358,2719,'title','2020 Cabernet Sauvignon, Oakville ** SHINER**'),(39359,2719,'type','Wine'),(39360,2719,'image',NULL),(39361,2719,'teaser',''),(39362,2719,'content',''),(39363,2719,'subtitle','SHINER'),(39364,2719,'price','12500'),(39365,2719,'web_status','Retired'),(39366,2719,'admin_status','Not Available'),(39367,2719,'varietal',NULL),(39368,2719,'appellation',NULL),(39369,2719,'vintage',NULL),(39370,2719,'rating',''),(39371,2719,'wine_vertical',''),(39372,2719,'wine_score',''),(39373,2720,'web_id','4d796197-24ff-4768-84ef-f4eb71df17bc'),(39374,2720,'slug','2020-meadowcroft-cabernet-sauvignon-red-hills'),(39375,2720,'title','2020 Cabernet Sauvignon, Red Hills'),(39376,2720,'type','Wine'),(39377,2720,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1261-1660261115887.png'),(39378,2720,'teaser',''),(39379,2720,'content','<p><span style=\"font-weight: bold;\">TASTING NOTES: </span><span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\"><span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">This full-bodied</span></span><span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">, ruby-colored Cabernet is bright and fresh, with aromas of black cherry, raspberry jam, and red licorice framed by secondary notes of graphite and baking spices. Lush on the palate, with layers of violets, herbs, currants, and cherries. Drink now through 2030.</span></p>\n<div>&nbsp;</div>\n<div>\n<div>FOOD PAIRING:&nbsp;&nbsp;We love the red fruit and edgy herbaceous nature of this delicious wine. Suggested pairings include pulled pork sliders or Carolina Barbecue. Cajun spices are a great match, and traditional beans and rice with collard greens make a delicious weeknight pairing.&nbsp;</div>\n</div>\n<p><br /><br /></p>'),(39380,2720,'subtitle','Lake County'),(39381,2720,'price','4500'),(39382,2720,'web_status','Not Available'),(39383,2720,'admin_status','Available'),(39384,2720,'varietal','Cabernet Sauvignon'),(39385,2720,'appellation','Red Hills Lake County'),(39386,2720,'vintage','2020'),(39387,2720,'meta_data_review-text','<div>90 pt |&nbsp; James Suckling&nbsp; |&nbsp; 2016 vintage<br></div><div><span style=\"font-style: italic;\"\">A prototypical, modern Napa red that has the big cassis character of fully ripe cabernet sauvignon, moderate tannins that are already well integrated and nice freshness at the finish.&nbsp; Makes you want to order or cook some Osso Bucco.&nbsp; &nbsp;</span></div><div><br></div>94 pts | &nbsp;Chris Sawyer, Certified Sommelier&nbsp; |&nbsp; 2014 vintage<br><div><span style=\"\"font-style: italic;\"\">&nbsp;On the palate, the generous flavors of black raspberry, dark cherry, cassis, ripe currants, cinnamon, hickory spice and dark chocolate truffle are complemented with a harmonious mixture of smooth, silky texture, chewy tannins, firm structure, and a lingering finish. Overall, an extremely well-crafted wine that is not only approachable when young, but also worthy of cellaring for more 10-15 years.</span></div>\"'),(39388,2720,'meta_data_feature-text','Lake County'),(39389,2720,'meta_data_wine-notes','$36.00'),(39390,2720,'meta_data_technical-notes','<div>Appellation: &nbsp;Napa Valley<br>Varietal: &nbsp;Cabernet Sauvignon<br>Harvested:&nbsp; September 2020<br>Bottle Date:&nbsp; March 2022<br>Production: 578 cases<br></div>'),(39391,2720,'rating',''),(39392,2720,'wine_vertical',''),(39393,2720,'wine_score',''),(39394,2721,'web_id','f0b9b3e7-af6c-4a45-ade4-3dc533275768'),(39395,2721,'slug','2020-meadowcroft-cabernet-sauvignon-stags-leap-15l'),(39396,2721,'title','2020 Cabernet Sauvignon, Stag\'s Leap 1.5L'),(39397,2721,'type','Wine'),(39398,2721,'image',NULL),(39399,2721,'teaser',''),(39400,2721,'content',''),(39401,2721,'subtitle','Meadowcroft Cabernet Sauvignon Stag\'s Leap 1.5L'),(39402,2721,'price','25000'),(39403,2721,'web_status','Retired'),(39404,2721,'admin_status','Not Available'),(39405,2721,'varietal','Cabernet Sauvignon'),(39406,2721,'appellation','Stags Leap District'),(39407,2721,'vintage','2020'),(39408,2721,'rating',''),(39409,2721,'wine_vertical',''),(39410,2721,'wine_score',''),(39411,2722,'web_id','704a984f-b5ad-450b-a7e6-2bbbb6308060'),(39412,2722,'slug','2020-cabernet-sauvignon-wyldvin-vineyard'),(39413,2722,'title','2020 Cabernet Sauvignon, Wyldvin Vineyard'),(39414,2722,'type','Wine'),(39415,2722,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1254-1660261699767.png'),(39416,2722,'teaser',''),(39417,2722,'content','<div><span>TASTING NOTE:</span>&nbsp; Fruity<span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">, juicy, smooth - this bold and rich Cabernet opens with baked cherries, tobacco leaf, Jamon Iberico, and wet stone. The tannins are prominent and are complemented by suggestions of coriander, berry preserves, chocolate cake, caramel, and fresh clove. Drink now until 2029. Decant or cellar to fully reveal this wine\'s complex nature.</span>\n<div>&nbsp;</div>\n<div>FOOD PAIRING: &nbsp;Traditional pairings like a burger with grilled mushrooms and melted cheese, beef stew or pot roast make a wonderful match. The hint of smoked ham on the palate would pair deliciously with Jamon Reserva &amp; dried fruits.</div>\n</div>'),(39418,2722,'subtitle','Dry Creek Valley, Sonoma County'),(39419,2722,'price','5500'),(39420,2722,'web_status','Not Available'),(39421,2722,'admin_status','Available'),(39422,2722,'varietal','Cabernet Sauvignon'),(39423,2722,'appellation','Dry Creek Valley'),(39424,2722,'vintage','2020'),(39425,2722,'meta_data_feature-text','Dry Creek Valley, Sonoma County'),(39426,2722,'meta_data_wine-notes','$40.00'),(39427,2722,'meta_data_technical-notes','Appellation: &nbsp;Dry Creek Valley, Sonoma County<br>Varietal:&nbsp;75% Cabernet Sauvignon 10% Mourvedre 10% Petite Sirah, 5% Malbec&nbsp;<br>Harvest Date: &nbsp;September 2020<br>Bottled Date:&nbsp; April 2022<br>Alcohol: &nbsp;14.5%<br>Production: 222 cases<div></div><div><br></div>'),(39428,2722,'rating',''),(39429,2722,'wine_vertical',''),(39430,2722,'wine_score',''),(39431,2723,'web_id','3782625e-4891-46bd-94d0-5d1b32f67aae'),(39432,2723,'slug','2020-napa-carneros-chardonnay'),(39433,2723,'title','2020 Chardonnay, Napa Carneros'),(39434,2723,'type','Wine'),(39435,2723,'image',NULL),(39436,2723,'teaser',''),(39437,2723,'content',''),(39438,2723,'subtitle',''),(39439,2723,'price','3500'),(39440,2723,'web_status','Not Available'),(39441,2723,'admin_status','Available'),(39442,2723,'varietal','Chardonnay'),(39443,2723,'appellation','Carneros'),(39444,2723,'vintage','2020'),(39445,2723,'meta_data_wine-notes','28.00'),(39446,2723,'rating',''),(39447,2723,'wine_vertical',''),(39448,2723,'wine_score',''),(39449,2724,'web_id','08a19940-65d5-47e7-9492-ab53e0e0c5f9'),(39450,2724,'slug','2020-meadowcroft-napa-carneros-chardonnay--12750ml'),(39451,2724,'title','2020 Chardonnay, Napa Carneros 12/750ml'),(39452,2724,'type','Wine'),(39453,2724,'image',NULL),(39454,2724,'teaser',NULL),(39455,2724,'content',NULL),(39456,2724,'subtitle',NULL),(39457,2724,'price','10800'),(39458,2724,'web_status','Not Available'),(39459,2724,'admin_status','Available'),(39460,2724,'varietal','Chardonnay'),(39461,2724,'appellation','Carneros'),(39462,2724,'vintage','2020'),(39463,2724,'rating',''),(39464,2724,'wine_vertical',''),(39465,2724,'wine_score',''),(39466,2725,'web_id','487420bd-4ab4-45f4-97f2-2dab841487a3'),(39467,2725,'slug','2020-chardonnay-taylor-s-crown-vineyard'),(39468,2725,'title','2020 Chardonnay, Taylor\'s Crown Vineyard'),(39469,2725,'type','Wine'),(39470,2725,'image','https://images.commerce7.com/meadowcroft-wines/images/original/20_chard_taylorscrown_bottleshot-1657237365975.png'),(39471,2725,'teaser','This Chardonnay is coming from Taylor’s Crown vineyard, located on the southern slopes of Taylor Mountain. At 1200 ft, this picturesque vineyard is located above the fog line, creating a distinctive microclimate that is ideal for cultivating world-class chardonnay.'),(39472,2725,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">TASTING NOTES:&nbsp; Well-balanced with exceptional structure and texture, this wine features aromas of orange zest and melon. Rich flavors of marzipan, toasted brioche, and caramel evolve into vanilla and orange blossoms. The mouthfeel is medium, with a palate that is focused, balanced, and lush. The finish is deliciously layered with a bright and pleasant acidity.\n<div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp; Pair this viscous and complex wine with dishes using butter, like lobster tail or sage-butter gnocchi. Serve alongside dishes with mild, subtle flavors that aren&rsquo;t too acidic. Food pairings that play well with the ripe fruit notes of this wine, like corn or butternut squash, or also have a rich texture, like risotto, will make a perfect food and wine match with this wine.&nbsp;\n<div>&nbsp;</div>\n</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">\n<div>Appellation: Sonoma Coast, Sonoma County</div>\n<div>Varietal: Chardonnay</div>\n<div>Oak Regime: 100% French Oak, 35% New</div>\n<div>Harvested: September 2020</div>\n<div>Bottle Date: May 2020</div>\n<div>Production: 102 Cases</div>\n<div>Alc: 14%</div>\n<div>&nbsp;</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://client-assets.ecellar1.com/meadowcroftwines/prod_pdf_1110.pdf\" target=\"_blank\" rel=\"noopener\">Download Complete Wine Tasting Notes</a></div>'),(39473,2725,'subtitle','Sonoma Coast, Sonoma County'),(39474,2725,'price','3500'),(39475,2725,'web_status','Not Available'),(39476,2725,'admin_status','Not Available'),(39477,2725,'varietal','Chardonnay'),(39478,2725,'appellation','Sonoma Coast'),(39479,2725,'vintage','2020'),(39480,2725,'rating',''),(39481,2725,'wine_vertical',''),(39482,2725,'wine_score',''),(39483,2726,'web_id','efd1b760-cc63-48ae-a72b-bcc0be3ae8e3'),(39484,2726,'slug','2020-cru-de-la-ruche-malbec'),(39485,2726,'title','2020 Cru de la Ruche Malbec'),(39486,2726,'type','Wine'),(39487,2726,'image','https://images.commerce7.com/meadowcroft-wines/images/original/20_malbec_clements_hill_bottleshot-1657734991596.png'),(39488,2726,'teaser',NULL),(39489,2726,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>The name Cru de la Ruche, meaning vintage of the beehive, is a nod to our connection to the honeybee and its amazing ability to transform nectar into honey paralleling the transformation from grapes to wine.</div>\n<div>&nbsp;</div>\n<div>TASTING NOTE: <span dir=\"ltr\" role=\"presentation\">The rich flavors, full body and firm tannins make this wine&nbsp;</span><span dir=\"ltr\" role=\"presentation\">distinctive and truly special.</span> <span dir=\"ltr\" role=\"presentation\">Aromas of blackberry pie,&nbsp;</span><span dir=\"ltr\" role=\"presentation\">vanilla custard and sweet tobacco lead to bold red fruit notes&nbsp;</span><span dir=\"ltr\" role=\"presentation\">of black cherry, with underpinnings of cocoa and red plum.&nbsp;</span><span dir=\"ltr\" role=\"presentation\">Expect exquisite complexity, extraordinary structure and a&nbsp;</span><span dir=\"ltr\" role=\"presentation\">decadent, chocolaty finish that is both precise and smooth.</span><br />\n<div><br />\n<div>FOOD PAIRING: <span dir=\"ltr\" role=\"presentation\">Malbec is a classic pairing for vibrant flavors and rich&nbsp;</span><span dir=\"ltr\" role=\"presentation\">sauces. Game meats, like venison or bison, pair well because&nbsp;</span><span dir=\"ltr\" role=\"presentation\">of their lean fat content. Looking for a perfect cheese&nbsp;</span><span dir=\"ltr\" role=\"presentation\">pairing with</span> <span dir=\"ltr\" role=\"presentation\">Malbec</span><span dir=\"ltr\" role=\"presentation\">? T</span><span dir=\"ltr\" role=\"presentation\">ry blue cheese!</span></div>\n</div>\n</div>\n<div>&nbsp;</div>\n<div><strong>TECHNICAL DATA:</strong></div>\n<div>&nbsp;</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<div class=\"ecp-html-content tech-notes\">\n<div>Appellation: Clements Hill, San Joaquin County&nbsp;</div>\n<div>Varietal: Malbec&nbsp;</div>\n<div>Harvested: October 2019&nbsp;</div>\n<div>Production: 236 cases&nbsp;</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"review_notes\">\n<h3>AWARDS AND REVIEWS</h3>\n<div class=\"ecp-html-content\">\n<div>95 pts DOUBLE GOLD |&nbsp;&nbsp;<a title=\"Sunset Wine Competition\" href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\" target=\"\">Sunset International Wine Competition</a>&nbsp;(2019 vintage)</div>\n<div>92 pts GOLD |&nbsp;&nbsp;<a title=\"Sunset Wine Competition\" href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\" target=\"\">Sunset International Wine Competition</a>&nbsp;(2018 vintage)</div>\n<div>GOLD |&nbsp;&nbsp;<a title=\"SF Chronicle Wine Competition\" href=\"https://winejudging.com/\" target=\"\">San Francisco Chronicle&nbsp;Wine Competition</a>&nbsp;(2018 vintage)</div>\n<div>92 pts GOLD |&nbsp;&nbsp;<a title=\"Sunset Wine Competition\" href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\" target=\"\">Sunset International Wine Competition&nbsp;</a>(2017 vintage)</div>\n<div>GOLD |&nbsp;&nbsp;<a title=\"SF Chronicle Wine Competition\" href=\"https://winejudging.com/\" target=\"\">San Francisco Chronicle&nbsp;Wine Competition</a>&nbsp;(2017 vintage)<br />GOLD |&nbsp;&nbsp;<a title=\"SF Chronicle Wine Competition\" href=\"https://winejudging.com/\" target=\"\">San Francisco Chronicle&nbsp;Wine Competition&nbsp;</a>(2016 vintage)</div>\n<div>DOUBLE GOLD |&nbsp;<a title=\"SF Chronicle Wine Competition\" href=\"https://winejudging.com/\" target=\"\">San Francisco Chronicle Wine Competition</a>&nbsp;(2014 vintage)<br />Unanimous Gold voted by a five-member judging panel.&nbsp;</div>\n<div>&nbsp;</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><strong><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/08/Meadowcroft_2020CruDeLaRucheMalbec_TECHSheet.pdf\" target=\"_blank\" rel=\"noopener\">Download Complete Wine Tasting Notes</a></strong></div>'),(39490,2726,'subtitle','Clements Hill, San Joaquin Valley'),(39491,2726,'price','4000'),(39492,2726,'web_status','Available'),(39493,2726,'admin_status','Available'),(39494,2726,'varietal','Malbec'),(39495,2726,'appellation','Clements Hills'),(39496,2726,'vintage','2020'),(39497,2726,'rating',''),(39498,2726,'wine_vertical',''),(39499,2726,'wine_score',''),(39500,2727,'web_id','7c186a96-d8c5-4ae6-af07-63979d3b7db9'),(39501,2727,'slug','meadowcroft-melange-red-blend'),(39502,2727,'title','2020 Melange Red Blend, Dry Creek Valley'),(39503,2727,'type','Wine'),(39504,2727,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1226-1660261104492.png'),(39505,2727,'teaser',''),(39506,2727,'content','<div>Meadowcroft Wines has never created a blend sourced exclusively from Dry Creek Valley and featuring more than 90% Cabernet Sauvignon, primarily Clone 1103, from Wyldvin Vineyard (previously Louvau Vineyard). Planted over 30 years ago, this picturesque ranch bordered by both olive and majestic oak trees is 28 acres of premium benchland vineyards planted on Manzanita loam soil. &ldquo;M&eacute;lange Red Blend&rdquo; is a representation of the art of winemaking, how different varietals are mindfully incorporated in order to create something truly special and one-of-a-kind.</div>\n<div>&nbsp;</div>\n<div>TASTING NOTES:&nbsp; Meadowcroft uses Old World techniques and New World creativity in order to make superb wines that showcase the excellence of the fruit. Tom produces very small quantities of wine<span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">, focusing on the composition details of each lot to create wines that showcase the fruit and growing region. &ldquo;M&eacute;lange Red Blend&rdquo; delivers with upfront aromas of blackberry jam and plum, buttressed by underpinnings of jammy, dark fruit flavors. The palate is rich and complex, with warm clove and cinnamon spice. The finish is sumptuous, with lingering mocha and traces of vanilla from the 25% French oak used in aging.&nbsp;</span>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp;&nbsp;Try this special blend with foods that traditionally pair with Cabernet, like grilled meat or dishes that feature fresh garden herbs. This wine would also be excellent with pork rag&ugrave; or mushroom risotto with truffles.</div>\n<div>&nbsp;</div>\n<div><strong>TECHNICAL DATA:</strong></div>\n<div>&nbsp;</div>\n<div><span id=\"page61R_mcid20\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Appelation: <span id=\"page61R_mcid27\" class=\"markedContent\">Dry Creek Valley, Sonoma County</span></span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Varietal: <span id=\"page61R_mcid27\" class=\"markedContent\">91%&nbsp;</span><span id=\"page61R_mcid27\" class=\"markedContent\">Cabernet Sauvignon, 5% Petite Sirah, 2% Malbec, 2% Petit Verdot&nbsp;</span></span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Bottled: <span id=\"page61R_mcid27\" class=\"markedContent\">April 2022</span></span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Production: <span id=\"page61R_mcid27\" class=\"markedContent\">20 Cases</span></span></span><span id=\"page61R_mcid27\" class=\"markedContent\"><br /></span></div>\n</div>'),(39507,2727,'subtitle','Sonoma County'),(39508,2727,'price','5500'),(39509,2727,'web_status','Not Available'),(39510,2727,'admin_status','Available'),(39511,2727,'varietal','Blend'),(39512,2727,'appellation','Dry Creek Valley'),(39513,2727,'vintage','2020'),(39514,2727,'meta_data_review-text','<div>Produced Exclusively For the <a href=\"https://barrelauction.sonomawine.com/lot/lot-49-meadowcroft-wines/\"\" title=\"\"\"\" target=\"\"\"\">2022 Sonoma County Barrel Auction&nbsp;</a></div>\"'),(39515,2727,'meta_data_feature-text','Dry Creek Valley'),(39516,2727,'meta_data_wine-notes','$55.00'),(39517,2727,'meta_data_technical-notes','<div>Appellation: &nbsp;Dry Creek Valley</div>\n<div>Varieties: &nbsp;Cabernet Sauvignon 91%, Petite Sirah 5%, Malbec 2%, Petit Verdot 2%</div><div>Barrel Regime:&nbsp; 25% French Oak</div><div>Bottling Date:&nbsp; April 2022</div><div>Production:&nbsp;20 cases</div><div>Alcohol: &nbsp;14.5%</div>'),(39518,2727,'rating',''),(39519,2727,'wine_vertical',''),(39520,2727,'wine_score',''),(39521,2728,'web_id','eeffa741-a0d8-45d4-a9de-aacd07a0dac4'),(39522,2728,'slug','2020-pinot-blanc-rivino-vineyard-mendocino'),(39523,2728,'title','2020 Pinot Blanc, Rivino Vineyard'),(39524,2728,'type','Wine'),(39525,2728,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1101-1660261073750.jpg'),(39526,2728,'teaser','Primarily produced as a single varietal in Alsace in northeast France and the Alto Adige region of Italy, Pinot Blanc is the white counterpart to Pinot Noir. Very delicate, with tightly packed clusters on the vine, this grape variety results in light, refreshing wines that easily showcase winemaking style and terroir. This limited production, 2020 vintage is our first at Meadowcroft and is a special release.'),(39527,2728,'content','<p style=\"font-weight: 400;\"><strong>TASTING NOTE:&nbsp;&nbsp;</strong>Our first Pinot Blanc produced, this wine evokes the French wine-growing region of Alsace, where Pinot Blanc is cultivated for its creamy, fragrant properties. Our Pinot Blanc has lively grapefruit, apple, melon, and quince notes that evolve into a floral and mineral finish laced with marzipan. Crisp, refreshing, and deliciously unique, this wine is a superb addition to any occasion.</p>\n<p style=\"font-weight: 400;\"><strong>FOOD PAIRING:&nbsp;&nbsp;</strong>Pinot Blanc is an easy match with egg dishes like quiche, making it a wonderful choice for brunch. Try this wine with soft cheeses, salads with creamy dressings, and flaky fish like salmon and trout.</p>'),(39528,2728,'subtitle','Mendocino County'),(39529,2728,'price','3000'),(39530,2728,'web_status','Not Available'),(39531,2728,'admin_status','Not Available'),(39532,2728,'varietal','Pinot Blanc'),(39533,2728,'appellation','Mendocino'),(39534,2728,'vintage','2020'),(39535,2728,'meta_data_review-text','<span style=\"font-weight: bold;\"\">AWARDS AND REVIEWS</span><br><div><div>GOLD MEDAL |&nbsp;&nbsp;92 pts&nbsp;</div><div><span style=\"\"font-style: italic;\"\">2020 Rivino Vineyard Pinot Blanc</span><br></div><span style=\"\"font-style: italic;\"\"><a href=\"\"https://www.criticschallenge.com/cgi-bin/rtbin/sbpg/rt_hdln_dsply2.cgi?Autoincrement=000032&amp;value_6=Results\"\" title=\"\"\"\" target=\"\"\"\">Critics Challenge Wine Wine Competition</a></span><span style=\"\"font-style: italic;\"\"><br></span></div><div><span style=\"\"font-style: italic;\"\"><br></span></div>\"'),(39536,2728,'meta_data_feature-text','Mendocino'),(39537,2728,'meta_data_wine-notes','24'),(39538,2728,'meta_data_technical-notes','<div>Appellation:&nbsp; Mendocino</div><div>Varietal:&nbsp; Pinot Blanc</div><div>Harvest Date: September 2020</div><div>Bottle date: May 2021</div><div>Production: 81&nbsp; cases</div><div>Alcohol: 14.2%<br></div>'),(39539,2728,'rating',''),(39540,2728,'wine_vertical',''),(39541,2728,'wine_score',''),(39542,2729,'web_id','ebbfd112-16a4-4aaf-9c3b-3a580c81f9b5'),(39543,2729,'slug','2020-anderson-valley-pinot-noir'),(39544,2729,'title','2020 Pinot Noir, Anderson Valley'),(39545,2729,'type','Wine'),(39546,2729,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1134-1660261081166.png'),(39547,2729,'teaser',NULL),(39548,2729,'content','<p><span style=\"font-weight: bold;\">TASTING NOTES: &nbsp;</span>This elegant wine overflows with bright strawberry and floral with hints of toasted oak aromas and beautifully ripe pure cherry and raspberry flavors along with bergamot tea that adds complexity and interest.&nbsp; The silky-smooth texture keeps you wanting more.&nbsp;</p>\n<div><br />\n<div>\n<div>PAIRING NOTES:&nbsp; Try this pinot noir with sesame-crusted seared ahi tuna over arugula salad.&nbsp; The elegant tannins of this wine will pair with a wide variety of cuisines from spicy to comfort foods.&nbsp; Also perfect for sipping on its own.</div>\n</div>\n</div>'),(39549,2729,'subtitle',NULL),(39550,2729,'price','3800'),(39551,2729,'web_status','Not Available'),(39552,2729,'admin_status','Not Available'),(39553,2729,'varietal','Pinot Noir'),(39554,2729,'appellation','Anderson Valley'),(39555,2729,'vintage','2020'),(39556,2729,'meta_data_review-text','<div>91 pts |&nbsp; Wilfred Wong of <span style=\"font-style: italic;\"\">www.wine.com&nbsp;</span>&nbsp;<br></div><div><span style=\"\"font-style: italic;\"\">The 2019 Meadowcroft Pinot Noir is a beautifully balanced wine. This wine shows pleasing red fruit, dried herbs, and savory accents in the aromas and on the palate. Pair it with a mildly-seasoned lamb stew.&nbsp;</span><br><br></div>\"'),(39557,2729,'meta_data_feature-text','Anderson Valley'),(39558,2729,'meta_data_wine-notes','$30.40'),(39559,2729,'meta_data_technical-notes','<div>Appellation: &nbsp;Anderson Valley, Mendocino County</div><div>Varietal: &nbsp;Pinot Noir</div><div>Harvested: &nbsp;September 2019</div><div>Bottle Date:&nbsp; January 2020</div><div>Production:&nbsp; 900 cases</div>'),(39560,2729,'rating',''),(39561,2729,'wine_vertical',''),(39562,2729,'wine_score',''),(39563,2730,'web_id','285f9a36-c8a2-4eed-9d79-2417885084b2'),(39564,2730,'slug','2020-pinot-noir-anderson-valley-black-screw-cap-'),(39565,2730,'title','2020 Pinot Noir, Anderson Valley ** Black Screw Cap**'),(39566,2730,'type','Wine'),(39567,2730,'image',NULL),(39568,2730,'teaser',''),(39569,2730,'content',''),(39570,2730,'subtitle','SHINER'),(39571,2730,'price','0'),(39572,2730,'web_status','Not Available'),(39573,2730,'admin_status','Not Available'),(39574,2730,'varietal',NULL),(39575,2730,'appellation',NULL),(39576,2730,'vintage',NULL),(39577,2730,'rating',''),(39578,2730,'wine_vertical',''),(39579,2730,'wine_score',''),(39580,2731,'web_id','157b1c16-fffb-4379-b86e-f0e76ab0d038'),(39581,2731,'slug','2020-pinot-noir-anderson-valley-gold-screw-cap-'),(39582,2731,'title','2020 Pinot Noir, Anderson Valley **Gold Screw Cap**'),(39583,2731,'type','Wine'),(39584,2731,'image',NULL),(39585,2731,'teaser',''),(39586,2731,'content',''),(39587,2731,'subtitle','SHINER'),(39588,2731,'price','0'),(39589,2731,'web_status','Not Available'),(39590,2731,'admin_status','Not Available'),(39591,2731,'varietal',NULL),(39592,2731,'appellation',NULL),(39593,2731,'vintage',NULL),(39594,2731,'rating',''),(39595,2731,'wine_vertical',''),(39596,2731,'wine_score',''),(39597,2732,'web_id','b3d12b34-e14b-4d0d-825d-ea40fa50fdd4'),(39598,2732,'slug','2020-pinot-noir-cornerstone-vineyard'),(39599,2732,'title','2020 Pinot Noir, Cornerstone Vineyard'),(39600,2732,'type','Wine'),(39601,2732,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_2020_cornerstone_pinotnoir_bottleshotpng-1657673744671.png'),(39602,2732,'teaser',NULL),(39603,2732,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>TASTING NOTE:&nbsp;&nbsp;This member&rsquo;s favorite wine opens in the glass with black cherries, cranberries, nutmeg, and cinnamon on the nose. The palate is elegant, showcasing ripe berry fruit framed by a pleasant herbaceousness. The finish is soft with restrained tannins, toasty caramel flavors, and a brisk lift of acidity.</div>\n<div><br />\n<div>FOOD PAIRING: &nbsp;A reliable pairing for this wine is wild mushroom risotto, or a cheese plate, as this Pinot will pair nicely with a wide variety of cheeses. Try with an aged Camembert or creamy gouda alongside some cured meats.</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">Appellation: &nbsp;Los Carneros, Sonoma County<br />Varietal: &nbsp;Pinot Noir<br />Harvested: &nbsp;September 2020<br />Bottle Date:&nbsp; December 2021<br />Production:&nbsp; 190 cases<br />\n<div>Alchohol: 14%</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"review_notes\">\n<h3>AWARDS AND REVIEWS</h3>\n<div class=\"ecp-html-content\">\n<div>AWARDS AND REVIEWS</div>\n<div>\n<div>CRITICS CHALLENGE 2021 | &nbsp;2019 Cornerstone Pinot Noir</div>\n<div>GOLD 93 Points&nbsp;<a title=\"James Suckling \" href=\"http://https//www.jamessuckling.com/\" target=\"\">James Suckling</a>&nbsp;| &nbsp;2015 Cornerstone Pinot Noir</div>\n</div>\nA little jammy with strawberry and cherry character. &nbsp;Full body, round and juicy palate.&nbsp;\n<div><a title=\"Sunset Wine Competition\" href=\"http://https//sunsetcompetitions.com/sunset-international-wine-competition/\" target=\"\">Sunset International Wine Competition&nbsp;</a> | &nbsp;2015 Cornerstone Pinot Noir SILVER MEDAL</div>\n<div>&nbsp;</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://client-assets.ecellar1.com/meadowcroftwines/prod_pdf_1219.pdf\" target=\"_blank\" rel=\"noopener\">Download Complete Wine Tasting Notes</a></div>'),(39604,2732,'subtitle','Los Carneros, Sonoma County'),(39605,2732,'price','4600'),(39606,2732,'web_status','Not Available'),(39607,2732,'admin_status','Not Available'),(39608,2732,'varietal','Pinot Noir'),(39609,2732,'appellation','Los Carneros'),(39610,2732,'vintage','2020'),(39611,2732,'rating',''),(39612,2732,'wine_vertical',''),(39613,2732,'wine_score',''),(39614,2733,'web_id','32771872-cbe0-47c0-b623-f14372842b89'),(39615,2733,'slug','2020-pinot-noir-russian-river-valley'),(39616,2733,'title','2020 Pinot Noir, Russian River Valley'),(39617,2733,'type','Wine'),(39618,2733,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_2020_pinotnoir_russianrivervalley_bottleshot-1657663637656.png'),(39619,2733,'teaser',NULL),(39620,2733,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>TASTING NOTE:&nbsp;&nbsp;Our 2020 Russian River Valley Pinot Noir leads with aromas of lavender, candied cherries, and notes of fresh blueberries. This vintage is aged in 25% French oak, which imparts a subtle vanilla toast to this juicy pinot noir. The palate is round and full, with a balanced acidity that contributes to the excellent structure and aging potential of the wine.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp;&nbsp;Pinot Noir is a fantastic wine to pair creatively. Always a great match with mushrooms, this robust pinot noir would be a delicious choice to pair with chanterelle risotto or wild mushroom polenta. Also, Full- flavored meats like lamb or duck prepared with a compote or gremolata are dishes we recommend serving alongside this wine.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">Appellations: &nbsp;Russian River Valley, Sonoma County\n<div>Varietal: &nbsp;Pinot Noir</div>\n<div>Harvested: &nbsp;September 2020</div>\n<div>Bottle Date:&nbsp; December 2021<br />Production:&nbsp; 160 cases</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"review_notes\">\n<h3>AWARDS AND REVIEWS</h3>\n<div class=\"ecp-html-content\">\n<div>AWARDS AND REVIEWS<br />\n<div>\n<div>GOLD MEDAL |&nbsp;&nbsp;2018 Russian River Valley Pinot Noir</div>\nSan Francisco Chronicle Wine Competition</div>\n<div>&nbsp;</div>\n</div>\n<div>James Suckling&nbsp;| &nbsp;2015 Russian River Valley Pinot Noir</div>\n<div>Lots of ripe cherries with some jam character. &nbsp;Full body, light tannins.</div>\n<div>&nbsp;</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://client-assets.ecellar1.com/meadowcroftwines/prod_pdf_1217.pdf\" target=\"_blank\" rel=\"noopener\">Download Complete Wine Tasting Notes</a></div>'),(39621,2733,'subtitle','Sonoma County'),(39622,2733,'price','4200'),(39623,2733,'web_status','Not Available'),(39624,2733,'admin_status','Available'),(39625,2733,'varietal','Pinot Noir'),(39626,2733,'appellation','Russian River Valley'),(39627,2733,'vintage','2020'),(39628,2733,'rating',''),(39629,2733,'wine_vertical',''),(39630,2733,'wine_score',''),(39631,2734,'web_id','f4c269cb-be56-4cc1-82ac-89037cf78c1f'),(39632,2734,'slug','2020-river-trace-gsm'),(39633,2734,'title','2020 River Trace GSM'),(39634,2734,'type','Wine'),(39635,2734,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1258-1660261114486.png'),(39636,2734,'teaser',NULL),(39637,2734,'content','<div>\"The right River Trace guided its seekers to wonderful treasures. &nbsp;May this River Trace bring you to that same magical place.\" Tom Meadowcroft</div>\n<div>&nbsp;</div>\n<div><strong>TASTING NOTES:</strong>&nbsp;&nbsp;This Rhone-style blend leads with bold notes of ripe plum, blueberries, and leather.&nbsp; The palate is delectably smooth,&nbsp; with suggestions of sweet cherry cola, dried cherries,&nbsp; tea leaves,&nbsp; and warm clove. This medium-bodied wine finishes elegantly, with lingering characters of hazelnut and roasted coffee beans that complement the precise tannin structure.</div>\n<div>&nbsp;</div>\n<div><strong>FOOD PAIRING:</strong>&nbsp;&nbsp;GSM blends call for full-flavored pairings, like dishes with fresh herbs like sage, rosemary, or crushed red pepper. Robust, fatty pairings like grilled ribeye or sausages are also a delicious choice.&nbsp;</div>\n<div>&nbsp;</div>\n<div><strong>TECHNICAL DATA:</strong></div>\n<div>&nbsp;</div>\n<div><span id=\"page70R_mcid24\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Appelation: <span id=\"page70R_mcid33\" class=\"markedContent\">Lodi, California</span></span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Varietal: <span id=\"page70R_mcid33\" class=\"markedContent\">48% Syrah, 12% Grenache, 12% Mourv&eacute;dre,&nbsp;4% Malbec, 24% Carignane</span></span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Harvested: <span id=\"page70R_mcid33\" class=\"markedContent\">September 2020</span></span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Bottled:&nbsp;<span id=\"page70R_mcid33\" class=\"markedContent\">April 2022</span></span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Barrel Regime: <span id=\"page70R_mcid33\" class=\"markedContent\">25% French Oak Barrels, 10% American Barrels</span></span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Production: <span id=\"page70R_mcid33\" class=\"markedContent\">403 Cases</span></span></span><span id=\"page70R_mcid33\" class=\"markedContent\"><br /></span></div>\n<div>&nbsp;</div>\n<div><strong>ACCOLADES:</strong> 93pts International Wine Report, 96pts &amp; Double Gold Medal Sunset Intl Wine Competition</div>\n<div>&nbsp;</div>\n<div><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/08/Meadowcroft_2020_River-Trace_CA_GSM_TECHSheet-3.pdf\"><strong>Wine Notes</strong></a></div>'),(39638,2734,'subtitle','San Joaquin & Contra Costa County'),(39639,2734,'price','5000'),(39640,2734,'web_status','Not Available'),(39641,2734,'admin_status','Available'),(39642,2734,'varietal','Blend'),(39643,2734,'appellation','Lodi'),(39644,2734,'vintage','2020'),(39645,2734,'meta_data_review-text','<div>93 pts GOLD&nbsp; |&nbsp; <a href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"\"\">Sunset International Wine Competition </a><span style=\"\"font-style: italic;\"\">(2017 vintage)</span></div><div>BEST OF CLASS |&nbsp; <a href=\"\"https://winejudging.com/\"\" title=\"\"SF Chronicle Wine Competition\"\" target=\"\"\"\">San Francisco Chronicle&nbsp;Wine Competition</a><br></div><div><span style=\"\"font-style: italic;\"\">A muscular and enduring take of the increasingly popular GSM style pulled off here with unusual panache and vibrancy.&nbsp; &nbsp;(2016 Vintage)<br>Unanimous Gold voted by a five-member judging panel.&nbsp;</span></div><div><br></div><div><span style=\"\"font-style: italic;\"\">**CLUB EXCLUSIVE WINE:&nbsp; This wine is <span style=\"\"text-decoration-line: underline;\"\">only</span> available to club members; thus, the wine is already priced with club discount.&nbsp; No additional club discount applies.</span></div>\"'),(39646,2734,'meta_data_wine-notes','$50.00'),(39647,2734,'meta_data_technical-notes','<div>Appellation:&nbsp; Lodi, Contra Costa &amp; Sonoma, California</div><div>Varietal: 48% Syrah, 12% Grenache, and 12% Mourvédre,&nbsp;4% Malbec, 24% Carignane</div><div>Harvest Date: September 2020</div><div>Bottling Date: April 2022</div><div>Production:&nbsp; 403 cases</div><div>Alcohol:&nbsp; 14%</div>'),(39648,2734,'rating',''),(39649,2734,'wine_vertical',''),(39650,2734,'wine_score',''),(39651,2735,'web_id','5477433c-128f-4197-bccd-c5fe3230c3a6'),(39652,2735,'slug','2020-ros-of-malbec-clements-hill'),(39653,2735,'title','2020 Rosé of Malbec Clements Hill'),(39654,2735,'type','Wine'),(39655,2735,'image','https://images.commerce7.com/meadowcroft-wines/images/original/mc_malbec_rose_2020_bottleshot_new-1686570202130.png'),(39656,2735,'teaser',''),(39657,2735,'content','<div>TASTING NOTES: Wildly vivacious with aromas of tea rose</div>'),(39658,2735,'subtitle',''),(39659,2735,'price','2800'),(39660,2735,'web_status','Not Available'),(39661,2735,'admin_status','Not Available'),(39662,2735,'varietal',NULL),(39663,2735,'appellation',NULL),(39664,2735,'vintage',NULL),(39665,2735,'meta_data_feature-text','Clements Hill'),(39666,2735,'meta_data_wine-notes','$22.40<br>'),(39667,2735,'meta_data_technical-notes','<div>Appellation: &nbsp;Clements Hill, San Joaquin Valley</div><div>Varietal: &nbsp;Malbec</div><div>Harvest Date: &nbsp;September 2020</div><div>Bottling Date: &nbsp;January 2021</div><div>Production:&nbsp; 140 cases</div><div>Alcohol: 13.5%</div>'),(39668,2735,'rating',''),(39669,2735,'wine_vertical',''),(39670,2735,'wine_score',''),(39671,2736,'web_id','1613f8c7-763f-487d-877c-031f6b8fd0a7'),(39672,2736,'slug','2020-ros-of-pinot-noir-sonoma-coast'),(39673,2736,'title','2020 Rosé of Pinot Noir, Sonoma Coast'),(39674,2736,'type','Wine'),(39675,2736,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1095-1660261070556.png'),(39676,2736,'teaser',''),(39677,2736,'content','<p>TASTING NOTES: Elegant and refined<span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">, this vibrant wine features aromas of stone fruit, ripe strawberries, and English Roses. The palate is driven by fresh grapefruit citrus, lush red berries, and watermelon. This delightfully fruity and delicate wine, with a refreshing and bright finish, evokes the spirit of traditional Provence ros&eacute;s.</span></p>\n<div>&nbsp;</div>\n<div>FOOD PAIRING: Ros&eacute; is an exceptionally versatile wine, paired with anything from poultry to seafood.&nbsp; This wine\'s crisp and focused style is ideal for serving with charcuterie, olives, and vegetables like grilled asparagus and roasted cauliflower. Try it with cracked crab and sourdough, quiche and fruit salad, or roasted Turkey.</div>'),(39678,2736,'subtitle',''),(39679,2736,'price','3000'),(39680,2736,'web_status','Not Available'),(39681,2736,'admin_status','Not Available'),(39682,2736,'varietal','Rose'),(39683,2736,'appellation','Sonoma Coast'),(39684,2736,'vintage','2021'),(39685,2736,'meta_data_feature-text','Sonoma Coast'),(39686,2736,'meta_data_wine-notes','$24.00'),(39687,2736,'meta_data_technical-notes','<div>Appellation: &nbsp;Sonoma Coast</div><div>Varietal: &nbsp;Pinot Noir</div><div>Harvest Date: September 2020</div><div>Bottling Date: March 2021</div><div>Production:&nbsp; 196 cases</div><div>Alcohol: &nbsp;13.5%</div>'),(39688,2736,'rating',''),(39689,2736,'wine_vertical',''),(39690,2736,'wine_score',''),(39691,2737,'web_id','055786fe-83a7-4490-a005-6f67b0926e13'),(39692,2737,'slug','2020-louvau-vineyards-roussanne'),(39693,2737,'title','2020 Roussanne, Louvau Vineyards'),(39694,2737,'type','Wine'),(39695,2737,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1097-1660261734006.png'),(39696,2737,'teaser',NULL),(39697,2737,'content','<p><span style=\"font-weight: bold;\">TASTING NOTES:&nbsp;&nbsp;</span>A spirited wine<span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">, with lush fruit notes of white peach and apricot bolstered by honeycomb and orange blossom. The palate is medium, with prominent structure and youthful acidity. The finish is laced with subtle spice and delicious flavors of lemon meringue and vanilla custard, ending in a mineral-driven, lengthy finale.</span></p>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp; Due to the natural acidity and heavier body, this wine is excellent with rich shellfish or poultry dishes. Try this wine with fresh vegetables, especially artichokes. A match for anything you might pair with chardonnay, our 2020 Roussanne can also stand up to spicy fare.</div>\n<p>&nbsp;</p>'),(39698,2737,'subtitle','Dry Creek Valley, Sonoma County'),(39699,2737,'price','3600'),(39700,2737,'web_status','Not Available'),(39701,2737,'admin_status','Not Available'),(39702,2737,'varietal','Roussanne'),(39703,2737,'appellation','Dry Creek Valley'),(39704,2737,'vintage','2020'),(39705,2737,'meta_data_review-text','<div>90 points, GOLD MEDAL&nbsp; |&nbsp;&nbsp;<a href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"\"\" style=\"\"background-color: rgb(255, 255, 255); color: rgb(20, 104, 160);\"\">Sunset International Wine Competition</a>&nbsp;(2020 vintage)<br></div><div>90 points, GOLD MEDAL&nbsp; |&nbsp;&nbsp;<a href=\"\"https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"\"\">Sunset International Wine Competition</a>&nbsp;(2019 vintage)<br></div><div>92 points, GOLD MEDAL&nbsp; |&nbsp;&nbsp;<a href=\"\"https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"_blank\"\">Sunset International Wine Competition</a>&nbsp;(2018 vintage)</div><div>BEST OF CLASS, GOLD MEDAL &nbsp;| &nbsp;<a href=\"\"https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"\"\">Sunset International Wine Competition</a><br><span style=\"\"font-style: italic;\"\">Juicy peach, melon, and citrus fruit is slightly creamy on the midpalate, followed by a long, brisk, spicy finish.&nbsp; (2016 vintage)<br></span></div><div>DOUBLE GOLD |&nbsp;<a href=\"\"https://winejudging.com/\"\" title=\"\"SF Chronicle Wine Competition\"\" target=\"\"\"\">San Francisco Chronicle Wine Competition</a><br><span style=\"\"font-style: italic;\"\">Unanimous Gold voted by a five member judging panel. (2016 vintage)</span></div>\"'),(39706,2737,'meta_data_feature-text','Dry Creek Valley'),(39707,2737,'meta_data_wine-notes','28.80<br>'),(39708,2737,'meta_data_technical-notes','<div>Appellation: &nbsp;Dry Creek Valley, Sonoma County</div><div>Varietal: Roussanne</div><div>Fermentation: &nbsp;French oak barrel fermented</div><div>Harvest Date: September 2020</div><div>Bottling Date: May 2021&nbsp;</div><div>Production:&nbsp; 213 cases</div>'),(39709,2737,'rating',''),(39710,2737,'wine_vertical',''),(39711,2737,'wine_score',''),(39712,2738,'web_id','2966ccc8-0885-45e1-9e77-7fd3be419460'),(39713,2738,'slug','2020-rutherford-cabernet-sauvignon'),(39714,2738,'title','2020 Cabernet Sauvignon, Rutherford'),(39715,2738,'type','Wine'),(39716,2738,'image','https://images.commerce7.com/meadowcroft-wines/images/original/sonomabottle-meadowcroftwines_cabernetsauvignon_rutherford_2020-1688664281029.png'),(39717,2738,'teaser',NULL),(39718,2738,'content','<p><strong>TASTING NOTES:</strong> <span id=\"page64R_mcid4\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Grown in soil once a riverbed, these wines are a blend of fruity&nbsp;</span></span><span id=\"page64R_mcid5\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">and herbal flavors with a hint of spice, known as &ldquo;Rutherford&nbsp;</span></span><span id=\"page64R_mcid6\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">dust.&rdquo; Meadowcroft&rsquo;s 2020 Rutherford Cabernet is the perfect&nbsp;</span></span><span id=\"page64R_mcid7\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">example, with its enticing aromas of toasty oak, dark cherry,&nbsp;</span></span><span id=\"page64R_mcid8\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">and floral notes, followed by rich flavors of cranberry, mineral,</span></span><span id=\"page64R_mcid9\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">pomegranate, cherry, and tobacco. Get ready to indulge in a wine&nbsp;</span></span><span id=\"page64R_mcid10\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">that truly embodies the spirit of Rutherford.</span></span></p>\n<p><strong>FOOD PAIRING:</strong> <span id=\"page64R_mcid13\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">It&rsquo;s difficult to steer away from the usual red meat&nbsp;</span></span><span id=\"page64R_mcid14\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">recommendations, but a well-marbled cut of beef filet will&nbsp;</span></span><span id=\"page64R_mcid15\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">perfectly complement the balanced acidity and rich fruit flavors&nbsp;</span></span><span id=\"page64R_mcid16\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">of this wine. Vegetarians will enjoy dishes incorporating wild&nbsp;</span></span><span id=\"page64R_mcid17\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">mushrooms, sun dried tomatoes or aromatic cheeses.</span></span></p>\n<p><strong><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">TECHNICAL DATA:</span></span></strong></p>\n<p><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\"><span id=\"page64R_mcid20\" class=\"markedContent\">Appellation:</span><span id=\"page64R_mcid21\" class=\"markedContent\"> Rutherford, Napa Valley</span><span id=\"page64R_mcid22\" class=\"markedContent\"><br role=\"presentation\" />Varietal:</span><span id=\"page64R_mcid23\" class=\"markedContent\"> Cabernet Sauvignon</span></span></span></p>\n<p><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\"><span id=\"page64R_mcid24\" class=\"markedContent\">Harvested:</span><span id=\"page64R_mcid25\" class=\"markedContent\"> September 2020</span><span id=\"page64R_mcid26\" class=\"markedContent\"><br role=\"presentation\" />Bottled:</span><span id=\"page64R_mcid27\" class=\"markedContent\"> December 2022</span><span id=\"page64R_mcid28\" class=\"markedContent\"><br role=\"presentation\" />Production:</span><span id=\"page64R_mcid29\" class=\"markedContent\"> 53 Cases</span></span></span></p>\n<p><strong><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\"><span class=\"markedContent\">ACCOLADES:&nbsp;</span></span></span></strong></p>\n<p><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\"><span class=\"markedContent\"><strong>93pts - </strong>Wine Enthusiast</span></span></span></p>\n<p><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\"><span class=\"markedContent\"><strong>92pts</strong> - International Wine Report</span></span></span></p>\n<p><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/08/TechSheet-2020-Cab-Rutherford-Final-1.pdf\"><strong>Wine Notes</strong></a></p>'),(39719,2738,'subtitle','Napa Valley'),(39720,2738,'price','12500'),(39721,2738,'web_status','Available'),(39722,2738,'admin_status','Available'),(39723,2738,'varietal','Cabernet Sauvignon'),(39724,2738,'appellation','Rutherford'),(39725,2738,'vintage','2020'),(39726,2738,'rating',''),(39727,2738,'wine_vertical',''),(39728,2738,'wine_score',''),(39729,2739,'web_id','7d988d29-75d4-4945-9303-3acb759e2531'),(39730,2739,'slug','2020-meadowcroft-sangiovese-speedy-creek-vineyard-sonoma-county'),(39731,2739,'title','2020 Sangiovese, Speedy Creek Vineyard'),(39732,2739,'type','Wine'),(39733,2739,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1260-1660261738881.png'),(39734,2739,'teaser',NULL),(39735,2739,'content','<p>From the Speedy Creek Vineyard in the Knights Valley AVA of Sonoma County, this wine has been much-anticipated by fans and sells out every vintage.</p>\n<p><strong>TASTING NOTES:&nbsp;</strong> Stunningly complex, this elegant wine is distinctive and a wonderful representation of the 2020 vintage, with powerful fruit, vibrant aromatics, and lush mouth-feel. Floral notes of rose petals, blueberries, bell pepper, and toasty clove evolve into flavors of tart cherry, ripe red fruit, and chocolate. The palate is expressive and silky, with structured tannins and tingling acidity. Drink now through 2026.<br /><br /></p>\n<div><strong>FOOD PAIRING:</strong>&nbsp; This fruit-driven, jammy wine pairs well with pasta with tomato-based sauces, charcuterie, and grilled vegetables.&nbsp; The vibrant acidity makes this wine easy to pair with food.</div>\n<div>&nbsp;</div>\n<div><strong>TECHNICAL DATA:</strong></div>\n<div>&nbsp;</div>\n<div><span id=\"page63R_mcid19\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Appelation: <span id=\"page63R_mcid25\" class=\"markedContent\">Knights Valley, Sonoma County</span></span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Varietal: <span id=\"page63R_mcid25\" class=\"markedContent\">Sangiovese</span></span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Harvested: <span id=\"page63R_mcid25\" class=\"markedContent\">September 2020</span></span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Bottled: <span id=\"page63R_mcid25\" class=\"markedContent\">April 2022</span></span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Production:&nbsp;<span id=\"page63R_mcid25\" class=\"markedContent\">154 Cases</span></span></span><span id=\"page63R_mcid25\" class=\"markedContent\"><br role=\"presentation\" /></span></div>\n<div>&nbsp;</div>\n<div><strong><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\"><span class=\"markedContent\">ACCOLADES:</span></span></span></strong></div>\n<div><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\"><span class=\"markedContent\"><strong>90pts</strong> - International Wine Report</span></span></span></div>\n<div>&nbsp;</div>\n<div><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/09/MC_2020SangioveseSpeedyCreekKnightsValley_TECHSheet-3.pdf\"><strong><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\"><span class=\"markedContent\">Download PDF Wine Notes</span></span></span></strong></a></div>'),(39736,2739,'subtitle','Knights Valley, Sonoma County'),(39737,2739,'price','5500'),(39738,2739,'web_status','Available'),(39739,2739,'admin_status','Available'),(39740,2739,'varietal','Sangiovese'),(39741,2739,'appellation','Knights Valley'),(39742,2739,'vintage','2020'),(39743,2739,'meta_data_review-text','<div>GOLD |&nbsp;<a href=\"https://winejudging.com/medal_winners_2022/awards_by_winery.php\"\" title=\"\"\"\" target=\"\"\"\">2022 San Francisco Chronicle Wine Judging Competition</a>&nbsp;(2019 Vintage)</div><div>91 pts GOLD |&nbsp;&nbsp;<a href=\"\"https://www.criticschallenge.com/\"\" title=\"\"\"\" target=\"\"\"\">Critics Challenge International Wine Competition</a>&nbsp;<span style=\"\"font-style: italic;\"\">(2019 vintage)</span></div><div><p class=\"\"MsoNormal\"\" style=\"\"margin: 0in;\"\">GOLD |&nbsp; <a href=\"\"http://http://harvestfair.org/professional-wine-competition/\"\" title=\"\"\"\" target=\"\"\"\">Sonoma County Harvest Fair Wine Competition</a> (2019 vintage)</p><p class=\"\"MsoNormal\"\" style=\"\"margin: 0in;\"\"><span style=\"\"font-size: inherit;\"\">92 pts GOLD |&nbsp; <a href=\"\"http://https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"\"\" target=\"\"\"\">Sunset International Wine Competition</a> (2018 vintage)</span><br></p></div>\"'),(39744,2739,'meta_data_feature-text','Knights Valley, Sonoma County'),(39745,2739,'meta_data_wine-notes','$44.00'),(39746,2739,'meta_data_technical-notes','Appellation: Knights Valley, Sonoma County<br><span style=\"line-height: 1.5;\"\">Varietal: Sangiovese<br></span><span style=\"\"line-height: 1.5;\"\">Harvested: September 2020</span><span style=\"\"line-height: 1.5;\"\"><br></span><span style=\"\"line-height: 1.5;\"\">Production: 209 cases<br></span><span style=\"\"line-height: 1.5;\"\">Alcohol: 14.79%</span>\"'),(39747,2739,'rating',''),(39748,2739,'wine_vertical',''),(39749,2739,'wine_score',''),(39750,2740,'web_id','31049f6e-28d6-4b0c-8e1d-93532ed42cb7'),(39751,2740,'slug','2020-sonoma-coast-sauvignon-blanc'),(39752,2740,'title','2020 Sauvignon Blanc, Sonoma Coast'),(39753,2740,'type','Wine');
INSERT INTO `wp_postmeta` VALUES (39754,2740,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1094-1660261069498.png'),(39755,2740,'teaser','From the Sonoma Coast Appellation of Sonoma County, this sauvignon blanc was fermented and aged in a mix of stainless steel and new French oak barrels.  Bright, flinty, and crisp, this nose leads with notes of honeysuckle, candied apricot, white peach, and green apple. With a palate that expresses balance in weight and ripeness, this complex wine has a lengthy, lush, and fruity finish.'),(39756,2740,'content','<p><span style=\"font-weight: bold;\">TASTING NOTE: &nbsp;</span>Bright<span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">, flinty, and crisp, this nose leads with notes of honeysuckle, candied apricot, white peach, and green apple. With a palate that expresses balance in weight and ripeness, this complex wine has a lengthy, lush, and fruity finish.</span></p>\n<div>&nbsp;</div>\n<div>FOOD PAIRING: &nbsp;This wine is a great match for a variety of food pairings like ch&egrave;vre, and oysters, and is beautifully matched with anything using fresh herbs like tarragon or mint. This refreshing sauvignon blanc is also delicious on its own as an ap&eacute;ritif &agrave; la Maison (aperitif at home).</div>'),(39757,2740,'subtitle',''),(39758,2740,'price','3000'),(39759,2740,'web_status','Not Available'),(39760,2740,'admin_status','Not Available'),(39761,2740,'varietal','Sauvignon Blanc'),(39762,2740,'appellation','Sonoma Coast'),(39763,2740,'vintage','2020'),(39764,2740,'meta_data_feature-text','Sonoma County'),(39765,2740,'meta_data_wine-notes','$22.40'),(39766,2740,'meta_data_technical-notes','<div>Appellation:&nbsp; Sonoma Coast, Sonoma County</div><div>Varietal: &nbsp;Sauvignon Blanc</div><div>Harvest Date: September 2020</div><div>Bottle date: March 2021</div><div>Production: &nbsp;118 cases</div><div>Alcohol: &nbsp;14.4%</div>'),(39767,2740,'rating',''),(39768,2740,'wine_vertical',''),(39769,2740,'wine_score',''),(39770,2741,'web_id','de823517-6b90-46c5-a8b2-d137570fb87e'),(39771,2741,'slug','2020-stags-leap-cabernet-sauvignon'),(39772,2741,'title','2020 Cabernet Sauvignon, Stags Leap District'),(39773,2741,'type','Wine'),(39774,2741,'image','https://images.commerce7.com/meadowcroft-wines/images/original/sonomabottle-meadowcroftwines_cabernetsauvignon_stagsleap_2020-1677534754906.png'),(39775,2741,'teaser',NULL),(39776,2741,'content','<p>TASTING NOTES: <span id=\"page62R_mcid4\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Intense and full bodied, the 2020 Stags Leap Cabernet Sauvignon&nbsp;</span></span><span id=\"page62R_mcid5\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">exhibits lush aromatics of toasted oak, black currants, and ripe&nbsp;</span></span><span id=\"page62R_mcid6\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">blueberry. This is followed by flavors of tart cherry, vanilla,&nbsp;</span></span><span id=\"page62R_mcid7\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">sweet toasted oak and tobacco.</span></span></p>\n<p>FOOD PAIRING: <span id=\"page62R_mcid10\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">While meat dishes are a common pairing choice, vegetarians can&nbsp;</span></span><span id=\"page62R_mcid11\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">also enjoy the complex flavors of this wine. Perfect food affinities&nbsp;</span></span><span id=\"page62R_mcid12\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">for meat lovers can range from a juicy steak to grilled lamb chops</span></span><span id=\"page62R_mcid13\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">or even roasted duck. On the vegetarian side, hearty dishes such as&nbsp;</span></span><span id=\"page62R_mcid14\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">mushroom risotto or roasted root vegetables can complement this&nbsp;</span></span><span id=\"page62R_mcid15\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">wine&rsquo;s boldness.</span></span></p>\n<p><strong><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">TECHNICAL DATA:</span></span></strong></p>\n<p><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\"><span id=\"page62R_mcid18\" class=\"markedContent\">Appelation:</span><span id=\"page62R_mcid19\" class=\"markedContent\"> Stags Leap District, Napa Valley</span><span id=\"page62R_mcid20\" class=\"markedContent\"><br role=\"presentation\" />Varietal:</span><span id=\"page62R_mcid21\" class=\"markedContent\"> Cabernet Sauvignon</span><span id=\"page62R_mcid22\" class=\"markedContent\"><br role=\"presentation\" />Harvested:</span><span id=\"page62R_mcid23\" class=\"markedContent\"> September 2020</span><span id=\"page62R_mcid24\" class=\"markedContent\"><br role=\"presentation\" />Bottled:</span><span id=\"page62R_mcid25\" class=\"markedContent\"> December 2022</span><span id=\"page62R_mcid26\" class=\"markedContent\"><br role=\"presentation\" />Production:</span><span id=\"page62R_mcid27\" class=\"markedContent\"> 95 Cases</span></span></span></p>\n<p><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/09/TechSheet-2020-Cab-StagsLeap-Final-2.pdf\"><strong>Download Complete Wine Notes</strong></a></p>\n<p><strong><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\"><span class=\"markedContent\">ACCOLADES:</span></span></span></strong></p>\n<p><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\"><span class=\"markedContent\"><strong>93pts</strong> - International Wine Review</span></span></span></p>\n<p><strong><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\"><span class=\"markedContent\">Double Gold </span></span></span></strong><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\"><span class=\"markedContent\">- San Fracncisco Chronicle Wine Competition</span></span></span></p>'),(39777,2741,'subtitle','Napa Valley'),(39778,2741,'price','12500'),(39779,2741,'web_status','Not Available'),(39780,2741,'admin_status','Available'),(39781,2741,'varietal','Cabernet Sauvignon'),(39782,2741,'appellation','Stags Leap District'),(39783,2741,'vintage','2020'),(39784,2741,'rating',''),(39785,2741,'wine_vertical',''),(39786,2741,'wine_score',''),(39787,2742,'web_id','56482e30-481d-4f4d-af84-aaf5b555d926'),(39788,2742,'slug','2020-louvau-vineyards-viognier'),(39789,2742,'title','2020 Viognier, Louvau Vineyard'),(39790,2742,'type','Wine'),(39791,2742,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1102-1660261074498.png'),(39792,2742,'teaser',NULL),(39793,2742,'content','<p><span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">Morning fog from the Pacific Ocean tempers warm summer days, the Louvau Vineyard has a great balance of maritime and inland climates. &nbsp;The 2019 Louvau Vineyard Viognier is a classically fine-formed white that is aromatic and expressive.</span></p>\n<p><span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">TASTING NOTE:&nbsp; </span><span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\"><span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">This elegant and delicate wine features aromas of sweet stone fruit</span></span><span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">, jasmine, and citrus flowers, with a touch of butterscotch and vanilla bean. The finish has flavors of pear and tropical papaya, framed by subtle acidity.</span></p>\n<div>FOOD PAIRING:&nbsp;&nbsp;Viognier is excellent with grilled seafood or ceviche. Asian fare, like Thai or Vietnamese food, are also good choices, as this wine\'s delicate acidity and floral aromas balance out spicy foods and exotic flavors.</div>\n<p><br /><br /></p>'),(39794,2742,'subtitle','Dry Creek Valley, Sonoma County'),(39795,2742,'price','2200'),(39796,2742,'web_status','Not Available'),(39797,2742,'admin_status','Available'),(39798,2742,'varietal','Viognier'),(39799,2742,'appellation','Dry Creek Valley'),(39800,2742,'vintage','2020'),(39801,2742,'meta_data_review-text','<div><span style=\"font-weight: bold;\"\">AWARDS &amp; REVIEWS</span></div>92 points &nbsp;| &nbsp;Wine Enthusiast Magazine | &nbsp;2014 Louvau Vineyard Viognier<div><span style=\"\"font-style: italic;\"\">This 100% varietal wine makes the case for Viognier in this appellation, expressing Golden Delicious apple and pear around a fresh, medium build of viscous texture, lemon and wild honey. &nbsp;Pretty and aromatic, it\'s a classically fine-formed white, made in small quantities.</span></div><div><span style=\"\"font-style: italic;\"\"><br></span></div><span style=\"\"font-style: italic;\"\">**CLUB EXCLUSIVE WINE:&nbsp; This wine is&nbsp;</span><span style=\"\"font-style: italic; text-decoration-line: underline;\"\">only</span><span style=\"\"font-style: italic;\"\">&nbsp;available to club members; thus, the wine is already priced with club discount.&nbsp; No additional club discount applies.</span>\"'),(39802,2742,'meta_data_feature-text','Dry Creek Valley'),(39803,2742,'meta_data_wine-notes','$34.00'),(39804,2742,'meta_data_technical-notes','<div>Appellation: &nbsp;Dry Creek Valley, Sonoma County</div><div>Varietal: Viognier</div><div>Fermentation:&nbsp; Barrel fermented in French oak barrels</div><div>Harvest Date: September 2020</div><div>Bottling Date: May 2020<br></div><div>Production:&nbsp; &nbsp;76cases</div><div>Alcohol: 14.32%<br>pH:&nbsp; 3.38</div>'),(39805,2742,'rating',''),(39806,2742,'wine_vertical',''),(39807,2742,'wine_score',''),(39808,2743,'web_id','1df1ac38-b291-45cd-bc51-d8a0f81487b3'),(39809,2743,'slug','2020-zinfandel-mae-vineyard'),(39810,2743,'title','2020 Zinfandel, Mae Vineyard'),(39811,2743,'type','Wine'),(39812,2743,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft-mc_drycreekzin_20-1657734778611.png'),(39813,2743,'teaser',NULL),(39814,2743,'content','<p>Limited production of Zinfandel from the Mae Vineyard in the Dry Creek Valley, Sonoma County.</p>\n<p><strong>TASTING NOTE:</strong>&nbsp; Sleek and refined, our Mae Vineyard Zinfandel is an intense powerhouse of juicy plum, blackberry, and coconut cream notes, with secondary notes of ginger and cinnamon spice. On the palate, brambly flavors of boysenberries and cherries develop into a lush and silky finish laced with white pepper, sage, and marshmallow.</p>\n<p><strong>FOOD PAIRING:&nbsp;&nbsp;</strong>The vibrant acidity and excellent structure of this Zinfandel make it a superb match for barbeque, Italian sausage and slow-cooked dishes like osso buco. Enjoy with aged cheddars or gorgonzola, or serve with brick oven pizza.</p>\n<h3 style=\"font-weight: 600;\">TECHNICAL NOTES</h3>\n<p>APPELLATION: Dry Creek Valley, Sonoma County</p>\n<p>VARIETAL: 76 % Zinfandel, 12% Petite Sirah, 12% Cabernet</p>\n<p>HARVESTED: September 2020</p>\n<p>BOTTLE DATE: December 2021</p>\n<p>PRODUCTION: 431 Cases</p>\n<p>ALCOHOL: 15.20%</p>\n<p>pH: 3.84</p>\n<p style=\"font-weight: 400;\" data-ecp-handle=\"view_pdf\"><a href=\"https://client-assets.ecellar1.com/meadowcroftwines/prod_pdf_1225.pdf\">Download Complete Wine Tasting Notes</a></p>'),(39815,2743,'subtitle','Dry Creek Valley'),(39816,2743,'price','3000'),(39817,2743,'web_status','Available'),(39818,2743,'admin_status','Available'),(39819,2743,'varietal','Zinfandel'),(39820,2743,'appellation','Dry Creek Valley'),(39821,2743,'vintage','2020'),(39822,2743,'meta_data_review-text','<div><strong>AWARDS AND REVIEWS</strong></div>\n<div>&nbsp;</div>\n<div>GOLD MEDAL&nbsp;</div>\n<div>2021 Mae Vineyard Zinfandel, Dry Creek Valley</div>\n<div><a href=\"https://enofileonline.com/awardsbybrandgoldplus.aspx?compid=2842\" target=\"_blank\" rel=\"noopener\">Sunset International Wine Competition</a></div>'),(39823,2743,'rating',''),(39824,2743,'wine_vertical',''),(39825,2743,'wine_score',''),(39826,2744,'web_id','1b3f3f9c-a0f3-48d7-aaa8-9d6361a39f76'),(39827,2744,'slug','2021-cabernet-franc-rivino-vineyard'),(39828,2744,'title','2021 Cabernet Franc, Rivino Vineyard'),(39829,2744,'type','Wine'),(39830,2744,'image','https://images.commerce7.com/meadowcroft-wines/images/original/sonomabottle-meadowcroftwines_cabernetfranc_rivinovineyard_2021-1688672378621.png'),(39831,2744,'teaser',NULL),(39832,2744,'content','<p>A varietal most often used to enhance other red varietals with a touch of spice, herbal lift, or rich depth of fruit, Cabernet Franc is rarely produced as a single varietal. Meadowcroft&rsquo;s Cabernet Franc is sourced from a family-owned vineyard nestled on the edge of the Russian River in Mendocino, California. Our Rivino Vineyard Cabernet Franc features aromas of dark cherry layered with toasty oak, rose petal and savory/herbal notes. The palate is precise, layered flavors of plum, blackberry and cherry finishing with a subtle herbal notes.</p>\n<p class=\"p4\"><strong>SUGGESTED FOOD PAIRING</strong></p>\n<p class=\"p3\">The high acidity and medium tannins in this wine make it ideal for pairing with tomato based-sauces, traditional BBQ, and fresh herbs. A great choice to serve alongside roasted poultry and grilled meats, as well as rich vegetarian fare like lentil stew.</p>\n<p class=\"p5\"><strong><span class=\"s2\">APPELLATION: </span></strong>Mendocino County, Rivino Vineyard</p>\n<p class=\"p5\"><strong><span class=\"s2\">VARIETAL: </span></strong>Cabernet Franc</p>\n<p class=\"p5\"><strong><span class=\"s2\">HARVESTED: </span></strong>September 2021</p>\n<p class=\"p5\"><strong><span class=\"s2\">BOTTLED: </span></strong>March 2023</p>\n<p class=\"p2\"><strong>PRODUCTION:</strong> <span class=\"s3\">48 cases </span></p>\n<p class=\"p2\"><strong>ALCOHOL:</strong> <span class=\"s3\">14.5 </span></p>\n<p class=\"p5\"><strong><span class=\"s2\">pH: </span></strong>3.69</p>\n<p class=\"p5\">&nbsp;</p>\n<p class=\"p5\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-CabernetFranc-Rivino.pdf\"><strong>PDF Wine Notes</strong></a></p>'),(39833,2744,'subtitle','Mendocino County'),(39834,2744,'price','4500'),(39835,2744,'web_status','Not Available'),(39836,2744,'admin_status','Available'),(39837,2744,'varietal','Cabernet Franc'),(39838,2744,'appellation','Mendocino'),(39839,2744,'vintage','2021'),(39840,2744,'rating',''),(39841,2744,'wine_vertical',''),(39842,2744,'wine_score',''),(39843,2745,'web_id','f0cc526a-0ce3-4cd7-986f-89da05280a08'),(39844,2745,'slug','2021-cabernet-sauvignon-nelson-ranch-vineyard'),(39845,2745,'title','2021 Cabernet Sauvignon, Nelson Ranch Vineyard'),(39846,2745,'type','Wine'),(39847,2745,'image','https://images.commerce7.com/meadowcroft-wines/images/original/sonomabottle-meadowcroftwines_cabernetsauvignon_nelsonranch_2021-1688672545357.png'),(39848,2745,'teaser',NULL),(39849,2745,'content','<p>TASTING NOTES: <span id=\"page63R_mcid4\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Elegant and rich, this Cabernet Sauvignon leads with aromatic&nbsp;</span></span><span id=\"page63R_mcid5\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">notes of vanilla, cigar box, and dark cherries. Sumptuous flavors&nbsp;</span></span><span id=\"page63R_mcid6\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">of black cherry and blackberries are layered with bedrock flavors&nbsp;</span></span><span id=\"page63R_mcid7\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">of rich coffee and pomegranate. This is sure to evolve beautifully&nbsp;</span></span><span id=\"page63R_mcid8\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">in the bottle; best now through 2030.</span></span></p>\n<div>&nbsp;</div>\n<div>FOOD PAIRING: <span id=\"page63R_mcid11\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">With its rich tannins and intense fruit flavors, this wine calls for&nbsp;</span></span><span id=\"page63R_mcid12\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">food affinities that match its complexity and weight. Some of the&nbsp;</span></span><span id=\"page63R_mcid13\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">recommended pairings for this wine include grilled steaks, roasted&nbsp;</span></span><span id=\"page63R_mcid14\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">lamb, hearty stews, and aged cheeses. The wine&rsquo;s robustness can&nbsp;</span></span><span id=\"page63R_mcid15\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">also handle spicy or smoky flavors, making it a perfect match for&nbsp;</span></span><span id=\"page63R_mcid16\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">barbecued meats, bold sauces, and flavorful spices.</span></span></div>\n<div>&nbsp;</div>\n<div>\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">\n<div>Appellation: &nbsp;Mendocino County<br />Varietal: &nbsp;Cabernet Sauvignon<br />Harvested: &nbsp;September 2021<br />Bottled:&nbsp; April 2022<br />Case Production:&nbsp; 124 cases</div>\n<div>&nbsp;</div>\n<div><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/08/TechSheet-2021-Nelson-Cab-Final-1.pdf\"><strong>Wine Notes</strong></a></div>\n</div>\n</div>'),(39850,2745,'subtitle','Mendocino County'),(39851,2745,'price','5500'),(39852,2745,'web_status','Available'),(39853,2745,'admin_status','Available'),(39854,2745,'varietal','Cabernet Sauvignon'),(39855,2745,'appellation','Mendocino'),(39856,2745,'vintage','2021'),(39857,2745,'meta_data_feature-text','Mendocino'),(39858,2745,'meta_data_wine-notes','$40.00'),(39859,2745,'meta_data_technical-notes','<div> Appellation: &nbsp;Mendocino County<br>Varietal: &nbsp;Cabernet Sauvignon<br>Harvest Date: &nbsp;September 2019<br>Bottled Date: &nbsp;March 2022<br>Alcohol: &nbsp;14.58%<br>Case Production: &nbsp;238 cases<div><div><br></div></div></div>'),(39860,2745,'rating',''),(39861,2745,'wine_vertical',''),(39862,2745,'wine_score',''),(39863,2746,'web_id','fa8a4ed5-4def-4986-9d32-76698d30cede'),(39864,2746,'slug','2021-cabernet-sauvignon-wyldvin-vineyard'),(39865,2746,'title','2021 Cabernet Sauvignon, Wyldvin Vineyard'),(39866,2746,'type','Wine'),(39867,2746,'image','https://images.commerce7.com/meadowcroft-wines/images/original/sonomabottle-meadowcroftwines_cabernetsauvignon_wyldvinvineyard_2021-1688674386356.png'),(39868,2746,'teaser',NULL),(39869,2746,'content','<div><strong>TASTING NOTES:</strong> Fruity<span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">, juicy, smooth - this bold and rich Cabernet opens with baked cherries, tobacco leaf, Jamon Iberico, and wet stone. The tannins are prominent and are complemented by suggestions of coriander, berry preserves, chocolate cake, caramel, and fresh clove. Drink now until 2029. Decant or cellar to fully reveal this wine\'s complex nature.</span>\n<div>&nbsp;</div>\n<div><strong>FOOD PAIRING:</strong> Traditional pairings like a burger with grilled mushrooms and melted cheese, beef stew or pot roast make a wonderful match. The hint of smoked ham on the palate would pair deliciously with Jamon Reserva &amp; dried fruits.</div>\n<div>&nbsp;</div>\n<div><strong>TECHNICAL DATA:</strong></div>\n<div>&nbsp;</div>\n<div><span id=\"page60R_mcid18\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Appelation:</span></span><span id=\"page60R_mcid19\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">Wyldvin Vineyard, Dry Creek Valley</span></span><span id=\"page60R_mcid20\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Varietal:</span></span><span id=\"page60R_mcid21\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">Cabernet Sauvignon</span></span><span id=\"page60R_mcid22\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Harvested:</span></span><span id=\"page60R_mcid23\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">September 2021</span></span><span id=\"page60R_mcid24\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Bottled:</span></span><span id=\"page60R_mcid25\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">March 2023</span></span><span id=\"page60R_mcid26\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Production:</span></span><span id=\"page60R_mcid27\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">184 cases</span></span></div>\n<div>&nbsp;</div>\n<div><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/09/2021-Wyldvin-Cabernet-Final.pdf\"><strong><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Download PDF Wine Notes</span></span></strong></a></div>\n</div>'),(39870,2746,'subtitle','Dry Creek Valley, Sonoma County'),(39871,2746,'price','4500'),(39872,2746,'web_status','Not Available'),(39873,2746,'admin_status','Available'),(39874,2746,'varietal','Cabernet Sauvignon'),(39875,2746,'appellation','Dry Creek Valley'),(39876,2746,'vintage','2021'),(39877,2746,'meta_data_feature-text','Dry Creek Valley, Sonoma County'),(39878,2746,'meta_data_wine-notes','$40.00'),(39879,2746,'meta_data_technical-notes','Appellation: &nbsp;Dry Creek Valley, Sonoma County<br>Varietal:&nbsp;75% Cabernet Sauvignon 10% Mourvedre 10% Petite Sirah, 5% Malbec&nbsp;<br>Harvest Date: &nbsp;September 2020<br>Bottled Date:&nbsp; April 2022<br>Alcohol: &nbsp;14.5%<br>Production: 222 cases<div></div><div><br></div>'),(39880,2746,'rating',''),(39881,2746,'wine_vertical',''),(39882,2746,'wine_score',''),(39883,2747,'web_id','1ec7c972-267a-492a-84cd-80eb8e4a3af1'),(39884,2747,'slug','2021-chardonnay-anderson-valley'),(39885,2747,'title','2021 Chardonnay, Anderson Valley'),(39886,2747,'type','Wine'),(39887,2747,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_21_chard_av_mendocino_bottleshot_-1657823341793.png'),(39888,2747,'teaser',NULL),(39889,2747,'content','<p><strong>TASTING NOTES</strong></p>\n<p>This cool-climate chardonnay leads with aromas of Meyer lemon, honeycomb, and grapefruit. On the palate, flavors of nougat, honeydew melon, lemon blossom, baked pear and a hint of clove. The finish is bright, with delicate mineral and floral notes laced with very subtle toasted oak.</p>\n<p><strong>SUGGESTED FOOD PAIRING</strong></p>\n<p>We love this balanced, polished chardonnay with fresh seafood. Oysters, ceviche, or fresh halibut are a splendid match for the crisp acidity. Toasted, spiced nuts like pistachios or Marcona Almonds and a tangy cheese like a young, fresh ch&egrave;vre, are a delicious accompaniment to the creamy texture and distinctive fruit profile of this wine.</p>\n<p><strong>Technical Notes:</strong></p>\n<p>APPELLATION: Anderson Valley, Mendocino</p>\n<p>VARIETAL: Chardonnay</p>\n<p>HARVESTED: August 2021</p>\n<p>BOTTLE DATE: April 2022</p>\n<p>PRODUCTION: 672 Cases</p>\n<p>BARREL REGIME: 25% New French Oak + 5% American</p>\n<p>ALCOHOL: 13.3%</p>\n<p>pH: 3.50</p>\n<p>&nbsp;</p>\n<p><strong><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/09/Meadowcroft_2021_AV_Mendo_TECHSheet.pdf\">Download PDF Wine Notes</a></strong></p>'),(39890,2747,'subtitle','Mendocino'),(39891,2747,'price','3500'),(39892,2747,'web_status','Available'),(39893,2747,'admin_status','Available'),(39894,2747,'varietal','Chardonnay'),(39895,2747,'appellation','Anderson Valley'),(39896,2747,'vintage','2021'),(39897,2747,'rating',''),(39898,2747,'wine_vertical',''),(39899,2747,'wine_score',''),(39900,2748,'web_id','ff25a20e-2d2e-45c9-9d28-873a027d0c89'),(39901,2748,'slug','2021-meadowcroft-chardonnay-carneros-napa-valley-'),(39902,2748,'title','2021 Chardonnay, Carneros 375ml'),(39903,2748,'type','Wine'),(39904,2748,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_21_chard_napa_carneros_bottleshot-1663715967510.png'),(39905,2748,'teaser','375ml (Half-Bottle)'),(39906,2748,'content','<div>TASTING NOTES:&nbsp; &nbsp;A lush and aromatic wine, our 2021 vintage of our Carneros Chardonnay is delightfully complex, with notes of melon and stone fruit framed by primary flavors of apple and lemon peel. Secondary suggestions of grilled bread cheese, mustard seed, pear, and white pepper follow. The finish is rich and extended, with hints of toasted marshmallows.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp; This wine will carry you through pairings for elegant entertaining, weeknight dinners, and everything in between.&nbsp; Seafood is always an easy pairing with this wine. Try also with a selection of cheeses with higher acidity like goat cheese or Jarlsberg. In general, choose to serve with foods that are light and a tad rich.&nbsp;</div>'),(39907,2748,'subtitle','Napa Valley'),(39908,2748,'price','1350'),(39909,2748,'web_status','Available'),(39910,2748,'admin_status','Available'),(39911,2748,'varietal',NULL),(39912,2748,'appellation',NULL),(39913,2748,'vintage',NULL),(39914,2748,'meta_data_review-text','<div>&nbsp;</div>\n<div>&nbsp;</div>'),(39915,2748,'meta_data_wine-notes','<div>TASTING NOTES:&nbsp; &nbsp;A lush and aromatic wine, our 2021 vintage of our Carneros Chardonnay is delightfully complex, with notes of melon and stone fruit framed by primary flavors of apple and lemon peel. Secondary suggestions of grilled bread cheese, mustard seed, pear, and white pepper follow. The finish is rich and extended, with hints of toasted marshmallows.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp; This wine will carry you through pairings for elegant entertaining, weeknight dinners, and everything in between.&nbsp; Seafood is always an easy pairing with this wine. Try also with a selection of cheeses with higher acidity like goat cheese or Jarlsberg. In general, choose to serve with foods that are light and a tad rich.&nbsp;</div>'),(39916,2748,'meta_data_technical-notes','<div>Appellation: Carneros, Napa Valley</div>\n<div>Varietal:&nbsp; Chardonnay</div>\n<div>Harvested:&nbsp; September 2021</div>\n<div>Bottled Date:&nbsp; February 2022</div>\n<div>&nbsp;</div>'),(39917,2748,'rating',''),(39918,2748,'wine_vertical',''),(39919,2748,'wine_score',''),(39920,2749,'web_id','2258e5af-09a4-4494-b17e-3ef4c82fb1c6'),(39921,2749,'slug','2021-chardonnay-carneros'),(39922,2749,'title','2021 Chardonnay, Carneros'),(39923,2749,'type','Wine'),(39924,2749,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_21_chard_napa_carneros_bottleshot-1657581778565.png'),(39925,2749,'teaser',NULL),(39926,2749,'content','<div class=\"tatsu-section-pad clearfix\" data-padding=\"{&quot;d&quot;:&quot;90px 0px 90px 0px&quot;}\" data-padding-top=\"90px\">\n<div class=\"tatsu-row-wrap  tatsu-wrap tatsu-row-one-col tatsu-row-has-one-cols tatsu-medium-gutter tatsu-reg-cols  tatsu-clearfix tatsu-HJxPYjzn1q\">\n<div class=\"tatsu-row \">\n<div class=\"tatsu-column  tatsu-bg-overlay tatsu-one-col tatsu-column-image-none tatsu-column-effect-none  tatsu-rJDKoGnJq\" data-parallax-speed=\"0\">\n<div class=\"tatsu-column-inner \">\n<div class=\"tatsu-column-pad-wrap\">\n<div class=\"tatsu-column-pad\">\n<div id=\"\" class=\"tatsu-code tatsu-module tatsu-ByuNCz215   \">\n<div class=\"ecp-wrapper epub-locale-en\" data-ecp-wrapper=\"true\">\n<div class=\"ecp-component ecp_ProductDetail \">\n<div data-ecp-id=\"1211\">\n<div class=\"ecp-columns ecp-clearfix\">\n<div class=\"ecp-columns-right\">\n<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>TASTING NOTES:&nbsp; &nbsp;A lush and aromatic wine, our 2021 vintage of our Carneros Chardonnay is delightfully complex, with notes of melon and stone fruit framed by primary flavors of apple and lemon peel. Secondary suggestions of grilled bread cheese, mustard seed, pear, and white pepper follow. The finish is rich and extended, with hints of toasted marshmallows.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp; This wine will carry you through pairings for elegant entertaining, weeknight dinners, and everything in between.&nbsp; Seafood is always an easy pairing with this wine. Try also with a selection of cheeses with higher acidity like goat cheese or Jarlsberg. In general, choose to serve with foods that are light and a tad rich.&nbsp;</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">\n<div>Appellation: Carneros, Napa Valley</div>\n<div>Varietal:&nbsp; Chardonnay</div>\n<div>Harvested:&nbsp; September 2021</div>\n<div>Bottled Date:&nbsp; February 2022</div>\n<div>Production:&nbsp; 1030 Cases</div>\n<div>&nbsp;</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://client-assets.ecellar1.com/meadowcroftwines/prod_pdf_1211.pdf\" target=\"_blank\" rel=\"noopener\">Download Complete Wine Tasting Notes</a></div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div data-ecp-sidekick=\"\">&nbsp;</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>'),(39927,2749,'subtitle','Napa Valley'),(39928,2749,'price','3500'),(39929,2749,'web_status','Not Available'),(39930,2749,'admin_status','Not Available'),(39931,2749,'varietal','Chardonnay'),(39932,2749,'appellation','Carneros'),(39933,2749,'vintage','2021'),(39934,2749,'rating',''),(39935,2749,'wine_vertical',''),(39936,2749,'wine_score',''),(39937,2750,'web_id','d5b6925a-4972-4651-9577-62416f8f0a71'),(39938,2750,'slug','2021-meadowcroft-chardonnay-vino-del-sol-vineyard-sonoma-coast'),(39939,2750,'title','2021 Chardonnay, Vino Del Sol Vineyard'),(39940,2750,'type','Wine'),(39941,2750,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1255-1660261737828.png'),(39942,2750,'teaser',NULL),(39943,2750,'content','<p>The Sonoma Coast AVA extends from San Pablo Bay to the border with Mendocino County. The appellation is known for its cool climate and high rainfall relative to other parts of Sonoma County. Close to the Pacific, with more than twice the annual rainfall of its inland neighbors, it&rsquo;s warm enough to ripen wine grapes because most vineyards are above the fog line.</p>\n<p><span style=\"font-weight: bold;\">TASTING NOTES:</span>&nbsp; Showcases vibrant notes of tropical fruit and green apple on the nose. The palate is medium, with fresh flavors of lychee, grapefruit, ripe cantaloupe, and vanilla bean. The finish lingers delightfully with notes of apple strudel and suggestions of baking spice.&nbsp;</p>\n<div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp; We love this clean, complex chardonnay with fresh dishes like ceviche, Ahi tuna tartare, buttered crab, and crusty sourdough bread. Serve chilled with salads and young cheeses, or at room temperature with richer dishes and aged cheeses. A versatile and complex wine is a great cellar staple.</div>\n<div>&nbsp;</div>\n<div>TECHNICAL DATA:</div>\n<div>&nbsp;</div>\n<div><span dir=\"ltr\" role=\"presentation\">Appelation: Sonoma Coast, Sonoma County</span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Varietal: Chardonnay</span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Oak Regime: 100% French Oak, 35% New</span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Harvested:&nbsp;September 2021</span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Bottled: April 2022</span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Production: 229 Cases</span></div>\n</div>'),(39944,2750,'subtitle','Sonoma Coast'),(39945,2750,'price','3500'),(39946,2750,'web_status','Retired'),(39947,2750,'admin_status','Available'),(39948,2750,'varietal','Chardonnay'),(39949,2750,'appellation','Sonoma Coast'),(39950,2750,'vintage','2021'),(39951,2750,'meta_data_feature-text','Sonoma Coast'),(39952,2750,'meta_data_wine-notes','$28.00'),(39953,2750,'meta_data_technical-notes','<div>Appellation: Vino Del Sol Sonoma Coast, Sonoma County</div><div>Varietal: Chardonnay</div><div>Oak Regime: 100% French Oak, 35% New</div><div>Harvested: September 2021</div><div>Bottle Date: April 2022</div><div>Production: 145 Cases</div><div>Alc: 13.5%</div><div><br></div>'),(39954,2750,'rating',''),(39955,2750,'wine_vertical',''),(39956,2750,'wine_score',''),(39957,2751,'web_id','84470c10-8921-4fe5-97d3-dea5b16e2b02'),(39958,2751,'slug','french-colombard'),(39959,2751,'title','2021 French Colombard'),(39960,2751,'type','Wine'),(39961,2751,'image','https://images.commerce7.com/meadowcroft-wines/images/original/mc_frenchcolombard2021_bottleshot-1657233399976.png'),(39962,2751,'teaser',NULL),(39963,2751,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>Fermented in 90% Stainless Steel and 10% &nbsp;Acacia Barrel, our 2021 French Colombard expresses bright fruit flavors and refreshing acidity. &nbsp;French Colombard is a white French grape variety that is the offspring of Gouasi blanc and Chenin Blanc. &nbsp;In France, French Colombard is among the permitted white grape varieties in Bordeaux.</div>\n<div>&nbsp;</div>\n<div>TASTING NOTES:&nbsp;&nbsp;This is a rare gem varietal with bright acidity and delicate aromatics of tropical fruit and citrus blossoms, this naturally acidic wine offers a refined complexity that makes it superbly food-friendly.&nbsp; We added used a single barrel lot to add a hint of richness and spice.&nbsp; This is a wine lover\'s wine- elegant, pair-worthy, and complex.<br /><br /></div>\n<div>FOOD PAIRINGS: &nbsp;This refreshing wine will complement lively ceviche or creamy seafood risotto.&nbsp; The acidity in the wine is also a great match for spicy food and garden veggies.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">Appellation:&nbsp; Cameron Vineyard, Russian River Valley\n<div>Fermentation:&nbsp; 90% Stainless Steel; 10% Acacia</div>\n<div>Harvest Date:&nbsp; September 2021</div>\n<div>Bottling Date:&nbsp; February 2022</div>\n<div>Case Production:&nbsp;182 cases</div>\n<div>Alcohol:&nbsp; 12.65%</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"review_notes\">\n<h3>AWARDS AND REVIEWS</h3>\n<div class=\"ecp-html-content\">\n<div>BEST OF CLASS, GOLD MEDAL &nbsp;| &nbsp;<a title=\"\" href=\"http://https//sunsetcompetitions.com/sunset-international-wine-competition/\" target=\"\">Sunset International Wine Competition</a>&nbsp;(Vintage 2016)</div>\n<div>&nbsp;</div>\n<div><a href=\"https://client-assets.ecellar1.com/meadowcroftwines/prod_pdf_1209.pdf\" target=\"_blank\" rel=\"noopener\">Download Complete Wine Tasting Notes</a></div>\n</div>\n</div>'),(39964,2751,'subtitle','Russian River Valley'),(39965,2751,'price','3200'),(39966,2751,'web_status','Not Available'),(39967,2751,'admin_status','Not Available'),(39968,2751,'varietal','Colombar'),(39969,2751,'appellation','Russian River Valley'),(39970,2751,'vintage','2021'),(39971,2751,'rating',''),(39972,2751,'wine_vertical',''),(39973,2751,'wine_score',''),(39974,2752,'web_id','52b557a9-e1c0-40cf-a296-1a8c0c5edd33'),(39975,2752,'slug','2021-pinot-blanc-rivino-vineyard'),(39976,2752,'title','2021 Pinot Blanc, Rivino Vineyard'),(39977,2752,'type','Wine'),(39978,2752,'image','https://images.commerce7.com/meadowcroft-wines/images/original/2021-pinot-rivino-1671645534143.png'),(39979,2752,'teaser',NULL),(39980,2752,'content','<div>Primarily produced as a single varietal in Alsace in northeast France and the Alto Adige region of Italy, Pinot Blanc is the white counterpart to Pinot Noir. Very delicate, with tightly packed clusters on the vine, this grape variety results in light, refreshing wines that easily showcase winemaking style and terroir. This limited production, vintage is a special release.</div>\n<div>&nbsp;</div>\n<div>TASTING NOTES:&nbsp;&nbsp;Fresh from start to finish, this enchanting wine begs to be paired with food. Upfront, aromas of honeysuckle and lemon are framed by an undercurrent of subtle spice. Full-bodied on the mid-palate, with orchard flavors of sun-ripened apricots and pear. Our winemakers chose to filter this vintage twice, resulting in</div>\n<div>a crisp, dry wine with excellent structure. The finish is rounded&nbsp;out nicely with juicy fruit, delicate citrus, and chalky minerality.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp;&nbsp;Pinot Blanc calls for fresh oysters or steamed mussels. Well-matched with chicken or fish, this varietal would be perfect for both brunch and lunch fare. Or, try Tom Meadowcroft&rsquo;s recommendation of moussaka.</div>\n<div>&nbsp;</div>\n<div>&nbsp;</div>\n<div><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/03/Meadowcroft_2018CabernetFrancRivinoMendo_TECHSheet.pdf\" target=\"_blank\" rel=\"noopener\">Download Complete Tasting Notes</a></div>'),(39981,2752,'subtitle','Mendocino County'),(39982,2752,'price','3200'),(39983,2752,'web_status','Not Available'),(39984,2752,'admin_status','Not Available'),(39985,2752,'varietal','Chardonnay'),(39986,2752,'appellation','Mendocino'),(39987,2752,'vintage','2021'),(39988,2752,'meta_data_review-text','<p><span style=\"font-weight: bold;\">AWARDS AND REVIEWS</span></p>\n<div>DOUBLE GOLD MEDAL&nbsp;</div>\n<div>2021 Rivino Vineyard Pinot Blanc</div>\n<div><a href=\"https://enofileonline.com/awardsbybrandgoldplus.aspx?compid=2842\" target=\"_blank\" rel=\"noopener\">Sunset International Wine Competition</a></div>\n<div>&nbsp;</div>\n<div>\n<div>GOLD MEDAL |&nbsp;&nbsp;92 pts&nbsp;</div>\n<div>2020 Rivino Vineyard Pinot Blanc</div>\n<a title=\"\" target=\"\">Critics Challenge Wine Wine Competition</a></div>\n<div>&nbsp;</div>\n<p>\"</p>'),(39989,2752,'meta_data_feature-text','<p>Mendocino</p>'),(39990,2752,'meta_data_wine-notes','<p>$25.60</p>'),(39991,2752,'meta_data_technical-notes','<div>Appellation:&nbsp; Mendocino</div>\n<div>Varietal:&nbsp; Pinot Blanc</div>\n<div>Harvest Date: September 2021</div>\n<div>Bottle date: February&nbsp;</div>\n<div>Production: 97&nbsp; cases</div>\n<div>Alcohol: 13.39%</div>'),(39992,2752,'rating',''),(39993,2752,'wine_vertical',''),(39994,2752,'wine_score',''),(39995,2753,'web_id','09209add-b1d8-46d9-af5e-f376d7ee7489'),(39996,2753,'slug','2021-pinot-gris-nelson-ranch-vineyard'),(39997,2753,'title','2021 Pinot Gris, Nelson Ranch Vineyard'),(39998,2753,'type','Wine'),(39999,2753,'image','https://images.commerce7.com/meadowcroft-wines/images/original/mc_21_pinotgris_bottleshot-1657236401456.png'),(40000,2753,'teaser',''),(40001,2753,'content','<div class=\"tatsu-section-pad clearfix\" data-padding=\"{&quot;d&quot;:&quot;90px 0px 90px 0px&quot;}\" data-padding-top=\"90px\">\n<div class=\"tatsu-row-wrap  tatsu-wrap tatsu-row-one-col tatsu-row-has-one-cols tatsu-medium-gutter tatsu-reg-cols  tatsu-clearfix tatsu-HJxPYjzn1q\">\n<div class=\"tatsu-row \">\n<div class=\"tatsu-column  tatsu-bg-overlay tatsu-one-col tatsu-column-image-none tatsu-column-effect-none  tatsu-rJDKoGnJq\" data-parallax-speed=\"0\">\n<div class=\"tatsu-column-inner \">\n<div class=\"tatsu-column-pad-wrap\">\n<div class=\"tatsu-column-pad\">\n<div id=\"\" class=\"tatsu-code tatsu-module tatsu-ByuNCz215   \">\n<div class=\"ecp-wrapper epub-locale-en\" data-ecp-wrapper=\"true\">\n<div class=\"ecp-component ecp_ProductDetail \">\n<div data-ecp-id=\"1210\">\n<div class=\"ecp-columns ecp-clearfix\">\n<div class=\"ecp-columns-right\">\n<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div><span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">We love Pinot Gris from Mendocino because of the spirited aromatics that are characteristic of grapes grown in that appellation. This wine opens with aromatics of granny smith apple, stone fruit, limes, and lemon tart. On the palate, flavors of white peach, almonds, and nougat dissolve into a dry, yet fruity finish laced with ruby-red grapefruit.</span></div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\">&nbsp;</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>'),(40002,2753,'subtitle','Mendocino County'),(40003,2753,'price','3000'),(40004,2753,'web_status','Not Available'),(40005,2753,'admin_status','Not Available'),(40006,2753,'varietal','Pinot Gris'),(40007,2753,'appellation','Mendocino'),(40008,2753,'vintage','2021'),(40009,2753,'meta_data_review-text','<div><strong>AWARDS AND REVIEWS</strong></div>\n<div>GOLD MEDAL&nbsp;</div>\n<div>2021 Pinot Gris, Mendocino County</div>\n<div><a href=\"https://enofileonline.com/awardsbybrandgoldplus.aspx?compid=2842\" target=\"_blank\" rel=\"noopener\">Sunset International Wine Competition</a></div>'),(40010,2753,'meta_data_feature-text','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>TASTING NOTES: &nbsp;We love Pinot Gris from Mendocino because of the spirited aromatics that are characteristic of grapes grown in that appellation. This wine opens with aromatics of granny smith apple, stone fruit, limes, and lemon tart. On the palate, flavors of white peach, almonds, and nougat dissolve into a dry, yet fruity finish laced with ruby-red grapefruit.<br /><br /></div>\n<div>FOOD PAIRINGS:&nbsp;This medium-bodied, complex varietal is delicious when served with grilled seafood and fresh vegetables. Simple meals, like fruit salad and smoked fish, are also a great accompaniment.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">&nbsp;</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\">&nbsp;</div>'),(40011,2753,'meta_data_wine-notes','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>TASTING NOTES: &nbsp;We love Pinot Gris from Mendocino because of the spirited aromatics that are characteristic of grapes grown in that appellation. This wine opens with aromatics of granny smith apple, stone fruit, limes, and lemon tart. On the palate, flavors of white peach, almonds, and nougat dissolve into a dry, yet fruity finish laced with ruby-red grapefruit.<br /><br /></div>\n<div>FOOD PAIRINGS:&nbsp;This medium-bodied, complex varietal is delicious when served with grilled seafood and fresh vegetables. Simple meals, like fruit salad and smoked fish, are also a great accompaniment.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">&nbsp;</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\">&nbsp;</div>'),(40012,2753,'meta_data_technical-notes','<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">Appellation:&nbsp; Nelson Ranch Vineyard, Mendocino County\n<div>Harvest Date:&nbsp; September 2021</div>\n<div>Bottling Date:&nbsp; February 2022</div>\n<div>Case Production:&nbsp;183 cases</div>\n<div>Alcohol:&nbsp; 14.10%</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/03/Meadowcroft_2021_Pinot_Gris_Mendocino_Tech_Sheet.pdf\">Download Complete Wine Tasting Notes</a></div>'),(40013,2753,'rating',''),(40014,2753,'wine_vertical',''),(40015,2753,'wine_score',''),(40016,2754,'web_id','80bb752a-8aef-47ab-b833-20274a2f0385'),(40017,2754,'slug','2021-pinot-noir-anderson-valley'),(40018,2754,'title','2021 Pinot Noir, Anderson Valley'),(40019,2754,'type','Wine'),(40020,2754,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft-_21_pinot_noir_andersonvalley-1657587805264.png'),(40021,2754,'teaser',NULL),(40022,2754,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">TASTING NOTES: &nbsp;Anderson Valley is famous for its aromatic Pinot Noirs, and our 2021 vintage Pinot does not disappoint. Aromas of cherry pie, roses, and blueberries jump from the glass. Focused, with excellent structure, this wine exhibits a vibrant acidity bolstered silky tannins. Precise and restrained, and a tribute to a fine vintage.\n<div><br />\n<div>\n<div>PAIRING NOTES:&nbsp; Enjoy with flavorful meats like duck, quail, or lamb. Pop open on a summer evening with a BLT, or pour alongside mushroom risotto or Coq au Vin with creamy polenta.</div>\n</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">\n<div>Appellation: &nbsp;Anderson Valley, Mendocino County</div>\n<div>Varietal: &nbsp;Pinot Noir</div>\n<div>Harvested: &nbsp;September 2021</div>\n<div>Bottle Date:&nbsp;February 2022</div>\n<div>Production:&nbsp; 857 cases</div>\n<div>pH: 3.82</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"review_notes\">\n<h3>AWARDS AND REVIEWS</h3>\n<div class=\"ecp-html-content\">\n<div>91 pts |&nbsp; Wilfred Wong of&nbsp;www.wine.com&nbsp;&nbsp;</div>\n<div>The 2019 Meadowcroft Pinot Noir is a beautifully balanced wine. This wine shows pleasing red fruit, dried herbs, and savory accents in the aromas and on the palate. Pair it with a mildly-seasoned lamb stew.&nbsp;<br /><br /></div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/04/MC_2021_AndersonValley_PinotNoir_TECHSheet.pdf\" target=\"_blank\" rel=\"noopener\">Download Complete Wine Tasting Notes</a></div>'),(40023,2754,'subtitle','Mendocino County'),(40024,2754,'price','3800'),(40025,2754,'web_status','Not Available'),(40026,2754,'admin_status','Not Available'),(40027,2754,'varietal','Pinot Noir'),(40028,2754,'appellation','Anderson Valley'),(40029,2754,'vintage','2021'),(40030,2754,'rating',''),(40031,2754,'wine_vertical',''),(40032,2754,'wine_score',''),(40033,2755,'web_id','56ad1183-d538-4ac4-8782-1563b0fb183b'),(40034,2755,'slug','2021-pinot-noir-carneros'),(40035,2755,'title','2021 Pinot Noir, Napa Carneros'),(40036,2755,'type','Wine'),(40037,2755,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_pinotnoir_carneros_napa_2021-1-1657673369099.png'),(40038,2755,'teaser',NULL),(40039,2755,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>TASTING NOTE: &nbsp;Densely concentrated, with cheerful aromatics of pomegranate, red cherries, vanilla bean, and baking spice. The mouth-feel is supple, with delicious, concentrated fruit flavors of strawberry rhubarb pie and cranberries followed by secondary, savory notes of fresh herbs. A reliable daily drinker, this sumptuous Pinot is a delightful expression of cool-climate Pinot Noir.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp;&nbsp;This bright and balanced wine has both bright acidity and vibrant fruit character, which makes it an easy match for wood-fired pizza or dishes that feature mushrooms, like truffled risotto with aged pecorino.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">\n<div>Appellation: &nbsp;Carneros, Napa County</div>\n<div>Varietal: &nbsp;Pinot Noir</div>\n<div>Harvest Date: &nbsp;September 2021</div>\n<div>Bottle Date: &nbsp;March 2022</div>\n<div>Production: 292 cases</div>\n<div>Alcohol: &nbsp;13.83%</div>\n<div>&nbsp;</div>\n<div><strong>ACCOLADES</strong></div>\n<div><strong>91 pts</strong> - International Wine Report</div>\n<div>&nbsp;</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/04/Meadowcroft_2021_NapaPinotnoir_TECHSheet.pdf\" target=\"_blank\" rel=\"noopener\">Download Complete Wine Tasting Notes</a></div>'),(40040,2755,'subtitle','Carneros, Napa Valley'),(40041,2755,'price','4200'),(40042,2755,'web_status','Available'),(40043,2755,'admin_status','Available'),(40044,2755,'varietal','Pinot Noir'),(40045,2755,'appellation','Carneros'),(40046,2755,'vintage','2021'),(40047,2755,'rating',''),(40048,2755,'wine_vertical',''),(40049,2755,'wine_score',''),(40050,2756,'web_id','e6c3c8e3-e37e-46ed-acdd-4750ed676714'),(40051,2756,'slug','2021-pinot-noir-russian-river-valley'),(40052,2756,'title','2021 Pinot Noir, Russian River Valley'),(40053,2756,'type','Wine'),(40054,2756,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1257-1660261700771.png'),(40055,2756,'teaser',NULL),(40056,2756,'content','<p><span style=\"font-weight: bold;\">TASTING NOTE:&nbsp; </span>Generous notes of strawberries and raspberries leap from the glass.&nbsp; Layered with secondary notes of cranberry and baking spice lead to lifted and expressive suggestions of red fruit<span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">, strawberry compote, and cranberry coulis. The palate is polished, with integrated tannins,&nbsp; balanced acidity with an extended finish.&nbsp;</span></p>\n<div>&nbsp;</div>\n<div><strong>FOOD PAIRING:</strong>&nbsp;&nbsp;The concentrated richness and exceptional acidity that are indicative of a Russian River Valley Pinot Noir make this intense wine a remarkable partner with food. We recommend anything with mushrooms, cedar plank grilled salmon, or lamb and duck. Our cheese recommendations would include something aged and salty, like Gouda or aged cheddar cheese.</div>\n<div>&nbsp;</div>\n<div><strong>ACCOLADES:</strong></div>\n<div><strong>91 pts</strong> - International Wine Report</div>\n<div>&nbsp;</div>\n<div><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/09/Meadowcroft_2021_RussianRiverValley_Pinotnoir_TECHSheet-1.pdf\"><strong>Download PDF Wine Notes</strong></a></div>'),(40057,2756,'subtitle','Sonoma County'),(40058,2756,'price','4200'),(40059,2756,'web_status','Not Available'),(40060,2756,'admin_status','Available'),(40061,2756,'varietal','Pinot Noir'),(40062,2756,'appellation','Sonoma County'),(40063,2756,'vintage','2021'),(40064,2756,'meta_data_review-text','<div><span style=\"font-weight: bold;\"\">AWARDS AND REVIEWS</span><br><div><div>GOLD MEDAL |&nbsp; <span style=\"\"font-style: italic;\"\">2018 Russian River Valley Pinot Noir</span><br></div><span style=\"\"font-style: italic;\"\">San Francisco Chronicle Wine Competition</span><span style=\"\"font-style: italic;\"\"><br></span></div><div><span style=\"\"font-style: italic;\"\"><br></span></div><span style=\"\"font-weight: bold;\"\"></span></div><div>James Suckling&nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2015 Russian River Valley Pinot Noir</span><br></div><div><span style=\"\"font-style: italic;\"\">Lots of ripe cherries with some jam character. &nbsp;Full body, light tannins.</span></div><div><span style=\"\"font-style: italic;\"\"><br></span></div>\"'),(40065,2756,'meta_data_feature-text','Sonoma County<br>'),(40066,2756,'meta_data_wine-notes','$33.60'),(40067,2756,'meta_data_technical-notes','Appellations: &nbsp;Russian River Valley, Sonoma County<div>Varietal: &nbsp;Pinot Noir</div><div>Harvested: &nbsp;September 2021</div><div>Bottle Date:&nbsp; April 2022<br>Production:&nbsp; 160 cases</div>'),(40068,2756,'rating',''),(40069,2756,'wine_vertical',''),(40070,2756,'wine_score',''),(40071,2757,'web_id','41ebda53-a979-4593-a1b3-6263db5da23e'),(40072,2757,'slug','thomas-henry'),(40073,2757,'title','2021 Pinot Noir, Sonoma Coast 375ml ** THOMAS HENRY***'),(40074,2757,'type','Wine'),(40075,2757,'image','https://images.commerce7.com/meadowcroft-wines/images/original/2021-meadowcroft-sonoma-coast-pinot_bottleshot-1663716018755.png'),(40076,2757,'teaser',''),(40077,2757,'content',''),(40078,2757,'subtitle',''),(40079,2757,'price','1900'),(40080,2757,'web_status','Not Available'),(40081,2757,'admin_status','Not Available'),(40082,2757,'varietal','Pinot Noir'),(40083,2757,'appellation','Sonoma Coast'),(40084,2757,'vintage','2021'),(40085,2757,'rating',''),(40086,2757,'wine_vertical',''),(40087,2757,'wine_score',''),(40088,2758,'web_id','5cfa932a-8af7-4e93-ace8-afc95b2a4d41'),(40089,2758,'slug','2021-pinot-noir-vina-del-sol-sonoma-coast'),(40090,2758,'title','2021 Pinot Noir, Viña Del Sol Vineyard'),(40091,2758,'type','Wine'),(40092,2758,'image','https://images.commerce7.com/meadowcroft-wines/images/original/2021-meadowcroft-sonoma-coast-pinot_bottleshot-1667254409430.png'),(40093,2758,'teaser',NULL),(40094,2758,'content','<p><span style=\"font-weight: bold;\">TASTING NOTES:&nbsp;</span>Sourced from Sonoma\'s largest AVA<span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">, the vines cultivated in this world-famous growing region experience cool-climate growing conditions year-round. The longer growing season allows for the development of rich fruit characteristics and bright acidity. Enjoy red cherry, pomegranate, and cranberry aromas and flavors with underpinnings of baking spice. The palate is velvety with textured tannins leading to a smooth, rich finish. Drink now through 2029.</span></p>\n<div>&nbsp;</div>\n<div>FOOD PAIRINGS:&nbsp;&nbsp;Easy to pair, this supple and elegant wine is perfect for everyday enjoyment or to share in a special moment. Try with wood-fired pizza, roasted duck, or barbecued pork ribs. If you plan to serve it with cheese, pair this wine with Brie, Gouda, and Manchego cheeses.</div>'),(40095,2758,'subtitle','Sonoma Coast'),(40096,2758,'price','3800'),(40097,2758,'web_status','Available'),(40098,2758,'admin_status','Available'),(40099,2758,'varietal','Pinot Noir'),(40100,2758,'appellation','Sonoma Coast'),(40101,2758,'vintage','2021'),(40102,2758,'meta_data_wine-notes','$30.40'),(40103,2758,'meta_data_technical-notes','Appellation: Sonoma Coast, Sonoma County Pinot Noir<br>Harvest Date: September 2021<br>Barrel Regime: French oak barrels<br>Bottling Date: April 2022<br>Production: 200 Cases<br>Alcohol: 13.38%<br>pH: 3.75<br>'),(40104,2758,'rating',''),(40105,2758,'wine_vertical',''),(40106,2758,'wine_score',''),(40107,2759,'web_id','9b6f0d5c-9365-4a99-b426-02156d134cbb'),(40108,2759,'slug','2021-river-trace-ros-grenache-syrah-malbec'),(40109,2759,'title','2021 River Trace Rosé'),(40110,2759,'type','Wine'),(40111,2759,'image','https://images.commerce7.com/meadowcroft-wines/images/original/mc_gsm_rose_2021_bottleshot-1657587072218.png'),(40112,2759,'teaser',NULL),(40113,2759,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>\"The right River Trace guided its seekers to wonderful treasures. &nbsp;May this River Trace bring you to that same magical place,\" Tom Meadowcroft. Our first River Trace Ros&eacute;, Meticulously blended and sourced to bring you a lively, refreshing, and complex wine.</div>\n<div>&nbsp;</div>\n<div>TASTING NOTES:&nbsp;&nbsp;This very special wine showcases lively aromatics of strawberries and cream, freshly baked brioche, tea leaves, and roses. The mouth-feel is delicate, with a finish that features suggestions of limestone, vanilla wafer, and ruby red grapefruit.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp;&nbsp;Ros&eacute; is a splendid choice year-round, from picnics to holiday pairings.&nbsp; Try serving with grilled garden veggies or brick oven pizza. In the winter months, enjoy with roasted poultry like turkey or duck. This wine is remarkably versatile with food, but also the go-to choice for a glass in the sunshine.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">\n<div>Appellation:&nbsp; Sonoma &amp; Joaquin Valley</div>\n<div>Varietal: 56% Syrah, 22% Malbec, 22% Grenache</div>\n<div>Harvest Date: September 2021</div>\n<div>Bottling Date: February 2022</div>\n<div>Production:&nbsp; 177 cases</div>\n<div>Alcohol:&nbsp; 14.10%</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"review_notes\">\n<h3>AWARDS AND REVIEWS</h3>\n<div class=\"ecp-html-content\">\n<div>93 pts GOLD&nbsp; |&nbsp;&nbsp;<a title=\"Sunset Wine Competition\" href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\" target=\"\">Sunset International Wine Competition&nbsp;</a>(2017 vintage)</div>\n<div>BEST OF CLASS |&nbsp;&nbsp;<a title=\"SF Chronicle Wine Competition\" href=\"https://winejudging.com/\" target=\"\">San Francisco Chronicle&nbsp;Wine Competition</a></div>\n<div>A muscular and enduring take of the increasingly popular GSM style pulled off here with unusual panache and vibrancy.&nbsp; &nbsp;(2016 Vintage)<br />Unanimous Gold voted by a five-member judging panel.&nbsp;</div>\n<div>&nbsp;</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://client-assets.ecellar1.com/meadowcroftwines/prod_pdf_1216.pdf\" target=\"_blank\" rel=\"noopener\">Download Complete Wine Tasting Notes</a></div>'),(40114,2759,'subtitle','Sonoma & Joaquin Valley'),(40115,2759,'price','3000'),(40116,2759,'web_status','Not Available'),(40117,2759,'admin_status','Not Available'),(40118,2759,'varietal','Rose'),(40119,2759,'appellation','Sonoma Valley'),(40120,2759,'vintage','2021'),(40121,2759,'rating',''),(40122,2759,'wine_vertical',''),(40123,2759,'wine_score',''),(40124,2760,'web_id','f18a2459-2e92-4934-b781-25b0a493de47'),(40125,2760,'slug','2021-ros-of-pinot-noir-sonoma-coast'),(40126,2760,'title','2021 Rosé of Pinot Noir,  Sonoma Coast'),(40127,2760,'type','Wine'),(40128,2760,'image','https://images.commerce7.com/meadowcroft-wines/images/original/roseofpinot-soncoast-c7-no-vintage-1687993419211.png'),(40129,2760,'teaser',NULL),(40130,2760,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>TASTING NOTES:&nbsp;Elegant and refined, this vibrant wine features aromas of stone fruit, ripe strawberries, and English Roses. The palate is driven by fresh grapefruit citrus, lush red berries, and watermelon. This delightfully fruity and delicate wine, with a refreshing and bright finish, evokes the spirit of traditional Provence ros&eacute;s.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp;Ros&eacute; is an exceptionally versatile wine, pairing well with anything from poultry to seafood.&nbsp; This wine\'s crisp and focused style is ideal for serving with charcuterie, olives, and vegetables like grilled asparagus and roasted cauliflower. Try it with cracked crab and sourdough, quiche and fruit salad, or roasted Turkey.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">\n<div>Appellation: &nbsp;Sonoma Coast</div>\n<div>Varietal: &nbsp;Pinot Noir</div>\n<div>Harvest Date: September 2020</div>\n<div>Bottling Date: March 2021</div>\n<div>Production:&nbsp; 196 cases</div>\n<div>Alcohol: &nbsp;13.5%</div>\n<div>&nbsp;</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://client-assets.ecellar1.com/meadowcroftwines/prod_pdf_1215.pdf\" target=\"_blank\" rel=\"noopener\">Download Complete Wine Tasting Notes</a></div>'),(40131,2760,'subtitle','Sonoma Coast'),(40132,2760,'price','2400'),(40133,2760,'web_status','Available'),(40134,2760,'admin_status','Available'),(40135,2760,'varietal','Rose'),(40136,2760,'appellation','Sonoma Coast'),(40137,2760,'vintage','2021'),(40138,2760,'rating',''),(40139,2760,'wine_vertical',''),(40140,2760,'wine_score',''),(40141,2761,'web_id','668c6dad-5a92-408c-a9ca-048cab126558'),(40142,2761,'slug','2021-roussanne-wyldvin-vineyard'),(40143,2761,'title','2021 Roussanne'),(40144,2761,'type','Wine'),(40145,2761,'image','https://images.commerce7.com/meadowcroft-wines/images/original/mc_roussanne_2021_bottleshot-1657236682335.png'),(40146,2761,'teaser',''),(40147,2761,'content','<div class=\"tatsu-section-pad clearfix\" data-padding=\"{&quot;d&quot;:&quot;90px 0px 90px 0px&quot;}\" data-padding-top=\"90px\">\n<div class=\"tatsu-row-wrap  tatsu-wrap tatsu-row-one-col tatsu-row-has-one-cols tatsu-medium-gutter tatsu-reg-cols  tatsu-clearfix tatsu-HJxPYjzn1q\">\n<div class=\"tatsu-row \">\n<div class=\"tatsu-column  tatsu-bg-overlay tatsu-one-col tatsu-column-image-none tatsu-column-effect-none  tatsu-rJDKoGnJq\" data-parallax-speed=\"0\">\n<div class=\"tatsu-column-inner \">\n<div class=\"tatsu-column-pad-wrap\">\n<div class=\"tatsu-column-pad\">\n<div id=\"\" class=\"tatsu-code tatsu-module tatsu-ByuNCz215   \">\n<div class=\"ecp-wrapper epub-locale-en\" data-ecp-wrapper=\"true\">\n<div class=\"ecp-component ecp_ProductDetail \">\n<div data-ecp-id=\"1214\">\n<div class=\"ecp-columns ecp-clearfix\">\n<div class=\"ecp-columns-right\">\n<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>Originally grown in the Rhone wine region of France, Roussanne is a primary component in the white wines of Chateauneuf-du-Pape. &nbsp; Roussanne drinks very well as a young wine but will develop more complexity and depth if aged 7-8 years.</div>\n<div>&nbsp;</div>\n<div>TASTING NOTES:&nbsp;&nbsp;A spirited wine, with lush fruit notes of white peach and apricot bolstered by honeycomb and orange blossom. The palate is medium, with prominent structure and youthful acidity. The finish is laced with subtle spice and delicious flavors of lemon meringue and vanilla custard, ending in a mineral-driven, lengthy finale.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp; Due to the natural acidity and heavier body, this wine is excellent with rich shellfish or poultry dishes. Try this wine with fresh vegetables, especially artichokes. A match for anything you might pair with chardonnay, our 2020 Roussanne can also stand up to spicy fare.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">\n<div>Appellation: &nbsp;Dry Creek Valley, Sonoma County</div>\n<div>Varietal: Roussanne</div>\n<div>Fermentation: &nbsp;French oak barrel fermented</div>\n<div>Harvest Date: September 2020</div>\n<div>Bottling Date: May 2021&nbsp;</div>\n<div>Production:&nbsp; 213 cases</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"review_notes\">\n<h3>AWARDS AND REVIEWS</h3>\n<div class=\"ecp-html-content\">\n<div>90 points |&nbsp;<a title=\"\" href=\"https://winesipping.wordpress.com/2022/03/14/meadowcroft-wines-wyldvin-vineyard-roussanne-2021-dry-creek-valley-california/\" target=\"_blank\" rel=\"noopener\">Odedis Wine Reviews</a>&nbsp;(2021 vintage)</div>\n<div>90 points, GOLD MEDAL&nbsp; |&nbsp;&nbsp;<a title=\"Sunset Wine Competition\" href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\" target=\"\">Sunset International Wine Competition</a>&nbsp;(2020 vintage)</div>\n<div>90 points, GOLD MEDAL&nbsp; |&nbsp;&nbsp;<a title=\"Sunset Wine Competition\" href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\" target=\"\">Sunset International Wine Competition</a>&nbsp;(2019 vintage)</div>\n<div>92 points, GOLD MEDAL&nbsp; |&nbsp;&nbsp;<a title=\"Sunset Wine Competition\" href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\" target=\"_blank\" rel=\"noopener\">Sunset International Wine Competition</a>&nbsp;(2018 vintage)</div>\n<div>BEST OF CLASS, GOLD MEDAL &nbsp;| &nbsp;<a title=\"Sunset Wine Competition\" href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\" target=\"\">Sunset International Wine Competition</a><br />Juicy peach, melon, and citrus fruit is slightly creamy on the midpalate, followed by a long, brisk, spicy finish.&nbsp; (2016 vintage)</div>\n<div>DOUBLE GOLD |&nbsp;<a title=\"SF Chronicle Wine Competition\" href=\"https://winejudging.com/\" target=\"\">San Francisco Chronicle Wine Competition</a><br />Unanimous Gold voted by a five member judging panel. (2016 vintage)</div>\n<div>&nbsp;</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://client-assets.ecellar1.com/meadowcroftwines/prod_pdf_1214.pdf\" target=\"_blank\" rel=\"noopener\">Download Complete Wine Tasting Notes</a></div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div data-ecp-sidekick=\"\">&nbsp;</div>\n</div>\n</div>\n</div>\n<div class=\"tatsu-column-bg-image-wrap\">\n<div class=\"tatsu-column-bg-image\">&nbsp;</div>\n</div>\n<div class=\"tatsu-overlay tatsu-column-overlay tatsu-animate-none\">&nbsp;</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"tatsu-section-background-wrap\">\n<div class=\"tatsu-section-background\">&nbsp;</div>\n</div>'),(40148,2761,'subtitle','Dry Creek Valley, Sonoma County'),(40149,2761,'price','3600'),(40150,2761,'web_status','Available'),(40151,2761,'admin_status','Available'),(40152,2761,'varietal','Roussanne'),(40153,2761,'appellation','Dry Creek Valley'),(40154,2761,'vintage','2021'),(40155,2761,'meta_data_review-text','<div><strong>AWARDS AND REVIEWS</strong></div>\n<div>&nbsp;</div>\n<div>GOLD MEDAL&nbsp;</div>\n<div>2021 Roussanne, Wyldvin Vineyard Dry Creek Valley</div>\n<div><a href=\"https://enofileonline.com/awardsbybrandgoldplus.aspx?compid=2842\" target=\"_blank\" rel=\"noopener\">Sunset International Wine Competition</a></div>'),(40156,2761,'rating',''),(40157,2761,'wine_vertical',''),(40158,2761,'wine_score',''),(40159,2762,'web_id','14f82a31-2926-46f4-9acb-fd31e965c277'),(40160,2762,'slug','2021-sauvignon-blanc-sonoma-coast'),(40161,2762,'title','2021 Sauvignon Blanc, Sonoma Coast'),(40162,2762,'type','Wine'),(40163,2762,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_sauvblanc_sonomacoast_2021-1657586286023.png'),(40164,2762,'teaser','From the Sonoma Coast Appellation of Sonoma County, this sauvignon blanc was fermented and aged in a mix of stainless steel and new French oak barrels.  This Bordeaux-style white wine was made in a traditional method where the fermentation of the wine is directed as a slow and cool fermentation. This ensures that we capture the essence of purity.'),(40165,2762,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>TASTING NOTES: &nbsp;Bright, flinty, and crisp, this nose leads with notes of honeysuckle, candied apricot, white peach, and green apple. With a palate that expresses balance in weight and ripeness, this complex wine has a lengthy, lush, and fruity finish.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING: &nbsp;This wine is a great match for a variety of food pairings like ch&egrave;vre, oysters, and is beautifully matched with anything using fresh herbs like tarragon or mint. This refreshing sauvignon blanc is also delicious on its own as an ap&eacute;ritif &agrave; la maison (aperitif at home).</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">\n<div>Appellation:&nbsp; Sonoma Coast, Sonoma County</div>\n<div>Varietal: &nbsp;Sauvignon Blanc</div>\n<div>Harvest Date: September 2020</div>\n<div>Bottle date: March 2021</div>\n<div>Production: &nbsp;118 cases</div>\n<div>Alcohol: &nbsp;14.4%</div>\n<div>&nbsp;</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://client-assets.ecellar1.com/meadowcroftwines/prod_pdf_1212.pdf\" target=\"_blank\" rel=\"noopener\">Download Complete Wine Tasting Notes</a></div>'),(40166,2762,'subtitle','Sonoma County'),(40167,2762,'price','2900'),(40168,2762,'web_status','Not Available'),(40169,2762,'admin_status','Not Available'),(40170,2762,'varietal','Sauvignon Blanc'),(40171,2762,'appellation','Sonoma Coast'),(40172,2762,'vintage','2021'),(40173,2762,'rating',''),(40174,2762,'wine_vertical',''),(40175,2762,'wine_score',''),(40176,2763,'web_id','62f677fd-6eac-4a46-8c9c-405ef4239ccc'),(40177,2763,'slug','the-magi'),(40178,2763,'title','2021 The Magi'),(40179,2763,'type','Wine'),(40180,2763,'image','https://images.commerce7.com/meadowcroft-wines/images/original/sonomabottle-meadowcroftwines_themagi_2021-2-1688589007953.png'),(40181,2763,'teaser',NULL),(40182,2763,'content','<p><span style=\"font-weight: 400;\">Every spring in the northern hemisphere, around March 20-21st many people and ancient cultures celebrate the spring equinox. It is a time when at the Tropic of Cancer and Capricorn the days and nights are equal in length (Equi= Equal, Nox= Night). It is rooted in ancient traditions to have celebrations, often with wine. In celebration of the upcoming spring equinox, I thought it only fitting to introduce you to the newest of the Meadowcroft wines, &ldquo;The Magi&rdquo;. </span></p>\n<p><span style=\"font-weight: 400;\">On its label is magical imagery of the sun, the moon, planets and stars. This red wine is a most intense experience of flavors. It is composed of Sangiovese, Montepulciano, Dolcetto and Barbera. </span></p>\n<p><span style=\"font-weight: 400;\">So why is it called &ldquo;The Magi&rdquo;? The Magi were known as seers and travelers who strove to bring culturally diverse people together in peace and understanding. They used the planets, stars, the sun to navigate on their journeys. The Magi&rsquo;s missions and journeys were always in peace and to spread entente and happiness. The Magi is at the origin of the naming of one of the first wines I made in California. It was called Magito. This wine from Meadowcroft celebrates a journey to Italy, and it also honors bringing different winegrapes together, in a unique red blend.</span></p>\n<p><strong>ACCOLADES:&nbsp;</strong></p>\n<p><span style=\"font-weight: 400;\"><strong>92pts</strong> - International Wine Report</span></p>'),(40183,2763,'subtitle','Clements Hill'),(40184,2763,'price','6200'),(40185,2763,'web_status','Not Available'),(40186,2763,'admin_status','Available'),(40187,2763,'varietal','Blend'),(40188,2763,'appellation','Lodi'),(40189,2763,'vintage','2021'),(40190,2763,'rating',''),(40191,2763,'wine_vertical',''),(40192,2763,'wine_score',''),(40193,2764,'web_id','88f51065-b11a-49de-837e-c205542d06a6'),(40194,2764,'slug','2021-viognier-wyldvin-vineyard'),(40195,2764,'title','2021 Viognier, Wyldvin Vineyard'),(40196,2764,'type','Wine'),(40197,2764,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_2021_viognier_wyldvin_bottleshot-1688588826840.png'),(40198,2764,'teaser',NULL),(40199,2764,'content','<p>Morning fog from the Pacific Ocean tempers warm summer days, the Wyldvin Vineyard has a great balance of maritime and inland climates. Nestled among heritage oak and olive trees, this vineyard is over 30 years old. This Viognier is a classically fine-formed white that is aromatic and expressive.</p>\n<div><strong>TASTING NOTE:&nbsp;</strong>&nbsp;Crafted in the traditional northern Rh&ocirc;ne style, with a new world edge, this supple and balanced wine was French-Oak aged after being stainless-steel fermented. This lively white opens in a flourish of honeysuckle and lychee. On the palate melon and green tea intermingle with flavors of fresh-cut grass and orchard fruit. The finish has a rich nutty quality buffered by juicy pineapple and vanilla cream.</div>\n<div>&nbsp;</div>\n<div><strong>FOOD PAIRING:</strong>&nbsp;&nbsp;Viognier is a wonderful wine to pair with aromatic spices like star anise, cardamom, or ginger. Due to its floral aromas and rich texture, we recommend enjoying our</div>\n<div>Viognier with Vietnamese or Thai food, both are delicious choices to serve with this wine.</div>\n<div>&nbsp;</div>\n<div><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/09/Meadowcroft_2021_Viognier_WYLDVIN_Tech_Sheet-1.pdf\"><strong>Download PDF Wine Notes</strong></a></div>\n<div>&nbsp;</div>\n<div>TECHNICAL NOTES</div>\n<div>&nbsp;</div>\n<div>\n<div>Appellation: &nbsp;Dry Creek Valley, Sonoma County</div>\n<div>Varietal: Viognier</div>\n<div>Fermentation:&nbsp; Barrel fermented in French oak barrels</div>\n<div>Harvest Date: September 2021</div>\n<div>Bottling Date: February 2022</div>\n<div>Production:&nbsp; &nbsp;99 cases</div>\n<div>Alcohol: 14.87%</div>\n<div>&nbsp;</div>\n<div>\n<div>AWARDS &amp; REVIEWS</div>\n92 points &nbsp;| &nbsp;Wine Enthusiast Magazine | &nbsp;2014 Louvau Vineyard Viognier\n<div>This 100% varietal wine makes the case for Viognier in this appellation, expressing Golden Delicious apple and pear around a fresh, medium build of viscous texture, lemon and wild honey. &nbsp;Pretty and aromatic, it\'s a classically fine-formed white, made in small quantities.</div>\n<div>&nbsp;</div>\n</div>\n</div>'),(40200,2764,'subtitle','Dry Creek Valley'),(40201,2764,'price','3600'),(40202,2764,'web_status','Not Available'),(40203,2764,'admin_status','Available'),(40204,2764,'varietal','Viognier'),(40205,2764,'appellation','Dry Creek Valley'),(40206,2764,'vintage','2021'),(40207,2764,'rating',''),(40208,2764,'wine_vertical',''),(40209,2764,'wine_score',''),(40210,2765,'web_id','21e854d1-c70e-4af6-a816-519708e93e9c'),(40211,2765,'slug','2022-chardonnay-carneros-375ml'),(40212,2765,'title','2022 Chardonnay, Carneros 375ml'),(40213,2765,'type','Wine'),(40214,2765,'image','https://images.commerce7.com/meadowcroft-wines/images/original/sonomabottle-meadowcroftwines_chardonnay_carneros_2022-2-1688588114061.png'),(40215,2765,'teaser',''),(40216,2765,'content','<div>TASTING NOTES: <span id=\"page60R_mcid4\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">A lush and aromatic wine, our 2022 vintage of our Carneros&nbsp;</span></span><span id=\"page60R_mcid5\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Chardonnay is delightfully complex, with aromatic notes of&nbsp;</span></span><span id=\"page60R_mcid6\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">dragonfruit, lychee and baking spice framed by primary flavors&nbsp;</span></span><span id=\"page60R_mcid7\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">of pineapple and lemon. The long finish delivers refreshing&nbsp;</span></span><span id=\"page60R_mcid8\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">acidity and subtle toasted oak flavors.</span></span></div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp; This wine will carry you through pairings for elegant entertaining, weeknight dinners, and everything in between.&nbsp; Seafood is always an easy pairing with this wine. Try also with a selection of cheeses with higher acidity like goat cheese or Jarlsberg. In general, choose to serve with foods that are light and a tad rich.&nbsp;</div>'),(40217,2765,'subtitle','Napa Valley'),(40218,2765,'price','1350'),(40219,2765,'web_status','Not Available'),(40220,2765,'admin_status','Available'),(40221,2765,'varietal','Chardonnay'),(40222,2765,'appellation','Carneros'),(40223,2765,'vintage','2022'),(40224,2765,'meta_data_review-text','<div>&nbsp;</div>\n<div>&nbsp;</div>'),(40225,2765,'meta_data_wine-notes','<div>TASTING NOTES:&nbsp; &nbsp;A lush and aromatic wine, our 2021 vintage of our Carneros Chardonnay is delightfully complex, with notes of melon and stone fruit framed by primary flavors of apple and lemon peel. Secondary suggestions of grilled bread cheese, mustard seed, pear, and white pepper follow. The finish is rich and extended, with hints of toasted marshmallows.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp; This wine will carry you through pairings for elegant entertaining, weeknight dinners, and everything in between.&nbsp; Seafood is always an easy pairing with this wine. Try also with a selection of cheeses with higher acidity like goat cheese or Jarlsberg. In general, choose to serve with foods that are light and a tad rich.&nbsp;</div>'),(40226,2765,'meta_data_technical-notes','<div>Appellation: Carneros, Napa Valley</div>\n<div>Varietal:&nbsp; Chardonnay</div>\n<div>Harvested:&nbsp; September 2021</div>\n<div>Bottled Date:&nbsp; February 2022</div>\n<div>&nbsp;</div>'),(40227,2765,'rating',''),(40228,2765,'wine_vertical',''),(40229,2765,'wine_score',''),(40230,2766,'web_id','b1642172-d1cb-44d2-8377-3c0a538ec8a0'),(40231,2766,'slug','2022-chardonnay-napa-carneros'),(40232,2766,'title','2022 Chardonnay, Carneros'),(40233,2766,'type','Wine'),(40234,2766,'image','https://images.commerce7.com/meadowcroft-wines/images/original/sonomabottle-meadowcroftwines_chardonnay_carneros_2022-2-1688587886152.png'),(40235,2766,'teaser',NULL),(40236,2766,'content','<div class=\"tatsu-section-pad clearfix\" data-padding=\"{&quot;d&quot;:&quot;90px 0px 90px 0px&quot;}\" data-padding-top=\"90px\">\n<div class=\"tatsu-row-wrap  tatsu-wrap tatsu-row-one-col tatsu-row-has-one-cols tatsu-medium-gutter tatsu-reg-cols  tatsu-clearfix tatsu-HJxPYjzn1q\">\n<div class=\"tatsu-row \">\n<div class=\"tatsu-column  tatsu-bg-overlay tatsu-one-col tatsu-column-image-none tatsu-column-effect-none  tatsu-rJDKoGnJq\" data-parallax-speed=\"0\">\n<div class=\"tatsu-column-inner \">\n<div class=\"tatsu-column-pad-wrap\">\n<div class=\"tatsu-column-pad\">\n<div id=\"\" class=\"tatsu-code tatsu-module tatsu-ByuNCz215   \">\n<div class=\"ecp-wrapper epub-locale-en\" data-ecp-wrapper=\"true\">\n<div class=\"ecp-component ecp_ProductDetail \">\n<div data-ecp-id=\"1211\">\n<div class=\"ecp-columns ecp-clearfix\">\n<div class=\"ecp-columns-right\">\n<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>TASTING NOTES: <span id=\"page60R_mcid4\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">A lush and aromatic wine, our 2022 vintage of our Carneros&nbsp;</span></span><span id=\"page60R_mcid5\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Chardonnay is delightfully complex, with aromatic notes of&nbsp;</span></span><span id=\"page60R_mcid6\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">dragonfruit, lychee and baking spice framed by primary flavors&nbsp;</span></span><span id=\"page60R_mcid7\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">of pineapple and lemon. The long finish delivers refreshing&nbsp;</span></span><span id=\"page60R_mcid8\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">acidity and subtle toasted oak flavors.</span></span></div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING: <span id=\"page60R_mcid10\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">This wine will carry you through pairings for elegant entertaining,&nbsp;</span></span><span id=\"page60R_mcid11\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">weeknight dinners, and everything in between. Fresh Dungeness&nbsp;</span></span><span id=\"page60R_mcid12\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">crab or seared bacon wrapped scallops make this wine sing.</span></span>Try also with a selection of cheeses with higher acidity like goat cheese or Jarlsberg. In general, choose to serve with foods that are light and a tad rich.&nbsp;</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">\n<div>Appellation: Carneros, Napa Valley</div>\n<div>Varietal:&nbsp; Chardonnay</div>\n<div>Harvested:&nbsp; September 2022</div>\n<div>Bottled Date:&nbsp; February 2023</div>\n<div>Production:&nbsp; 1024 Cases</div>\n<div>&nbsp;</div>\n<div><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/08/2022-Napa-Carneros-Chardonnay-final.pdf\"><strong>Wine Notes</strong></a></div>\n<div>&nbsp;</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><strong>ACCOLADES</strong></div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\">&nbsp;</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><strong>91 pts - </strong>Wine Enthusiast</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><strong>Gold Medal</strong> - San Francisco Chronicle Wine Competition</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div data-ecp-sidekick=\"\">&nbsp;</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>'),(40237,2766,'subtitle','Napa Valley'),(40238,2766,'price','3500'),(40239,2766,'web_status','Available'),(40240,2766,'admin_status','Available'),(40241,2766,'varietal','Chardonnay'),(40242,2766,'appellation','Carneros'),(40243,2766,'vintage','2022'),(40244,2766,'rating',''),(40245,2766,'wine_vertical',''),(40246,2766,'wine_score',''),(40247,2767,'web_id','812c7f6d-979a-4b8b-9ae7-29eb57fda479'),(40248,2767,'slug','2022-fall-club-newsletter'),(40249,2767,'title','2022 Fall Club Newsletter'),(40250,2767,'type','Collateral'),(40251,2767,'image','https://images.commerce7.com/meadowcroft-wines/images/original/1-1662497268187.png'),(40252,2767,'teaser',NULL),(40253,2767,'content',NULL),(40254,2767,'subtitle','Club Newsletter'),(40255,2767,'price','0'),(40256,2767,'web_status','Not Available'),(40257,2767,'admin_status','Not Available'),(40258,2767,'rating',''),(40259,2767,'wine_vertical',''),(40260,2767,'wine_score',''),(40261,2768,'web_id','d31bf21f-3310-4996-88b4-e7f91415244e'),(40262,2768,'slug','2022-french-colombard'),(40263,2768,'title','2022 French Colombard, Russian River Valley'),(40264,2768,'type','Wine'),(40265,2768,'image','https://images.commerce7.com/meadowcroft-wines/images/original/sonomabottle-meadowcroftwines_frenchcolombard_2022-2-1688587211576.png'),(40266,2768,'teaser',NULL),(40267,2768,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>Fermented in 90% Stainless Steel and 10% Acacia Barrel, our 2022 French Colombard expresses bright fruit flavors and refreshing acidity. &nbsp;French Colombard is a white French grape variety that is the offspring of Gouasi blanc and Chenin Blanc. &nbsp;In France, French Colombard is among the permitted white grape varieties in Bordeaux.</div>\n<div>&nbsp;</div>\n<div>TASTING NOTES: <span id=\"page61R_mcid4\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Thriving in the drier climates</span> <span dir=\"ltr\" role=\"presentation\">of California, French Colombard is</span></span><span id=\"page61R_mcid5\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">&nbsp;a refreshing easy drinking white wine. The cool temperatures&nbsp;</span></span><span id=\"page61R_mcid6\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">of the Russian River Valley provide this wine with lively acidity&nbsp;</span></span><span id=\"page61R_mcid7\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">and lift.&nbsp;</span><span dir=\"ltr\" role=\"presentation\">Aromas of navel orange, nectarine, honey and kumquat&nbsp;</span></span><span id=\"page61R_mcid8\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">are followed by flavors of orange blossom, crisp green apple and&nbsp;</span></span><span id=\"page61R_mcid9\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">honeydew melon.</span></span><br /><br /></div>\n<div>FOOD PAIRINGS: <span id=\"page61R_mcid11\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">This wine will be sure to pair nicely with salads, fresh ceviche&nbsp;</span></span><span id=\"page61R_mcid12\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">and sushi. The luscious fruit flavors will complement cheeses like&nbsp;</span></span><span id=\"page61R_mcid13\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">gruyere, manchego or a dry jack cheese from California.</span></span></div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">Appellation:&nbsp; Russian River Valley\n<div>Fermentation:&nbsp; 90% Stainless Steel; 10% Acacia</div>\n<div>Harvest Date:&nbsp; September 2022</div>\n<div>Bottling Date:&nbsp; February 2023</div>\n<div>Case Production: 200 cases</div>\n<div>Alcohol:&nbsp; 13.1%</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"review_notes\">\n<h3>AWARDS AND REVIEWS</h3>\n<div class=\"ecp-html-content\">\n<div><strong>90 points</strong> - Wine Enthusiast</div>\n<div>&nbsp;</div>\n<div><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2022-FrenchColombard-final2.pdf\" target=\"_blank\" rel=\"noopener\">Download Complete Wine Tasting Notes</a></div>\n</div>\n</div>'),(40268,2768,'subtitle','Russian River Valley'),(40269,2768,'price','3200'),(40270,2768,'web_status','Available'),(40271,2768,'admin_status','Available'),(40272,2768,'varietal','Colombard'),(40273,2768,'appellation','Russian River Valley'),(40274,2768,'vintage','2022'),(40275,2768,'rating',''),(40276,2768,'wine_vertical',''),(40277,2768,'wine_score',''),(40278,2769,'web_id','2abdbdbc-18f3-476a-945d-5354bec02261'),(40279,2769,'slug','2022-pinot-blanc'),(40280,2769,'title','2022 Pinot Blanc, Rivino Vineyard'),(40281,2769,'type','Wine'),(40282,2769,'image','https://images.commerce7.com/meadowcroft-wines/images/original/pinot-blanc-no-vintage-1688426959063.png'),(40283,2769,'teaser',NULL),(40284,2769,'content','<div>Primarily produced as a single varietal in Alsace in northeast France and the Alto Adige region of Italy, Pinot Blanc is the white counterpart to Pinot Noir. Very delicate, with tightly packed clusters on the vine, this grape variety results in light, refreshing wines that easily showcase winemaking style and terroir. This limited production, vintage is a special release.</div>\n<div>&nbsp;</div>\n<div><strong>TASTING NOTES:</strong> <span id=\"page61R_mcid4\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Fresh from start to finish, this enchanting wine begs to be&nbsp;</span></span><span id=\"page61R_mcid5\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">paired with food. Upfront, aromas of orange blossom, hints of&nbsp;</span></span><span id=\"page61R_mcid6\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">perfume, and lychee are framed by an undercurrent of subtle&nbsp;</span></span><span id=\"page61R_mcid7\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">spice. A full-bodied white wine with a rich mouthfeel and soft&nbsp;</span></span><span id=\"page61R_mcid8\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">acidity. On the palate the wine expresses flavors of honey, apricot&nbsp;</span></span><span id=\"page61R_mcid9\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">and golden apple.</span></span></div>\n<div>&nbsp;</div>\n<div><strong>FOOD PAIRING:&nbsp;</strong>&nbsp;Pinot Blanc calls for fresh oysters or steamed mussels. Well-matched with chicken or fish, this varietal would be perfect for both brunch and lunch fare. <span id=\"page61R_mcid14\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Or, try with a recent favorite -&nbsp;</span></span><span id=\"page61R_mcid15\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">fresh fettucine with lemon cream sauce.</span></span></div>\n<div>&nbsp;</div>\n<div><strong><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">TECHNICAL DATA</span></span></strong></div>\n<div>&nbsp;</div>\n<div><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\"><span id=\"page61R_mcid18\" class=\"markedContent\">Appelation:</span><span id=\"page61R_mcid19\" class=\"markedContent\"> Rivino Vineyard, Mendocino County</span><span id=\"page61R_mcid20\" class=\"markedContent\"><br role=\"presentation\" />Varietal:</span><span id=\"page61R_mcid21\" class=\"markedContent\"> Pinot Blanc</span><span id=\"page61R_mcid22\" class=\"markedContent\"><br role=\"presentation\" />Harvested:</span><span id=\"page61R_mcid23\" class=\"markedContent\"> September 2022</span><span id=\"page61R_mcid24\" class=\"markedContent\"><br role=\"presentation\" />Bottles:</span><span id=\"page61R_mcid25\" class=\"markedContent\"> February 2023</span><span id=\"page61R_mcid26\" class=\"markedContent\"><br role=\"presentation\" />Production:</span><span id=\"page61R_mcid27\" class=\"markedContent\"> 150 cases</span></span></span></div>\n<div>&nbsp;</div>\n<div><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/09/2022-Pinot-Blanc-FINAL.pdf\"><strong><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\"><span class=\"markedContent\">Download PDF Wine Notes</span></span></span></strong></a></div>\n<div>&nbsp;</div>\n<div>&nbsp;</div>'),(40285,2769,'subtitle','Mendocino County'),(40286,2769,'price','3200'),(40287,2769,'web_status','Not Available'),(40288,2769,'admin_status','Available'),(40289,2769,'varietal','Pinot Blanc'),(40290,2769,'appellation','Mendocino'),(40291,2769,'vintage','2022'),(40292,2769,'meta_data_review-text','<p><span style=\"font-weight: bold;\">AWARDS AND REVIEWS</span></p>\n<div>DOUBLE GOLD MEDAL&nbsp;</div>\n<div>2021 Rivino Vineyard Pinot Blanc</div>\n<div><a href=\"https://enofileonline.com/awardsbybrandgoldplus.aspx?compid=2842\" target=\"_blank\" rel=\"noopener\">Sunset International Wine Competition</a></div>\n<div>&nbsp;</div>\n<div>\n<div>GOLD MEDAL |&nbsp;&nbsp;92 pts&nbsp;</div>\n<div>2020 Rivino Vineyard Pinot Blanc</div>\n<a title=\"\" target=\"\">Critics Challenge Wine Wine Competition</a></div>\n<div>&nbsp;</div>\n<p>\"</p>'),(40293,2769,'meta_data_feature-text','<p>Mendocino</p>'),(40294,2769,'meta_data_wine-notes','<p>$25.60</p>'),(40295,2769,'meta_data_technical-notes','<div>Appellation:&nbsp; Mendocino</div>\n<div>Varietal:&nbsp; Pinot Blanc</div>\n<div>Harvest Date: September 2021</div>\n<div>Bottle date: February&nbsp;</div>\n<div>Production: 97&nbsp; cases</div>\n<div>Alcohol: 13.39%</div>'),(40296,2769,'rating',''),(40297,2769,'wine_vertical',''),(40298,2769,'wine_score',''),(40299,2770,'web_id','a448f8c2-7d0e-4d60-b299-b2b96d11854f'),(40300,2770,'slug','2022-pinot-gris-nelson-ranch-vineyard'),(40301,2770,'title','2022 Pinot Gris, Nelson Ranch Vineyard'),(40302,2770,'type','Wine'),(40303,2770,'image','https://images.commerce7.com/meadowcroft-wines/images/original/pinot-gris-no-vintage-1688427035009.png'),(40304,2770,'teaser',NULL),(40305,2770,'content','<div class=\"tatsu-section-pad clearfix\" data-padding=\"{&quot;d&quot;:&quot;90px 0px 90px 0px&quot;}\" data-padding-top=\"90px\">\n<div class=\"tatsu-row-wrap  tatsu-wrap tatsu-row-one-col tatsu-row-has-one-cols tatsu-medium-gutter tatsu-reg-cols  tatsu-clearfix tatsu-HJxPYjzn1q\">\n<div class=\"tatsu-row \">\n<div class=\"tatsu-column  tatsu-bg-overlay tatsu-one-col tatsu-column-image-none tatsu-column-effect-none  tatsu-rJDKoGnJq\" data-parallax-speed=\"0\">\n<div class=\"tatsu-column-inner \">\n<div class=\"tatsu-column-pad-wrap\">\n<div class=\"tatsu-column-pad\">\n<div id=\"\" class=\"tatsu-code tatsu-module tatsu-ByuNCz215   \">\n<div class=\"ecp-wrapper epub-locale-en\" data-ecp-wrapper=\"true\">\n<div class=\"ecp-component ecp_ProductDetail \">\n<div data-ecp-id=\"1210\">\n<div class=\"ecp-columns ecp-clearfix\">\n<div class=\"ecp-columns-right\">\n<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<p>We love Pinot Gris from Mendocino because of the spirited aromatics that are characteristic of grapes grown in that appellation.</p>\n<p>&nbsp;</p>\n<p><strong>TASTING NOTES:</strong> This wine opens with aromatics of stone fruit, honey,&nbsp;melon, orange peel and floral notes. On the palate, flavors of&nbsp;white peach, almonds, and nougat dissolve into a dry, yet fruity&nbsp;finish laced with fresh citrus.</p>\n<p>&nbsp;</p>\n<p><strong>FOOD PAIRING:</strong> This medium-bodied, complex varietal is delicious when served&nbsp;with grilled seafood and fresh vegetables. Simple meals, like fruit&nbsp;salads and smoked fish, are also a great accompaniment.</p>\n<p>&nbsp;</p>\n<p><strong>TECHNICAL DATA</strong></p>\n<p>Appellation: Nelson Ranch, Mendocino County<br />Varietal: Pinot Gris<br />Harvested: September 2022<br />Bottles: February 2023<br />Production: 117 cases</p>\n<p><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/09/2022-Pinot-Gris-FINAL-1.pdf\"><strong>Download PDF Wine Notes</strong></a></p>\n<p>&nbsp;</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>'),(40306,2770,'subtitle','Mendocino County'),(40307,2770,'price','3200'),(40308,2770,'web_status','Not Available'),(40309,2770,'admin_status','Available'),(40310,2770,'varietal','Pinot Gris'),(40311,2770,'appellation','Mendocino'),(40312,2770,'vintage','2022'),(40313,2770,'meta_data_review-text','<div><strong>AWARDS AND REVIEWS</strong></div>\n<div>GOLD MEDAL&nbsp;</div>\n<div>2021 Pinot Gris, Mendocino County</div>\n<div><a href=\"https://enofileonline.com/awardsbybrandgoldplus.aspx?compid=2842\" target=\"_blank\" rel=\"noopener\">Sunset International Wine Competition</a></div>'),(40314,2770,'meta_data_feature-text','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>TASTING NOTES: &nbsp;We love Pinot Gris from Mendocino because of the spirited aromatics that are characteristic of grapes grown in that appellation. This wine opens with aromatics of granny smith apple, stone fruit, limes, and lemon tart. On the palate, flavors of white peach, almonds, and nougat dissolve into a dry, yet fruity finish laced with ruby-red grapefruit.<br /><br /></div>\n<div>FOOD PAIRINGS:&nbsp;This medium-bodied, complex varietal is delicious when served with grilled seafood and fresh vegetables. Simple meals, like fruit salad and smoked fish, are also a great accompaniment.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">&nbsp;</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\">&nbsp;</div>'),(40315,2770,'meta_data_wine-notes','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>TASTING NOTES: &nbsp;We love Pinot Gris from Mendocino because of the spirited aromatics that are characteristic of grapes grown in that appellation. This wine opens with aromatics of granny smith apple, stone fruit, limes, and lemon tart. On the palate, flavors of white peach, almonds, and nougat dissolve into a dry, yet fruity finish laced with ruby-red grapefruit.<br /><br /></div>\n<div>FOOD PAIRINGS:&nbsp;This medium-bodied, complex varietal is delicious when served with grilled seafood and fresh vegetables. Simple meals, like fruit salad and smoked fish, are also a great accompaniment.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">&nbsp;</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\">&nbsp;</div>'),(40316,2770,'meta_data_technical-notes','<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">Appellation:&nbsp; Nelson Ranch Vineyard, Mendocino County\n<div>Harvest Date:&nbsp; September 2021</div>\n<div>Bottling Date:&nbsp; February 2022</div>\n<div>Case Production:&nbsp;183 cases</div>\n<div>Alcohol:&nbsp; 14.10%</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/03/Meadowcroft_2021_Pinot_Gris_Mendocino_Tech_Sheet.pdf\">Download Complete Wine Tasting Notes</a></div>'),(40317,2770,'rating',''),(40318,2770,'wine_vertical',''),(40319,2770,'wine_score',''),(40320,2771,'web_id','07212ecf-646b-4870-b123-24db9d1956c9'),(40321,2771,'slug','2022-pinot-noir-anderson-valley'),(40322,2771,'title','2022 Pinot Noir, Anderson Valley'),(40323,2771,'type','Wine'),(40324,2771,'image','https://images.commerce7.com/meadowcroft-wines/images/original/sonomabottle-meadowcroftwines_pinotnoir_2022-1690228599626.png'),(40325,2771,'teaser',NULL),(40326,2771,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\"><strong>TASTING NOTES:</strong> &nbsp;Anderson Valley is famous for its aromatic Pinot Noirs, and our 2022 vintage Pinot does not disappoint. Aromas of cherry pie, roses, and blueberries jump from the glass. Focused, with excellent structure, this wine exhibits a vibrant acidity bolstered silky tannins. Precise and restrained, and a tribute to a fine vintage.\n<div><br />\n<div>\n<div><strong>PAIRING NOTES:</strong>&nbsp; Enjoy with flavorful meats like duck, quail, or lamb. Pop open on a summer evening with a BLT, or pour alongside mushroom risotto or Coq au Vin with creamy polenta.</div>\n</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">\n<div>Appellation: Anderson Valley, Mendocino County</div>\n<div>Varietal: &nbsp;Pinot Noir</div>\n<div>Harvested: &nbsp;September 2022</div>\n<div>Bottle Date: February 2023</div>\n<div>Production: &nbsp;854 cases</div>\n<div>pH: 3.70</div>\n<div>&nbsp;</div>\n<div>\n<h3>ACCOLADES</h3>\n<p><strong>96 points and Double Gold Medal </strong>- Sunset International Wine Competition</p>\n<p><strong>90 points</strong> - International Wine Report</p>\n</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"review_notes\">\n<div class=\"ecp-html-content\">\n<div>&nbsp;</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/05/2022-Pinot-Noir-And-Valley.pdf\" target=\"_blank\" rel=\"noopener\">Download Complete Wine Tasting Notes</a></div>'),(40327,2771,'subtitle',NULL),(40328,2771,'price','3800'),(40329,2771,'web_status','Not Available'),(40330,2771,'admin_status','Available'),(40331,2771,'varietal','Pinot Noir'),(40332,2771,'appellation','Anderson Valley'),(40333,2771,'vintage','2022'),(40334,2771,'rating',''),(40335,2771,'wine_vertical',''),(40336,2771,'wine_score',''),(40337,2772,'web_id','c7d49e70-43c2-4b9f-8c7e-95829100c2c3'),(40338,2772,'slug','2022-river-trace-ros'),(40339,2772,'title','2022 River Trace Rosé'),(40340,2772,'type','Wine'),(40341,2772,'image','https://images.commerce7.com/meadowcroft-wines/images/original/rivertrace-rose-c7-no-vintage-1687993714809.png'),(40342,2772,'teaser',NULL),(40343,2772,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>\"The right River Trace guided its seekers to wonderful treasures. &nbsp;May this River Trace bring you to that same magical place,\" Tom Meadowcroft. Our first River Trace Ros&eacute;, Meticulously blended and sourced to bring you a lively, refreshing, and complex wine.</div>\n<div>&nbsp;</div>\n<div>TASTING NOTES:&nbsp;&nbsp;This very special wine showcases lively aromatics of strawberries and cream, freshly baked brioche, tea leaves, and roses. The mouth-feel is delicate, with a finish that features suggestions of limestone, vanilla wafer, and ruby red grapefruit.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp;&nbsp;Ros&eacute; is a splendid choice year-round, from picnics to holiday pairings.&nbsp; Try serving with grilled garden veggies or brick oven pizza. In the winter months, enjoy with roasted poultry like turkey or duck. This wine is remarkably versatile with food, but also the go-to choice for a glass in the sunshine.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">\n<div>Appellation:&nbsp; Sonoma &amp; Joaquin Valley</div>\n<div>Varietal: 60% Syrah, 20% Malbec, 20% Grenache</div>\n<div>Harvest Date: September 2022</div>\n<div>Bottling Date: March 2023</div>\n<div>Production:&nbsp; 165 cases</div>\n<div>Alcohol:&nbsp; 13.5%</div>\n<div>&nbsp;</div>\n<div>&nbsp;</div>\n<div><strong><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-RiverTrace-Rose.pdf\">PDF Wine Notes</a></strong></div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"review_notes\">\n<h3>&nbsp;</h3>\n<h3>AWARDS AND REVIEWS</h3>\n<div class=\"ecp-html-content\">\n<div>93 pts GOLD&nbsp; |&nbsp;&nbsp;<a title=\"Sunset Wine Competition\" href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\" target=\"\">Sunset International Wine Competition&nbsp;</a>(2017 vintage)</div>\n<div>BEST OF CLASS |&nbsp;&nbsp;<a title=\"SF Chronicle Wine Competition\" href=\"https://winejudging.com/\" target=\"\">San Francisco Chronicle&nbsp;Wine Competition</a></div>\n<div>A muscular and enduring take of the increasingly popular GSM style pulled off here with unusual panache and vibrancy.&nbsp; &nbsp;(2016 Vintage)<br />Unanimous Gold voted by a five-member judging panel.&nbsp;</div>\n<div>&nbsp;</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\">&nbsp;</div>'),(40344,2772,'subtitle','Sonoma & Joaquin Valley'),(40345,2772,'price','3000'),(40346,2772,'web_status','Available'),(40347,2772,'admin_status','Available'),(40348,2772,'varietal','Rose'),(40349,2772,'appellation','Sonoma Valley'),(40350,2772,'vintage','2022'),(40351,2772,'rating',''),(40352,2772,'wine_vertical',''),(40353,2772,'wine_score',''),(40354,2773,'web_id','dacfbb57-6e2d-4a6d-87ed-1d17e3f6442a'),(40355,2773,'slug','2022-ros-of-pinot-noir'),(40356,2773,'title','2022 Rosé of Pinot Noir,  Sonoma Coast'),(40357,2773,'type','Wine'),(40358,2773,'image','https://images.commerce7.com/meadowcroft-wines/images/original/sonomabottle-meadowcroftwines_pinotnoirros_2022-1688419125464.png'),(40359,2773,'teaser',NULL),(40360,2773,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>TASTING NOTES: <span id=\"page65R_mcid4\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Fresh and complex, this perennial favorite exhibits the vibrant&nbsp;</span></span><span id=\"page65R_mcid5\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">fruit and balance that we have come to expect from the 2022&nbsp;</span></span><span id=\"page65R_mcid6\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">vintage. Aromas of fresh cranberry, rhubarb, watermelon and&nbsp;</span></span><span id=\"page65R_mcid7\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">strawberry, and flavors of wild strawberry and quince are accented&nbsp;</span></span><span id=\"page65R_mcid8\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">wtih lively acidity. The finish is clean, light and crisp with an</span></span><span id=\"page65R_mcid9\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">appealing softness.</span></span></div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING: <span id=\"page65R_mcid12\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Rose of Pinot Noir is a versatile option for food pairings as it has&nbsp;</span></span><span id=\"page65R_mcid13\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">a refreshing acidity perfect for enjoying with foods. Try pairing it&nbsp;</span></span><span id=\"page65R_mcid14\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">with seafood such as grilled shrimp or salmon. The acidity of the&nbsp;</span></span><span id=\"page65R_mcid15\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">wine complements the richness of the fish dishes wonderfully. It&nbsp;</span></span><span id=\"page65R_mcid16\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">also goes well with light pasta dishes, salads, and dishes that have&nbsp;</span></span><span id=\"page65R_mcid17\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">a hint of sweetness like a mango and avocado salsa. For cheese&nbsp;</span></span><span id=\"page65R_mcid18\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">pairings, try it with soft cheese varieties such as brie, goat cheese,&nbsp;</span></span><span id=\"page65R_mcid19\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">and feta.</span></span></div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">\n<div>Appellation: &nbsp;Sonoma Coast</div>\n<div>Varietal: &nbsp;Pinot Noir</div>\n<div>Harvest Date: September 2022</div>\n<div>Bottling Date: March 2023</div>\n<div>Production:&nbsp; 77 cases</div>\n<div>Alcohol: &nbsp;13.5%</div>\n<div>&nbsp;</div>\n<div><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/08/2022-RoseofPinotNoir-tech-sheet-Final.pdf\"><strong>Wine Notes</strong></a></div>\n<div>&nbsp;</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\">&nbsp;</div>'),(40361,2773,'subtitle','Sonoma Coast'),(40362,2773,'price','2400'),(40363,2773,'web_status','Not Available'),(40364,2773,'admin_status','Available'),(40365,2773,'varietal','Rose'),(40366,2773,'appellation','Sonoma Coast'),(40367,2773,'vintage','2022'),(40368,2773,'rating',''),(40369,2773,'wine_vertical',''),(40370,2773,'wine_score',''),(40371,2774,'web_id','b4a9e80c-231d-4317-8322-5795897e6178'),(40372,2774,'slug','2022-rousanne'),(40373,2774,'title','2022 Roussanne, Wyldvin Vineyard'),(40374,2774,'type','Wine'),(40375,2774,'image','https://images.commerce7.com/meadowcroft-wines/images/original/roussanne-no-vintage-1688576106910.png'),(40376,2774,'teaser',NULL),(40377,2774,'content','<div class=\"tatsu-section-pad clearfix\" data-padding=\"{&quot;d&quot;:&quot;90px 0px 90px 0px&quot;}\" data-padding-top=\"90px\">\n<div class=\"tatsu-row-wrap  tatsu-wrap tatsu-row-one-col tatsu-row-has-one-cols tatsu-medium-gutter tatsu-reg-cols  tatsu-clearfix tatsu-HJxPYjzn1q\">\n<div class=\"tatsu-row \">\n<div class=\"tatsu-column  tatsu-bg-overlay tatsu-one-col tatsu-column-image-none tatsu-column-effect-none  tatsu-rJDKoGnJq\" data-parallax-speed=\"0\">\n<div class=\"tatsu-column-inner \">\n<div class=\"tatsu-column-pad-wrap\">\n<div class=\"tatsu-column-pad\">\n<div id=\"\" class=\"tatsu-code tatsu-module tatsu-ByuNCz215   \">\n<div class=\"ecp-wrapper epub-locale-en\" data-ecp-wrapper=\"true\">\n<div class=\"ecp-component ecp_ProductDetail \">\n<div data-ecp-id=\"1214\">\n<div class=\"ecp-columns ecp-clearfix\">\n<div class=\"ecp-columns-right\">\n<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>Originally grown in the Rhone wine region of France, Roussanne is a primary component in the white wines of Chateauneuf-du-Pape. &nbsp; Roussanne drinks very well as a young wine but will develop more complexity and depth if aged 7-8 years.</div>\n<div>&nbsp;</div>\n<div>TASTING NOTES: <span id=\"page67R_mcid4\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">A spirited wine, with lush fruit notes of fresh baked challah bread&nbsp;</span></span><span id=\"page67R_mcid5\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">or croissant, honeycomb, white peach and notes of mango.</span> <span dir=\"ltr\" role=\"presentation\">The&nbsp;</span></span><span id=\"page67R_mcid6\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">palate is medium, with prominent structure and youthful acidity.&nbsp;</span></span><span id=\"page67R_mcid7\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">The finish is laced with subtle spice and delicious flavors of lemon&nbsp;</span></span><span id=\"page67R_mcid8\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">meringue, vanilla, and acacia flower ending in a mineral-driven,&nbsp;</span></span><span id=\"page67R_mcid9\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">lengthy finale.</span></span></div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING: <span id=\"page67R_mcid12\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Due to the natural acidity and heavier body, this wine is&nbsp;</span></span><span id=\"page67R_mcid13\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">excellent with rich shellfish or poultry dishes. Try this&nbsp;</span></span><span id=\"page67R_mcid14\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">wine with fresh vegetables or grilled artichokes. A match&nbsp;</span></span><span id=\"page67R_mcid15\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">for anything you might pair with Chardonnay, our 2022&nbsp;</span></span><span id=\"page67R_mcid16\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Roussanne can also stand up to spicy fare.</span></span></div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">\n<div>Appellation: &nbsp;Dry Creek Valley, Sonoma County</div>\n<div>Varietal: Roussanne</div>\n<div>Fermentation: &nbsp;French oak barrel fermented</div>\n<div>Harvest Date: September 2022</div>\n<div>Bottling Date: February 2023</div>\n<div>Production:&nbsp; 80 cases</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"review_notes\">\n<h3>AWARDS AND REVIEWS</h3>\n<div class=\"ecp-html-content\">\n<div>Best of Class - San Francisco Chronicle Wine Competition (2022 Vintage)</div>\n<div>90 points |&nbsp;<a title=\"\" href=\"https://winesipping.wordpress.com/2022/03/14/meadowcroft-wines-wyldvin-vineyard-roussanne-2021-dry-creek-valley-california/\" target=\"_blank\" rel=\"noopener\">Odedis Wine Reviews</a> (2021 vintage)</div>\n<div>90 points, GOLD MEDAL&nbsp; |&nbsp;&nbsp;<a title=\"Sunset Wine Competition\" href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\" target=\"\">Sunset International Wine Competition</a>&nbsp;(2020 vintage)</div>\n<div>90 points, GOLD MEDAL&nbsp; |&nbsp;&nbsp;<a title=\"Sunset Wine Competition\" href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\" target=\"\">Sunset International Wine Competition</a>&nbsp;(2019 vintage)</div>\n<div>92 points, GOLD MEDAL&nbsp; |&nbsp;&nbsp;<a title=\"Sunset Wine Competition\" href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\" target=\"_blank\" rel=\"noopener\">Sunset International Wine Competition</a>&nbsp;(2018 vintage)</div>\n<div>BEST OF CLASS, GOLD MEDAL &nbsp;| &nbsp;<a title=\"Sunset Wine Competition\" href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\" target=\"\">Sunset International Wine Competition</a><br />Juicy peach, melon, and citrus fruit is slightly creamy on the midpalate, followed by a long, brisk, spicy finish.&nbsp; (2016 vintage)</div>\n<div>DOUBLE GOLD |&nbsp;<a title=\"SF Chronicle Wine Competition\" href=\"https://winejudging.com/\" target=\"\">San Francisco Chronicle Wine Competition</a><br />Unanimous Gold voted by a five member judging panel. (2016 vintage)</div>\n<div>&nbsp;</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/08/2022-Roussanne-FINAL-1.pdf\" target=\"_blank\" rel=\"noopener\">Download Complete Wine Tasting Notes</a></div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div data-ecp-sidekick=\"\">&nbsp;</div>\n</div>\n</div>\n</div>\n<div class=\"tatsu-column-bg-image-wrap\">\n<div class=\"tatsu-column-bg-image\">&nbsp;</div>\n</div>\n<div class=\"tatsu-overlay tatsu-column-overlay tatsu-animate-none\">&nbsp;</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"tatsu-section-background-wrap\">\n<div class=\"tatsu-section-background\">&nbsp;</div>\n</div>'),(40378,2774,'subtitle','Dry Creek Valley'),(40379,2774,'price','3800'),(40380,2774,'web_status','Not Available'),(40381,2774,'admin_status','Available'),(40382,2774,'varietal','Roussanne'),(40383,2774,'appellation','Dry Creek Valley'),(40384,2774,'vintage','2022'),(40385,2774,'meta_data_review-text','<div><strong>AWARDS AND REVIEWS</strong></div>\n<div>&nbsp;</div>\n<div>GOLD MEDAL&nbsp;</div>\n<div>2021 Roussanne, Wyldvin Vineyard Dry Creek Valley</div>\n<div><a href=\"https://enofileonline.com/awardsbybrandgoldplus.aspx?compid=2842\" target=\"_blank\" rel=\"noopener\">Sunset International Wine Competition</a></div>'),(40386,2774,'rating',''),(40387,2774,'wine_vertical',''),(40388,2774,'wine_score',''),(40389,2775,'web_id','ab1c61b2-c8ca-4ad5-9eb6-54a2a9e0fac9'),(40390,2775,'slug','2022-sauvignon-blanc-sonoma-coast'),(40391,2775,'title','2022 Sauvignon Blanc, Sonoma Coast'),(40392,2775,'type','Wine'),(40393,2775,'image','https://images.commerce7.com/meadowcroft-wines/images/original/sonomabottle-meadowcroftwines_sauvignonblanc_2022-3-1688418488430.png'),(40394,2775,'teaser',NULL),(40395,2775,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>From the Sonoma Coast Appellation of Sonoma County, this sauvignon blanc was fermented and aged in a mix of stainless steel and new French oak barrels.&nbsp;</div>\n<div>&nbsp;</div>\n<div>TASTING NOTES: <span id=\"page64R_mcid4\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Bright, flinty and crisp, this nose leads with notes of fresh&nbsp;</span></span><span id=\"page64R_mcid5\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">grapefruit, honey, and aromatic lemongrass. With a balanced&nbsp;</span></span><span id=\"page64R_mcid6\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">palate that expresses flavors of grapfruit, key lime and brine, this&nbsp;</span></span><span id=\"page64R_mcid7\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">complex wine has a lengthy, lush and fruity finish.</span></span></div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING: &nbsp;This wine is a great match for a variety of food pairings like ch&egrave;vre, oysters, and is beautifully matched with anything using fresh herbs like tarragon or mint. This refreshing sauvignon blanc is also delicious on its own as an ap&eacute;ritif &agrave; la maison (aperitif at home).</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">\n<div>Appellation:&nbsp; Sonoma Coast, Sonoma County</div>\n<div>Varietal: &nbsp;Sauvignon Blanc</div>\n<div>Harvest Date: September 2022</div>\n<div>Bottle date: February 2023</div>\n<div>Production: &nbsp;156 cases</div>\n<div>&nbsp;</div>\n<div><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/09/2022-Sauvignon-Blanc-FINAL.pdf\"><strong>Download PDF Wine Notes</strong></a></div>\n<div>&nbsp;</div>\n<div><strong>ACCOLADES:</strong></div>\n<div><strong>91pts&nbsp;</strong>- International Wine Report</div>\n<div>&nbsp;</div>\n</div>\n</div>'),(40396,2775,'subtitle','Sonoma County'),(40397,2775,'price','3600'),(40398,2775,'web_status','Available'),(40399,2775,'admin_status','Available'),(40400,2775,'varietal','Sauvignon Blanc'),(40401,2775,'appellation','Sonoma Coast'),(40402,2775,'vintage','2022'),(40403,2775,'rating',''),(40404,2775,'wine_vertical',''),(40405,2775,'wine_score',''),(40406,2776,'web_id','6836c1f2-6cac-469e-b357-7a5ba93ef4fd'),(40407,2776,'slug','2022-viognier-wyldvin-vineyard'),(40408,2776,'title','2022 Viognier, Wyldvin Vineyard'),(40409,2776,'type','Wine'),(40410,2776,'image','https://images.commerce7.com/meadowcroft-wines/images/original/sonomabottle-meadowcroftwines_viognier_wyldvinvineyard_2022-1688416895701.png'),(40411,2776,'teaser',NULL),(40412,2776,'content','<p>Morning fog from the Pacific Ocean tempers warm summer days, the Wyldvin Vineyard has a great balance of maritime and inland climates. Nestled among heritage oak and olive trees, this vineyard is over 30 years old. This Viognier is a classically fine-formed white that is aromatic and expressive.</p>\n<div><strong>TASTING NOTES:</strong> <span id=\"page66R_mcid4\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Crafted in the traditional Northern Rh&ocirc;ne style, with a new&nbsp;</span></span><span id=\"page66R_mcid5\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">world edge, this supple and balanced wine was aged in French-</span></span><span id=\"page66R_mcid6\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">oak after being stainless-steel fermented. This lively white&nbsp;</span></span><span id=\"page66R_mcid7\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">opens in a flourish of dried apricot, honey and passionfruit. On&nbsp;</span></span><span id=\"page66R_mcid8\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">the palate crisp clean acidity is mingled with flavors of baked&nbsp;</span></span><span id=\"page66R_mcid9\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">apple and notes of bergamot.</span></span></div>\n<div>&nbsp;</div>\n<div><strong>FOOD PAIRING:</strong>&nbsp;&nbsp;Viognier is a wonderful wine to pair with aromatic spices like star anise, cardamom, or ginger. Due to its floral aromas and rich texture, we recommend enjoying our&nbsp;Viognier with Vietnamese or Thai food, both are delicious choices to serve with this wine.</div>\n<div>&nbsp;</div>\n<div><strong>TECHNICAL NOTES</strong></div>\n<div><span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">Appellation: &nbsp;Dry Creek Valley, Sonoma County</span></div>\n<div>\n<div>Varietal: Viognier</div>\n<div>Fermentation:&nbsp; Barrel fermented in French oak barrels</div>\n<div>Harvest Date: September 2022</div>\n<div>Bottling Date: February 2023</div>\n<div>Production: &nbsp; 134 cases</div>\n<div>Alcohol: 14.5%</div>\n<div>&nbsp;</div>\n<div>\n<div><strong>AWARDS &amp; REVIEWS</strong></div>\n<div>91 points - Wine Enthusiast</div>\n<div>&nbsp;</div>\n<div><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/08/2022-Viognier-Final.pdf\"><strong>Wine Notes</strong></a></div>\n</div>\n</div>'),(40413,2776,'subtitle','Dry Creek Valley'),(40414,2776,'price','3800'),(40415,2776,'web_status','Not Available'),(40416,2776,'admin_status','Available'),(40417,2776,'varietal','Viognier'),(40418,2776,'appellation','Dry Creek Valley'),(40419,2776,'vintage','2022'),(40420,2776,'rating',''),(40421,2776,'wine_vertical',''),(40422,2776,'wine_score',''),(40423,2777,'web_id','0846e041-e48e-4376-b1de-cb18c1683801'),(40424,2777,'slug','2btl-wine-bag_resusable-logoed-250-per-case'),(40425,2777,'title','2BTL Wine Bag_Resusable Logoed 250 per case'),(40426,2777,'type','General Merchandise'),(40427,2777,'image',NULL),(40428,2777,'teaser',''),(40429,2777,'content','Canvas Tote Bag'),(40430,2777,'subtitle',''),(40431,2777,'price','500'),(40432,2777,'web_status','Not Available'),(40433,2777,'admin_status','Available'),(40434,2777,'rating',''),(40435,2777,'wine_vertical',''),(40436,2777,'wine_score',''),(40437,2778,'web_id','bb276ccb-febd-4435-a393-50ff7e96b5ec'),(40438,2778,'slug','4btl-wine-bag_resusable-logoed-250-per-case'),(40439,2778,'title','4BTL Wine Bag_Resusable Logoed 250 per case'),(40440,2778,'type','General Merchandise'),(40441,2778,'image',NULL),(40442,2778,'teaser',''),(40443,2778,'content','Canvas Tote Bag'),(40444,2778,'subtitle',''),(40445,2778,'price','500'),(40446,2778,'web_status','Not Available'),(40447,2778,'admin_status','Available'),(40448,2778,'rating',''),(40449,2778,'wine_vertical',''),(40450,2778,'wine_score',''),(40451,2779,'web_id','88fd9dd4-84ba-41fb-b75c-46bd678dd3c5'),(40452,2779,'slug','6-bottle-shipper'),(40453,2779,'title','6- Bottle Wine Gift Box - Branded'),(40454,2779,'type','General Merchandise'),(40455,2779,'image',NULL),(40456,2779,'teaser',''),(40457,2779,'content',''),(40458,2779,'subtitle',''),(40459,2779,'price','1200'),(40460,2779,'web_status','Not Available'),(40461,2779,'admin_status','Available'),(40462,2779,'rating',''),(40463,2779,'wine_vertical',''),(40464,2779,'wine_score',''),(40465,2780,'web_id','968b8e35-a38e-4c42-8135-f0be0e6de926'),(40466,2780,'slug','6btl-wine-bag_resusable-logoed-250-per-case'),(40467,2780,'title','6BTL Wine Bag_Resusable Logoed 250 per case'),(40468,2780,'type','General Merchandise'),(40469,2780,'image',NULL),(40470,2780,'teaser',''),(40471,2780,'content','Canvas Tote Bag'),(40472,2780,'subtitle',''),(40473,2780,'price','500'),(40474,2780,'web_status','Not Available'),(40475,2780,'admin_status','Available'),(40476,2780,'rating',''),(40477,2780,'wine_vertical',''),(40478,2780,'wine_score',''),(40479,2781,'web_id','391364c0-83cd-4ccd-8eaf-2bc2149c3bb9'),(40480,2781,'slug','a-perfect-blend'),(40481,2781,'title','A Perfect Blend'),(40482,2781,'type','Reservation'),(40483,2781,'image','https://images.commerce7.com/meadowcroft-wines/images/original/dsc_2831-1661897378464.jpeg'),(40484,2781,'teaser',NULL),(40485,2781,'content','<p>Create your own Perfect Blend at Meadowcroft! Immerse yourself in the beauty of the Cornerstone Gardens as you learn about Meadowcroft&rsquo;s unique wine making perspective and the fascinating history of Sonoma. Get hands-on as you create your own classic red Bordeaux style blend using carefully aged wines from separate oak barrels. Engage your senses as you experiment with different components to find your perfect flavor combination.</p>\n<p><strong>And the best part?</strong>&nbsp; You&rsquo;ll get to label and hand-cork your own 750ml bottle of your custom blend to take home! This unforgettable experience also includes a selection of delectable locally sourced cheese and accompaniments.</p>\n<p>Not drinking alcohol or have non-drinking guests in your party?&nbsp; We offer a flight of non-alcoholic mocktails.&nbsp; We also offer single serving non-alcholic mocktail drinks.&nbsp;&nbsp;</p>\n<p>We gladly accept large parties and corporate groups for our wine blending experiences.&nbsp; To schedule parties larger than 12 guests, please call us at (707)934-4090 or send email to <a href=\"mailto:tastingroom@meadowcroftwines.com\">tastingroom@meadowcroftwines.com</a>.&nbsp;</p>\n<p>3 DAYS ADVANCED RESERVATIONS ARE REQUIRED</p>'),(40486,2781,'subtitle',NULL),(40487,2781,'price','15000'),(40488,2781,'web_status','Available'),(40489,2781,'admin_status','Available'),(40490,2781,'rating',''),(40491,2781,'wine_vertical',''),(40492,2781,'wine_score',''),(40493,2782,'web_id','891c9145-eb27-4c4f-aadd-b029604bdc9e'),(40494,2782,'slug','air-balloon-and-blending-experience---wine-club'),(40495,2782,'title','Air Balloon and Blending Experience - Wine Club'),(40496,2782,'type','General Merchandise'),(40497,2782,'image',NULL),(40498,2782,'teaser',NULL),(40499,2782,'content',''),(40500,2782,'subtitle',NULL),(40501,2782,'price','32000'),(40502,2782,'web_status','Not Available'),(40503,2782,'admin_status','Available'),(40504,2782,'rating',''),(40505,2782,'wine_vertical',''),(40506,2782,'wine_score',''),(40507,2783,'web_id','37ac50b5-ad99-4342-baaa-f55c9e81912c'),(40508,2783,'slug','airbnb-blending'),(40509,2783,'title','AirBnB Blending'),(40510,2783,'type','General Merchandise'),(40511,2783,'image',NULL),(40512,2783,'teaser',NULL),(40513,2783,'content',''),(40514,2783,'subtitle',NULL),(40515,2783,'price','0'),(40516,2783,'web_status','Not Available'),(40517,2783,'admin_status','Available'),(40518,2783,'rating',''),(40519,2783,'wine_vertical',''),(40520,2783,'wine_score',''),(40521,2784,'web_id','b46c6da2-329d-4f4e-b08d-b73b30a3bd74'),(40522,2784,'slug','all-she-wrote'),(40523,2784,'title','All She Wrote Port Style Wine'),(40524,2784,'type','Wine'),(40525,2784,'image','https://images.commerce7.com/meadowcroft-wines/images/original/all-she-wrote-wax-1686573415273.png'),(40526,2784,'teaser',NULL),(40527,2784,'content','<p>Since the production of this port is so limited, this wine is typically exclusively available in person at the Tasting Room. &nbsp;Meadowcroft has allocated a small quantity of this special port for online purchases.</p>\n<p>TASTING NOTES:&nbsp; This luscious medium-bodied dessert wine, done in a classic Port style is a wonderful balance between ruby and tawny ports.&nbsp; Fortified with grape brandy and aged five years in oak barrels.&nbsp; All She Wrote is smooth with defined fruit flavors of dried black Mission fig, cocoa, and a spicy black licorice finish.&nbsp; Toasty notes of creme brulee and sweet tobacco make it a delicious end to any evening.<br /><br /></p>\n<p>FOOD PAIRING:&nbsp;&nbsp;Enjoy this port on its own.&nbsp; Excellent after any dinner.&nbsp; A wonderful companion to any chocolate-based dessert.&nbsp;&nbsp;</p>\n<p>&nbsp;</p>\n<p>ALL THE REST</p>\n<p>Vintage: No Vintage</p>\n<p>Varietal: Touriga Nacional Zinfandel, Cabernet Sauvignon, Petite Syrah</p>\n<p>Cooperage: 5 years Oak Barrel</p>\n<p>Bottle Date: December 5, 2012</p>\n<p>Production: 98 Cases</p>\n<p>Alcohol: 18.5%</p>\n<p style=\"font-weight: 400;\" data-ecp-handle=\"view_pdf\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/11/ALL-SHE-WROTE_techsheet-1.pdf\">Download Complete Wine Tasting Notes</a></p>'),(40528,2784,'subtitle','Port-Style Dessert Wine'),(40529,2784,'price','4200'),(40530,2784,'web_status','Available'),(40531,2784,'admin_status','Available'),(40532,2784,'varietal','Port'),(40533,2784,'appellation',NULL),(40534,2784,'vintage',NULL),(40535,2784,'rating',''),(40536,2784,'wine_vertical',''),(40537,2784,'wine_score',''),(40538,2785,'web_id','7b5ac071-c25b-4c69-8586-100b8482a026'),(40539,2785,'slug','anniversary-cuv-e-'),(40540,2785,'title','Anniversary Cuvée - 20 Years'),(40541,2785,'type','Wine'),(40542,2785,'image','https://images.commerce7.com/meadowcroft-wines/images/original/20yrannivcuvee-screen-1718309712414.png'),(40543,2785,'teaser',NULL),(40544,2785,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<p class=\"p2\">This special production red blend celebrates 20 years with a blend of all five noble Bordeaux varietals with the addition of Touriga Nacional which was recently sanctioned for use in Bordeaux blends. This wine offers subtle nuanced aromas of berry compote, notes of black licorice, and hints of roasted meat. The tannins integrate seamlessly on the supple, smooth palate, showcasing flavors of espresso, graphite and brambly dark fuit, a jammy finish laced with allspice, graphite, and raspberry jam. Cellar recommendation: 2027-2035</p>\n<p class=\"p3\"><strong><span class=\"s1\">SUGGESTED FOOD PAIRING</span></strong></p>\n<p class=\"p4\">This elegant, complex Bordeaux red blend can pair nicely with leaner, more savory proteins like duck or pork. The gentle spice and acidity in this wine will stand up to tomatoes, spicy greens, and Italian-inspired dishes. The more youthful structure of this red is also always a reliable pairing with grilled cuts of red meat.</p>\n<p class=\"p4\"><strong><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/01/NV-AnivCuvee20YR-TechSheet.pdf\">PDF Wine Notes</a></strong></p>\n<p class=\"p4\"><strong>ACCOLADES</strong></p>\n<p class=\"p4\"><strong>94 Points -&nbsp;</strong>International Wine Review</p>\n</div>'),(40545,2785,'subtitle','Napa Valley'),(40546,2785,'price','5800'),(40547,2785,'web_status','Available'),(40548,2785,'admin_status','Available'),(40549,2785,'varietal','Blend'),(40550,2785,'appellation','Napa Valley'),(40551,2785,'vintage',NULL),(40552,2785,'rating',''),(40553,2785,'wine_vertical',''),(40554,2785,'wine_score',''),(40555,2786,'web_id','18470cc6-f769-4a5f-aef0-4dda9729eec2'),(40556,2786,'slug','art-culinaire-book'),(40557,2786,'title','Art Culinaire Book'),(40558,2786,'type','General Merchandise'),(40559,2786,'image',NULL),(40560,2786,'teaser',NULL),(40561,2786,'content',NULL),(40562,2786,'subtitle',NULL),(40563,2786,'price','2500'),(40564,2786,'web_status','Not Available'),(40565,2786,'admin_status','Not Available'),(40566,2786,'rating',''),(40567,2786,'wine_vertical',''),(40568,2786,'wine_score',''),(40569,2787,'web_id','b4ef4117-41bf-4e7e-8340-934bb2101ed2'),(40570,2787,'slug','seated-tasting-duplicate'),(40571,2787,'title','Balloon and Blending'),(40572,2787,'type','Reservation'),(40573,2787,'image','https://images.commerce7.com/meadowcroft-wines/images/original/balloonandblendingpng-1661976509198.png'),(40574,2787,'teaser',NULL),(40575,2787,'content','<div class=\"ecp-html-content\">\n<div class=\"ecp-html-content\" data-uw-rm-sr=\"\">\n<div class=\"tatsu-module tatsu-text-block-wrap tatsu-HyQkM1z2qO  \">\n<div class=\"tatsu-text-inner tatsu-align-center  clearfix\">\n<p>We&rsquo;ve partnered with Sonoma Ballooning in&nbsp; Sonoma Valley to bring a unique, cultural experience your way! Enjoy a magical sunrise join-in flight with Sonoma Ballooning, and after your post-flight champagne toast, continue your Sonoma wine country adventure with Meadowcroft Wines&rsquo; Blending Seminar.</p>\n<p>Since no two hot air balloon rides are ever the same and you&rsquo;ll be creating your own special blend of wine afterward, it&rsquo;s safe to say that this is truly a one-of-a-kind experience that you&rsquo;ll be sharing with your friends and family for years to come. Expect to be with Sonoma Ballooning for 3-4 hours and Meadowcroft Wines for approximately 2-2.5 hours.&nbsp;</p>\n<p>Sonoma Ballooning Tour Includes:<br role=\"presentation\" data-uw-rm-sr=\"\" />Light Refreshments Pre-flight (coffee, tea, pre-packaged snacks)<br role=\"presentation\" data-uw-rm-sr=\"\" />45 Minute to 1 Hour Balloon Flight<br role=\"presentation\" data-uw-rm-sr=\"\" />Post-flight Champagne Toast<br role=\"presentation\" data-uw-rm-sr=\"\" />Flight Certificate (upon request)</p>\n<p>Meadowcroft Blending Seminar Includes:<br role=\"presentation\" data-uw-rm-sr=\"\" />Tour of Cornerstone Gardens<br role=\"presentation\" data-uw-rm-sr=\"\" />Wine Blending<br role=\"presentation\" data-uw-rm-sr=\"\" />Cheese Plate<br role=\"presentation\" data-uw-rm-sr=\"\" />Label &amp; Cork Your Own &ldquo;Perfect Blend&rdquo; 750ml Bottle To Take Home</p>\n<p>*This package is for ages 21+. After the booking is confirmed, you will receive a separate email confirmation from each respective company. Each company will also charge you separately.&nbsp;</p>\n<p data-uw-rm-sr=\"\"><strong>ADVANCED RESERVATIONS ARE REQUIRED</strong><br role=\"presentation\" data-uw-rm-sr=\"\" />$405 for total package.</p>\n<p data-uw-rm-sr=\"\">$130/person&nbsp; (Meadowcroft blending) Sonoma Ballooning will charge separately.&nbsp;</p>\n<p data-uw-rm-sr=\"\">Please <a title=\"Balloon and Blending Meadowcroft Wines Membership Pricing\" href=\"mailto:Mailto:info@meadowcroftwines.com\" target=\"_blank\" rel=\"noopener\"><strong>inquire</strong></a> for Member Pricing</p>\n</div>\n</div>\n<div class=\"tatsu-module tatsu-text-block-wrap tatsu-S14kzyM25u  \">\n<div class=\"tatsu-text-inner tatsu-align-center  clearfix\">&nbsp;</div>\n</div>\n</div>\n</div>'),(40576,2787,'subtitle',NULL),(40577,2787,'price','13000'),(40578,2787,'web_status','Available'),(40579,2787,'admin_status','Available'),(40580,2787,'rating',''),(40581,2787,'wine_vertical',''),(40582,2787,'wine_score',''),(40583,2788,'web_id','9d8a798d-2a5f-4195-9f83-baf26672de1e'),(40584,2788,'slug','meadowcroft-bamboo-cutting-board'),(40585,2788,'title','Bamboo Cutting Board'),(40586,2788,'type','General Merchandise'),(40587,2788,'image',NULL),(40588,2788,'teaser',''),(40589,2788,'content',''),(40590,2788,'subtitle',''),(40591,2788,'price','1200'),(40592,2788,'web_status','Not Available'),(40593,2788,'admin_status','Available'),(40594,2788,'rating',''),(40595,2788,'wine_vertical',''),(40596,2788,'wine_score',''),(40597,2789,'web_id','311ce5b1-cdff-45ef-b14c-76dfb67c2a5f'),(40598,2789,'slug','bee-cozy-gift-set'),(40599,2789,'title','Bee Cozy Gift Set'),(40600,2789,'type','Bundle'),(40601,2789,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1059-1660861958595.png'),(40602,2789,'teaser','PERFECT FOR HOLIDAY GIFTS'),(40603,2789,'content','<div>\n<div>Indulgent locally sourced mulling spices from Sonoma Spice Queen are the perfect complement to our newly released 2018 Speedy Creek Zinfandel and limited edition Meadowcroft kitchen towel.&nbsp; Includes a two-bottle black box shown and our own mulled wine recipe.&nbsp;&nbsp;</div>\n</div>\n<div>&nbsp;</div>\n<div>At check out, let our shipping department know if this is a gift in the Comments Section.&nbsp; We can include a special message for your recipient. Give us a call with any questions or for more details at (707) 934-4090.</div>'),(40604,2789,'subtitle',NULL),(40605,2789,'price','5500'),(40606,2789,'web_status','Retired'),(40607,2789,'admin_status','Not Available'),(40608,2789,'rating',''),(40609,2789,'wine_vertical',''),(40610,2789,'wine_score',''),(40611,2790,'web_id','eebb3ba0-23bf-4ad5-8908-7a6c8803e984'),(40612,2790,'slug','bee-logo-coaster'),(40613,2790,'title','Bee Logo Coaster'),(40614,2790,'type','General Merchandise'),(40615,2790,'image',NULL),(40616,2790,'teaser',''),(40617,2790,'content',''),(40618,2790,'subtitle',''),(40619,2790,'price','1000'),(40620,2790,'web_status','Not Available'),(40621,2790,'admin_status','Available'),(40622,2790,'rating',''),(40623,2790,'wine_vertical',''),(40624,2790,'wine_score',''),(40625,2791,'web_id','c5ac0ea7-cadc-4132-82ab-6bdf728c7a42'),(40626,2791,'slug','bee-napkin-rings'),(40627,2791,'title','Bee Napkin Rings'),(40628,2791,'type','General Merchandise'),(40629,2791,'image',NULL),(40630,2791,'teaser',''),(40631,2791,'content',''),(40632,2791,'subtitle',''),(40633,2791,'price','2500'),(40634,2791,'web_status','Not Available'),(40635,2791,'admin_status','Available'),(40636,2791,'rating',''),(40637,2791,'wine_vertical',''),(40638,2791,'wine_score',''),(40639,2792,'web_id','b7435b14-1dab-4349-8001-ba737c1ab5ec'),(40640,2792,'slug','blanc-de-noir-rose'),(40641,2792,'title','Blanc de Noirs Rosé'),(40642,2792,'type','Wine'),(40643,2792,'image','https://images.commerce7.com/meadowcroft-wines/images/original/blanc-de-noir-1671771158786.png'),(40644,2792,'teaser',NULL),(40645,2792,'content','<p>Meaning white from black, our Blanc de Noirs is our first release of sparkling ros&eacute;.&nbsp; Perfect for any special occasion such as a job promotion, anniversary, holidays, or just making it through Monday.</p>\n<div class=\"page\" title=\"Page 1\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<p><strong>TASTING NOTES</strong></p>\n</div>\n</div>\n<div class=\"layoutArea\">\n<div class=\"column\">\n<p>This non-vintage Blanc de Noirs Rose displays lush aromas of sweet cranberries, and ripe wild strawberries with hints of fresh vanilla bean. The palate boasts flavors of pomegranate and vanilla, and an elegant minerality that contributes to the firm tannins and citrus finish.</p>\n<p><strong>SUGGESTED FOOD PAIRING</strong></p>\n<p>Our Blanc de Noirs Rose is the perfect accompaniment to a variety of dishes, including seafood, grilled meats, and creamy cheeses. Its light and fruity flavors combined with refreshing effervescence and acidity, the fruit flavors of this wine wine can help cut through the fattiness of grilled salmon or steak, while its bright acidity will bring out the delicious flavors in smooth cheeses like triple creme or d&rsquo; affinois.</p>\n</div>\n</div>\n<div class=\"layoutArea\">\n<div class=\"column\">\n<p><strong>APPELLATION:</strong> Sonoma County</p>\n<p><strong>VARIETAL:</strong> Pinot Noir</p>\n<p><strong>HARVESTED:</strong> Non Vintage - primarily harvested in September 2020</p>\n<p><strong>BOTTLED:</strong> December 2022</p>\n<p><strong>PRODUCTION:</strong> 132 cases</p>\n<p><strong>ALCOHOL:</strong> 12.9%</p>\n<p><strong>pH:</strong> 3.18</p>\n<p><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/03/NV-Blanc-de-Noir-final.pdf\">Download Tasting Notes</a></p>\n</div>\n</div>\n</div>\n<p>&nbsp;</p>\n<p><strong>ACCOLADES:&nbsp;</strong></p>\n<p>Double Gold award - San Francisco Chronicle Wine Competition</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>'),(40646,2792,'subtitle',NULL),(40647,2792,'price','4400'),(40648,2792,'web_status','Available'),(40649,2792,'admin_status','Available'),(40650,2792,'varietal','Sparkling'),(40651,2792,'appellation','Sonoma County'),(40652,2792,'vintage',NULL),(40653,2792,'rating',''),(40654,2792,'wine_vertical',''),(40655,2792,'wine_score','96'),(40656,2793,'web_id','1e663fd1-11ab-4d6c-8c40-fd7343b5871e'),(40657,2793,'slug','blancs-de-blancs'),(40658,2793,'title','Blanc de Blancs'),(40659,2793,'type','Wine'),(40660,2793,'image','https://images.commerce7.com/meadowcroft-wines/images/original/nv_blancs-de-blancs-1654548906265.png'),(40661,2793,'teaser',NULL),(40662,2793,'content','<form class=\"ecp-form\"></form>\n<p>Meaning white of whites, our Blanc de Blancs comes from a chardonnay vineyard in the famed Napa Valley. &nbsp; Perfect for any special occasion such as a job promotion, anniversary, holidays, or just making it through Monday.</p>\n<p><strong>TASTING NOTES:</strong> &nbsp;Complex layers of Honeycrisp apple and pear mix with toasted brioche and honeycomb. &nbsp;A creamy and velvety palate shows stone fruits such as ripe nectarine with delicate floral notes finishing with bright acidity. &nbsp;<br role=\"presentation\" data-uw-rm-sr=\"\" /><br role=\"presentation\" data-uw-rm-sr=\"\" /></p>\n<p><strong>FOOD PAIRING:</strong> &nbsp;This wine is a great match for a variety of food pairings from oysters, calamari, shellfish, and fresh green salads. &nbsp;Also a playful match for Asian dishes and salty, deep-fried foods.</p>\n<p><strong>ACCOLADES</strong></p>\n<p><strong>90 pts - </strong>Wine Enthusiast</p>\n<p><strong>90 pts</strong> - Sommelier Company<br role=\"presentation\" data-uw-rm-sr=\"\" />\"Bright, buoyant, and mouth-cleansing, this is a food wine par excellence. It will enhance anything from a light seafood starter to a rich, savory entr&eacute;e.\" -Adam Edmonsond, CSW</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><strong>TECHNICAL INFORMATION</strong></p>\n<p class=\"ecp-section\" data-ecp-handle=\"technical_notes\"><strong>Appellation:</strong> Napa Valley</p>\n<p class=\"ecp-section\" data-ecp-handle=\"technical_notes\"><strong>Varietal:</strong> &nbsp;Chardonnay</p>\n<p class=\"ecp-section\" data-ecp-handle=\"technical_notes\"><strong>Bottle date:</strong> January 2018</p>\n<p class=\"ecp-section\" data-ecp-handle=\"technical_notes\"><strong>Production:</strong> &nbsp;122 cases</p>\n<p class=\"ecp-section\" data-ecp-handle=\"technical_notes\"><strong>Alcohol:</strong> &nbsp;12%</p>\n<p><strong>ACCOLADES</strong></p>\n<p>90 Points | Sommelier Company<br role=\"presentation\" data-uw-rm-sr=\"\" />\"Bright, buoyant, and mouth-cleansing, this is a food wine par excellence. It will enhance anything from a light seafood starter to a rich, savory entr&eacute;e.\" -Adam Edmonsond, CSW</p>\n<p class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><strong><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/NV-Blanc-de-Blanc-Tech-Sheet-Revised2.pdf\" target=\"_blank\" rel=\"noopener\" aria-label=\"Download Complete Wine Tasting Notes - opens in new tab\" data-uw-rm-ext-link=\"\" data-uw-pdf-br=\"1\" data-uw-pdf-doc=\"\">Download Complete Wine Tasting Notes</a></strong></p>\n<div class=\"tatsu-section-pad clearfix\" data-padding=\"{&quot;d&quot;:&quot;90px 0px 90px 0px&quot;}\" data-padding-top=\"90px\" data-uw-styling-context=\"true\">\n<div class=\"tatsu-row-wrap  tatsu-wrap tatsu-row-one-col tatsu-row-has-one-cols tatsu-medium-gutter tatsu-reg-cols  tatsu-clearfix tatsu-HJxPYjzn1q\" data-uw-styling-context=\"true\">\n<div class=\"tatsu-row \" data-uw-styling-context=\"true\">\n<div class=\"tatsu-column  tatsu-bg-overlay tatsu-one-col tatsu-column-image-none tatsu-column-effect-none  tatsu-rJDKoGnJq\" data-parallax-speed=\"0\" data-uw-styling-context=\"true\">\n<div class=\"tatsu-column-inner \" data-uw-styling-context=\"true\">\n<div class=\"tatsu-column-pad-wrap\" data-uw-styling-context=\"true\">\n<div class=\"tatsu-column-pad\" data-uw-styling-context=\"true\">\n<div id=\"\" class=\"tatsu-code tatsu-module tatsu-ByuNCz215   \" data-uw-styling-context=\"true\">\n<p data-uw-styling-context=\"true\">&nbsp;</p>\n</div>\n</div>\n</div>\n<div class=\"tatsu-column-bg-image\" data-uw-styling-context=\"true\">&nbsp;</div>\n<p class=\"tatsu-overlay tatsu-column-overlay tatsu-animate-none\" data-uw-styling-context=\"true\">&nbsp;</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"tatsu-section-background-wrap\" data-uw-styling-context=\"true\">\n<p class=\"tatsu-section-background\" data-uw-styling-context=\"true\">&nbsp;</p>\n</div>'),(40663,2793,'subtitle','Napa Valley'),(40664,2793,'price','4400'),(40665,2793,'web_status','Available'),(40666,2793,'admin_status','Available'),(40667,2793,'varietal','Sparkling'),(40668,2793,'appellation','Napa Valley'),(40669,2793,'vintage',NULL),(40670,2793,'rating',''),(40671,2793,'wine_vertical',''),(40672,2793,'wine_score',''),(40673,2794,'web_id','afae210e-c3c6-43d0-a6db-7c622bf15863'),(40674,2794,'slug','blending-experience-additional-bottle'),(40675,2794,'title','Blending Experience Additional Bottle'),(40676,2794,'type','General Merchandise'),(40677,2794,'image',NULL),(40678,2794,'teaser',NULL),(40679,2794,'content',NULL),(40680,2794,'subtitle',NULL),(40681,2794,'price','6500'),(40682,2794,'web_status','Not Available'),(40683,2794,'admin_status','Available'),(40684,2794,'rating',''),(40685,2794,'wine_vertical',''),(40686,2794,'wine_score',''),(40687,2795,'web_id','333170f3-9793-4bbc-bdc7-201b4292eab6'),(40688,2795,'slug','blending-mini-carafes'),(40689,2795,'title','Blending Mini Carafes'),(40690,2795,'type','General Merchandise'),(40691,2795,'image',NULL),(40692,2795,'teaser',''),(40693,2795,'content',''),(40694,2795,'subtitle',''),(40695,2795,'price','0'),(40696,2795,'web_status','Not Available'),(40697,2795,'admin_status','Available'),(40698,2795,'rating',''),(40699,2795,'wine_vertical',''),(40700,2795,'wine_score',''),(40701,2796,'web_id','fe75b08a-324c-45b9-903d-85e67e41df8d'),(40702,2796,'slug','blending-seminar'),(40703,2796,'title','Blending Seminar'),(40704,2796,'type','General Merchandise'),(40705,2796,'image',NULL),(40706,2796,'teaser',NULL),(40707,2796,'content','<div>We\'ll welcome you with a glass of Blanc de Blancs. Then, we&rsquo;ll dive into tasting our four blending components.&nbsp; These wines have been aged in separate oak barrels.&nbsp; Work like a winemaker and create a classic red Bordeaux style blend of cabernet sauvignon, cabernet franc, and merlot.&nbsp; Blend, bottle, and hand cork a 750ml of your very own Perfect Blend.</div>'),(40708,2796,'subtitle',NULL),(40709,2796,'price','15000'),(40710,2796,'web_status','Not Available'),(40711,2796,'admin_status','Available'),(40712,2796,'meta_data_feature-text','EVENING BLENDING SEMINAR'),(40713,2796,'meta_data_wine-notes','$100.00'),(40714,2796,'rating',''),(40715,2796,'wine_vertical',''),(40716,2796,'wine_score',''),(40731,2798,'web_id','89f08213-d9e9-4d37-8dc7-cadd201fdb64'),(40732,2798,'slug','blind-tasting-experience'),(40733,2798,'title','Blind Tasting Experience'),(40734,2798,'type','Reservation'),(40735,2798,'image','https://images.commerce7.com/meadowcroft-wines/images/original/blindtasting-1661977949111.png'),(40736,2798,'teaser',NULL),(40737,2798,'content','<p>Treat yourself and your guests to a Blind Wine Tasting! Using just your smell and taste, you&rsquo;ll taste four wines and guess their grape variety, region, and price. Our knowledgeable Bee Team with guide your experience and challenge your senses!</p>\n<p>For groups 6 and over, please reach out to us directly at tastingroom@meadowcroftwines.com.</p>\n<p><br />*A credit card is required to make a reservation. You will not be charged until the day of your visit.</p>'),(40738,2798,'subtitle',NULL),(40739,2798,'price','5000'),(40740,2798,'web_status','Available'),(40741,2798,'admin_status','Available'),(40742,2798,'rating',''),(40743,2798,'wine_vertical',''),(40744,2798,'wine_score',''),(40745,2799,'web_id','495785ed-43d7-474b-ade1-fc53581809cb'),(40746,2799,'slug','rose-bundle-2023'),(40747,2799,'title','Bouquet of Rose'),(40748,2799,'type','Bundle'),(40749,2799,'image','https://images.commerce7.com/meadowcroft-wines/images/original/rose-bouquet-c7-1674771564114.jpg'),(40750,2799,'teaser',NULL),(40751,2799,'content','<p>A bouquet of Rose!&nbsp; Celebrate with pink wines and bubbles.&nbsp; Save with this three pack of Ros&eacute; favorites.&nbsp;&nbsp;</p>\n<p><strong>1 bottle each:&nbsp;</strong></p>\n<ul>\n<li>2022 Rivertrace Rose</li>\n<li>2022 Rose of Pinot Noir</li>\n<li>NV Blanc de Noir</li>\n</ul>'),(40752,2799,'subtitle',NULL),(40753,2799,'price','9000'),(40754,2799,'web_status','Retired'),(40755,2799,'admin_status','Not Available'),(40756,2799,'rating',''),(40757,2799,'wine_vertical',''),(40758,2799,'wine_score',''),(40759,2800,'web_id','8c9e48a9-d42d-458d-8a19-b7126c9bbcd6'),(40760,2800,'slug','buy--hold-shipping'),(40761,2800,'title','BUY & HOLD SHIPPING'),(40762,2800,'type','General Merchandise'),(40763,2800,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1116-1660261668853.png'),(40764,2800,'teaser',''),(40765,2800,'content','<p class=\"MsoNormal\">During your shopping</p>'),(40766,2800,'subtitle',''),(40767,2800,'price','1200'),(40768,2800,'web_status','Available'),(40769,2800,'admin_status','Available'),(40770,2800,'meta_data_feature-text','Our Buy &amp; Hold program is a safe shipping solution for extreme heat, for only $12'),(40771,2800,'meta_data_wine-notes','$12.00'),(40772,2800,'rating',''),(40773,2800,'wine_vertical',''),(40774,2800,'wine_score',''),(40775,2801,'web_id','bd03a6ad-2ecc-4f8f-af5b-30067adeca01'),(40776,2801,'slug','meadowcroft-bottle-candle'),(40777,2801,'title','Candles'),(40778,2801,'type','General Merchandise'),(40779,2801,'image',NULL),(40780,2801,'teaser',''),(40781,2801,'content',''),(40782,2801,'subtitle',''),(40783,2801,'price','1200'),(40784,2801,'web_status','Not Available'),(40785,2801,'admin_status','Available'),(40786,2801,'rating',''),(40787,2801,'wine_vertical',''),(40788,2801,'wine_score',''),(40789,2802,'web_id','93a9d5a4-c04f-4031-8739-e4e690689436'),(40790,2802,'slug','cheese-plate'),(40791,2802,'title','Cheese Plate'),(40792,2802,'type','General Merchandise'),(40793,2802,'image',NULL),(40794,2802,'teaser',NULL),(40795,2802,'content',NULL),(40796,2802,'subtitle',NULL),(40797,2802,'price','2500'),(40798,2802,'web_status','Not Available'),(40799,2802,'admin_status','Available'),(40800,2802,'rating',''),(40801,2802,'wine_vertical',''),(40802,2802,'wine_score',''),(40803,2803,'web_id','7088977e-8e8c-4884-b4b7-956afceef9e1'),(40804,2803,'slug','chocolate-cabernet-sauce'),(40805,2803,'title','Chocolate Cabernet Sauce'),(40806,2803,'type','General Merchandise'),(40807,2803,'image','https://images.commerce7.com/meadowcroft-wines/images/original/pxl_20241224_174146319-1735062243044.jpg'),(40808,2803,'teaser',NULL),(40809,2803,'content',NULL),(40810,2803,'subtitle',NULL),(40811,2803,'price','1850'),(40812,2803,'web_status','Not Available'),(40813,2803,'admin_status','Available'),(40814,2803,'rating',''),(40815,2803,'wine_vertical',''),(40816,2803,'wine_score',''),(40817,2804,'web_id','efad5088-65ca-45ee-a509-efcf3310df61'),(40818,2804,'slug','christmas-tree-ornament'),(40819,2804,'title','Christmas Tree Ornament'),(40820,2804,'type','General Merchandise'),(40821,2804,'image',NULL),(40822,2804,'teaser',NULL),(40823,2804,'content',NULL),(40824,2804,'subtitle',NULL),(40825,2804,'price','800'),(40826,2804,'web_status','Not Available'),(40827,2804,'admin_status','Available'),(40828,2804,'rating',''),(40829,2804,'wine_vertical',''),(40830,2804,'wine_score',''),(40831,2805,'web_id','06952957-dd3b-4054-8578-a14bbc07ec9c'),(40832,2805,'slug','club-pick-up-event'),(40833,2805,'title','Club Pick Up Event'),(40834,2805,'type','Reservation'),(40835,2805,'image',NULL),(40836,2805,'teaser',NULL),(40837,2805,'content','<p>Join us as we celebrate the Spring wine membership release with a special flight for members only. &nbsp;&nbsp;</p>\n<p>We kick off this event at 1:00 pm and our last tasting will start at 4:00 p.m. &nbsp;As a member, your pairing is complimentary for up to 2. Bring your friends to this fun event! &nbsp;Please call in advance if the group is larger than 2 people. Additional guests are $30 per person.</p>\n<p>We will have some delicious local BBQ and there will be live music at the Cornerstone Test Kitchen.</p>\n<p>We have your wine release ready for Pick Up at the Tasting Room. &nbsp;</p>\n<p>Please feel free to contact us with any questions via email &nbsp;at clubs@meadowcroftwines.com or phone us at (707) 559-0395.</p>'),(40838,2805,'subtitle',NULL),(40839,2805,'price','0'),(40840,2805,'web_status','Available'),(40841,2805,'admin_status','Available'),(40842,2805,'rating',''),(40843,2805,'wine_vertical',''),(40844,2805,'wine_score',''),(40845,2806,'web_id','8b3659bb-db08-420f-9b20-7dbd6d1c18fb'),(40846,2806,'slug','comp-glass'),(40847,2806,'title','Comp Glass'),(40848,2806,'type','General Merchandise'),(40849,2806,'image',NULL),(40850,2806,'teaser',NULL),(40851,2806,'content','Comp Glass'),(40852,2806,'subtitle',NULL),(40853,2806,'price','0'),(40854,2806,'web_status','Not Available'),(40855,2806,'admin_status','Not Available'),(40856,2806,'rating',''),(40857,2806,'wine_vertical',''),(40858,2806,'wine_score',''),(40859,2807,'web_id','ca76d8a5-67c8-4f9b-bdeb-bfe479fb2477'),(40860,2807,'slug','comp-tasting'),(40861,2807,'title','Comp Tasting'),(40862,2807,'type','Tasting'),(40863,2807,'image','https://images.commerce7.com/meadowcroft-wines/images/original/club-tastiing-1730407630754.jpg'),(40864,2807,'teaser',NULL),(40865,2807,'content','<p>Comp Tasting</p>'),(40866,2807,'subtitle',NULL),(40867,2807,'price','0'),(40868,2807,'web_status','Not Available'),(40869,2807,'admin_status','Available'),(40870,2807,'rating',''),(40871,2807,'wine_vertical',''),(40872,2807,'wine_score',''),(40873,2808,'web_id','bec04709-1fac-4823-9375-fc2918ee1253'),(40874,2808,'slug','meadowcroft-cork-screw'),(40875,2808,'title','Cork Screw'),(40876,2808,'type','General Merchandise'),(40877,2808,'image',NULL),(40878,2808,'teaser',NULL),(40879,2808,'content',NULL),(40880,2808,'subtitle','Wine Key - Meadowcroft Branded'),(40881,2808,'price','700'),(40882,2808,'web_status','Not Available'),(40883,2808,'admin_status','Available'),(40884,2808,'rating',''),(40885,2808,'wine_vertical',''),(40886,2808,'wine_score',''),(40887,2809,'web_id','f3905c35-de44-4ee3-ae87-96388e3be9d2'),(40888,2809,'slug','crackers-nettle-honey'),(40889,2809,'title','Crackers- Nettle & Honey'),(40890,2809,'type','General Merchandise'),(40891,2809,'image',NULL),(40892,2809,'teaser',NULL),(40893,2809,'content',NULL),(40894,2809,'subtitle',NULL),(40895,2809,'price','800'),(40896,2809,'web_status','Not Available'),(40897,2809,'admin_status','Available'),(40898,2809,'rating',''),(40899,2809,'wine_vertical',''),(40900,2809,'wine_score',''),(40901,2810,'web_id','3970c76f-5077-48d2-ba15-fc3435714f4a'),(40902,2810,'slug','flatbreads-rosemary-olive-oil-'),(40903,2810,'title','Crackers, Flatbreads- Rosemary & Olive oil'),(40904,2810,'type','General Merchandise'),(40905,2810,'image','https://images.commerce7.com/meadowcroft-wines/images/original/621bbd26d57c56290553869508b7cf5ddf8eaeed04a62ccaee4b248f38820c47-1729283571489.webp'),(40906,2810,'teaser',NULL),(40907,2810,'content',NULL),(40908,2810,'subtitle',NULL),(40909,2810,'price','700'),(40910,2810,'web_status','Not Available'),(40911,2810,'admin_status','Available'),(40912,2810,'vendor','Faire - Rustic Bakery'),(40913,2810,'rating',''),(40914,2810,'wine_vertical',''),(40915,2810,'wine_score',''),(40916,2811,'web_id','b464309d-dac9-44d9-ba81-07ae9f383c40'),(40917,2811,'slug','credit-card-processing-fee'),(40918,2811,'title','Credit Card Processing Fee'),(40919,2811,'type','General Merchandise'),(40920,2811,'image',NULL),(40921,2811,'teaser',''),(40922,2811,'content',''),(40923,2811,'subtitle',''),(40924,2811,'price','0'),(40925,2811,'web_status','Not Available'),(40926,2811,'admin_status','Not Available'),(40927,2811,'rating',''),(40928,2811,'wine_vertical',''),(40929,2811,'wine_score',''),(40930,2812,'web_id','66eac157-04f5-471d-999a-b96d852b1b4c'),(40931,2812,'slug','cutting-board-knife-set'),(40932,2812,'title','Cutting Board & Knife Set'),(40933,2812,'type','General Merchandise'),(40934,2812,'image',NULL),(40935,2812,'teaser',NULL),(40936,2812,'content',NULL),(40937,2812,'subtitle',NULL),(40938,2812,'price','2500'),(40939,2812,'web_status','Not Available'),(40940,2812,'admin_status','Available'),(40941,2812,'vendor','Faire- Fackelmann'),(40942,2812,'rating',''),(40943,2812,'wine_vertical',''),(40944,2812,'wine_score',''),(40945,2813,'web_id','36d5f6c5-c5da-430c-b3ab-23c69e889eab'),(40946,2813,'slug','double-bottle-box'),(40947,2813,'title','Double Bottle Box'),(40948,2813,'type','General Merchandise'),(40949,2813,'image',NULL),(40950,2813,'teaser',NULL),(40951,2813,'content','Double Bottle Box'),(40952,2813,'subtitle',NULL),(40953,2813,'price','2000'),(40954,2813,'web_status','Not Available'),(40955,2813,'admin_status','Not Available'),(40956,2813,'rating',''),(40957,2813,'wine_vertical',''),(40958,2813,'wine_score',''),(40959,2814,'web_id','efe425a4-ea43-4687-ab4e-1f92b90f00b3'),(40960,2814,'slug','double-btl-box-_black'),(40961,2814,'title','Double Btl Box _Black'),(40962,2814,'type','General Merchandise'),(40963,2814,'image',NULL),(40964,2814,'teaser',''),(40965,2814,'content',''),(40966,2814,'subtitle',''),(40967,2814,'price','1000'),(40968,2814,'web_status','Not Available'),(40969,2814,'admin_status','Available'),(40970,2814,'rating',''),(40971,2814,'wine_vertical',''),(40972,2814,'wine_score',''),(40973,2815,'web_id','8d998af2-05c5-4379-9bd5-41d47007e6e0'),(40974,2815,'slug','early-membership-termination-fee'),(40975,2815,'title','Early Membership Termination Fee'),(40976,2815,'type','General Merchandise'),(40977,2815,'image',NULL),(40978,2815,'teaser',NULL),(40979,2815,'content',''),(40980,2815,'subtitle',NULL),(40981,2815,'price','0'),(40982,2815,'web_status','Not Available'),(40983,2815,'admin_status','Available'),(40984,2815,'rating',''),(40985,2815,'wine_vertical',''),(40986,2815,'wine_score',''),(40987,2816,'web_id','51f9ceb2-6588-4f18-9c82-1af83fc672c2'),(40988,2816,'slug','event-food'),(40989,2816,'title','Event Food'),(40990,2816,'type','General Merchandise'),(40991,2816,'image',NULL),(40992,2816,'teaser',NULL),(40993,2816,'content',NULL),(40994,2816,'subtitle',NULL),(40995,2816,'price','500'),(40996,2816,'web_status','Not Available'),(40997,2816,'admin_status','Available'),(40998,2816,'rating',''),(40999,2816,'wine_vertical',''),(41000,2816,'wine_score',''),(41001,2817,'web_id','03875afb-b603-4de2-b60f-615a10ae932b'),(41002,2817,'slug','event-rental'),(41003,2817,'title','Event Rental'),(41004,2817,'type','General Merchandise'),(41005,2817,'image',NULL),(41006,2817,'teaser',''),(41007,2817,'content','<p>Event Rental</p>'),(41008,2817,'subtitle',''),(41009,2817,'price','100'),(41010,2817,'web_status','Not Available'),(41011,2817,'admin_status','Available'),(41012,2817,'rating',''),(41013,2817,'wine_vertical',''),(41014,2817,'wine_score',''),(41015,2818,'web_id','f5f4f298-963b-421f-a135-d301a91cae27'),(41016,2818,'slug','fall-2022-pickup-party'),(41017,2818,'title','Fall 2022 Pickup Party'),(41018,2818,'type','Event Ticket'),(41019,2818,'image',NULL),(41020,2818,'teaser',''),(41021,2818,'content',''),(41022,2818,'subtitle',''),(41023,2818,'price','0'),(41024,2818,'web_status','Retired'),(41025,2818,'admin_status','Not Available'),(41026,2818,'rating',''),(41027,2818,'wine_vertical',''),(41028,2818,'wine_score',''),(41029,2819,'web_id','d71bd4c9-14b0-471b-8778-f6c0bfe4d7e3'),(41030,2819,'slug','father-s-day-zinfandel-special'),(41031,2819,'title','Father\'s Day Zinfandel Special'),(41032,2819,'type','Bundle'),(41033,2819,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_838-1660261150590-1660862382416.png'),(41034,2819,'teaser',NULL),(41035,2819,'content','<p>Delight dad with six bottles of this limited production zinfandel from the Wyldvin Vineyard situated in the famous Dry Creek Valley of Sonoma County.</p>'),(41036,2819,'subtitle',NULL),(41037,2819,'price','15000'),(41038,2819,'web_status','Retired'),(41039,2819,'admin_status','Not Available'),(41040,2819,'rating',''),(41041,2819,'wine_vertical',''),(41042,2819,'wine_score',''),(41043,2820,'web_id','92713039-6530-44f7-8171-ed9a0e20af64'),(41044,2820,'slug','flat-rate-shipping'),(41045,2820,'title','Flat Rate Shipping'),(41046,2820,'type','Wine'),(41047,2820,'image',NULL),(41048,2820,'teaser',NULL),(41049,2820,'content','<p>Flat Rate Shipping per case</p>'),(41050,2820,'subtitle','Blending Bottle'),(41051,2820,'price','2500'),(41052,2820,'web_status','Not Available'),(41053,2820,'admin_status','Available'),(41054,2820,'rating',''),(41055,2820,'wine_vertical',''),(41056,2820,'wine_score',''),(41057,2821,'web_id','9ea15516-5a02-4cb3-b4b5-b00210394e1b'),(41058,2821,'slug','meadowcroft-foil-remover'),(41059,2821,'title','Foil Remover'),(41060,2821,'type','General Merchandise'),(41061,2821,'image',NULL),(41062,2821,'teaser',''),(41063,2821,'content','Meadowcroft Foil Remover'),(41064,2821,'subtitle',''),(41065,2821,'price','350'),(41066,2821,'web_status','Not Available'),(41067,2821,'admin_status','Available'),(41068,2821,'rating',''),(41069,2821,'wine_vertical',''),(41070,2821,'wine_score',''),(41071,2822,'web_id','44fd25a4-03ca-40f8-b344-d56ed84beb0f'),(41072,2822,'slug','for-the-collector-wood-box-spring-mt-cabernet-gift-set'),(41073,2822,'title','For the Collector Wood Box & Spring Mt. Cabernet Gift Set'),(41074,2822,'type','Bundle'),(41075,2822,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1198-1660865828848.png'),(41076,2822,'teaser',NULL),(41077,2822,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">Impress and delight with this pairing of our 2006 Mt. Veeder Cabernet and a collectible Meadowcroft wood box. This is a library offering with limited availability.&nbsp;<br />\n<div><br />At check out, let our shipping department know if this is a gift in the Comments Section.&nbsp; We can include a special message for your recipient.&nbsp; Give us a call with any questions or for more details&nbsp; (707) 934-4090.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"review_notes\">\n<h3>AWARDS AND REVIEWS</h3>\n<div class=\"ecp-html-content\">\n<div>AWARDS AND REVIEWS</div>\n<div>93 pts |&nbsp; Sommelier Company |&nbsp; 2016 Mt Veeder Cabernet Sauvignon</div>\n</div>\n</div>'),(41078,2822,'subtitle',NULL),(41079,2822,'price','16500'),(41080,2822,'web_status','Retired'),(41081,2822,'admin_status','Not Available'),(41082,2822,'rating',''),(41083,2822,'wine_vertical',''),(41084,2822,'wine_score',''),(41085,2823,'web_id','4f6cb192-57d7-4453-9cd7-c485c6757d6a'),(41086,2823,'slug','friday-noir--black-box-pinot-noir'),(41087,2823,'title','Friday Noir | Black Box Pinot Noir'),(41088,2823,'type','General Merchandise'),(41089,2823,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_880-1660261153804.png'),(41090,2823,'teaser',NULL),(41091,2823,'content','<div>We\'ve filled these gorgeous black boxes with six of our current release Pinot Noirs.&nbsp; Perfect for gifting or displaying in your wine cellar.&nbsp; Each black box includes:<br></div><div><br></div><div><ul><li>2015 Russian River Pinot Noir - 1 bottle<br></li><li>2015 Napa Carneros Pinot Noir - 1 bottle<br></li><li>2015 Anderson Valley Pinot Noir - 1 bottle&nbsp;<br></li><li>2016 Santa Lucia Pinot Noir - 1 bottle<br></li><li>2015 Sonoma Coast Pinot Noir - 2 bottles<br></li></ul><span style=\"font-weight: bold;\"\"><span style=\"\"text-decoration-line: line-through;\"\">RETAIL:&nbsp; $228</span>&nbsp; &nbsp;NOIR FRIDAY:&nbsp; $136</span></div><div><br></div><div>Want complimentary shipping?&nbsp; &nbsp;</div><div><span style=\"\"font-style: italic;\"\">Add any Meadowcorft Holiday Gift Pack or large format bottle to your order and we\'ll give you complimentary shipping.&nbsp; Use Redemption Code GIVEGIFTS.</span></div>\"'),(41092,2823,'subtitle',NULL),(41093,2823,'price','13600'),(41094,2823,'web_status','Not Available'),(41095,2823,'admin_status','Not Available'),(41096,2823,'meta_data_feature-text','TODAY ONLY'),(41097,2823,'meta_data_wine-notes','$136.00'),(41098,2823,'rating',''),(41099,2823,'wine_vertical',''),(41100,2823,'wine_score',''),(41101,2824,'web_id','2d3624d2-939f-4022-893d-a49bd68c7551'),(41102,2824,'slug','friday-noir-black-box-pinot-noir-2021'),(41103,2824,'title','Friday Noir | Black Box Pinot Noir 2021'),(41104,2824,'type','Bundle'),(41105,2824,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1063-1660857208261.png'),(41106,2824,'teaser','$76 dollar savings  |  LIMITED INVENTORY!'),(41107,2824,'content','<div>We\'ve filled these gorgeous black boxes with six of our current release Pinot Noirs.&nbsp; Perfect for gifting or displaying in your wine cellar.&nbsp; Each black box includes:</div>\n<div><br />\n<ul>\n<li>Meadowcroft Cornerstone Carneros Pinot Noir - 3 bottles</li>\n<li>Meadowcroft Sonoma Coast Pinot - 3 bottles&nbsp;</li>\n</ul>\nRETAIL:&nbsp; $252&nbsp; &nbsp;NOIR FRIDAY:&nbsp; $176</div>\n<div>&nbsp;</div>\n<div>Want complimentary shipping?&nbsp; &nbsp;</div>\n<div>Add any&nbsp;<a title=\"Meadowcroft Holiday Gifts\" href=\"https://shop.meadowcroftwines.com/store/index.cfm?fuseaction=view&amp;category_ID=40\" target=\"_blank\" rel=\"noopener\">Meadowcorft Holiday Gift Pack or large format bottle</a>&nbsp;to your order and we\'ll give you complimentary shipping.&nbsp; Use Redemption Code GIVEGIFTS.</div>\n<div>&nbsp;</div>\n<div>**Offer is valid through midnight PST, Monday, November 29th, 2021.&nbsp; No additional discounts may be applied.&nbsp; &nbsp;Club members receive their special flat rate shipping of $20 (within the continental US) on shipping orders unless they qualify for complimentary shipping with GIVEGIFTS redemption code.&nbsp; Wines will ship the week of November 29th.&nbsp; Delays may occur if there are extreme weather conditions.&nbsp; There will be an additional charge of $30-$50&nbsp; per shipment for overnight delivery.&nbsp;&nbsp;</div>'),(41108,2824,'subtitle',NULL),(41109,2824,'price','17600'),(41110,2824,'web_status','Retired'),(41111,2824,'admin_status','Not Available'),(41112,2824,'rating',''),(41113,2824,'wine_vertical',''),(41114,2824,'wine_score',''),(41115,2825,'web_id','120f85a7-9a83-4163-9d12-bf7ef760b276'),(41116,2825,'slug','gathering-table-book'),(41117,2825,'title','Gathering Table Book'),(41118,2825,'type','General Merchandise'),(41119,2825,'image',NULL),(41120,2825,'teaser',NULL),(41121,2825,'content',NULL),(41122,2825,'subtitle',NULL),(41123,2825,'price','2500'),(41124,2825,'web_status','Not Available'),(41125,2825,'admin_status','Not Available'),(41126,2825,'rating',''),(41127,2825,'wine_vertical',''),(41128,2825,'wine_score',''),(41129,2826,'web_id','6db322f3-cf9e-4cc1-83d9-585b7cb9bf8e'),(41130,2826,'slug','gift-card-electronic'),(41131,2826,'title','Gift Card - Electronic'),(41132,2826,'type','Gift Card'),(41133,2826,'image','https://images.commerce7.com/meadowcroft-wines/images/original/gift-card-web-1681756996319.jpg'),(41134,2826,'teaser',''),(41135,2826,'content','<p>Are you on the hunt for the perfect gift for your wine-loving friend? Look no further than Meadowcroft Wines\' electronic gift cards! Say goodbye to the stress of guessing which bottle your loved one will enjoy and give them the freedom to choose for themselves. They can redeem their gift card online or in-person at our tasting room. Plus, this gift is only for the adults - recipients must be 21 or over to indulge. Cheers to hassle-free gift giving!</p>'),(41136,2826,'subtitle',''),(41137,2826,'price','5000'),(41138,2826,'web_status','Available'),(41139,2826,'admin_status','Available'),(41140,2826,'vendor','Meadowcroft Wines'),(41141,2826,'rating',''),(41142,2826,'wine_vertical',''),(41143,2826,'wine_score',''),(41144,2827,'web_id','bc938c1f-89d2-437f-acec-19a8ec451513'),(41145,2827,'slug','gift-pack-sauv-blanc-and-anniversary-cuvee'),(41146,2827,'title','Gift Pack Sauv Blanc and Anniversary Cuvee'),(41147,2827,'type','General Merchandise'),(41148,2827,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_879-1660261152846.png'),(41149,2827,'teaser',NULL),(41150,2827,'content','These two wines are the perfect complement for the holiday table.&nbsp; Vibrant and refreshing, the Russian River Valley Sauvignon Blanc is always a favorite.&nbsp; The classic Bordeaux style blend of the Anniversary Cuvée showcases the best of Napa Valley.&nbsp;<br><div><br></div><div>At check out, let our shipping department know if this is a gift in the Comments Section.&nbsp; We can include a special message for your recipient. Give us a call with any questions or for more details (707) 934-4090.</div>'),(41151,2827,'subtitle',NULL),(41152,2827,'price','7500'),(41153,2827,'web_status','Not Available'),(41154,2827,'admin_status','Not Available'),(41155,2827,'meta_data_feature-text','Holiday Gift'),(41156,2827,'meta_data_wine-notes','$60.00'),(41157,2827,'rating',''),(41158,2827,'wine_vertical',''),(41159,2827,'wine_score',''),(41160,2828,'web_id','d84eafcf-03bc-46bf-b156-b8126cfca8fe'),(41161,2828,'slug','gift-set-of-two-stemmed-logoed-wine-glasses'),(41162,2828,'title','Gift Set of Two Stemmed Logo Wine Glasses'),(41163,2828,'type','General Merchandise'),(41164,2828,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_882-1660261154950.png'),(41165,2828,'teaser',''),(41166,2828,'content','<span style=\"font-weight: bold;\"\">FOR ENTERTAINING:&nbsp;</span> Featuring a long stem and large'),(41167,2828,'subtitle',''),(41168,2828,'price','2800'),(41169,2828,'web_status','Available'),(41170,2828,'admin_status','Available'),(41171,2828,'meta_data_feature-text','Set of 2'),(41172,2828,'meta_data_wine-notes','$22.40'),(41173,2828,'rating',''),(41174,2828,'wine_vertical',''),(41175,2828,'wine_score',''),(41176,2829,'web_id','390cd9a2-3323-44fe-9c0d-38c87c0c5b1a'),(41177,2829,'slug','glass-bottles-for-blending_-bordeaux'),(41178,2829,'title','Glass Bottles for Blending_ Bordeaux'),(41179,2829,'type','General Merchandise'),(41180,2829,'image',NULL),(41181,2829,'teaser',''),(41182,2829,'content',''),(41183,2829,'subtitle',''),(41184,2829,'price','500'),(41185,2829,'web_status','Not Available'),(41186,2829,'admin_status','Available'),(41187,2829,'rating',''),(41188,2829,'wine_vertical',''),(41189,2829,'wine_score',''),(41190,2830,'web_id','02e6ae8b-f035-4f8a-8739-150f5d589ee0'),(41191,2830,'slug','15-glass-meadowcroft-mt--veeder'),(41192,2830,'title','Glass Meadowcroft Mt. Veeder'),(41193,2830,'type','Wine'),(41194,2830,'image',NULL),(41195,2830,'teaser',''),(41196,2830,'content',''),(41197,2830,'subtitle',''),(41198,2830,'price','2000'),(41199,2830,'web_status','Not Available'),(41200,2830,'admin_status','Available'),(41201,2830,'varietal',NULL),(41202,2830,'appellation',NULL),(41203,2830,'vintage',NULL),(41204,2830,'rating',''),(41205,2830,'wine_vertical',''),(41206,2830,'wine_score',''),(41207,2831,'web_id','372c9bcd-9dfd-46b0-9685-7ec71dc20f97'),(41208,2831,'slug','12-glass-of-red'),(41209,2831,'title','Glass of Red'),(41210,2831,'type','Wine'),(41211,2831,'image',NULL),(41212,2831,'teaser',''),(41213,2831,'content',''),(41214,2831,'subtitle',''),(41215,2831,'price','1200'),(41216,2831,'web_status','Not Available'),(41217,2831,'admin_status','Available'),(41218,2831,'varietal',NULL),(41219,2831,'appellation',NULL),(41220,2831,'vintage',NULL),(41221,2831,'rating',''),(41222,2831,'wine_vertical',''),(41223,2831,'wine_score',''),(41224,2832,'web_id','eabefcf1-8e31-4b3c-bb98-04c36a83510d'),(41225,2832,'slug','gratuity'),(41226,2832,'title','Gratuity'),(41227,2832,'type','General Merchandise'),(41228,2832,'image',NULL),(41229,2832,'teaser',''),(41230,2832,'content',''),(41231,2832,'subtitle',''),(41232,2832,'price','0'),(41233,2832,'web_status','Not Available'),(41234,2832,'admin_status','Available'),(41235,2832,'rating',''),(41236,2832,'wine_vertical',''),(41237,2832,'wine_score',''),(41238,2833,'web_id','e584e5e9-6beb-45be-b2ee-f3b3e7a313ec'),(41239,2833,'slug','harmonica'),(41240,2833,'title','Harmonica'),(41241,2833,'type','General Merchandise'),(41242,2833,'image',NULL),(41243,2833,'teaser',''),(41244,2833,'content','HARMONICA'),(41245,2833,'subtitle',''),(41246,2833,'price','2000'),(41247,2833,'web_status','Not Available'),(41248,2833,'admin_status','Available'),(41249,2833,'rating',''),(41250,2833,'wine_vertical',''),(41251,2833,'wine_score',''),(41252,2834,'web_id','e0cf3b88-fa11-4cc4-9d40-7abd8e709ca1'),(41253,2834,'slug','holiday-cocktail-glass'),(41254,2834,'title','Holiday Cocktail Glass'),(41255,2834,'type','General Merchandise'),(41256,2834,'image',NULL),(41257,2834,'teaser',''),(41258,2834,'content',''),(41259,2834,'subtitle',''),(41260,2834,'price','1800'),(41261,2834,'web_status','Not Available'),(41262,2834,'admin_status','Available'),(41263,2834,'rating',''),(41264,2834,'wine_vertical',''),(41265,2834,'wine_score',''),(41266,2835,'web_id','b7c6f5ad-abb3-4e60-87ee-9faa807bed58'),(41267,2835,'slug','holiday-spice-gift-set'),(41268,2835,'title','Holiday Spice Gift Set'),(41269,2835,'type','General Merchandise'),(41270,2835,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1200-1660261097182.png'),(41271,2835,'teaser',NULL),(41272,2835,'content','<div><div>Indulgent locally sourced spices from Sonoma Spice Girl are the perfect complement to our 2018 Louvau Zinfandel . Includes two-bottle black box shown and our own mulled wine recipe and Zinfandael BBQ Pairing recipe.&nbsp;&nbsp;</div></div><div><br></div><div>At check out, let our shipping department know if this is a gift in the Comments Section.&nbsp; We can include a special message for your recipient. Give us a call with any questions or for more details (707) 934-4090.</div>'),(41273,2835,'subtitle',NULL),(41274,2835,'price','5000'),(41275,2835,'web_status','Not Available'),(41276,2835,'admin_status','Available'),(41277,2835,'meta_data_feature-text','<div>Holiday Gift</div><div><br></div>'),(41278,2835,'meta_data_wine-notes','$47.95'),(41279,2835,'rating',''),(41280,2835,'wine_vertical',''),(41281,2835,'wine_score',''),(41282,2836,'web_id','f8584d97-7ca0-47c4-b3c8-aebcf7796ec8'),(41283,2836,'slug','meadowcroft-honey'),(41284,2836,'title','Honey'),(41285,2836,'type','General Merchandise'),(41286,2836,'image',NULL),(41287,2836,'teaser',''),(41288,2836,'content',''),(41289,2836,'subtitle',''),(41290,2836,'price','600'),(41291,2836,'web_status','Not Available'),(41292,2836,'admin_status','Available'),(41293,2836,'rating',''),(41294,2836,'wine_vertical',''),(41295,2836,'wine_score',''),(41296,2837,'web_id','cb768442-da4f-4129-9af0-471c10dda8ba'),(41297,2837,'slug','pullover---microfleece-duplicate'),(41298,2837,'title','Jacket - ladies fleece'),(41299,2837,'type','General Merchandise'),(41300,2837,'image',NULL),(41301,2837,'teaser',NULL),(41302,2837,'content',NULL),(41303,2837,'subtitle',NULL),(41304,2837,'price','8500'),(41305,2837,'web_status','Not Available'),(41306,2837,'admin_status','Available'),(41307,2837,'vendor','707 Embroidery Zone'),(41308,2837,'rating',''),(41309,2837,'wine_vertical',''),(41310,2837,'wine_score',''),(41311,2838,'web_id','d7c7d3a9-193e-409b-a87c-8b4bc9ae2f91'),(41312,2838,'slug','jacket-soft-shell'),(41313,2838,'title','Jacket - soft shell'),(41314,2838,'type','General Merchandise'),(41315,2838,'image',NULL),(41316,2838,'teaser',NULL),(41317,2838,'content',NULL),(41318,2838,'subtitle',NULL),(41319,2838,'price','10500'),(41320,2838,'web_status','Not Available'),(41321,2838,'admin_status','Available'),(41322,2838,'vendor','707 Embroidery Zone'),(41323,2838,'rating',''),(41324,2838,'wine_vertical',''),(41325,2838,'wine_score',''),(41326,2839,'web_id','7cc81e8b-db24-4394-9f1a-c2ab675081ec'),(41327,2839,'slug','meadowcroft-key-to-the-wine-cellar-'),(41328,2839,'title','Key to the Wine Cellar Keychain'),(41329,2839,'type','General Merchandise'),(41330,2839,'image',NULL),(41331,2839,'teaser',NULL),(41332,2839,'content',NULL),(41333,2839,'subtitle',NULL),(41334,2839,'price','900'),(41335,2839,'web_status','Not Available'),(41336,2839,'admin_status','Available'),(41337,2839,'rating',''),(41338,2839,'wine_vertical',''),(41339,2839,'wine_score',''),(41340,2840,'web_id','257f5e55-995e-4b11-ad3a-b254c1dd9ce8'),(41341,2840,'slug','ladies-golf-shirt'),(41342,2840,'title','Ladies Golf Shirt'),(41343,2840,'type','General Merchandise'),(41344,2840,'image',NULL),(41345,2840,'teaser',''),(41346,2840,'content',''),(41347,2840,'subtitle',''),(41348,2840,'price','4000'),(41349,2840,'web_status','Available'),(41350,2840,'admin_status','Not Available'),(41351,2840,'rating',''),(41352,2840,'wine_vertical',''),(41353,2840,'wine_score',''),(41354,2841,'web_id','b9f8f843-d51e-4dd7-8c3f-91960fb6ca97'),(41355,2841,'slug','limited-edition-sparkling-and-2006-veeder-gift-set'),(41356,2841,'title','Limited Edition Sparkling and 2006 Veeder Gift Set'),(41357,2841,'type','General Merchandise'),(41358,2841,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1068-1660261062564.png'),(41359,2841,'teaser',NULL),(41360,2841,'content','This wine duo brings your holiday celebration full circle.&nbsp; Start off with the Napa Valley Blanc de Blancs, and then round out the evening with a library wine, our 2006 Mount Veeder Napa Valley Cabernet Sauvignon.&nbsp; This limited edition offer is available for a short time only. Wine Club Exclusive. <br><div><br>At check out, let our shipping department know if this is a gift in the Comments Section.&nbsp; We can include a special message for your recipient.&nbsp; Give us a call with any questions or for more details&nbsp; (707) 934-4090.</div>'),(41361,2841,'subtitle',NULL),(41362,2841,'price','14800'),(41363,2841,'web_status','Not Available'),(41364,2841,'admin_status','Not Available'),(41365,2841,'meta_data_review-text','<div><span style=\"font-weight: bold;\"\">AWARDS AND REVIEWS</span></div><div>90 pts |&nbsp; Sommelier Company | Blanc De Blancs</div><div><div>98 pts GOLD |&nbsp; Sunset Wine Competition&nbsp; |&nbsp; 2016 Mt Veeder Cabernet Sauvignon<div style=\"\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 16px; vertical-align: baseline; background: rgb(245, 245, 245); color: rgb(136, 136, 136); font-family: \"\" crimson=\"\"\"\" text\"\",=\"\"\"\" \"\"open=\"\"\"\" sans\"\",=\"\"\"\" arial,=\"\"\"\" sans-serif;=\"\"\"\" font-style:=\"\"\"\" normal;=\"\"\"\" font-variant-ligatures:=\"\"\"\" font-variant-caps:=\"\"\"\" font-weight:=\"\"\"\" 400;=\"\"\"\" letter-spacing:=\"\"\"\" orphans:=\"\"\"\" 2;=\"\"\"\" text-align:=\"\"\"\" start;=\"\"\"\" text-indent:=\"\"\"\" 0px;=\"\"\"\" text-transform:=\"\"\"\" none;=\"\"\"\" white-space:=\"\"\"\" widows:=\"\"\"\" word-spacing:=\"\"\"\" -webkit-text-stroke-width:=\"\"\"\" text-decoration-thickness:=\"\"\"\" initial;=\"\"\"\" text-decoration-style:=\"\"\"\" text-decoration-color:=\"\"\"\" initial;\"\"=\"\"\"\">94 pts |&nbsp; Wine Enthusiast&nbsp; |&nbsp; 2005 Mt Veeder Cabernet Sauvignon</div><div style=\"\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 16px; vertical-align: baseline; background: rgb(245, 245, 245); color: rgb(136, 136, 136); font-family: \"\" crimson=\"\"\"\" text\"\",=\"\"\"\" \"\"open=\"\"\"\" sans\"\",=\"\"\"\" arial,=\"\"\"\" sans-serif;=\"\"\"\" font-style:=\"\"\"\" normal;=\"\"\"\" font-variant-ligatures:=\"\"\"\" font-variant-caps:=\"\"\"\" font-weight:=\"\"\"\" 400;=\"\"\"\" letter-spacing:=\"\"\"\" orphans:=\"\"\"\" 2;=\"\"\"\" text-align:=\"\"\"\" start;=\"\"\"\" text-indent:=\"\"\"\" 0px;=\"\"\"\" text-transform:=\"\"\"\" none;=\"\"\"\" white-space:=\"\"\"\" widows:=\"\"\"\" word-spacing:=\"\"\"\" -webkit-text-stroke-width:=\"\"\"\" text-decoration-thickness:=\"\"\"\" initial;=\"\"\"\" text-decoration-style:=\"\"\"\" text-decoration-color:=\"\"\"\" initial;\"\"=\"\"\"\">91 pts |&nbsp; Wine Enthusiast&nbsp; |&nbsp; 2008 Mt Veeder Cabernet Sauvignon</div><div style=\"\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 16px; vertical-align: baseline; background: rgb(245, 245, 245); color: rgb(136, 136, 136); font-family: \"\" crimson=\"\"\"\" text\"\",=\"\"\"\" \"\"open=\"\"\"\" sans\"\",=\"\"\"\" arial,=\"\"\"\" sans-serif;=\"\"\"\" font-style:=\"\"\"\" normal;=\"\"\"\" font-variant-ligatures:=\"\"\"\" font-variant-caps:=\"\"\"\" font-weight:=\"\"\"\" 400;=\"\"\"\" letter-spacing:=\"\"\"\" orphans:=\"\"\"\" 2;=\"\"\"\" text-align:=\"\"\"\" start;=\"\"\"\" text-indent:=\"\"\"\" 0px;=\"\"\"\" text-transform:=\"\"\"\" none;=\"\"\"\" white-space:=\"\"\"\" widows:=\"\"\"\" word-spacing:=\"\"\"\" -webkit-text-stroke-width:=\"\"\"\" text-decoration-thickness:=\"\"\"\" initial;=\"\"\"\" text-decoration-style:=\"\"\"\" text-decoration-color:=\"\"\"\" initial;\"\"=\"\"\"\">91 pts |&nbsp; James Suckling&nbsp; |&nbsp; 2013 Mt Veeder Cabernet Sauvignon</div><div style=\"\"box-sizing: border-box; margin-top: 0px; margin-right: 0px; margin-bottom: 1rem !important; margin-left: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 16px; vertical-align: baseline; background: rgb(245, 245, 245); color: rgb(136, 136, 136); font-family: \"\" crimson=\"\"\"\" text\"\",=\"\"\"\" \"\"open=\"\"\"\" sans\"\",=\"\"\"\" arial,=\"\"\"\" sans-serif;=\"\"\"\" font-style:=\"\"\"\" normal;=\"\"\"\" font-variant-ligatures:=\"\"\"\" font-variant-caps:=\"\"\"\" font-weight:=\"\"\"\" 400;=\"\"\"\" letter-spacing:=\"\"\"\" orphans:=\"\"\"\" 2;=\"\"\"\" text-align:=\"\"\"\" start;=\"\"\"\" text-indent:=\"\"\"\" 0px;=\"\"\"\" text-transform:=\"\"\"\" none;=\"\"\"\" white-space:=\"\"\"\" widows:=\"\"\"\" word-spacing:=\"\"\"\" -webkit-text-stroke-width:=\"\"\"\" text-decoration-thickness:=\"\"\"\" initial;=\"\"\"\" text-decoration-style:=\"\"\"\" text-decoration-color:=\"\"\"\" initial;\"\"=\"\"\"\">93 pts |&nbsp; Sommelier Company |&nbsp; 2016 Mt Veeder Cabernet Sauvignon</div><span style=\"\"font-style: italic;\"\"></span></div></div>\"'),(41366,2841,'meta_data_feature-text','Limited Edition Library Offering<br>'),(41367,2841,'meta_data_wine-notes','$104.00'),(41368,2841,'rating',''),(41369,2841,'wine_vertical',''),(41370,2841,'wine_score',''),(41371,2842,'web_id','292952a0-9095-4640-994b-b771df2070f3'),(41372,2842,'slug','market-tote-washable-paper'),(41373,2842,'title','Market Tote - washable paper'),(41374,2842,'type','General Merchandise'),(41375,2842,'image',NULL),(41376,2842,'teaser',NULL),(41377,2842,'content',NULL),(41378,2842,'subtitle',NULL),(41379,2842,'price','4500'),(41380,2842,'web_status','Not Available'),(41381,2842,'admin_status','Available'),(41382,2842,'vendor','Faire- Perennity'),(41383,2842,'rating',''),(41384,2842,'wine_vertical',''),(41385,2842,'wine_score',''),(41386,2843,'web_id','aef0e17b-bf0b-4f92-9e6a-c83462858383'),(41387,2843,'slug','mc-bee-socks'),(41388,2843,'title','MC Bee Socks'),(41389,2843,'type','General Merchandise'),(41390,2843,'image',NULL),(41391,2843,'teaser',''),(41392,2843,'content',''),(41393,2843,'subtitle',''),(41394,2843,'price','1000'),(41395,2843,'web_status','Not Available'),(41396,2843,'admin_status','Available'),(41397,2843,'rating',''),(41398,2843,'wine_vertical',''),(41399,2843,'wine_score',''),(41400,2844,'web_id','3d90830a-a4e5-47d5-aeff-626c06046068'),(41401,2844,'slug','meadowcroft-logo-beanie'),(41402,2844,'title','MC Logo Beanie'),(41403,2844,'type','General Merchandise'),(41404,2844,'image',NULL),(41405,2844,'teaser',''),(41406,2844,'content',''),(41407,2844,'subtitle',''),(41408,2844,'price','2000'),(41409,2844,'web_status','Not Available'),(41410,2844,'admin_status','Available'),(41411,2844,'rating',''),(41412,2844,'wine_vertical',''),(41413,2844,'wine_score',''),(41414,2845,'web_id','4f298ae2-11b6-45cb-8472-5c17316d8ecf'),(41415,2845,'slug','logo-cap'),(41416,2845,'title','MC Logo Hat'),(41417,2845,'type','General Merchandise'),(41418,2845,'image',NULL),(41419,2845,'teaser',''),(41420,2845,'content','<p>LOGO CAP</p>'),(41421,2845,'subtitle',''),(41422,2845,'price','3000'),(41423,2845,'web_status','Not Available'),(41424,2845,'admin_status','Available'),(41425,2845,'rating',''),(41426,2845,'wine_vertical',''),(41427,2845,'wine_score',''),(41428,2846,'web_id','2f95a4e7-400c-40bd-a91d-7d755a959460'),(41429,2846,'slug','meadowcroft-2-bottle-gift-box'),(41430,2846,'title','Meadowcroft  2 Bottle Gift Box'),(41431,2846,'type','Bundle'),(41432,2846,'image','https://images.commerce7.com/meadowcroft-wines/images/original/savor-web-cart-1667854281599.jpg'),(41433,2846,'teaser','A two bottle gift box packaged in a handsome black gift box.  One bottle of Chardonnay and one bottle of Pinot Noir - perfect for the Burgundy lover!'),(41434,2846,'content','<p>A two bottle classic black gift box containing one botttle of each of the following wines:&nbsp;</p>\n<ul>\n<li>2022 Napa Carneros Chardonnay</li>\n<li>2021 Russian River Pinot Noir</li>\n</ul>'),(41435,2846,'subtitle','Savor the Moment - Chardonnay & Pinot Noir'),(41436,2846,'price','6800'),(41437,2846,'web_status','Retired'),(41438,2846,'admin_status','Not Available'),(41439,2846,'rating',''),(41440,2846,'wine_vertical',''),(41441,2846,'wine_score',''),(41442,2847,'web_id','245d71de-e868-4557-a513-1c2953de9b1b'),(41443,2847,'slug','meadowcroft--sparkling-celebration-bundle'),(41444,2847,'title','Meadowcroft  Sparkling Celebration Bundle'),(41445,2847,'type','Wine'),(41446,2847,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1201-1660261098153.png'),(41447,2847,'teaser',''),(41448,2847,'content','<p><span style=\"font-weight: bold;\">STOCK UP FOR ENTERTAINING:&nbsp;</span>&nbsp;</p>\n<div>&nbsp;</div>\n<div>&nbsp;</div>'),(41449,2847,'subtitle',''),(41450,2847,'price','12960'),(41451,2847,'web_status','Not Available'),(41452,2847,'admin_status','Available'),(41453,2847,'varietal',NULL),(41454,2847,'appellation',NULL),(41455,2847,'vintage',NULL),(41456,2847,'meta_data_feature-text','Meadowcroft Sparkling Celebration Bundle | Save 10%'),(41457,2847,'meta_data_wine-notes','$103.68'),(41458,2847,'rating',''),(41459,2847,'wine_vertical',''),(41460,2847,'wine_score',''),(41461,2848,'web_id','dfe0ce84-6f0d-4789-bdc7-340dc6dec743'),(41462,2848,'slug','meadowcroft-2-bottle-pinot-noir-gift-pack'),(41463,2848,'title','Meadowcroft 2 Bottle Pinot Noir Gift Box'),(41464,2848,'type','Bundle'),(41465,2848,'image','https://images.commerce7.com/meadowcroft-wines/images/original/seasons-web-cart-1667854383161.jpg'),(41466,2848,'teaser','A two bottle gift pack packaged in a handsome black gift box.  Two excellent bottles of Pinot Noir from two renowned appellations.'),(41467,2848,'content','<p>A two bottle gift box containing one bottle each of the following Pinot Noirs:&nbsp;</p>\n<ul>\n<li>2021 Russian River Valley Pinot Noir</li>\n<li>2021 Napa Carneros Pinot Noir</li>\n</ul>'),(41468,2848,'subtitle','Season\'s Greeting Pinot Noir Gift Box'),(41469,2848,'price','7200'),(41470,2848,'web_status','Retired'),(41471,2848,'admin_status','Not Available'),(41472,2848,'rating',''),(41473,2848,'wine_vertical',''),(41474,2848,'wine_score',''),(41475,2849,'web_id','bda7db65-c707-4a54-bb14-0b6f6785cc14'),(41476,2849,'slug','meadowcroft-2-bottle-zinfandel-gift-box'),(41477,2849,'title','Meadowcroft 2 Bottle Zinfandel Gift Box'),(41478,2849,'type','Bundle'),(41479,2849,'image','https://images.commerce7.com/meadowcroft-wines/images/original/2btl-zin-web-cart-1667854443529.jpg'),(41480,2849,'teaser','Two of our favorite Zinfandels packed in a gift box.  Perfect wines for the holiday season!'),(41481,2849,'content','<p>A two bottle black gift box containing 1 bottle of each Zinfandel:</p>\n<ul>\n<li>2019 Speedy Creek Zinfandel</li>\n<li>2020 Mae Vineyard Zinfandel</li>\n</ul>'),(41482,2849,'subtitle','Zin Lover\'s Gift Box'),(41483,2849,'price','7800'),(41484,2849,'web_status','Retired'),(41485,2849,'admin_status','Not Available'),(41486,2849,'rating',''),(41487,2849,'wine_vertical',''),(41488,2849,'wine_score',''),(41489,2850,'web_id','a6dd633f-7b34-4b19-a589-f41421dd38ce'),(41490,2850,'slug','meadowcroft-bamboo-utensils'),(41491,2850,'title','Meadowcroft Bamboo Utensils'),(41492,2850,'type','General Merchandise'),(41493,2850,'image',NULL),(41494,2850,'teaser',''),(41495,2850,'content',''),(41496,2850,'subtitle',''),(41497,2850,'price','800'),(41498,2850,'web_status','Not Available'),(41499,2850,'admin_status','Available'),(41500,2850,'rating',''),(41501,2850,'wine_vertical',''),(41502,2850,'wine_score',''),(41503,2851,'web_id','6f915e3e-d2b2-4260-a899-c2dd9939538d'),(41504,2851,'slug','meadowcroft-belt-bag-aka-fanny-pack'),(41505,2851,'title','Meadowcroft Belt Bag AKA Fanny Pack'),(41506,2851,'type','Collateral'),(41507,2851,'image','https://images.commerce7.com/meadowcroft-wines/images/original/mc_merch_fannypack-1662496970943-1663273809605.png'),(41508,2851,'teaser',''),(41509,2851,'content',''),(41510,2851,'subtitle','Membership Gift Fall 2022'),(41511,2851,'price','0'),(41512,2851,'web_status','Not Available'),(41513,2851,'admin_status','Available'),(41514,2851,'rating',''),(41515,2851,'wine_vertical',''),(41516,2851,'wine_score',''),(41517,2852,'web_id','9b83e7b5-eaa9-4382-9fab-2e7406d88586'),(41518,2852,'slug','meadowcroft-black-and-white-cap'),(41519,2852,'title','Meadowcroft Black and White Cap'),(41520,2852,'type','General Merchandise'),(41521,2852,'image',NULL),(41522,2852,'teaser',''),(41523,2852,'content',''),(41524,2852,'subtitle',''),(41525,2852,'price','3000'),(41526,2852,'web_status','Not Available'),(41527,2852,'admin_status','Available'),(41528,2852,'rating',''),(41529,2852,'wine_vertical',''),(41530,2852,'wine_score',''),(41531,2853,'web_id','1c1aecab-e31c-496c-8df0-9a24fa1b9fed'),(41532,2853,'slug','meadowcroft-black-cap'),(41533,2853,'title','Meadowcroft Black Cap'),(41534,2853,'type','General Merchandise'),(41535,2853,'image',NULL),(41536,2853,'teaser',''),(41537,2853,'content',''),(41538,2853,'subtitle',''),(41539,2853,'price','3000'),(41540,2853,'web_status','Not Available'),(41541,2853,'admin_status','Available'),(41542,2853,'rating',''),(41543,2853,'wine_vertical',''),(41544,2853,'wine_score',''),(41545,2854,'web_id','6e99f347-9f13-4fc1-81b8-6fd31a53538c'),(41546,2854,'slug','meadowcroft-blending-cab-franc'),(41547,2854,'title','Meadowcroft Blending Cab Franc'),(41548,2854,'type','Wine'),(41549,2854,'image',NULL),(41550,2854,'teaser',NULL),(41551,2854,'content',NULL),(41552,2854,'subtitle',NULL),(41553,2854,'price','0'),(41554,2854,'web_status','Not Available'),(41555,2854,'admin_status','Available'),(41556,2854,'rating',''),(41557,2854,'wine_vertical',''),(41558,2854,'wine_score',''),(41559,2855,'web_id','25c3fd3e-0fef-4615-b3d1-91a37a48a002'),(41560,2855,'slug','meadowcroft-blending-cab-sauv'),(41561,2855,'title','Meadowcroft Blending Cab Sauv'),(41562,2855,'type','Wine'),(41563,2855,'image',NULL),(41564,2855,'teaser',NULL),(41565,2855,'content',NULL),(41566,2855,'subtitle',NULL),(41567,2855,'price','0'),(41568,2855,'web_status','Not Available'),(41569,2855,'admin_status','Available'),(41570,2855,'rating',''),(41571,2855,'wine_vertical',''),(41572,2855,'wine_score',''),(41573,2856,'web_id','4730b9dc-ff5e-4e3a-9d22-8e7c3e29bbf7'),(41574,2856,'slug','meadowcroft-blending-malbec'),(41575,2856,'title','Meadowcroft Blending Malbec'),(41576,2856,'type','Wine'),(41577,2856,'image',NULL),(41578,2856,'teaser',NULL),(41579,2856,'content',NULL),(41580,2856,'subtitle',NULL),(41581,2856,'price','0'),(41582,2856,'web_status','Not Available'),(41583,2856,'admin_status','Available'),(41584,2856,'rating',''),(41585,2856,'wine_vertical',''),(41586,2856,'wine_score',''),(41587,2857,'web_id','2b77c6bc-99ea-409a-9def-1786c2dda435'),(41588,2857,'slug','meadowcroft-blending-merlot'),(41589,2857,'title','Meadowcroft Blending Merlot'),(41590,2857,'type','Wine'),(41591,2857,'image',NULL),(41592,2857,'teaser',NULL),(41593,2857,'content',NULL),(41594,2857,'subtitle',NULL),(41595,2857,'price','0'),(41596,2857,'web_status','Not Available'),(41597,2857,'admin_status','Available'),(41598,2857,'rating',''),(41599,2857,'wine_vertical',''),(41600,2857,'wine_score',''),(41601,2858,'web_id','42390bd7-c527-4492-93a4-f4845756eef7'),(41602,2858,'slug','meadowcroft-blending-petit-verdot'),(41603,2858,'title','Meadowcroft Blending Petit Verdot'),(41604,2858,'type','Wine'),(41605,2858,'image',NULL),(41606,2858,'teaser',NULL),(41607,2858,'content',NULL),(41608,2858,'subtitle',NULL),(41609,2858,'price','0'),(41610,2858,'web_status','Not Available'),(41611,2858,'admin_status','Available'),(41612,2858,'rating',''),(41613,2858,'wine_vertical',''),(41614,2858,'wine_score',''),(41615,2859,'web_id','5df0f96a-693f-46fd-86a7-69bac73f413b'),(41616,2859,'slug','cabernet-bundle-1'),(41617,2859,'title','Meadowcroft Cabernet Bundle #1'),(41618,2859,'type','Bundle'),(41619,2859,'image','https://images.commerce7.com/meadowcroft-wines/images/original/bundle-1-c7-1670538716184.jpg'),(41620,2859,'teaser','A three bottle selection of Cabernet Sauvignons.  One bottle each 2021 Nelson Ranch Cabernet, 2022 Napa Valley Cabernet and 2020 Mt. Veeder Cabernet.'),(41621,2859,'content','<p>A three bottle selection of Cabernet Sauvignons. &nbsp;One bottle each 2021 Nelson Ranch Cabernet, 2022 Napa Valley Cabernet and 2020 Mt. Veeder Cabernet.&nbsp;</p>'),(41622,2859,'subtitle',NULL),(41623,2859,'price','20000'),(41624,2859,'web_status','Retired'),(41625,2859,'admin_status','Not Available'),(41626,2859,'rating',''),(41627,2859,'wine_vertical',''),(41628,2859,'wine_score',''),(41629,2860,'web_id','279764fd-58c8-41c0-9840-ba1db0b4f74f'),(41630,2860,'slug','cabernet-bundle-2'),(41631,2860,'title','Meadowcroft Cabernet Bundle #2'),(41632,2860,'type','Bundle'),(41633,2860,'image','https://images.commerce7.com/meadowcroft-wines/images/original/bundle-2-c7-1670538979522.jpg'),(41634,2860,'teaser','Three bottle bundle containing one bottle each: 2020 Red Hills Cabernet, 2020 Napa Valley Cabernet and 2019 Oakville Cabernet.'),(41635,2860,'content','<p>Three bottle bundle containing one bottle each: 2020 Red Hills Cabernet, 2020 Napa Valley Cabernet and 2019 Oakville Cabernet.&nbsp;</p>'),(41636,2860,'subtitle',NULL),(41637,2860,'price','20500'),(41638,2860,'web_status','Retired'),(41639,2860,'admin_status','Not Available'),(41640,2860,'rating',''),(41641,2860,'wine_vertical',''),(41642,2860,'wine_score',''),(41643,2861,'web_id','07a4dd20-3fde-4112-abd2-480a4c95cd02'),(41644,2861,'slug','meadowcroft-cabernet-bundle-6-pack'),(41645,2861,'title','Meadowcroft Cabernet Bundle 6 Pack'),(41646,2861,'type','Bundle'),(41647,2861,'image','https://images.commerce7.com/meadowcroft-wines/images/original/bundle-3-c7-1670539020327.jpg'),(41648,2861,'teaser','A six bottle assortment of our favorite Cabernets for the true fan.'),(41649,2861,'content','<p>A six bottle assortment of our favorite Cabernets for the true fan. &nbsp;</p>\n<ul>\n<li>1 bottles 2021 Nelson Ranch Cabernet</li>\n<li>1 botle 2020 Red Hills Cabernet</li>\n<li>1 bottle 2022 Napa Valley Cabernet</li>\n<li>1 bottle 2021 Oakville Cabernet</li>\n<li>1 bottle 2020 Mt. Veeder Cabernet</li>\n<li>1 bottle 2022 Wyldvin Cabernet</li>\n</ul>'),(41650,2861,'subtitle',NULL),(41651,2861,'price','40000'),(41652,2861,'web_status','Retired'),(41653,2861,'admin_status','Not Available'),(41654,2861,'rating',''),(41655,2861,'wine_vertical',''),(41656,2861,'wine_score',''),(41657,2862,'web_id','214dd5bc-6954-4f63-8fd7-d54187496541'),(41658,2862,'slug','meadowcroft-chocolate-sauce'),(41659,2862,'title','Meadowcroft Chocolate Sauce'),(41660,2862,'type','General Merchandise'),(41661,2862,'image',NULL),(41662,2862,'teaser',NULL),(41663,2862,'content','Meadowcroft Chocolate Sauce'),(41664,2862,'subtitle',NULL),(41665,2862,'price','1850'),(41666,2862,'web_status','Available'),(41667,2862,'admin_status','Not Available'),(41668,2862,'rating',''),(41669,2862,'wine_vertical',''),(41670,2862,'wine_score',''),(41671,2863,'web_id','e1878246-9516-4524-b41b-aac0cf244242'),(41672,2863,'slug','meadowcroft-explore-carneros-chardonnay-collection'),(41673,2863,'title','Meadowcroft Explore Carneros Chardonnay Collection'),(41674,2863,'type','General Merchandise'),(41675,2863,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1231-1660261105842.png'),(41676,2863,'teaser',''),(41677,2863,'content','<span style=\"font-weight: bold;\"\"></span><div><div>2021 Tasting Notes Chardonnay'),(41678,2863,'subtitle',''),(41679,2863,'price','5600'),(41680,2863,'web_status','Not Available'),(41681,2863,'admin_status','Available'),(41682,2863,'meta_data_feature-text','This limited-edition collection features one bottle each of our 2021 Carneros Chardonnay, Napa Valley, and 2019 Carneros, Sonoma Valley Bonneau Vineyard.&nbsp;<div><span style=\"font-weight: 700;\"\">Available for a short time only at 20% Savings (membership pricing!)</span><br></div>\"'),(41683,2863,'meta_data_wine-notes','Club pricing as listed, learn more about our membership<a href=\"https://www.meadowcroftwines.com/wine-club/\"\" title=\"\"\"\" target=\"\"\"\" style=\"\"background-color: rgb(255'),(41684,2863,'rating',''),(41685,2863,'wine_vertical',''),(41686,2863,'wine_score',''),(41687,2864,'web_id','7196db79-127b-4c1e-8bee-b0b41d5e16a2'),(41688,2864,'slug','meadowcroft-explore-carneros-pinot-noir-collection'),(41689,2864,'title','Meadowcroft Explore Carneros Pinot Noir Collection'),(41690,2864,'type','General Merchandise'),(41691,2864,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1232-1660261106783.png'),(41692,2864,'teaser',''),(41693,2864,'content','<span style=\"font-weight: bold;\"\"></span><div><div><span style=\"\"font-weight: bold;\"\">&nbsp;Tasting Notes&nbsp;</span><span style=\"\"font-weight: 700;\"\">2021&nbsp;</span><span style=\"\"font-weight: bold;\"\">Pinot Noir'),(41694,2864,'subtitle',''),(41695,2864,'price','6500'),(41696,2864,'web_status','Not Available'),(41697,2864,'admin_status','Available'),(41698,2864,'meta_data_feature-text','This limited-edition collection features one bottle each of our 2021 Carneros Pinot Noir, Napa Valley, and 2019 Carneros, Sonoma Cornerstone Vineyard.&nbsp;<div><span style=\"font-weight: bold;\"\">Available for a short time only at 20% Savings (membership pricing!)</span><br></div>\"'),(41699,2864,'meta_data_wine-notes','Club pricing as listed, learn more about our membership<a href=\"https://www.meadowcroftwines.com/wine-club/\"\" title=\"\"\"\" target=\"\"\"\"> here</a>\"'),(41700,2864,'rating',''),(41701,2864,'wine_vertical',''),(41702,2864,'wine_score',''),(41703,2865,'web_id','57b1fbde-7866-47e5-bf8c-a76dc911eece'),(41704,2865,'slug','meadowcroft-fleece-blanket'),(41705,2865,'title','Meadowcroft Fleece Blanket'),(41706,2865,'type','General Merchandise'),(41707,2865,'image',NULL),(41708,2865,'teaser',NULL),(41709,2865,'content',''),(41710,2865,'subtitle',NULL),(41711,2865,'price','2500'),(41712,2865,'web_status','Not Available'),(41713,2865,'admin_status','Not Available'),(41714,2865,'rating',''),(41715,2865,'wine_vertical',''),(41716,2865,'wine_score',''),(41717,2866,'web_id','0d757e6c-925e-4756-969e-7bad432c1544'),(41718,2866,'slug','meadowcroft-logo-wine-glass'),(41719,2866,'title','Meadowcroft Logo Wine Glass'),(41720,2866,'type','General Merchandise'),(41721,2866,'image',NULL),(41722,2866,'teaser',''),(41723,2866,'content','LOGO STEMMED GLASS'),(41724,2866,'subtitle',''),(41725,2866,'price','1200'),(41726,2866,'web_status','Not Available'),(41727,2866,'admin_status','Not Available'),(41728,2866,'rating',''),(41729,2866,'wine_vertical',''),(41730,2866,'wine_score',''),(41731,2867,'web_id','9d0b0fc2-0e46-4ca3-87fe-16619fa871d3'),(41732,2867,'slug','6-bottle-gift-box'),(41733,2867,'title','Meadowcroft Mixed 6 Bottle Gift Box'),(41734,2867,'type','Bundle'),(41735,2867,'image','https://images.commerce7.com/meadowcroft-wines/images/original/6btl-web-cart-1667854133733.jpg'),(41736,2867,'teaser','Classic black gift box containing a mix of 6 bottles of our favorite Meadowcroft wines.  A little something for everyone!'),(41737,2867,'content','<p>The Home for the Holidays 6 bottle gift box contains one bottle each of the following wines:&nbsp;</p>\n<ul>\n<li>2022 Pinot Blanc</li>\n<li>2022 Napa Carneros Chardonnay</li>\n<li>2022 Russian River Valley Pinot Noir</li>\n<li>2020 Mae Vineyard Zinfandel</li>\n<li>2021 Rivino Vineyard Cabernet Franc</li>\n<li>2020 Oakville Cabernet Sauvignon</li>\n</ul>\n<p>&nbsp;</p>'),(41738,2867,'subtitle','Home For the Holidays Mixed 6 Bottle Box'),(41739,2867,'price','28000'),(41740,2867,'web_status','Retired'),(41741,2867,'admin_status','Not Available'),(41742,2867,'rating',''),(41743,2867,'wine_vertical',''),(41744,2867,'wine_score',''),(41745,2868,'web_id','79d8e3b3-fcc6-455a-b9d2-1ff8cdf9dbfb'),(41746,2868,'slug','meadowcroft-rare-blends-gift-set'),(41747,2868,'title','Meadowcroft Rare Blends Gift Set'),(41748,2868,'type','Bundle'),(41749,2868,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1199-1660849935215.png'),(41750,2868,'teaser',NULL),(41751,2868,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">Impress and delight with this pairing of our&nbsp; Anniversary&nbsp;&nbsp;Cuv&eacute;e. and our River Trace GSM, two of our exceptional proprietary wine blends, perfect for holiday gifting and sipping, No vintage is alike, and production is limited.&nbsp;</div>\n<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>&nbsp;</div>\n<div>At check out, let our shipping department know if this is a gift in the Comments Section.&nbsp; We can include a special message for your recipient.&nbsp; Give us a call with any questions or for more details at (707) 934-4090.</div>\n</div>'),(41752,2868,'subtitle','Limited Edition Set'),(41753,2868,'price','11000'),(41754,2868,'web_status','Retired'),(41755,2868,'admin_status','Not Available'),(41756,2868,'rating',''),(41757,2868,'wine_vertical',''),(41758,2868,'wine_score',''),(41759,2869,'web_id','38caf5a8-117b-4642-8be7-37d0c9696a71'),(41760,2869,'slug','meadowcroft-saber-and-sparkling-gift-set'),(41761,2869,'title','Meadowcroft Sabre and Sparkling Gift Set'),(41762,2869,'type','Bundle'),(41763,2869,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1193-1660867743468.png'),(41764,2869,'teaser','The perfect gift for the champagne lover in your life.'),(41765,2869,'content','<p><strong>FOR ENTERTAINING:</strong>&nbsp;&nbsp;It was Napoleon Bonaparte\'s Army who started the tradition of Sabering, celebrating their victories by breaking open champagne bottles with their swords.&nbsp;</p>\n<p>Our limited-edition Meadowcroft champagne saber opens bottles with drama and flair. We have paired it with our award-winning Blanc de Blancs to make the perfect wine gift!</p>\n<p>This stunning saber is simple to use: slide the blade along the bottle\'s molding line. When the blade hits the lip, the bottle top will break away in a single piece. Perfect for special occasions, it comes in a solid wood box for stylish storage. Supplies are limited!</p>\n<p>Not sure how it works?&nbsp; Check out this<a href=\"https://youtu.be/qCp9-tEHa8U\">&nbsp;great video&nbsp;</a>by Alton Brown</p>\n<p>&nbsp;</p>'),(41766,2869,'subtitle',NULL),(41767,2869,'price','12500'),(41768,2869,'web_status','Available'),(41769,2869,'admin_status','Available'),(41770,2869,'rating',''),(41771,2869,'wine_vertical',''),(41772,2869,'wine_score',''),(41773,2870,'web_id','7c8333d5-4c9f-45f1-83ac-64b0d35ffc79'),(41774,2870,'slug','meadowcroft-sabre'),(41775,2870,'title','Meadowcroft Sabre'),(41776,2870,'type','General Merchandise'),(41777,2870,'image',NULL),(41778,2870,'teaser',NULL),(41779,2870,'content','<p>Champagne is meant to be savored--and occasionally sabered. Rooted in 19th century French tradition, the elegantly curved champagne saber slashes through bottles with ease.</p>'),(41780,2870,'subtitle',NULL),(41781,2870,'price','9500'),(41782,2870,'web_status','Not Available'),(41783,2870,'admin_status','Available'),(41784,2870,'meta_data_feature-text','Meadowcroft Logo Champagne Sabre'),(41785,2870,'meta_data_wine-notes','$113.60'),(41786,2870,'rating',''),(41787,2870,'wine_vertical',''),(41788,2870,'wine_score',''),(41789,2871,'web_id','ad1982c3-99fe-468a-890a-aba61b3fc6da'),(41790,2871,'slug','meadowcroft-sparkling-wine-gift-box'),(41791,2871,'title','Meadowcroft Sparkling Wine Gift Box'),(41792,2871,'type','Bundle'),(41793,2871,'image','https://images.commerce7.com/meadowcroft-wines/images/original/sparkling-web-cart-1667854874299.jpg'),(41794,2871,'teaser','Who doesn\'t love bubbles?  This is the perfect holiday gift for anyone.'),(41795,2871,'content',NULL),(41796,2871,'subtitle','Sparkling Wine Gift Box'),(41797,2871,'price','3800'),(41798,2871,'web_status','Retired'),(41799,2871,'admin_status','Not Available'),(41800,2871,'rating',''),(41801,2871,'wine_vertical',''),(41802,2871,'wine_score',''),(41803,2872,'web_id','30553107-c3d0-485b-be90-908ed448bd48'),(41804,2872,'slug','meadowcroft-tea-towel'),(41805,2872,'title','Meadowcroft Tea Towel'),(41806,2872,'type','General Merchandise'),(41807,2872,'image',NULL),(41808,2872,'teaser',''),(41809,2872,'content',''),(41810,2872,'subtitle',''),(41811,2872,'price','1000'),(41812,2872,'web_status','Not Available'),(41813,2872,'admin_status','Available'),(41814,2872,'rating',''),(41815,2872,'wine_vertical',''),(41816,2872,'wine_score',''),(41817,2873,'web_id','b7b17178-0c1c-4e2d-9c33-4c5df3a1b1e6'),(41818,2873,'slug','meadowcroft-wines-wooden-gift-box'),(41819,2873,'title','Meadowcroft Wines Wooden Gift Box'),(41820,2873,'type','General Merchandise'),(41821,2873,'image',NULL),(41822,2873,'teaser',NULL),(41823,2873,'content',NULL),(41824,2873,'subtitle',NULL),(41825,2873,'price','3000'),(41826,2873,'web_status','Not Available'),(41827,2873,'admin_status','Available'),(41828,2873,'rating',''),(41829,2873,'wine_vertical',''),(41830,2873,'wine_score',''),(41831,2874,'web_id','4f39532f-b943-4ec8-ba8b-d43d0752df11'),(41832,2874,'slug','mens-golf-shirt-old'),(41833,2874,'title','Men\'s Golf Shirt OLD'),(41834,2874,'type','General Merchandise'),(41835,2874,'image',NULL),(41836,2874,'teaser',NULL),(41837,2874,'content',''),(41838,2874,'subtitle',NULL),(41839,2874,'price','2500'),(41840,2874,'web_status','Not Available'),(41841,2874,'admin_status','Not Available'),(41842,2874,'rating',''),(41843,2874,'wine_vertical',''),(41844,2874,'wine_score',''),(41845,2875,'web_id','f9286179-ab58-4e63-9ed5-149f46d4fc5b'),(41846,2875,'slug','mens-greetings-t-shirt'),(41847,2875,'title','Men\'s Greetings T Shirt'),(41848,2875,'type','General Merchandise'),(41849,2875,'image',NULL),(41850,2875,'teaser',NULL),(41851,2875,'content','Men\'s Greetings T Shirt'),(41852,2875,'subtitle',NULL),(41853,2875,'price','2000'),(41854,2875,'web_status','Available'),(41855,2875,'admin_status','Not Available'),(41856,2875,'rating',''),(41857,2875,'wine_vertical',''),(41858,2875,'wine_score',''),(41859,2876,'web_id','7dffe0d1-a6c8-4539-940d-a488a2d76f57'),(41860,2876,'slug','mens-polo-t-shirt'),(41861,2876,'title','Men\'s POLO T Shirt'),(41862,2876,'type','General Merchandise'),(41863,2876,'image',NULL),(41864,2876,'teaser',NULL),(41865,2876,'content','<p>Women\'s Bee T Shirt</p>'),(41866,2876,'subtitle',NULL),(41867,2876,'price','3500'),(41868,2876,'web_status','Not Available'),(41869,2876,'admin_status','Available'),(41870,2876,'rating',''),(41871,2876,'wine_vertical',''),(41872,2876,'wine_score',''),(41873,2877,'web_id','a40a912e-0364-45f8-99ad-75bb3259ae13'),(41874,2877,'slug','mens-t-shirt'),(41875,2877,'title','Men\'s T Shirt'),(41876,2877,'type','General Merchandise'),(41877,2877,'image',NULL),(41878,2877,'teaser',NULL),(41879,2877,'content','<p>Men\'s Bee T Shirt</p>'),(41880,2877,'subtitle',NULL),(41881,2877,'price','2500'),(41882,2877,'web_status','Not Available'),(41883,2877,'admin_status','Available'),(41884,2877,'rating',''),(41885,2877,'wine_vertical',''),(41886,2877,'wine_score',''),(41887,2878,'web_id','5f2d9c2e-063e-41b9-af99-ae108e13bc6f'),(41888,2878,'slug','men-s-t-shirt'),(41889,2878,'title','Men\'s T-Shirt'),(41890,2878,'type','General Merchandise'),(41891,2878,'image',NULL),(41892,2878,'teaser',''),(41893,2878,'content',''),(41894,2878,'subtitle','Assorted Sizes'),(41895,2878,'price','2500'),(41896,2878,'web_status','Not Available'),(41897,2878,'admin_status','Available'),(41898,2878,'rating',''),(41899,2878,'wine_vertical',''),(41900,2878,'wine_score',''),(41901,2879,'web_id','bbd201f4-f065-4283-9621-9754edf92745'),(41902,2879,'slug','miscellaneous'),(41903,2879,'title','Miscellaneous'),(41904,2879,'type','General Merchandise'),(41905,2879,'image',NULL),(41906,2879,'teaser',NULL),(41907,2879,'content',''),(41908,2879,'subtitle',NULL),(41909,2879,'price','0'),(41910,2879,'web_status','Not Available'),(41911,2879,'admin_status','Available'),(41912,2879,'rating',''),(41913,2879,'wine_vertical',''),(41914,2879,'wine_score',''),(41915,2880,'web_id','88183f9b-ae85-48c9-9e31-a02f1de27f00'),(41916,2880,'slug','mixed-blind-tasting-kit'),(41917,2880,'title','Mixed Blind Tasting Kit'),(41918,2880,'type','Bundle'),(41919,2880,'image','https://images.commerce7.com/meadowcroft-wines/images/original/mixed-1671645655893.png'),(41920,2880,'teaser',NULL),(41921,2880,'content','<div>CHALLENGE YOURSELF TO AN AT-HOME BLIND TASTING</div>\n<div>&nbsp;</div>\n<div>Blind tasting is a term for tasting wines without seeing the label or knowing what the wine is.&nbsp; This activity is a great way to test your wine knowledge.&nbsp; The object is to ascertain such features as grape varieties, region, vintage, and price of wine purely through the act of seeing, smelling, and tasting the wine in the glass.&nbsp;&nbsp;</div>\n<div>&nbsp;</div>\n<div>KIT INCLUDES: &nbsp;</div>\n<div>\n<ul>\n<li>2 bottles of white wine, 2 bottles of red wine with labels concealed</li>\n<li>Detailed instructions on setup</li>\n<li>2 blind tasting mats*</li>\n<li>Wine aroma and flavor chart</li>\n<li>Confidential answer envelope</li>\n</ul>\n<div>This experience can be enjoyed by one person or up to four people.&nbsp; If you need more than two tasting mats, please put a note in \"Shipper Comments.\"</div>\n</div>\n<div>&nbsp;</div>\n<div>TRY OUR OTHER BLIND TASTING KITS:</div>\n<div><a title=\"Red Wine Blind Tasting Kit\" href=\"http://https//www.meadowcroftwines.com/shop/?view=product&amp;slug=blind_tasting_red\" target=\"_blank\" rel=\"noopener\">ALL REDS BLIND TASTING KIT</a>&nbsp; OR&nbsp; &nbsp;<a title=\"White Wine Blind Tasting Kit\" href=\"https://www.meadowcroftwines.com/shop/?view=product&amp;slug=blind_tasting_white\" target=\"_blank\" rel=\"noopener\">ALL WHITES BLIND TASTING KIT</a></div>\n<div>&nbsp;</div>\n<div>OPTIONAL ADD-ON:<br /><a title=\"Book Virtual Wine Expert\" href=\"mailto:tastingroom@meadowcroftwines.com\" target=\"_blank\" rel=\"noopener\">Book a Virtual Wine Expert to lead you through your Blind Tasting Kit.&nbsp;&nbsp;</a></div>\n<div>&nbsp;</div>\n<div>&nbsp;</div>\n<div>*Blind Tasting Kit cannot be combined with any other discounts.&nbsp; Wine Club discount does not apply.&nbsp;</div>'),(41922,2880,'subtitle',NULL),(41923,2880,'price','12500'),(41924,2880,'web_status','Retired'),(41925,2880,'admin_status','Not Available'),(41926,2880,'rating',''),(41927,2880,'wine_vertical',''),(41928,2880,'wine_score',''),(41929,2881,'web_id','7ae0bcae-5bb3-400b-9748-52a4048a5f99'),(41930,2881,'slug','moisture-resistant-cold-packs-32-oz'),(41931,2881,'title','Moisture-Resistant Cold Packs'),(41932,2881,'type','General Merchandise'),(41933,2881,'image',NULL),(41934,2881,'teaser',''),(41935,2881,'content',''),(41936,2881,'subtitle',''),(41937,2881,'price','233'),(41938,2881,'web_status','Not Available'),(41939,2881,'admin_status','Not Available'),(41940,2881,'rating',''),(41941,2881,'wine_vertical',''),(41942,2881,'wine_score',''),(41943,2882,'web_id','87c9b3f0-55ab-47ad-b083-c0a133ee29d8'),(41944,2882,'slug','mulled-wine'),(41945,2882,'title','Mulled Wine'),(41946,2882,'type','General Merchandise'),(41947,2882,'image',NULL),(41948,2882,'teaser',NULL),(41949,2882,'content','Mulled Wine'),(41950,2882,'subtitle',NULL),(41951,2882,'price','1000'),(41952,2882,'web_status','Not Available'),(41953,2882,'admin_status','Not Available'),(41954,2882,'rating',''),(41955,2882,'wine_vertical',''),(41956,2882,'wine_score',''),(41957,2883,'web_id','0aa759f1-10e0-419b-bd6f-6c4c91c696b0'),(41958,2883,'slug','mystery-case'),(41959,2883,'title','MYSTERY CASE'),(41960,2883,'type','General Merchandise'),(41961,2883,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1121-1660261079648.png'),(41962,2883,'teaser',NULL),(41963,2883,'content',NULL),(41964,2883,'subtitle',NULL),(41965,2883,'price','18000'),(41966,2883,'web_status','Not Available'),(41967,2883,'admin_status','Available'),(41968,2883,'meta_data_feature-text','<div>SOLD OUT<span style=\"-webkit-text-size-adjust: 100%;\"\">! &nbsp;</span><br></div>\"'),(41969,2883,'meta_data_wine-notes','$140.00'),(41970,2883,'rating',''),(41971,2883,'wine_vertical',''),(41972,2883,'wine_score',''),(41973,2884,'web_id','04358bf3-d532-4c98-8a7a-fc37a68aeb5b'),(41974,2884,'slug','napkin-rings'),(41975,2884,'title','Napkin Rings'),(41976,2884,'type','General Merchandise'),(41977,2884,'image',NULL),(41978,2884,'teaser',''),(41979,2884,'content',''),(41980,2884,'subtitle',''),(41981,2884,'price','1600'),(41982,2884,'web_status','Not Available'),(41983,2884,'admin_status','Available'),(41984,2884,'rating',''),(41985,2884,'wine_vertical',''),(41986,2884,'wine_score',''),(41987,2885,'web_id','ecd08f26-7af3-4889-87bd-b54704c2ceb8'),(41988,2885,'slug','olive-oil-with-thyme-duplicate'),(41989,2885,'title','Olive Oil with Black Truffle'),(41990,2885,'type','General Merchandise'),(41991,2885,'image','https://images.commerce7.com/meadowcroft-wines/images/original/oil-1684088348707.jpg'),(41992,2885,'teaser',NULL),(41993,2885,'content',NULL),(41994,2885,'subtitle','Black Truffle .25L'),(41995,2885,'price','1500'),(41996,2885,'web_status','Available'),(41997,2885,'admin_status','Available'),(41998,2885,'rating',''),(41999,2885,'wine_vertical',''),(42000,2885,'wine_score',''),(42001,2886,'web_id','e46ebad5-ae72-495d-a0c5-ad41499359d7'),(42002,2886,'slug','olive-oil-extra-virgin-la-petita-duplicate'),(42003,2886,'title','Olive Oil with Thyme'),(42004,2886,'type','General Merchandise'),(42005,2886,'image',NULL),(42006,2886,'teaser',NULL),(42007,2886,'content',NULL),(42008,2886,'subtitle',NULL),(42009,2886,'price','1500'),(42010,2886,'web_status','Not Available'),(42011,2886,'admin_status','Not Available'),(42012,2886,'rating',''),(42013,2886,'wine_vertical',''),(42014,2886,'wine_score',''),(42015,2887,'web_id','cb0d6a42-6bfe-4d25-9d1c-9a3457908222'),(42016,2887,'slug','olive-oil-extra-virgin-la-petita-'),(42017,2887,'title','Olive Oil, Extra Virgin \"La Petita\"'),(42018,2887,'type','General Merchandise'),(42019,2887,'image',NULL),(42020,2887,'teaser',NULL),(42021,2887,'content',NULL),(42022,2887,'subtitle',NULL),(42023,2887,'price','1500'),(42024,2887,'web_status','Not Available'),(42025,2887,'admin_status','Not Available'),(42026,2887,'rating',''),(42027,2887,'wine_vertical',''),(42028,2887,'wine_score',''),(42029,2888,'web_id','9af8554c-476d-41ab-be15-bc83f423b5f5'),(42030,2888,'slug','onsite-blind-tasting-experience'),(42031,2888,'title','Onsite Blind Tasting Experience'),(42032,2888,'type','Tasting'),(42033,2888,'image',NULL),(42034,2888,'teaser',''),(42035,2888,'content',''),(42036,2888,'subtitle',''),(42037,2888,'price','5000'),(42038,2888,'web_status','Retired'),(42039,2888,'admin_status','Not Available'),(42040,2888,'rating',''),(42041,2888,'wine_vertical',''),(42042,2888,'wine_score',''),(42043,2889,'web_id','1a68872a-1eb6-40da-84a8-8f385c533464'),(42044,2889,'slug','meadowcroft-blanket'),(42045,2889,'title','Picnic Blanket'),(42046,2889,'type','General Merchandise'),(42047,2889,'image','https://images.commerce7.com/meadowcroft-wines/images/original/picnic-blanket-1696635302842.jpg'),(42048,2889,'teaser',NULL),(42049,2889,'content','<p>Enjoy your next picnic in comfort with this insulated logo picnic blanket.&nbsp; Pairs perfectly with your favorite bottle of Meadowcroft wine.&nbsp;&nbsp;</p>'),(42050,2889,'subtitle',NULL),(42051,2889,'price','3500'),(42052,2889,'web_status','Available'),(42053,2889,'admin_status','Available'),(42054,2889,'rating',''),(42055,2889,'wine_vertical',''),(42056,2889,'wine_score',''),(42057,2890,'web_id','9cc068c2-3ca7-460e-85de-2a7cabafe3ea'),(42058,2890,'slug','picnic-box-lunch'),(42059,2890,'title','Picnic Box Lunch'),(42060,2890,'type','General Merchandise'),(42061,2890,'image',NULL),(42062,2890,'teaser',NULL),(42063,2890,'content',NULL),(42064,2890,'subtitle',NULL),(42065,2890,'price','4000'),(42066,2890,'web_status','Not Available'),(42067,2890,'admin_status','Available'),(42068,2890,'rating',''),(42069,2890,'wine_vertical',''),(42070,2890,'wine_score',''),(42071,2891,'web_id','c2357a9a-6f4d-4edf-880a-d851a18369f0'),(42072,2891,'slug','meadowcroft-picnic-gift-set'),(42073,2891,'title','Picnic Gift Set'),(42074,2891,'type','Bundle'),(42075,2891,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1197-1660863188065.png'),(42076,2891,'teaser',NULL),(42077,2891,'content','<div>\n<div>Wine is made to enjoy in nature!&nbsp; We&rsquo;ve made it easy with this pack-and-go collection, including two reusable utensil sets, our cheese board and knife, and a wine country picnic blanket. Also included is one of our most picnic-friendly wines, our Sonoma Coast Rose.</div>\n</div>\n<div>&nbsp;</div>\n<div>At check out, let our shipping department know if this is a gift in the Comments Section.&nbsp; We can include a special message for your recipient. Give us a call with any questions or for more details at (707) 934-4090.</div>'),(42078,2891,'subtitle',NULL),(42079,2891,'price','6000'),(42080,2891,'web_status','Retired'),(42081,2891,'admin_status','Not Available'),(42082,2891,'rating',''),(42083,2891,'wine_vertical',''),(42084,2891,'wine_score',''),(42085,2892,'web_id','5c2e095d-7ca2-4723-9a85-910ba4a51603'),(42086,2892,'slug','meadowcroft-plush-dog-toy'),(42087,2892,'title','Plush Dog Toy'),(42088,2892,'type','General Merchandise'),(42089,2892,'image','https://images.commerce7.com/meadowcroft-wines/images/original/plush-dog-toy-1696618552303.jpg'),(42090,2892,'teaser',NULL),(42091,2892,'content',NULL),(42092,2892,'subtitle',NULL),(42093,2892,'price','1500'),(42094,2892,'web_status','Available'),(42095,2892,'admin_status','Available'),(42096,2892,'rating',''),(42097,2892,'wine_vertical',''),(42098,2892,'wine_score',''),(42099,2893,'web_id','38000974-2777-494b-b995-118681b05926'),(42100,2893,'slug','post-modern-wine-book'),(42101,2893,'title','Post Modern Wine Book'),(42102,2893,'type','General Merchandise'),(42103,2893,'image',NULL),(42104,2893,'teaser',NULL),(42105,2893,'content',''),(42106,2893,'subtitle',NULL),(42107,2893,'price','2500'),(42108,2893,'web_status','Not Available'),(42109,2893,'admin_status','Not Available'),(42110,2893,'rating',''),(42111,2893,'wine_vertical',''),(42112,2893,'wine_score',''),(42113,2894,'web_id','d7ec7694-99d5-455a-91ec-743ca901f1a7'),(42114,2894,'slug','private-event-rental'),(42115,2894,'title','Private Event Rental'),(42116,2894,'type','General Merchandise'),(42117,2894,'image',NULL),(42118,2894,'teaser',NULL),(42119,2894,'content',''),(42120,2894,'subtitle',NULL),(42121,2894,'price','25000'),(42122,2894,'web_status','Not Available'),(42123,2894,'admin_status','Available'),(42124,2894,'rating',''),(42125,2894,'wine_vertical',''),(42126,2894,'wine_score',''),(42127,2895,'web_id','7800be95-3303-4fc9-98bd-ddbddabb050f'),(42128,2895,'slug','private-group-event'),(42129,2895,'title','Private Group Event'),(42130,2895,'type','Reservation'),(42131,2895,'image',NULL),(42132,2895,'teaser',NULL),(42133,2895,'content',NULL),(42134,2895,'subtitle',NULL),(42135,2895,'price','20000'),(42136,2895,'web_status','Available'),(42137,2895,'admin_status','Available'),(42138,2895,'rating',''),(42139,2895,'wine_vertical',''),(42140,2895,'wine_score',''),(42141,2896,'web_id','0dc5cd22-64f0-441d-b432-e752fc6b6fda'),(42142,2896,'slug','private-group-tasting'),(42143,2896,'title','Private Group Tasting'),(42144,2896,'type','Tasting'),(42145,2896,'image',NULL),(42146,2896,'teaser',''),(42147,2896,'content',''),(42148,2896,'subtitle',''),(42149,2896,'price','4000'),(42150,2896,'web_status','Not Available'),(42151,2896,'admin_status','Available'),(42152,2896,'rating',''),(42153,2896,'wine_vertical',''),(42154,2896,'wine_score',''),(42155,2897,'web_id','017ae8da-a052-4294-b0d8-fc8fd8983ec7'),(42156,2897,'slug','jacket---soft-shell-duplicate'),(42157,2897,'title','Pullover - microfleece'),(42158,2897,'type','General Merchandise'),(42159,2897,'image',NULL),(42160,2897,'teaser',NULL),(42161,2897,'content',NULL),(42162,2897,'subtitle',NULL),(42163,2897,'price','6000'),(42164,2897,'web_status','Not Available'),(42165,2897,'admin_status','Available'),(42166,2897,'vendor','707 Embroidery Zone'),(42167,2897,'rating',''),(42168,2897,'wine_vertical',''),(42169,2897,'wine_score',''),(42170,2898,'web_id','29a23592-6af2-487f-b24b-45135de475f9'),(42171,2898,'slug','red-wine-blind-tasting-kit'),(42172,2898,'title','Red Wine Blind Tasting Kit'),(42173,2898,'type','Bundle'),(42174,2898,'image','https://images.commerce7.com/meadowcroft-wines/images/original/red-1671645712368.png'),(42175,2898,'teaser',NULL),(42176,2898,'content','<div>CHALLENGE YOURSELF TO AN AT-HOME BLIND TASTING</div>\n<div>&nbsp;</div>\n<div>Blind tasting is a term for tasting wines without seeing the label or knowing what the wine is.&nbsp; This activity is a great way to test your wine knowledge.&nbsp; The object is to ascertain such features as grape varieties, region, vintage, and price of wine purely through the act of seeing, smelling, and tasting the wine in the glass.&nbsp;&nbsp;</div>\n<div>&nbsp;</div>\n<div>KIT INCLUDES: &nbsp;</div>\n<div>\n<ul>\n<li>4 bottles of red wines with labels concealed</li>\n<li>Detailed instructions on setup</li>\n<li>2 blind tasting mats*</li>\n<li>Wine aroma and flavor chart</li>\n<li>Confidential answer envelope</li>\n</ul>\n<div>This experience can be enjoyed by one person or up to four people.&nbsp; If you need more than two tasting mats, please put a note in \"Shipper Comments.\"</div>\n</div>\n<div>&nbsp;</div>\n<div>TRY OUR OTHER BLIND TASTING KITS:</div>\n<div><a title=\"Blind Tasting Kit\" href=\"https://www.meadowcroftwines.com/shop/?view=product&amp;slug=blind_tasting_mix\" target=\"_blank\" rel=\"noopener\">MIXED WINES BLIND TASTING KIT</a>&nbsp;OR&nbsp;<a title=\"White Wine Blind Tasting Kit\" href=\"https://www.meadowcroftwines.com/shop/?view=product&amp;slug=blind_tasting_white\" target=\"_blank\" rel=\"noopener\">WHITE WINE BLIND TASTING KIT</a></div>\n<div>&nbsp;</div>\n<div>OPTIONAL ADD-ON:<br /><a title=\"Book Virtual Wine Expert\" href=\"mailto:tastingroom@meadowcroftwines.com\" target=\"_blank\" rel=\"noopener\">Book a Virtual Wine Expert to lead you through your Blind Tasting Kit.&nbsp;&nbsp;</a></div>\n<div>&nbsp;</div>\n<div>*Blind Tasting Kit cannot be combined with any other discounts.&nbsp; The wine club discount does not apply.&nbsp;</div>\n<div>&nbsp;</div>\n<div>&nbsp;</div>'),(42177,2898,'subtitle',NULL),(42178,2898,'price','13500'),(42179,2898,'web_status','Retired'),(42180,2898,'admin_status','Not Available'),(42181,2898,'rating',''),(42182,2898,'wine_vertical',''),(42183,2898,'wine_score',''),(42184,2899,'web_id','f765f082-691b-4bbc-8b28-ca2b563756ba'),(42185,2899,'slug','reroute-fee'),(42186,2899,'title','Reroute Fee'),(42187,2899,'type','General Merchandise'),(42188,2899,'image',NULL),(42189,2899,'teaser',''),(42190,2899,'content',''),(42191,2899,'subtitle',''),(42192,2899,'price','1800'),(42193,2899,'web_status','Not Available'),(42194,2899,'admin_status','Available'),(42195,2899,'rating',''),(42196,2899,'wine_vertical',''),(42197,2899,'wine_score',''),(42198,2900,'web_id','70e76f7d-a9ff-4428-902d-d5e602735bdb'),(42199,2900,'slug','reusable-wine-sleeve'),(42200,2900,'title','Reusable Wine Sleeve'),(42201,2900,'type','General Merchandise'),(42202,2900,'image',NULL),(42203,2900,'teaser',NULL),(42204,2900,'content',NULL),(42205,2900,'subtitle',NULL),(42206,2900,'price','300'),(42207,2900,'web_status','Not Available'),(42208,2900,'admin_status','Available'),(42209,2900,'rating',''),(42210,2900,'wine_vertical',''),(42211,2900,'wine_score',''),(42212,2901,'web_id','808c326d-e718-450a-800f-5d3c04acb26c'),(42213,2901,'slug','reusable-wine-totes'),(42214,2901,'title','Reusable Wine Totes'),(42215,2901,'type','General Merchandise'),(42216,2901,'image',NULL),(42217,2901,'teaser',''),(42218,2901,'content',''),(42219,2901,'subtitle',''),(42220,2901,'price','250'),(42221,2901,'web_status','Not Available'),(42222,2901,'admin_status','Available'),(42223,2901,'rating',''),(42224,2901,'wine_vertical',''),(42225,2901,'wine_score',''),(42226,2902,'web_id','3b5e08a3-e418-4c37-935b-e650e7debd71'),(42227,2902,'slug','reusable-wine-travel-pak'),(42228,2902,'title','Reusable Wine Travel Pak'),(42229,2902,'type','General Merchandise'),(42230,2902,'image',NULL),(42231,2902,'teaser',''),(42232,2902,'content',''),(42233,2902,'subtitle',''),(42234,2902,'price','300'),(42235,2902,'web_status','Not Available'),(42236,2902,'admin_status','Not Available'),(42237,2902,'rating',''),(42238,2902,'wine_vertical',''),(42239,2902,'wine_score',''),(42240,2903,'web_id','c599bbd7-ff4a-42eb-9880-2b55c0560940'),(42241,2903,'slug','rustic-bakery-crackers'),(42242,2903,'title','Rustic Bakery Crackers'),(42243,2903,'type','General Merchandise'),(42244,2903,'image',NULL),(42245,2903,'teaser',''),(42246,2903,'content',''),(42247,2903,'subtitle',''),(42248,2903,'price','600'),(42249,2903,'web_status','Not Available'),(42250,2903,'admin_status','Not Available'),(42251,2903,'rating',''),(42252,2903,'wine_vertical',''),(42253,2903,'wine_score',''),(42254,2904,'web_id','861f4f45-3938-4ac5-b3a1-fc909f800c1a'),(42255,2904,'slug','salami-red-wine-garlic'),(42256,2904,'title','Salami - Red Wine & Garlic'),(42257,2904,'type','General Merchandise'),(42258,2904,'image','https://images.commerce7.com/meadowcroft-wines/images/original/salumi-c7-1693178178690.png'),(42259,2904,'teaser',NULL),(42260,2904,'content',NULL),(42261,2904,'subtitle',NULL),(42262,2904,'price','1200'),(42263,2904,'web_status','Not Available'),(42264,2904,'admin_status','Available'),(42265,2904,'rating',''),(42266,2904,'wine_vertical',''),(42267,2904,'wine_score',''),(42268,2905,'web_id','36b5bdca-2bf9-4a06-948e-5f8ea39524c4'),(42269,2905,'slug','salami-white-wine-fennel'),(42270,2905,'title','Salami - White Wine & Fennel'),(42271,2905,'type','General Merchandise'),(42272,2905,'image','https://images.commerce7.com/meadowcroft-wines/images/original/salumi-c7-1693178223120.png'),(42273,2905,'teaser',NULL),(42274,2905,'content',NULL),(42275,2905,'subtitle',NULL),(42276,2905,'price','1200'),(42277,2905,'web_status','Not Available'),(42278,2905,'admin_status','Available'),(42279,2905,'rating',''),(42280,2905,'wine_vertical',''),(42281,2905,'wine_score',''),(42282,2906,'web_id','e701503d-817b-4d4f-903c-ac1b025c784f'),(42283,2906,'slug','save-the-bees-t-shirt-men'),(42284,2906,'title','Save The Bees Tee Shirt, Men -old design'),(42285,2906,'type','General Merchandise'),(42286,2906,'image',NULL),(42287,2906,'teaser',NULL),(42288,2906,'content',NULL),(42289,2906,'subtitle','Assorted Sizes'),(42290,2906,'price','3000'),(42291,2906,'web_status','Not Available'),(42292,2906,'admin_status','Available'),(42293,2906,'rating',''),(42294,2906,'wine_vertical',''),(42295,2906,'wine_score',''),(42296,2907,'web_id','baa9d552-40fd-4865-a807-92e2d7f1c657'),(42297,2907,'slug','save-the-bees-t-shirt-women'),(42298,2907,'title','Save The Bees Tee Shirt, Women - old design'),(42299,2907,'type','General Merchandise'),(42300,2907,'image',NULL),(42301,2907,'teaser',NULL),(42302,2907,'content',NULL),(42303,2907,'subtitle','Assorted Sizes'),(42304,2907,'price','3000'),(42305,2907,'web_status','Not Available'),(42306,2907,'admin_status','Available'),(42307,2907,'rating',''),(42308,2907,'wine_vertical',''),(42309,2907,'wine_score',''),(42310,2908,'web_id','53722493-b6c6-463a-89f1-caa8ac9da6e0'),(42311,2908,'slug','25-tastingseated-tasting'),(42312,2908,'title','Seated Tasting'),(42313,2908,'type','Tasting'),(42314,2908,'image','https://images.commerce7.com/meadowcroft-wines/images/original/wine-pour-1730407492018.jpg'),(42315,2908,'teaser',NULL),(42316,2908,'content','<p>$25 Tasting</p>'),(42317,2908,'subtitle',NULL),(42318,2908,'price','2500'),(42319,2908,'web_status','Not Available'),(42320,2908,'admin_status','Available'),(42321,2908,'rating',''),(42322,2908,'wine_vertical',''),(42323,2908,'wine_score',''),(42324,2909,'web_id','e4e66a06-e372-49c3-b8d9-ce49d3d5ff34'),(42325,2909,'slug','a-taste-of-meadowcroft-duplicate'),(42326,2909,'title','Seated Tasting'),(42327,2909,'type','Reservation'),(42328,2909,'image','https://images.commerce7.com/meadowcroft-wines/images/original/tasting-1661978278425.png'),(42329,2909,'teaser',NULL),(42330,2909,'content','<div class=\"ecp-html-content\">\n<div class=\"ecp-html-content\" data-uw-rm-sr=\"\">Experience a relaxed and intimate seated tasting of our current release wines. Our Meadowcroft wine expert will guide you through your flight, while you sip wines and enjoy our cozy tasting room or outdoor patio. Advanced reservations are recommended. $25/ per person For groups of 7 or more people, please reach out to us directly at (707)934-4090 or send an email to <a href=\"mailto:tastingroom@meadowcroftwines.com\">tastingroom@meadowcroftwines.com</a>. We look forward to hosting you!</div>\n<div class=\"ecp-html-content\" data-uw-rm-sr=\"\">&nbsp;</div>\n<div class=\"ecp-html-content\" data-uw-rm-sr=\"\">*A credit card is required to make a reservation. You will not be charged until the day of your visit.</div>\n<ul class=\"ecp-item-list\">\n<li>Approximately 60 minutes</li>\n<li data-ecp-handle=\"price\" data-uw-rm-sr=\"\">$25.00</li>\n<li data-ecp-handle=\"party_size_min_max\">Reservations for parties of 1-6</li>\n</ul>\n</div>'),(42331,2909,'subtitle',NULL),(42332,2909,'price','2500'),(42333,2909,'web_status','Available'),(42334,2909,'admin_status','Available'),(42335,2909,'rating',''),(42336,2909,'wine_vertical',''),(42337,2909,'wine_score',''),(42338,2910,'web_id','b3b59327-8a82-4f09-92d8-1d9de001fb6b'),(42339,2910,'slug','seated-tasting---wine-pass'),(42340,2910,'title','Seated Tasting - Wine Pass'),(42341,2910,'type','Reservation'),(42342,2910,'image','https://images.commerce7.com/meadowcroft-wines/images/original/tasting-1661978296784.png'),(42343,2910,'teaser',NULL),(42344,2910,'content','<p>Experience a relaxed and intimate seated tasting of our current release wines. Our Meadowcroft Wine Expert will guide you through your flight, while you sip and enjoy our cozy patio. Advanced reservations are required.</p>\n<p>One complimentary $25 tasting ( Tasting is $25 per person) with reservation &amp; a minimum purchase of two (2) bottles from your tasting. *Excludes weekends*</p>\n<p>&nbsp;<br />*A credit card is required to make a reservation. You will not be charged until the day of your visit.</p>'),(42345,2910,'subtitle',NULL),(42346,2910,'price','2500'),(42347,2910,'web_status','Available'),(42348,2910,'admin_status','Available'),(42349,2910,'rating',''),(42350,2910,'wine_vertical',''),(42351,2910,'wine_score',''),(42352,2911,'web_id','45cbfc81-cd91-4ce7-b160-d875a775d883'),(42353,2911,'slug','sensory-garden-tasting'),(42354,2911,'title','Sensory Garden Tasting'),(42355,2911,'type','Tasting'),(42356,2911,'image',NULL),(42357,2911,'teaser',''),(42358,2911,'content',''),(42359,2911,'subtitle',''),(42360,2911,'price','6000'),(42361,2911,'web_status','Not Available'),(42362,2911,'admin_status','Available'),(42363,2911,'rating',''),(42364,2911,'wine_vertical',''),(42365,2911,'wine_score',''),(42366,2912,'web_id','96b607ca-f8da-4f38-a47e-f4602de059ba'),(42367,2912,'slug','single-bottle-box'),(42368,2912,'title','Single Bottle Box'),(42369,2912,'type','General Merchandise'),(42370,2912,'image',NULL),(42371,2912,'teaser',''),(42372,2912,'content',''),(42373,2912,'subtitle',''),(42374,2912,'price','800'),(42375,2912,'web_status','Not Available'),(42376,2912,'admin_status','Available'),(42377,2912,'rating',''),(42378,2912,'wine_vertical',''),(42379,2912,'wine_score',''),(42380,2913,'web_id','4134bfc3-2343-4fd3-9580-8c5cd91335ff'),(42381,2913,'slug','single-bottle-box_black'),(42382,2913,'title','Single Bottle Box_Black'),(42383,2913,'type','General Merchandise'),(42384,2913,'image',NULL),(42385,2913,'teaser',''),(42386,2913,'content',''),(42387,2913,'subtitle',''),(42388,2913,'price','800'),(42389,2913,'web_status','Not Available'),(42390,2913,'admin_status','Available'),(42391,2913,'rating',''),(42392,2913,'wine_vertical',''),(42393,2913,'wine_score',''),(42394,2914,'web_id','a8674658-19e5-4d95-9ef4-51f01f40f1c3'),(42395,2914,'slug','single-bottle-textured-bag'),(42396,2914,'title','SINGLE BOTTLE TEXTURED BAG'),(42397,2914,'type','General Merchandise'),(42398,2914,'image',NULL),(42399,2914,'teaser',''),(42400,2914,'content',''),(42401,2914,'subtitle','1 BOTTLE BAG'),(42402,2914,'price','0'),(42403,2914,'web_status','Not Available'),(42404,2914,'admin_status','Not Available'),(42405,2914,'rating',''),(42406,2914,'wine_vertical',''),(42407,2914,'wine_score',''),(42408,2915,'web_id','b3ab0389-ede8-4891-bde6-f5c53bd08916'),(42409,2915,'slug','small-bee-candle'),(42410,2915,'title','Small Bee Candle'),(42411,2915,'type','General Merchandise'),(42412,2915,'image','https://images.commerce7.com/meadowcroft-wines/images/original/small-bee-candle---front-1671816692281.jpg'),(42413,2915,'teaser',''),(42414,2915,'content',''),(42415,2915,'subtitle','Candle'),(42416,2915,'price','1200'),(42417,2915,'web_status','Not Available'),(42418,2915,'admin_status','Available'),(42419,2915,'rating',''),(42420,2915,'wine_vertical',''),(42421,2915,'wine_score',''),(42422,2916,'web_id','1204908c-96fe-4609-ac06-4bc3a8252c7e'),(42423,2916,'slug','social-bee-bracelet-assorted'),(42424,2916,'title','Social Bee Bracelet - Assorted'),(42425,2916,'type','General Merchandise'),(42426,2916,'image',NULL),(42427,2916,'teaser',NULL),(42428,2916,'content',NULL),(42429,2916,'subtitle',NULL),(42430,2916,'price','3500'),(42431,2916,'web_status','Not Available'),(42432,2916,'admin_status','Available'),(42433,2916,'rating',''),(42434,2916,'wine_vertical',''),(42435,2916,'wine_score',''),(42436,2917,'web_id','18121a07-6dae-49b6-a735-c35b843b932c'),(42437,2917,'slug','social-bee-earrings'),(42438,2917,'title','Social Bee Earrings'),(42439,2917,'type','General Merchandise'),(42440,2917,'image',NULL),(42441,2917,'teaser',NULL),(42442,2917,'content',NULL),(42443,2917,'subtitle',NULL),(42444,2917,'price','2700'),(42445,2917,'web_status','Not Available'),(42446,2917,'admin_status','Available'),(42447,2917,'rating',''),(42448,2917,'wine_vertical',''),(42449,2917,'wine_score',''),(42450,2918,'web_id','56ed8fd8-b8a5-4ff3-b9ee-3bca268f4cca'),(42451,2918,'slug','social-bee-necklace'),(42452,2918,'title','Social Bee Necklace'),(42453,2918,'type','General Merchandise'),(42454,2918,'image',NULL),(42455,2918,'teaser',NULL),(42456,2918,'content',NULL),(42457,2918,'subtitle',NULL),(42458,2918,'price','4600'),(42459,2918,'web_status','Not Available'),(42460,2918,'admin_status','Available'),(42461,2918,'rating',''),(42462,2918,'wine_vertical',''),(42463,2918,'wine_score',''),(42464,2919,'web_id','c23c6bdd-b136-413e-ade2-d72e44f01f57'),(42465,2919,'slug','sonoma-spice-queen-bbq-spice'),(42466,2919,'title','Sonoma Spice Queen BBQ Spice'),(42467,2919,'type','General Merchandise'),(42468,2919,'image',NULL),(42469,2919,'teaser',''),(42470,2919,'content',''),(42471,2919,'subtitle',''),(42472,2919,'price','800'),(42473,2919,'web_status','Not Available'),(42474,2919,'admin_status','Available'),(42475,2919,'rating',''),(42476,2919,'wine_vertical',''),(42477,2919,'wine_score',''),(42478,2920,'web_id','e2d3981f-b1ca-4e3a-be81-4f0fcd493d32'),(42479,2920,'slug','sonoma-spice-queen-mulling-spice'),(42480,2920,'title','Sonoma Spice Queen Mulling Spice'),(42481,2920,'type','General Merchandise'),(42482,2920,'image',NULL),(42483,2920,'teaser',''),(42484,2920,'content',''),(42485,2920,'subtitle',''),(42486,2920,'price','800'),(42487,2920,'web_status','Not Available'),(42488,2920,'admin_status','Available'),(42489,2920,'rating',''),(42490,2920,'wine_vertical',''),(42491,2920,'wine_score',''),(42492,2921,'web_id','df491fdc-0044-44ef-8c8f-cd828a68ce89'),(42493,2921,'slug','sparkling-cocktail-kit'),(42494,2921,'title','Sparkling Cocktail Kit'),(42495,2921,'type','General Merchandise'),(42496,2921,'image',NULL),(42497,2921,'teaser',''),(42498,2921,'content',''),(42499,2921,'subtitle',''),(42500,2921,'price','2500'),(42501,2921,'web_status','Not Available'),(42502,2921,'admin_status','Available'),(42503,2921,'rating',''),(42504,2921,'wine_vertical',''),(42505,2921,'wine_score',''),(42506,2922,'web_id','1844246c-1bbf-4da8-9e32-75033c7e2c86'),(42507,2922,'slug','stemless-glass1'),(42508,2922,'title','Stemless Glass'),(42509,2922,'type','General Merchandise'),(42510,2922,'image',NULL),(42511,2922,'teaser',''),(42512,2922,'content','LOGO STEMLESS GLASS'),(42513,2922,'subtitle',''),(42514,2922,'price','500'),(42515,2922,'web_status','Not Available'),(42516,2922,'admin_status','Available'),(42517,2922,'rating',''),(42518,2922,'wine_vertical',''),(42519,2922,'wine_score',''),(42520,2923,'web_id','d1472644-9395-434c-8a8c-4f5a672ee328'),(42521,2923,'slug','stemless-glass'),(42522,2923,'title','Stemless Logo Glass'),(42523,2923,'type','General Merchandise'),(42524,2923,'image',NULL),(42525,2923,'teaser',''),(42526,2923,'content',''),(42527,2923,'subtitle',''),(42528,2923,'price','500'),(42529,2923,'web_status','Not Available'),(42530,2923,'admin_status','Available'),(42531,2923,'rating',''),(42532,2923,'wine_vertical',''),(42533,2923,'wine_score',''),(42534,2924,'web_id','8e7befee-4126-46e0-bfb5-0ba9cd98beda'),(42535,2924,'slug','stemmed-logo-glass'),(42536,2924,'title','Stemmed Logo Glass'),(42537,2924,'type','General Merchandise'),(42538,2924,'image',NULL),(42539,2924,'teaser',''),(42540,2924,'content',''),(42541,2924,'subtitle',''),(42542,2924,'price','1400'),(42543,2924,'web_status','Not Available'),(42544,2924,'admin_status','Available'),(42545,2924,'rating',''),(42546,2924,'wine_vertical',''),(42547,2924,'wine_score',''),(42548,2925,'web_id','b3949eb7-1480-46ed-a1b4-00665f327af2'),(42549,2925,'slug','12-pack-shipper'),(42550,2925,'title','Styrofoam Shippers'),(42551,2925,'type','General Merchandise'),(42552,2925,'image',NULL),(42553,2925,'teaser',''),(42554,2925,'content',''),(42555,2925,'subtitle',''),(42556,2925,'price','0'),(42557,2925,'web_status','Not Available'),(42558,2925,'admin_status','Not Available'),(42559,2925,'rating',''),(42560,2925,'wine_vertical',''),(42561,2925,'wine_score',''),(42562,2926,'web_id','cabbd2a5-2343-4de3-804e-b28c89af4b4e'),(42563,2926,'slug','taste-of-meadowcroft'),(42564,2926,'title','Taste of Meadowcroft'),(42565,2926,'type','Tasting'),(42566,2926,'image',NULL),(42567,2926,'teaser',''),(42568,2926,'content',''),(42569,2926,'subtitle',''),(42570,2926,'price','4000'),(42571,2926,'web_status','Retired'),(42572,2926,'admin_status','Available'),(42573,2926,'rating',''),(42574,2926,'wine_vertical',''),(42575,2926,'wine_score',''),(42576,2927,'web_id','e7e3a874-39a7-4de5-8876-8f8388d49ffe'),(42577,2927,'slug','a-perfect-blend-duplicate'),(42578,2927,'title','Taste of Meadowcroft'),(42579,2927,'type','Reservation'),(42580,2927,'image','https://images.commerce7.com/meadowcroft-wines/images/original/taste-of-meadowcroft-1661984660430.png'),(42581,2927,'teaser',NULL),(42582,2927,'content','<div class=\"ecp-html-content\">Experience a relaxed and intimate seated tasting of our reserve wines. Our wine educator will guide you through your flight of wines. This luxury experience includes a complement of artisanal cheeses and light bites. For groups of 7 or more people, please reach out to us directly at (707)934-4090 or send email to <a href=\"mailto:tastingroom@meaodwcroftwines.com\">tastingroom@meadowcroftwines.com</a>. We look forward to hosting you!</div>\n<div class=\"ecp-html-content\">&nbsp;</div>\n<div class=\"ecp-html-content\">*A credit card is required to make a reservation. You will not be charged until the day of your visit.</div>\n<ul class=\"ecp-item-list\">\n<li>Approximately 60 minutes</li>\n<li data-ecp-handle=\"price\" data-uw-rm-sr=\"\">$40.00</li>\n<li data-ecp-handle=\"party_size_min_max\">Reservations for parties of 1-6</li>\n</ul>'),(42583,2927,'subtitle',NULL),(42584,2927,'price','4000'),(42585,2927,'web_status','Available'),(42586,2927,'admin_status','Available'),(42587,2927,'rating',''),(42588,2927,'wine_vertical',''),(42589,2927,'wine_score',''),(42604,2929,'web_id','18af291a-66d0-4310-90b4-6e41dc93d17a'),(42605,2929,'slug','tour-2-half-glasses'),(42606,2929,'title','Tour 2 Half Glasses'),(42607,2929,'type','General Merchandise'),(42608,2929,'image',NULL),(42609,2929,'teaser',''),(42610,2929,'content',''),(42611,2929,'subtitle',''),(42612,2929,'price','2000'),(42613,2929,'web_status','Not Available'),(42614,2929,'admin_status','Available'),(42615,2929,'rating',''),(42616,2929,'wine_vertical',''),(42617,2929,'wine_score',''),(42618,2930,'web_id','4d71464b-3e80-44dd-9dcf-f6d8074191e7'),(42619,2930,'slug','truffle-oil-sampler-set'),(42620,2930,'title','Truffle Oil sampler set'),(42621,2930,'type','General Merchandise'),(42622,2930,'image','https://images.commerce7.com/meadowcroft-wines/images/original/truffle-oil-sampler-1696620986307.jpg'),(42623,2930,'teaser',NULL),(42624,2930,'content','<p>Trio sampler set of different truffle oils from the Truffleist.&nbsp; Truffle is a flavor that is classicly paired with Pinot Noir - choose your favorite bottle of Meadowcroft Pinot Noir to try it for yourself.&nbsp; Kit includes a two ounce bottle of each: truffle sunflower oil, truffle balsamic vinegar &amp; truffle mini oil.&nbsp;</p>'),(42625,2930,'subtitle','4 - 2OZ BOTTLES'),(42626,2930,'price','3000'),(42627,2930,'web_status','Available'),(42628,2930,'admin_status','Available'),(42629,2930,'vendor','Faire - The Truffleist'),(42630,2930,'rating',''),(42631,2930,'wine_vertical',''),(42632,2930,'wine_score',''),(42633,2931,'web_id','1b9a358c-b8af-454c-9792-c50d715b669e'),(42634,2931,'slug','two-for-one-seated-tasting'),(42635,2931,'title','Two For One Seated Tasting'),(42636,2931,'type','Reservation'),(42637,2931,'image',NULL),(42638,2931,'teaser',NULL),(42639,2931,'content','<p>Experience a relaxed and intimate seated tasting of our current release wines. Our Meadowcroft Wine Expert will guide you through your flight, while you sip and enjoy our cozy patio. Advanced reservations are recommended.</p>\n<p>For a limited time, enjoy 2 for one pricing. $25 for two guests.</p>\n<p>&nbsp;We look forward to hosting you!</p>\n<p>** Offer expires September 30th, 2022</p>\n<p>*A credit card is required to make a reservation. You will not be charged until the day of your visit.</p>'),(42640,2931,'subtitle',NULL),(42641,2931,'price','2500'),(42642,2931,'web_status','Available'),(42643,2931,'admin_status','Available'),(42644,2931,'rating',''),(42645,2931,'wine_vertical',''),(42646,2931,'wine_score',''),(42647,2932,'web_id','9bbc95b1-ccf1-4d29-af81-a3e2b315c25b'),(42648,2932,'slug','ups-shipping'),(42649,2932,'title','UPS Shipping'),(42650,2932,'type','General Merchandise'),(42651,2932,'image',NULL),(42652,2932,'teaser',NULL),(42653,2932,'content','UPS Shipping'),(42654,2932,'subtitle',NULL),(42655,2932,'price','0'),(42656,2932,'web_status','Not Available'),(42657,2932,'admin_status','Not Available'),(42658,2932,'rating',''),(42659,2932,'wine_vertical',''),(42660,2932,'wine_score',''),(42661,2933,'web_id','4c1332c4-1612-470a-92f6-39ab98208aae'),(42662,2933,'slug','wine--candy-pairing'),(42663,2933,'title','Valentine\'s Day Wine & Chocolate Pairing'),(42664,2933,'type','Reservation'),(42665,2933,'image','https://images.commerce7.com/meadowcroft-wines/images/original/v-day-event-image-1674516566073.jpg'),(42666,2933,'teaser',NULL),(42667,2933,'content',''),(42668,2933,'subtitle',NULL),(42669,2933,'price','4500'),(42670,2933,'web_status','Available'),(42671,2933,'admin_status','Available'),(42672,2933,'rating',''),(42673,2933,'wine_vertical',''),(42674,2933,'wine_score',''),(42675,2934,'web_id','b27d447a-8953-41f5-8a72-70eb874315ad'),(42676,2934,'slug','vest-ladies-soft-shell'),(42677,2934,'title','Vest - ladies soft shell'),(42678,2934,'type','General Merchandise'),(42679,2934,'image',NULL),(42680,2934,'teaser',''),(42681,2934,'content',''),(42682,2934,'subtitle',''),(42683,2934,'price','5000'),(42684,2934,'web_status','Not Available'),(42685,2934,'admin_status','Available'),(42686,2934,'vendor','707 Embroidery Zone'),(42687,2934,'rating',''),(42688,2934,'wine_vertical',''),(42689,2934,'wine_score',''),(42690,2935,'web_id','791587b6-3378-43ae-92fa-0c54272bbc4c'),(42691,2935,'slug','vest-fleece'),(42692,2935,'title','Vest- fleece'),(42693,2935,'type','General Merchandise'),(42694,2935,'image',NULL),(42695,2935,'teaser',NULL),(42696,2935,'content',NULL),(42697,2935,'subtitle','Womens Black Fleece with Gold Bee Logo'),(42698,2935,'price','5000'),(42699,2935,'web_status','Not Available'),(42700,2935,'admin_status','Available'),(42701,2935,'vendor','707 Embroidery Zone'),(42702,2935,'rating',''),(42703,2935,'wine_vertical',''),(42704,2935,'wine_score',''),(42705,2936,'web_id','bfa35143-cb54-4f4d-9686-1472e29a42f5'),(42706,2936,'slug','vineyard-tour'),(42707,2936,'title','Vineyard Tour'),(42708,2936,'type','General Merchandise'),(42709,2936,'image',NULL),(42710,2936,'teaser',NULL),(42711,2936,'content','<p>Meadowcroft Vineyard Tour</p>'),(42712,2936,'subtitle',NULL),(42713,2936,'price','5000'),(42714,2936,'web_status','Not Available'),(42715,2936,'admin_status','Available'),(42716,2936,'rating',''),(42717,2936,'wine_vertical',''),(42718,2936,'wine_score',''),(42733,2938,'web_id','e8b45fcb-bcfa-4d85-822a-9a41046e7967'),(42734,2938,'slug','virtual-custom-curated-experience'),(42735,2938,'title','Virtual Custom/ Curated Experience'),(42736,2938,'type','General Merchandise'),(42737,2938,'image',NULL),(42738,2938,'teaser',NULL),(42739,2938,'content','4 wines, customized per customer. <br>'),(42740,2938,'subtitle',NULL),(42741,2938,'price','20000'),(42742,2938,'web_status','Not Available'),(42743,2938,'admin_status','Not Available'),(42744,2938,'rating',''),(42745,2938,'wine_vertical',''),(42746,2938,'wine_score',''),(42747,2939,'web_id','0fe693c6-c452-4fe6-aa3e-d8515c63a234'),(42748,2939,'slug','non---member-visitor'),(42749,2939,'title','Visitor- Non Member'),(42750,2939,'type','General Merchandise'),(42751,2939,'image',NULL),(42752,2939,'teaser',''),(42753,2939,'content',''),(42754,2939,'subtitle',''),(42755,2939,'price','0'),(42756,2939,'web_status','Not Available'),(42757,2939,'admin_status','Available'),(42758,2939,'rating',''),(42759,2939,'wine_vertical',''),(42760,2939,'wine_score',''),(42761,2940,'web_id','b094224c-f699-4914-a36c-87c504afbee3'),(42762,2940,'slug','wine-club-member-visitor'),(42763,2940,'title','Visitor- Wine Club Member'),(42764,2940,'type','General Merchandise'),(42765,2940,'image',NULL),(42766,2940,'teaser',''),(42767,2940,'content',''),(42768,2940,'subtitle',''),(42769,2940,'price','0'),(42770,2940,'web_status','Not Available'),(42771,2940,'admin_status','Available'),(42772,2940,'rating',''),(42773,2940,'wine_vertical',''),(42774,2940,'wine_score',''),(42775,2941,'web_id','d3cc517a-9516-48b7-964c-5ef1d3f0621f'),(42776,2941,'slug','white-wine-blind-tasting-kit'),(42777,2941,'title','White Wine Blind Tasting Kit'),(42778,2941,'type','Bundle'),(42779,2941,'image','https://images.commerce7.com/meadowcroft-wines/images/original/white-1671645798066.png'),(42780,2941,'teaser',NULL),(42781,2941,'content','<div>CHALLENGE YOURSELF TO AN AT-HOME BLIND TASTING</div>\n<div>&nbsp;</div>\n<div>Blind tasting is a term for tasting wines without seeing the label or knowing what the wine is.&nbsp; This activity is a great way to test your wine knowledge.&nbsp; The object is to ascertain such features as grape varieties, region, vintage, and price of wine purely through the act of seeing, smelling, and tasting the wine in the glass.&nbsp;&nbsp;</div>\n<div>&nbsp;</div>\n<div>KIT INCLUDES: &nbsp;</div>\n<div>\n<ul>\n<li>4 bottles of white wine with labels concealed</li>\n<li>Detailed instructions on setup</li>\n<li>2 blind tasting mats*</li>\n<li>Wine aroma and flavor chart</li>\n<li>Confidential answer envelope</li>\n</ul>\n<div>This experience can be enjoyed by one person or up to four people.&nbsp; If you need more than two tasting mats, please put a note in \"Shipper Comments.\"</div>\n</div>\n<div>&nbsp;</div>\n<div>TRY OUR OTHER BLIND TASTING KITS:</div>\n<div><a title=\"Red Wine Blind Tasting Kit\" href=\"http://https//www.meadowcroftwines.com/shop/?view=product&amp;slug=blind_tasting_red\" target=\"_blank\" rel=\"noopener\">ALL REDS BLIND TASTING KIT</a>&nbsp; OR&nbsp; <a title=\"Blind Tasting Kit\" href=\"https://www.meadowcroftwines.com/shop/?view=product&amp;slug=blind_tasting_mix\" target=\"_blank\" rel=\"noopener\">MIXED WINES BLIND TASTING KIT</a></div>\n<div>&nbsp;</div>\n<div>OPTIONAL ADD-ON:<br /><a title=\"Book Virtual Wine Expert\" href=\"mailto:tastingroom@meadowcroftwines.com\" target=\"_blank\" rel=\"noopener\">Book a Virtual Wine Expert to lead you through your Blind Tasting Kit.&nbsp;&nbsp;</a></div>\n<div>&nbsp;</div>\n<div>&nbsp;</div>\n<div>*Blind Tasting Kit cannot be combined with any other discounts.&nbsp; Wine Club discount does not apply.&nbsp;</div>'),(42782,2941,'subtitle',NULL),(42783,2941,'price','7900'),(42784,2941,'web_status','Retired'),(42785,2941,'admin_status','Not Available'),(42786,2941,'rating',''),(42787,2941,'wine_vertical',''),(42788,2941,'wine_score',''),(42789,2942,'web_id','c0b277b5-1b64-4c8f-9d0c-b276a04f4951'),(42790,2942,'slug','wine--cheese-pairing-wheel'),(42791,2942,'title','Wine & Cheese Pairing Wheel'),(42792,2942,'type','General Merchandise'),(42793,2942,'image',NULL),(42794,2942,'teaser',NULL),(42795,2942,'content',''),(42796,2942,'subtitle',NULL),(42797,2942,'price','500'),(42798,2942,'web_status','Not Available'),(42799,2942,'admin_status','Not Available'),(42800,2942,'rating',''),(42801,2942,'wine_vertical',''),(42802,2942,'wine_score',''),(42803,2943,'web_id','5df8e07b-2ec5-4a5d-b0b1-f83527ac3b09'),(42804,2943,'slug','wine-food-pairing-magnet'),(42805,2943,'title','Wine & Food Pairing Magnet'),(42806,2943,'type','General Merchandise'),(42807,2943,'image',NULL),(42808,2943,'teaser',''),(42809,2943,'content',''),(42810,2943,'subtitle',''),(42811,2943,'price','300'),(42812,2943,'web_status','Available'),(42813,2943,'admin_status','Available'),(42814,2943,'rating',''),(42815,2943,'wine_vertical',''),(42816,2943,'wine_score',''),(42817,2944,'web_id','e9cbefec-e0a5-47fc-8ed2-35b0837f5249'),(42818,2944,'slug','meadowcroft-wine-aerator-dup'),(42819,2944,'title','Wine Aerator'),(42820,2944,'type','General Merchandise'),(42821,2944,'image',NULL),(42822,2944,'teaser',''),(42823,2944,'content','MEADOWCROFT AERATOR'),(42824,2944,'subtitle',''),(42825,2944,'price','2800'),(42826,2944,'web_status','Not Available'),(42827,2944,'admin_status','Available'),(42828,2944,'rating',''),(42829,2944,'wine_vertical',''),(42830,2944,'wine_score',''),(42831,2945,'web_id','bfacfb63-b94b-4dcb-9655-8722529cdc37'),(42832,2945,'slug','wine-bags-4-bottle-logo'),(42833,2945,'title','Wine Bags - 4 Bottle - Logo'),(42834,2945,'type','General Merchandise'),(42835,2945,'image',NULL),(42836,2945,'teaser',''),(42837,2945,'content',''),(42838,2945,'subtitle','POS'),(42839,2945,'price','0'),(42840,2945,'web_status','Not Available'),(42841,2945,'admin_status','Available'),(42842,2945,'rating',''),(42843,2945,'wine_vertical',''),(42844,2945,'wine_score',''),(42845,2946,'web_id','2288cf7a-c65a-4389-9a02-26f677ec508c'),(42846,2946,'slug','-12-glass'),(42847,2946,'title','Wine By The Glass'),(42848,2946,'type','Tasting'),(42849,2946,'image',NULL),(42850,2946,'teaser',NULL),(42851,2946,'content',NULL),(42852,2946,'subtitle',NULL),(42853,2946,'price','1200'),(42854,2946,'web_status','Not Available'),(42855,2946,'admin_status','Available'),(42856,2946,'varietal',NULL),(42857,2946,'appellation',NULL),(42858,2946,'vintage',NULL),(42859,2946,'rating',''),(42860,2946,'wine_vertical',''),(42861,2946,'wine_score',''),(42862,2947,'web_id','20887acc-f503-462d-b19c-26f84a915016'),(42863,2947,'slug','wine-charms'),(42864,2947,'title','Wine Charms'),(42865,2947,'type','General Merchandise'),(42866,2947,'image',NULL),(42867,2947,'teaser',''),(42868,2947,'content',''),(42869,2947,'subtitle',''),(42870,2947,'price','500'),(42871,2947,'web_status','Not Available'),(42872,2947,'admin_status','Not Available'),(42873,2947,'rating',''),(42874,2947,'wine_vertical',''),(42875,2947,'wine_score',''),(42876,2948,'web_id','de94df06-b641-4962-9bfa-b3af632c4b0e'),(42877,2948,'slug','wine-club-pick-up---no-tasting'),(42878,2948,'title','Wine Club Pick Up - No Tasting'),(42879,2948,'type','Reservation'),(42880,2948,'image',NULL),(42881,2948,'teaser',NULL),(42882,2948,'content',''),(42883,2948,'subtitle',NULL),(42884,2948,'price','0'),(42885,2948,'web_status','Available'),(42886,2948,'admin_status','Available'),(42887,2948,'rating',''),(42888,2948,'wine_vertical',''),(42889,2948,'wine_score',''),(42890,2949,'web_id','47927b07-aba7-4beb-b24e-b9372c5b79c0'),(42891,2949,'slug','wine-taste-companion'),(42892,2949,'title','Wine Taste Companion'),(42893,2949,'type','General Merchandise'),(42894,2949,'image',NULL),(42895,2949,'teaser',NULL),(42896,2949,'content',NULL),(42897,2949,'subtitle',NULL),(42898,2949,'price','2500'),(42899,2949,'web_status','Retired'),(42900,2949,'admin_status','Not Available'),(42901,2949,'rating',''),(42902,2949,'wine_vertical',''),(42903,2949,'wine_score',''),(42904,2950,'web_id','3fdf2f5c-688f-4315-a5ba-6a5fe5142a16'),(42905,2950,'slug','wine-tote-insulated-12-bottle-with-wheels'),(42906,2950,'title','Wine tote - insulated 12 bottle with wheels'),(42907,2950,'type','General Merchandise'),(42908,2950,'image',NULL),(42909,2950,'teaser',''),(42910,2950,'content',''),(42911,2950,'subtitle',''),(42912,2950,'price','8500'),(42913,2950,'web_status','Not Available'),(42914,2950,'admin_status','Available'),(42915,2950,'rating',''),(42916,2950,'wine_vertical',''),(42917,2950,'wine_score',''),(42918,2951,'web_id','fa2cbf67-eceb-41eb-9a68-8161273580fb'),(42919,2951,'slug','wine-tote-washable-paper'),(42920,2951,'title','Wine Tote - washable paper'),(42921,2951,'type','General Merchandise'),(42922,2951,'image',NULL),(42923,2951,'teaser',''),(42924,2951,'content',''),(42925,2951,'subtitle',''),(42926,2951,'price','2500'),(42927,2951,'web_status','Not Available'),(42928,2951,'admin_status','Available'),(42929,2951,'vendor','Faire- Perennity'),(42930,2951,'rating',''),(42931,2951,'wine_vertical',''),(42932,2951,'wine_score',''),(42933,2952,'web_id','9f23338d-49e9-4adf-964c-491d07d9a47b'),(42934,2952,'slug','wine-travel-silicon-cup'),(42935,2952,'title','Wine Travel Silicon Tumbler'),(42936,2952,'type','General Merchandise'),(42937,2952,'image',NULL),(42938,2952,'teaser',NULL),(42939,2952,'content',NULL),(42940,2952,'subtitle',NULL),(42941,2952,'price','700'),(42942,2952,'web_status','Not Available'),(42943,2952,'admin_status','Available'),(42944,2952,'vendor','Faire- Mother Earth'),(42945,2952,'rating',''),(42946,2952,'wine_vertical',''),(42947,2952,'wine_score',''),(42948,2953,'web_id','eda0ef07-bd69-466b-9cc5-8a6fe0465182'),(42949,2953,'slug','winter-whites-chardonnay-bundle'),(42950,2953,'title','Winter whites Chardonnay Bundle'),(42951,2953,'type','Bundle'),(42952,2953,'image',NULL),(42953,2953,'teaser',NULL),(42954,2953,'content',NULL),(42955,2953,'subtitle',NULL),(42956,2953,'price','10500'),(42957,2953,'web_status','Not Available'),(42958,2953,'admin_status','Not Available'),(42959,2953,'rating',''),(42960,2953,'wine_vertical',''),(42961,2953,'wine_score',''),(42962,2954,'web_id','1ef16e42-5f36-4a81-8a81-52712bd3967d'),(42963,2954,'slug','winter-whites-mixed-bundle-duplicate'),(42964,2954,'title','Winter Whites Mixed 6 Pack Bundle'),(42965,2954,'type','Bundle'),(42966,2954,'image',NULL),(42967,2954,'teaser',NULL),(42968,2954,'content',NULL),(42969,2954,'subtitle',NULL),(42970,2954,'price','20300'),(42971,2954,'web_status','Not Available'),(42972,2954,'admin_status','Not Available'),(42973,2954,'rating',''),(42974,2954,'wine_vertical',''),(42975,2954,'wine_score',''),(42976,2955,'web_id','afe6261c-a6ae-4d3a-a8e0-cceaac50f272'),(42977,2955,'slug','winter-whites-mixed-bundle'),(42978,2955,'title','Winter Whites Mixed Bundle'),(42979,2955,'type','Bundle'),(42980,2955,'image',NULL),(42981,2955,'teaser',NULL),(42982,2955,'content',NULL),(42983,2955,'subtitle',NULL),(42984,2955,'price','9800'),(42985,2955,'web_status','Not Available'),(42986,2955,'admin_status','Not Available'),(42987,2955,'rating',''),(42988,2955,'wine_vertical',''),(42989,2955,'wine_score',''),(42990,2956,'web_id','48eb1563-0dd9-4569-a859-c70c6f633cb8'),(42991,2956,'slug','womens-polo-t-shirt'),(42992,2956,'title','Women\'s POLO T Shirt'),(42993,2956,'type','General Merchandise'),(42994,2956,'image',NULL),(42995,2956,'teaser',NULL),(42996,2956,'content','<p>Women\'s Bee T Shirt</p>'),(42997,2956,'subtitle',NULL),(42998,2956,'price','3500'),(42999,2956,'web_status','Not Available'),(43000,2956,'admin_status','Available'),(43001,2956,'rating',''),(43002,2956,'wine_vertical',''),(43003,2956,'wine_score',''),(43004,2957,'web_id','1c6adac4-aedf-4618-9b44-16b78083cc8f'),(43005,2957,'slug','womens-t-shirt'),(43006,2957,'title','Women\'s T Shirt'),(43007,2957,'type','General Merchandise'),(43008,2957,'image',NULL),(43009,2957,'teaser',NULL),(43010,2957,'content','<p>Women\'s Bee T Shirt</p>'),(43011,2957,'subtitle',NULL),(43012,2957,'price','2500'),(43013,2957,'web_status','Not Available'),(43014,2957,'admin_status','Available'),(43015,2957,'rating',''),(43016,2957,'wine_vertical',''),(43017,2957,'wine_score',''),(43018,2958,'web_id','d6a942ab-17fb-4cf8-9337-f14bc9cfaef4'),(43019,2958,'slug','women-s-t-shirt'),(43020,2958,'title','Women\'s T-Shirt'),(43021,2958,'type','General Merchandise'),(43022,2958,'image',NULL),(43023,2958,'teaser',''),(43024,2958,'content',''),(43025,2958,'subtitle','Assorted Sizes'),(43026,2958,'price','2500'),(43027,2958,'web_status','Not Available'),(43028,2958,'admin_status','Available'),(43029,2958,'rating',''),(43030,2958,'wine_vertical',''),(43031,2958,'wine_score',''),(43032,2959,'web_id','dd7f1dca-36e7-45c5-bce9-7e2fa696d2d9'),(43033,2959,'slug','wood-handle-cheese-knife'),(43034,2959,'title','Wood Handle Cheese Knife'),(43035,2959,'type','General Merchandise'),(43036,2959,'image',NULL),(43037,2959,'teaser',''),(43038,2959,'content','Wood Handle Cheese Knife'),(43039,2959,'subtitle',''),(43040,2959,'price','999'),(43041,2959,'web_status','Not Available'),(43042,2959,'admin_status','Available'),(43043,2959,'rating',''),(43044,2959,'wine_vertical',''),(43045,2959,'wine_score',''),(43046,2960,'web_id','d844242c-0f09-478a-a3a0-5b0d701c7f83'),(43047,2960,'slug','z1--12-bottle'),(43048,2960,'title','Z1- 12 Bottle'),(43049,2960,'type','General Merchandise'),(43050,2960,'image',NULL),(43051,2960,'teaser',NULL),(43052,2960,'content',''),(43053,2960,'subtitle',NULL),(43054,2960,'price','2400'),(43055,2960,'web_status','Not Available'),(43056,2960,'admin_status','Not Available'),(43057,2960,'rating',''),(43058,2960,'wine_vertical',''),(43059,2960,'wine_score',''),(43060,2961,'web_id','4b0ef2f5-e0db-4b81-821c-8c4ca7e479e2'),(43061,2961,'slug','z1-1-bottle'),(43062,2961,'title','Z1-1 Bottle'),(43063,2961,'type','General Merchandise'),(43064,2961,'image',NULL),(43065,2961,'teaser',NULL),(43066,2961,'content',''),(43067,2961,'subtitle',NULL),(43068,2961,'price','1000'),(43069,2961,'web_status','Not Available'),(43070,2961,'admin_status','Not Available'),(43071,2961,'rating',''),(43072,2961,'wine_vertical',''),(43073,2961,'wine_score',''),(43074,2962,'web_id','f650dee7-0202-44c1-bb47-c3f2f4f24513'),(43075,2962,'slug','z1-2-bottle'),(43076,2962,'title','Z1-2 Bottle'),(43077,2962,'type','General Merchandise'),(43078,2962,'image',NULL),(43079,2962,'teaser',NULL),(43080,2962,'content',''),(43081,2962,'subtitle',NULL),(43082,2962,'price','1200'),(43083,2962,'web_status','Not Available'),(43084,2962,'admin_status','Not Available'),(43085,2962,'rating',''),(43086,2962,'wine_vertical',''),(43087,2962,'wine_score',''),(43088,2963,'web_id','01067b40-5c96-492d-b553-d14a05b4ae9f'),(43089,2963,'slug','z1-4-bottle'),(43090,2963,'title','Z1-4 Bottle'),(43091,2963,'type','General Merchandise'),(43092,2963,'image',NULL),(43093,2963,'teaser',NULL),(43094,2963,'content',''),(43095,2963,'subtitle',NULL),(43096,2963,'price','1400'),(43097,2963,'web_status','Not Available'),(43098,2963,'admin_status','Not Available'),(43099,2963,'rating',''),(43100,2963,'wine_vertical',''),(43101,2963,'wine_score',''),(43102,2964,'web_id','41b21fb8-cf7f-4647-9770-e9dceb3400af'),(43103,2964,'slug','z1-6-bottle'),(43104,2964,'title','Z1-6 Bottle'),(43105,2964,'type','General Merchandise'),(43106,2964,'image',NULL),(43107,2964,'teaser',NULL),(43108,2964,'content',''),(43109,2964,'subtitle',NULL),(43110,2964,'price','1600'),(43111,2964,'web_status','Not Available'),(43112,2964,'admin_status','Not Available'),(43113,2964,'rating',''),(43114,2964,'wine_vertical',''),(43115,2964,'wine_score',''),(43116,2965,'web_id','126690b2-eeec-4b71-ae03-b4d269adc5d6'),(43117,2965,'slug','z2-1-bottle'),(43118,2965,'title','Z2-1 Bottle'),(43119,2965,'type','General Merchandise'),(43120,2965,'image',NULL),(43121,2965,'teaser',NULL),(43122,2965,'content',''),(43123,2965,'subtitle',NULL),(43124,2965,'price','2500'),(43125,2965,'web_status','Not Available'),(43126,2965,'admin_status','Not Available'),(43127,2965,'rating',''),(43128,2965,'wine_vertical',''),(43129,2965,'wine_score',''),(43130,2966,'web_id','d7d69290-348d-4ef6-b526-380cca1e6420'),(43131,2966,'slug','z2-12-bottle'),(43132,2966,'title','Z2-12 Bottle'),(43133,2966,'type','General Merchandise'),(43134,2966,'image',NULL),(43135,2966,'teaser',NULL),(43136,2966,'content',''),(43137,2966,'subtitle',NULL),(43138,2966,'price','10000'),(43139,2966,'web_status','Not Available'),(43140,2966,'admin_status','Not Available'),(43141,2966,'rating',''),(43142,2966,'wine_vertical',''),(43143,2966,'wine_score',''),(43144,2967,'web_id','6d10652e-2cda-413d-b7f7-f06d35de81fc'),(43145,2967,'slug','z2-2-bottle'),(43146,2967,'title','Z2-2 Bottle'),(43147,2967,'type','General Merchandise'),(43148,2967,'image',NULL),(43149,2967,'teaser',NULL),(43150,2967,'content',''),(43151,2967,'subtitle',NULL),(43152,2967,'price','2700'),(43153,2967,'web_status','Not Available'),(43154,2967,'admin_status','Not Available'),(43155,2967,'rating',''),(43156,2967,'wine_vertical',''),(43157,2967,'wine_score',''),(43158,2968,'web_id','d19ff9c6-31fd-4dc3-9dde-996e9e95586b'),(43159,2968,'slug','z2-4-bottle'),(43160,2968,'title','Z2-4 Bottle'),(43161,2968,'type','General Merchandise'),(43162,2968,'image',NULL),(43163,2968,'teaser',NULL),(43164,2968,'content',''),(43165,2968,'subtitle',NULL),(43166,2968,'price','4000'),(43167,2968,'web_status','Not Available'),(43168,2968,'admin_status','Not Available'),(43169,2968,'rating',''),(43170,2968,'wine_vertical',''),(43171,2968,'wine_score',''),(43172,2969,'web_id','3cfed7b1-7c38-4c9d-b526-a19ab702c3dc'),(43173,2969,'slug','z2-6-bottle'),(43174,2969,'title','Z2-6 Bottle'),(43175,2969,'type','General Merchandise'),(43176,2969,'image',NULL),(43177,2969,'teaser',NULL),(43178,2969,'content',''),(43179,2969,'subtitle',NULL),(43180,2969,'price','5000'),(43181,2969,'web_status','Not Available'),(43182,2969,'admin_status','Not Available'),(43183,2969,'rating',''),(43184,2969,'wine_vertical',''),(43185,2969,'wine_score',''),(43186,2970,'web_id','42b55862-1120-40c5-bab2-74aefc62cd6e'),(43187,2970,'slug','z2-highlands-5'),(43188,2970,'title','Z2-Highlands $5'),(43189,2970,'type','General Merchandise'),(43190,2970,'image',NULL),(43191,2970,'teaser',''),(43192,2970,'content','Shipping Group 2'),(43193,2970,'subtitle',''),(43194,2970,'price','500'),(43195,2970,'web_status','Not Available'),(43196,2970,'admin_status','Available'),(43197,2970,'rating',''),(43198,2970,'wine_vertical',''),(43199,2970,'wine_score',''),(43200,2971,'web_id','3a8a11cd-e451-4dde-8eed-b2354e7a03e4'),(43201,2971,'slug','current-releases'),(43202,2971,'type','Manual'),(43203,2971,'web_status','Available'),(43204,2971,'admin_status','Available'),(43205,2971,'product_web_ids','a:35:{i:0;s:36:\"1e663fd1-11ab-4d6c-8c40-fd7343b5871e\";i:1;s:36:\"b7435b14-1dab-4349-8001-ba737c1ab5ec\";i:2;s:36:\"84470c10-8921-4fe5-97d3-dea5b16e2b02\";i:3;s:36:\"ab1c61b2-c8ca-4ad5-9eb6-54a2a9e0fac9\";i:4;s:36:\"52b557a9-e1c0-40cf-a296-1a8c0c5edd33\";i:5;s:36:\"668c6dad-5a92-408c-a9ca-048cab126558\";i:6;s:36:\"88f51065-b11a-49de-837e-c205542d06a6\";i:7;s:36:\"1ec7c972-267a-492a-84cd-80eb8e4a3af1\";i:8;s:36:\"d5b6925a-4972-4651-9577-62416f8f0a71\";i:9;s:36:\"2258e5af-09a4-4494-b17e-3ef4c82fb1c6\";i:10;s:36:\"f18a2459-2e92-4934-b781-25b0a493de47\";i:11;s:36:\"9b6f0d5c-9365-4a99-b426-02156d134cbb\";i:12;s:36:\"80bb752a-8aef-47ab-b833-20274a2f0385\";i:13;s:36:\"3ac5dfa8-598f-4d26-a9b0-99d5794ed806\";i:14;s:36:\"32771872-cbe0-47c0-b623-f14372842b89\";i:15;s:36:\"56ad1183-d538-4ac4-8782-1563b0fb183b\";i:16;s:36:\"b3d12b34-e14b-4d0d-825d-ea40fa50fdd4\";i:17;s:36:\"7d988d29-75d4-4945-9303-3acb759e2531\";i:18;s:36:\"efd1b760-cc63-48ae-a72b-bcc0be3ae8e3\";i:19;s:36:\"f4c269cb-be56-4cc1-82ac-89037cf78c1f\";i:20;s:36:\"1df1ac38-b291-45cd-bc51-d8a0f81487b3\";i:21;s:36:\"3fe7d7db-cf94-4430-b399-55a4d1dbb701\";i:22;s:36:\"34e34bb3-f8f1-4a2e-8cf0-237890b247fb\";i:23;s:36:\"7b5ac071-c25b-4c69-8586-100b8482a026\";i:24;s:36:\"62f677fd-6eac-4a46-8c9c-405ef4239ccc\";i:25;s:36:\"3a08d71c-d2fd-412f-b3d3-42f25e04b5f0\";i:26;s:36:\"40798b52-8e57-45d8-a736-7ef7e99d4951\";i:27;s:36:\"f0cc526a-0ce3-4cd7-986f-89da05280a08\";i:28;s:36:\"71a767c6-21db-4f9f-97ac-ba4a54fe2ac0\";i:29;s:36:\"3c2a1ffb-07cb-4227-96f9-09215eb9f3e7\";i:30;s:36:\"f67a2028-796d-4ff4-a10e-9d3876e82613\";i:31;s:36:\"3a6e3a9c-ef26-40f7-a4b8-3b4befa08b68\";i:32;s:36:\"07de4f53-48d4-4b9d-8424-3d9f0716c8e3\";i:33;s:36:\"b46c6da2-329d-4f4e-b08d-b73b30a3bd74\";i:34;s:36:\"974913ac-66dc-4a1d-a787-3ea6f0003a02\";}'),(43206,2971,'product_post_ids','a:35:{i:0;i:2793;i:1;i:2792;i:2;i:2751;i:3;i:2775;i:4;i:2752;i:5;i:2761;i:6;i:2764;i:7;i:2747;i:8;i:2750;i:9;i:2749;i:10;i:2760;i:11;i:2759;i:12;i:2754;i:13;i:2702;i:14;i:2733;i:15;i:2755;i:16;i:2732;i:17;i:2739;i:18;i:2726;i:19;i:2734;i:20;i:2743;i:21;i:2710;i:22;i:2685;i:23;i:2785;i:24;i:2763;i:25;i:2674;i:26;i:2688;i:27;i:2745;i:28;i:2716;i:29;i:2675;i:30;i:2689;i:31;i:2691;i:32;i:2679;i:33;i:2784;i:34;i:2711;}'),(43207,2971,'is_imported','1'),(43208,2972,'web_id','52d90a74-0642-447b-ae71-c635769c96cc'),(43209,2972,'slug','fees'),(43210,2972,'type','Manual'),(43211,2972,'web_status','Available'),(43212,2972,'admin_status','Available'),(43213,2972,'product_web_ids','a:1:{i:0;s:36:\"8c9e48a9-d42d-458d-8a19-b7126c9bbcd6\";}'),(43214,2972,'product_post_ids','a:1:{i:0;i:2800;}'),(43215,2972,'is_imported','1'),(43216,2973,'web_id','2fd0abd3-5ea1-4db8-a31c-89fd82c2c50e'),(43217,2973,'slug','gifts'),(43218,2973,'type','Manual'),(43219,2973,'web_status','Available'),(43220,2973,'admin_status','Available'),(43221,2973,'product_web_ids','a:0:{}'),(43222,2973,'product_post_ids','a:0:{}'),(43223,2973,'is_imported','1'),(43224,2974,'web_id','e986afaa-56d2-460a-9aff-ea550020077b'),(43225,2974,'slug','red'),(43226,2974,'type','Manual'),(43227,2974,'web_status','Available'),(43228,2974,'admin_status','Available'),(43229,2974,'product_web_ids','a:17:{i:0;s:36:\"3ac5dfa8-598f-4d26-a9b0-99d5794ed806\";i:1;s:36:\"32771872-cbe0-47c0-b623-f14372842b89\";i:2;s:36:\"56ad1183-d538-4ac4-8782-1563b0fb183b\";i:3;s:36:\"07212ecf-646b-4870-b123-24db9d1956c9\";i:4;s:36:\"7d988d29-75d4-4945-9303-3acb759e2531\";i:5;s:36:\"efd1b760-cc63-48ae-a72b-bcc0be3ae8e3\";i:6;s:36:\"34e34bb3-f8f1-4a2e-8cf0-237890b247fb\";i:7;s:36:\"3fe7d7db-cf94-4430-b399-55a4d1dbb701\";i:8;s:36:\"1df1ac38-b291-45cd-bc51-d8a0f81487b3\";i:9;s:36:\"f4c269cb-be56-4cc1-82ac-89037cf78c1f\";i:10;s:36:\"62f677fd-6eac-4a46-8c9c-405ef4239ccc\";i:11;s:36:\"7b5ac071-c25b-4c69-8586-100b8482a026\";i:12;s:36:\"3a08d71c-d2fd-412f-b3d3-42f25e04b5f0\";i:13;s:36:\"40798b52-8e57-45d8-a736-7ef7e99d4951\";i:14;s:36:\"71a767c6-21db-4f9f-97ac-ba4a54fe2ac0\";i:15;s:36:\"3a6e3a9c-ef26-40f7-a4b8-3b4befa08b68\";i:16;s:36:\"b46c6da2-329d-4f4e-b08d-b73b30a3bd74\";}'),(43230,2974,'product_post_ids','a:17:{i:0;i:2702;i:1;i:2733;i:2;i:2755;i:3;i:2771;i:4;i:2739;i:5;i:2726;i:6;i:2685;i:7;i:2710;i:8;i:2743;i:9;i:2734;i:10;i:2763;i:11;i:2785;i:12;i:2674;i:13;i:2688;i:14;i:2716;i:15;i:2691;i:16;i:2784;}'),(43231,2974,'is_imported','1'),(43232,2975,'web_id','3370191d-7fe6-43cf-a2fc-5c7d99aed93d'),(43233,2975,'slug','ros-wines'),(43234,2975,'type','Manual'),(43235,2975,'web_status','Available'),(43236,2975,'admin_status','Available'),(43237,2975,'product_web_ids','a:4:{i:0;s:36:\"495785ed-43d7-474b-ade1-fc53581809cb\";i:1;s:36:\"b7435b14-1dab-4349-8001-ba737c1ab5ec\";i:2;s:36:\"9b6f0d5c-9365-4a99-b426-02156d134cbb\";i:3;s:36:\"f18a2459-2e92-4934-b781-25b0a493de47\";}'),(43238,2975,'product_post_ids','a:4:{i:0;i:2799;i:1;i:2792;i:2;i:2759;i:3;i:2760;}'),(43239,2975,'is_imported','1'),(43240,2976,'web_id','6091b3fe-f62a-4925-b18c-c6a16554c145'),(43241,2976,'slug','sparkling-champagne'),(43242,2976,'type','Manual'),(43243,2976,'web_status','Available'),(43244,2976,'admin_status','Available'),(43245,2976,'product_web_ids','a:2:{i:0;s:36:\"b7435b14-1dab-4349-8001-ba737c1ab5ec\";i:1;s:36:\"1e663fd1-11ab-4d6c-8c40-fd7343b5871e\";}'),(43246,2976,'product_post_ids','a:2:{i:0;i:2792;i:1;i:2793;}'),(43247,2976,'is_imported','1'),(43248,2977,'web_id','aa650664-2108-4985-b434-4ddb1cac3dd0'),(43249,2977,'slug','tastings-glasses'),(43250,2977,'type','Manual'),(43251,2977,'web_status','Available'),(43252,2977,'admin_status','Available'),(43253,2977,'product_web_ids','a:0:{}'),(43254,2977,'product_post_ids','a:0:{}'),(43255,2977,'is_imported','1'),(43256,2978,'web_id','6b3680e3-7325-4ba9-a43d-dc5fb7a88377'),(43257,2978,'slug','white'),(43258,2978,'type','Manual'),(43259,2978,'web_status','Available'),(43260,2978,'admin_status','Available'),(43261,2978,'product_web_ids','a:10:{i:0;s:36:\"ab1c61b2-c8ca-4ad5-9eb6-54a2a9e0fac9\";i:1;s:36:\"1e663fd1-11ab-4d6c-8c40-fd7343b5871e\";i:2;s:36:\"84470c10-8921-4fe5-97d3-dea5b16e2b02\";i:3;s:36:\"52b557a9-e1c0-40cf-a296-1a8c0c5edd33\";i:4;s:36:\"88f51065-b11a-49de-837e-c205542d06a6\";i:5;s:36:\"668c6dad-5a92-408c-a9ca-048cab126558\";i:6;s:36:\"1ec7c972-267a-492a-84cd-80eb8e4a3af1\";i:7;s:36:\"d5b6925a-4972-4651-9577-62416f8f0a71\";i:8;s:36:\"2258e5af-09a4-4494-b17e-3ef4c82fb1c6\";i:9;s:36:\"ff25a20e-2d2e-45c9-9d28-873a027d0c89\";}'),(43262,2978,'product_post_ids','a:10:{i:0;i:2775;i:1;i:2793;i:2;i:2751;i:3;i:2752;i:4;i:2764;i:5;i:2761;i:6;i:2747;i:7;i:2750;i:8;i:2749;i:9;i:2748;}'),(43263,2978,'is_imported','1'),(43264,2979,'web_id','06f239af-669f-4f31-bce1-c8dee8cf2eef'),(43265,2979,'slug','wine-club-exclusives'),(43266,2979,'type','Manual'),(43267,2979,'web_status','Available'),(43268,2979,'admin_status','Available'),(43269,2979,'product_web_ids','a:1:{i:0;s:36:\"7b5ac071-c25b-4c69-8586-100b8482a026\";}'),(43270,2979,'product_post_ids','a:1:{i:0;i:2785;}'),(43271,2979,'is_imported','1'),(43272,2980,'web_id','705b9709-ee66-4c74-a626-93a466f8af3c'),(43273,2980,'slug','wines'),(43274,2980,'type','Manual'),(43275,2980,'web_status','Available'),(43276,2980,'admin_status','Available'),(43277,2980,'product_web_ids','a:20:{i:0;s:36:\"1e663fd1-11ab-4d6c-8c40-fd7343b5871e\";i:1;s:36:\"b7435b14-1dab-4349-8001-ba737c1ab5ec\";i:2;s:36:\"d31bf21f-3310-4996-88b4-e7f91415244e\";i:3;s:36:\"a448f8c2-7d0e-4d60-b299-b2b96d11854f\";i:4;s:36:\"2abdbdbc-18f3-476a-945d-5354bec02261\";i:5;s:36:\"acb34a69-3cbe-4e9a-962e-784782313f4c\";i:6;s:36:\"b1642172-d1cb-44d2-8377-3c0a538ec8a0\";i:7;s:36:\"c7d49e70-43c2-4b9f-8c7e-95829100c2c3\";i:8;s:36:\"07212ecf-646b-4870-b123-24db9d1956c9\";i:9;s:36:\"56ad1183-d538-4ac4-8782-1563b0fb183b\";i:10;s:36:\"7d988d29-75d4-4945-9303-3acb759e2531\";i:11;s:36:\"efd1b760-cc63-48ae-a72b-bcc0be3ae8e3\";i:12;s:36:\"3fe7d7db-cf94-4430-b399-55a4d1dbb701\";i:13;s:36:\"1df1ac38-b291-45cd-bc51-d8a0f81487b3\";i:14;s:36:\"fa8a4ed5-4def-4986-9d32-76698d30cede\";i:15;s:36:\"9475d978-f74b-4b97-8456-67f627d08310\";i:16;s:36:\"8a343f40-dfce-4355-8bad-051ffe250012\";i:17;s:36:\"595fef2b-6f52-4eb7-bd3c-3fa4fe94b7c5\";i:18;s:36:\"2966ccc8-0885-45e1-9e77-7fd3be419460\";i:19;s:36:\"b46c6da2-329d-4f4e-b08d-b73b30a3bd74\";}'),(43278,2980,'product_post_ids','a:20:{i:0;i:2793;i:1;i:2792;i:2;i:2768;i:3;i:2770;i:4;i:2769;i:5;i:2693;i:6;i:2766;i:7;i:2772;i:8;i:2771;i:9;i:2755;i:10;i:2739;i:11;i:2726;i:12;i:2710;i:13;i:2743;i:14;i:2746;i:15;i:3060;i:16;i:2714;i:17;i:2718;i:18;i:2738;i:19;i:2784;}'),(43279,2980,'is_imported','1'),(43280,2970,'collections','a:0:{}'),(43281,2969,'collections','a:0:{}'),(43282,2968,'collections','a:0:{}'),(43283,2967,'collections','a:0:{}'),(43284,2966,'collections','a:0:{}'),(43285,2965,'collections','a:0:{}'),(43286,2964,'collections','a:0:{}'),(43287,2963,'collections','a:0:{}'),(43288,2962,'collections','a:0:{}'),(43289,2961,'collections','a:0:{}'),(43290,2960,'collections','a:0:{}'),(43291,2959,'collections','a:0:{}'),(43292,2958,'collections','a:0:{}'),(43293,2957,'collections','a:0:{}'),(43294,2956,'collections','a:0:{}'),(43295,2955,'collections','a:0:{}'),(43296,2954,'collections','a:0:{}'),(43297,2953,'collections','a:0:{}'),(43298,2952,'collections','a:0:{}'),(43299,2951,'collections','a:0:{}'),(43300,2950,'collections','a:0:{}'),(43301,2949,'collections','a:0:{}'),(43302,2948,'collections','a:0:{}'),(43303,2947,'collections','a:0:{}'),(43304,2946,'collections','a:0:{}'),(43305,2945,'collections','a:0:{}'),(43306,2944,'collections','a:0:{}'),(43307,2943,'collections','a:0:{}'),(43308,2942,'collections','a:0:{}'),(43309,2941,'collections','a:0:{}'),(43310,2940,'collections','a:0:{}'),(43311,2939,'collections','a:0:{}'),(43312,2938,'collections','a:0:{}'),(43314,2936,'collections','a:0:{}'),(43315,2935,'collections','a:0:{}'),(43316,2934,'collections','a:0:{}'),(43317,2933,'collections','a:0:{}'),(43318,2932,'collections','a:0:{}'),(43319,2931,'collections','a:0:{}'),(43320,2930,'collections','a:0:{}'),(43321,2929,'collections','a:0:{}'),(43323,2927,'collections','a:0:{}'),(43324,2926,'collections','a:0:{}'),(43325,2925,'collections','a:0:{}'),(43326,2924,'collections','a:0:{}'),(43327,2923,'collections','a:0:{}'),(43328,2922,'collections','a:0:{}'),(43329,2921,'collections','a:0:{}'),(43330,2920,'collections','a:0:{}'),(43331,2919,'collections','a:0:{}'),(43332,2918,'collections','a:0:{}'),(43333,2917,'collections','a:0:{}'),(43334,2916,'collections','a:0:{}'),(43335,2915,'collections','a:0:{}'),(43336,2914,'collections','a:0:{}'),(43337,2913,'collections','a:0:{}'),(43338,2912,'collections','a:0:{}'),(43339,2911,'collections','a:0:{}'),(43340,2910,'collections','a:0:{}'),(43341,2909,'collections','a:0:{}'),(43342,2908,'collections','a:0:{}'),(43343,2907,'collections','a:0:{}'),(43344,2906,'collections','a:0:{}'),(43345,2905,'collections','a:0:{}'),(43346,2904,'collections','a:0:{}'),(43347,2903,'collections','a:0:{}'),(43348,2902,'collections','a:0:{}'),(43349,2901,'collections','a:0:{}'),(43350,2900,'collections','a:0:{}'),(43351,2899,'collections','a:0:{}'),(43352,2898,'collections','a:0:{}'),(43353,2897,'collections','a:0:{}'),(43354,2896,'collections','a:0:{}'),(43355,2895,'collections','a:0:{}'),(43356,2894,'collections','a:0:{}'),(43357,2893,'collections','a:0:{}'),(43358,2892,'collections','a:0:{}'),(43359,2891,'collections','a:0:{}'),(43360,2890,'collections','a:0:{}'),(43361,2889,'collections','a:0:{}'),(43362,2888,'collections','a:0:{}'),(43363,2887,'collections','a:0:{}'),(43364,2886,'collections','a:0:{}'),(43365,2885,'collections','a:0:{}'),(43366,2884,'collections','a:0:{}'),(43367,2883,'collections','a:0:{}'),(43368,2882,'collections','a:0:{}'),(43369,2881,'collections','a:0:{}'),(43370,2880,'collections','a:0:{}'),(43371,2879,'collections','a:0:{}'),(43372,2878,'collections','a:0:{}'),(43373,2877,'collections','a:0:{}'),(43374,2876,'collections','a:0:{}'),(43375,2875,'collections','a:0:{}'),(43376,2874,'collections','a:0:{}'),(43377,2873,'collections','a:0:{}'),(43378,2872,'collections','a:0:{}'),(43379,2871,'collections','a:0:{}'),(43380,2870,'collections','a:0:{}'),(43381,2869,'collections','a:0:{}'),(43382,2868,'collections','a:0:{}'),(43383,2867,'collections','a:0:{}'),(43384,2866,'collections','a:0:{}'),(43385,2865,'collections','a:0:{}'),(43386,2864,'collections','a:0:{}'),(43387,2863,'collections','a:0:{}'),(43388,2862,'collections','a:0:{}'),(43389,2861,'collections','a:0:{}'),(43390,2860,'collections','a:0:{}'),(43391,2859,'collections','a:0:{}'),(43392,2858,'collections','a:0:{}'),(43393,2857,'collections','a:0:{}'),(43394,2856,'collections','a:0:{}'),(43395,2855,'collections','a:0:{}'),(43396,2854,'collections','a:0:{}'),(43397,2853,'collections','a:0:{}'),(43398,2852,'collections','a:0:{}'),(43399,2851,'collections','a:0:{}'),(43400,2850,'collections','a:0:{}'),(43401,2849,'collections','a:0:{}'),(43402,2848,'collections','a:0:{}'),(43403,2847,'collections','a:0:{}'),(43404,2846,'collections','a:0:{}'),(43405,2845,'collections','a:0:{}'),(43406,2844,'collections','a:0:{}'),(43407,2843,'collections','a:0:{}'),(43408,2842,'collections','a:0:{}'),(43409,2841,'collections','a:0:{}'),(43410,2840,'collections','a:0:{}'),(43411,2839,'collections','a:0:{}'),(43412,2838,'collections','a:0:{}'),(43413,2837,'collections','a:0:{}'),(43414,2836,'collections','a:0:{}'),(43415,2835,'collections','a:0:{}'),(43416,2834,'collections','a:0:{}'),(43417,2833,'collections','a:0:{}'),(43418,2832,'collections','a:0:{}'),(43419,2831,'collections','a:0:{}'),(43420,2830,'collections','a:0:{}'),(43421,2829,'collections','a:0:{}'),(43422,2828,'collections','a:0:{}'),(43423,2827,'collections','a:0:{}'),(43424,2826,'collections','a:0:{}'),(43425,2825,'collections','a:0:{}'),(43426,2824,'collections','a:0:{}'),(43427,2823,'collections','a:0:{}'),(43428,2822,'collections','a:0:{}'),(43429,2821,'collections','a:0:{}'),(43430,2820,'collections','a:0:{}'),(43431,2819,'collections','a:0:{}'),(43432,2818,'collections','a:0:{}'),(43433,2817,'collections','a:0:{}'),(43434,2816,'collections','a:0:{}'),(43435,2815,'collections','a:0:{}'),(43436,2814,'collections','a:0:{}'),(43437,2813,'collections','a:0:{}'),(43438,2812,'collections','a:0:{}'),(43439,2811,'collections','a:0:{}'),(43440,2810,'collections','a:0:{}'),(43441,2809,'collections','a:0:{}'),(43442,2808,'collections','a:0:{}'),(43443,2807,'collections','a:0:{}'),(43444,2806,'collections','a:0:{}'),(43445,2805,'collections','a:0:{}'),(43446,2804,'collections','a:0:{}'),(43447,2803,'collections','a:0:{}'),(43448,2802,'collections','a:0:{}'),(43449,2801,'collections','a:0:{}'),(43450,2800,'collections','a:0:{}'),(43451,2799,'collections','a:0:{}'),(43452,2798,'collections','a:0:{}'),(43454,2796,'collections','a:0:{}'),(43455,2795,'collections','a:0:{}'),(43456,2794,'collections','a:0:{}'),(43457,2793,'collections','a:2:{s:19:\"sparkling-champagne\";s:15:\"Sparkling Wines\";s:5:\"wines\";s:5:\"Wines\";}'),(43458,2792,'collections','a:2:{s:19:\"sparkling-champagne\";s:15:\"Sparkling Wines\";s:5:\"wines\";s:5:\"Wines\";}'),(43459,2791,'collections','a:0:{}'),(43460,2790,'collections','a:0:{}'),(43461,2789,'collections','a:0:{}'),(43462,2788,'collections','a:0:{}'),(43463,2787,'collections','a:0:{}'),(43464,2786,'collections','a:0:{}'),(43465,2785,'collections','a:1:{s:3:\"red\";s:9:\"Red Wines\";}'),(43466,2784,'collections','a:2:{s:3:\"red\";s:9:\"Red Wines\";s:5:\"wines\";s:5:\"Wines\";}'),(43467,2783,'collections','a:0:{}'),(43468,2782,'collections','a:0:{}'),(43469,2781,'collections','a:0:{}'),(43470,2780,'collections','a:0:{}'),(43471,2779,'collections','a:0:{}'),(43472,2778,'collections','a:0:{}'),(43473,2777,'collections','a:0:{}'),(43474,2776,'collections','a:0:{}'),(43475,2775,'collections','a:0:{}'),(43476,2774,'collections','a:0:{}'),(43477,2773,'collections','a:0:{}'),(43478,2772,'collections','a:1:{s:5:\"wines\";s:5:\"Wines\";}'),(43479,2771,'collections','a:2:{s:3:\"red\";s:9:\"Red Wines\";s:5:\"wines\";s:5:\"Wines\";}'),(43480,2770,'collections','a:1:{s:5:\"wines\";s:5:\"Wines\";}'),(43481,2769,'collections','a:1:{s:5:\"wines\";s:5:\"Wines\";}'),(43482,2768,'collections','a:1:{s:5:\"wines\";s:5:\"Wines\";}'),(43483,2767,'collections','a:0:{}'),(43484,2766,'collections','a:1:{s:5:\"wines\";s:5:\"Wines\";}'),(43485,2765,'collections','a:0:{}'),(43486,2764,'collections','a:0:{}'),(43487,2763,'collections','a:1:{s:3:\"red\";s:9:\"Red Wines\";}'),(43488,2762,'collections','a:0:{}'),(43489,2761,'collections','a:0:{}'),(43490,2760,'collections','a:0:{}'),(43491,2759,'collections','a:0:{}'),(43492,2758,'collections','a:0:{}'),(43493,2757,'collections','a:0:{}'),(43494,2756,'collections','a:0:{}'),(43495,2755,'collections','a:2:{s:3:\"red\";s:9:\"Red Wines\";s:5:\"wines\";s:5:\"Wines\";}'),(43496,2754,'collections','a:0:{}'),(43497,2753,'collections','a:0:{}'),(43498,2752,'collections','a:0:{}'),(43499,2751,'collections','a:0:{}'),(43500,2750,'collections','a:0:{}'),(43501,2749,'collections','a:0:{}'),(43502,2748,'collections','a:0:{}'),(43503,2747,'collections','a:0:{}'),(43504,2746,'collections','a:1:{s:5:\"wines\";s:5:\"Wines\";}'),(43505,2745,'collections','a:0:{}'),(43506,2744,'collections','a:0:{}'),(43507,2743,'collections','a:2:{s:3:\"red\";s:9:\"Red Wines\";s:5:\"wines\";s:5:\"Wines\";}'),(43508,2742,'collections','a:0:{}'),(43509,2741,'collections','a:0:{}'),(43510,2740,'collections','a:0:{}'),(43511,2739,'collections','a:2:{s:3:\"red\";s:9:\"Red Wines\";s:5:\"wines\";s:5:\"Wines\";}'),(43512,2738,'collections','a:1:{s:5:\"wines\";s:5:\"Wines\";}'),(43513,2737,'collections','a:0:{}'),(43514,2736,'collections','a:0:{}'),(43515,2735,'collections','a:0:{}'),(43516,2734,'collections','a:1:{s:3:\"red\";s:9:\"Red Wines\";}'),(43517,2733,'collections','a:1:{s:3:\"red\";s:9:\"Red Wines\";}'),(43518,2732,'collections','a:0:{}'),(43519,2731,'collections','a:0:{}'),(43520,2730,'collections','a:0:{}'),(43521,2729,'collections','a:0:{}'),(43522,2728,'collections','a:0:{}'),(43523,2727,'collections','a:0:{}'),(43524,2726,'collections','a:2:{s:3:\"red\";s:9:\"Red Wines\";s:5:\"wines\";s:5:\"Wines\";}'),(43525,2725,'collections','a:0:{}'),(43526,2724,'collections','a:0:{}'),(43527,2723,'collections','a:0:{}'),(43528,2722,'collections','a:0:{}'),(43529,2721,'collections','a:0:{}'),(43530,2720,'collections','a:0:{}'),(43531,2719,'collections','a:0:{}'),(43532,2718,'collections','a:1:{s:5:\"wines\";s:5:\"Wines\";}'),(43533,2717,'collections','a:0:{}'),(43534,2716,'collections','a:1:{s:3:\"red\";s:9:\"Red Wines\";}'),(43535,2715,'collections','a:0:{}'),(43536,2714,'collections','a:1:{s:5:\"wines\";s:5:\"Wines\";}'),(43537,2713,'collections','a:0:{}'),(43538,2712,'collections','a:0:{}'),(43539,2711,'collections','a:0:{}'),(43540,2710,'collections','a:2:{s:3:\"red\";s:9:\"Red Wines\";s:5:\"wines\";s:5:\"Wines\";}'),(43541,2709,'collections','a:0:{}'),(43542,2708,'collections','a:0:{}'),(43543,2707,'collections','a:0:{}'),(43544,2706,'collections','a:0:{}'),(43545,2705,'collections','a:0:{}'),(43546,2704,'collections','a:0:{}'),(43547,2703,'collections','a:0:{}'),(43548,2702,'collections','a:1:{s:3:\"red\";s:9:\"Red Wines\";}'),(43549,2701,'collections','a:0:{}'),(43550,2700,'collections','a:0:{}'),(43551,2699,'collections','a:0:{}'),(43552,2698,'collections','a:0:{}'),(43553,2697,'collections','a:0:{}'),(43554,2696,'collections','a:0:{}'),(43555,2695,'collections','a:0:{}'),(43556,2694,'collections','a:0:{}'),(43557,2693,'collections','a:1:{s:5:\"wines\";s:5:\"Wines\";}'),(43558,2692,'collections','a:0:{}'),(43559,2691,'collections','a:1:{s:3:\"red\";s:9:\"Red Wines\";}'),(43560,2690,'collections','a:0:{}'),(43561,2689,'collections','a:0:{}'),(43562,2688,'collections','a:1:{s:3:\"red\";s:9:\"Red Wines\";}'),(43563,2687,'collections','a:0:{}'),(43564,2686,'collections','a:0:{}'),(43565,2685,'collections','a:1:{s:3:\"red\";s:9:\"Red Wines\";}'),(43566,2684,'collections','a:0:{}'),(43567,2683,'collections','a:0:{}'),(43568,2682,'collections','a:0:{}'),(43569,2681,'collections','a:0:{}'),(43570,2680,'collections','a:0:{}'),(43571,2679,'collections','a:0:{}'),(43572,2678,'collections','a:0:{}'),(43573,2677,'collections','a:0:{}'),(43574,2676,'collections','a:0:{}'),(43575,2675,'collections','a:0:{}'),(43576,2674,'collections','a:1:{s:3:\"red\";s:9:\"Red Wines\";}'),(43577,2673,'collections','a:0:{}'),(43578,2672,'collections','a:0:{}'),(43579,2671,'collections','a:0:{}'),(43580,2670,'collections','a:0:{}'),(43581,2669,'collections','a:0:{}'),(43582,2668,'collections','a:0:{}'),(43583,2667,'collections','a:0:{}'),(43584,2666,'collections','a:0:{}'),(43585,2665,'collections','a:0:{}'),(43586,2664,'collections','a:0:{}'),(43587,2663,'collections','a:0:{}'),(43588,2662,'collections','a:0:{}'),(43589,2661,'collections','a:0:{}'),(43590,2660,'collections','a:0:{}'),(43591,2659,'collections','a:0:{}'),(43592,2658,'collections','a:0:{}'),(43593,2657,'collections','a:0:{}'),(43594,2656,'collections','a:0:{}'),(43595,2655,'collections','a:0:{}'),(43596,2654,'collections','a:0:{}'),(43597,2653,'collections','a:0:{}'),(43598,2652,'collections','a:0:{}'),(43599,2651,'collections','a:0:{}'),(43600,2650,'collections','a:0:{}'),(43601,2649,'collections','a:0:{}'),(43602,2648,'collections','a:0:{}'),(43603,2647,'collections','a:0:{}'),(43604,2646,'collections','a:0:{}'),(43605,2645,'collections','a:0:{}'),(43606,2644,'collections','a:0:{}'),(43607,2643,'collections','a:0:{}'),(43608,2642,'collections','a:0:{}'),(43609,2641,'collections','a:0:{}'),(43610,2640,'collections','a:0:{}'),(43611,2639,'collections','a:0:{}'),(43612,2638,'collections','a:0:{}'),(43613,2637,'collections','a:0:{}'),(43614,2636,'collections','a:0:{}'),(43615,2635,'collections','a:0:{}'),(43616,2634,'collections','a:0:{}'),(43617,2633,'collections','a:0:{}'),(43618,2632,'collections','a:0:{}'),(43619,2631,'collections','a:0:{}'),(43620,2630,'collections','a:0:{}'),(43621,2629,'collections','a:0:{}'),(43622,2628,'collections','a:0:{}'),(43623,2976,'_edit_lock','1683057617:2'),(43624,2976,'_edit_last','2'),(43625,2976,'enabled_filters','a:0:{}'),(43626,2976,'enabled_sorters','a:0:{}'),(43627,2976,'should_enable_search',''),(43628,2976,'additional_css_classes','c7t-products--2up'),(43629,2976,'template',''),(43630,2976,'allowed_customer_tag_titles','a:0:{}'),(43631,2976,'allowed_customer_club_titles','a:0:{}'),(43632,2976,'_yoast_wpseo_estimated-reading-time-minutes','0'),(43633,2976,'_yoast_wpseo_wordproof_timestamp',''),(43634,2792,'primary_collection','sparkling-champagne, Sparkling Wines'),(43635,2793,'primary_collection','sparkling-champagne, Sparkling Wines'),(43636,2973,'_edit_lock','1684258591:2'),(43637,2973,'_edit_last','2'),(43638,2973,'enabled_filters','a:0:{}'),(43639,2973,'enabled_sorters','a:0:{}'),(43640,2973,'should_enable_search',''),(43641,2973,'additional_css_classes','c7t-products--3up'),(43642,2973,'template',''),(43643,2973,'allowed_customer_tag_titles','a:0:{}'),(43644,2973,'allowed_customer_club_titles','a:0:{}'),(43645,2973,'_yoast_wpseo_estimated-reading-time-minutes','0'),(43646,2973,'_yoast_wpseo_wordproof_timestamp',''),(43701,920,'_wp_old_date','2023-01-23'),(43702,456,'_wp_old_date','2023-01-23'),(43704,759,'_wp_old_date','2023-01-23'),(43706,1563,'_wp_old_date','2023-01-23'),(43707,948,'_wp_old_date','2023-01-23'),(43708,949,'_wp_old_date','2023-01-23'),(43709,950,'_wp_old_date','2023-01-23'),(43710,880,'_wp_old_date','2023-01-23'),(43711,1541,'_wp_old_date','2023-01-23'),(43712,2792,'_edit_lock','1691505472:5'),(43713,2792,'_edit_last','5'),(43714,2792,'trade_assets','a:0:{}'),(43715,2792,'downloads','a:0:{}'),(43716,2792,'related_products','a:2:{i:0;s:4:\"2799\";i:1;s:4:\"2759\";}'),(43717,2792,'recipe_pairings','a:0:{}'),(43718,2792,'external_recipe_pairings','a:1:{i:0;a:3:{s:5:\"label\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"media_link\";s:0:\"\";}}'),(43719,2792,'should_exclude_from_search',''),(43720,2792,'additional_css_classes',''),(43721,2792,'template',''),(43722,2792,'allowed_customer_tag_titles','a:0:{}'),(43723,2792,'allowed_customer_club_titles','a:0:{}'),(43724,2792,'_yoast_wpseo_estimated-reading-time-minutes','0'),(43725,2792,'_yoast_wpseo_wordproof_timestamp',''),(43726,2980,'_edit_lock','1683067332:2'),(43727,2792,'_yoast_wpseo_metadesc','Enjoy the crisp, refreshing taste of our handcrafted Blanc de Noir Rosé. Made from premium Napa Valley grapes, this wine is perfect for any occasion. Order now from Meadowcroft Wines.'),(43728,2980,'_edit_last','2'),(43729,2980,'enabled_filters','a:0:{}'),(43730,2980,'enabled_sorters','a:2:{i:0;s:5:\"title\";i:1;s:5:\"price\";}'),(43731,2980,'should_enable_search',''),(43732,2980,'additional_css_classes','c7t-products--4up'),(43733,2980,'template',''),(43734,2980,'allowed_customer_tag_titles','a:0:{}'),(43735,2980,'allowed_customer_club_titles','a:0:{}'),(43736,2980,'_yoast_wpseo_estimated-reading-time-minutes','0'),(43737,2980,'_yoast_wpseo_wordproof_timestamp',''),(43739,2927,'_edit_lock','1683230108:5'),(43741,2989,'_menu_item_type','post_type'),(43742,2989,'_menu_item_menu_item_parent','759'),(43743,2989,'_menu_item_object_id','504'),(43744,2989,'_menu_item_object','page'),(43745,2989,'_menu_item_target',''),(43746,2989,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43747,2989,'_menu_item_xfn',''),(43748,2989,'_menu_item_url',''),(43750,2990,'_menu_item_type','post_type'),(43751,2990,'_menu_item_menu_item_parent','759'),(43752,2990,'_menu_item_object_id','506'),(43753,2990,'_menu_item_object','page'),(43754,2990,'_menu_item_target',''),(43755,2990,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43756,2990,'_menu_item_xfn',''),(43757,2990,'_menu_item_url',''),(43759,2991,'_menu_item_type','post_type'),(43760,2991,'_menu_item_menu_item_parent','759'),(43761,2991,'_menu_item_object_id','1577'),(43762,2991,'_menu_item_object','page'),(43763,2991,'_menu_item_target',''),(43764,2991,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43765,2991,'_menu_item_xfn',''),(43766,2991,'_menu_item_url',''),(43768,2992,'_menu_item_type','post_type'),(43769,2992,'_menu_item_menu_item_parent','759'),(43770,2992,'_menu_item_object_id','1576'),(43771,2992,'_menu_item_object','page'),(43772,2992,'_menu_item_target',''),(43773,2992,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43774,2992,'_menu_item_xfn',''),(43775,2992,'_menu_item_url',''),(43777,2993,'_menu_item_type','post_type'),(43778,2993,'_menu_item_menu_item_parent','759'),(43779,2993,'_menu_item_object_id','1574'),(43780,2993,'_menu_item_object','page'),(43781,2993,'_menu_item_target',''),(43782,2993,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43783,2993,'_menu_item_xfn',''),(43784,2993,'_menu_item_url',''),(43786,920,'_wp_old_date','2023-05-02'),(43787,456,'_wp_old_date','2023-05-02'),(43789,759,'_wp_old_date','2023-05-02'),(43792,1563,'_wp_old_date','2023-05-02'),(43793,948,'_wp_old_date','2023-05-02'),(43794,949,'_wp_old_date','2023-05-02'),(43795,950,'_wp_old_date','2023-05-02'),(43796,880,'_wp_old_date','2023-05-02'),(43797,1541,'_wp_old_date','2023-05-02'),(43798,2761,'_edit_lock','1691497947:5'),(43800,2950,'_edit_lock','1683741564:3'),(43801,2978,'_edit_lock','1683741592:3'),(43802,2995,'web_id','ad5b565f-d3f7-46ff-aa82-cefbc1296eb7'),(43803,2995,'slug','2023-spring-club-pick-up-party-open-house'),(43804,2995,'title','2023 Spring Club Pick Up Party & Open House'),(43805,2995,'type','Event Ticket'),(43806,2995,'image',NULL),(43807,2995,'teaser',''),(43808,2995,'content','<div><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 400;\">Spring is in the air and that can only mean one thing - it\'s time for our Spring Open House and Wine Pick Up Party at Meadowcroft wines! Join us for an unforgettable afternoon of sipping and savoring your favorite wines, including some exciting new releases that you\'re sure to enjoy.</span></div>\n<div><span style=\"font-family: \'Arial Black\', \'Arial Bold\', Gadget, sans-serif; font-weight: 400;\"><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 400;\">&nbsp;</span></span></div>\n<div><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 400;\">But wait, there\'s more! We\'ve partnered with Chef Dan Lucia catering to bring you delectable bites that will complement your wine choices perfectly.&nbsp; And we\'ve also got some live music lined up.&nbsp; Jason Movrich will</span><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 400;\"> keep the good vibes flowing.&nbsp;</span></div>'),(43809,2995,'subtitle',''),(43810,2995,'price','4000'),(43811,2995,'web_status','Retired'),(43812,2995,'admin_status','Not Available'),(43813,2995,'vendor','Meadowcroft Wines'),(43814,2995,'collections','a:0:{}'),(43815,2995,'primary_collection',''),(43956,3007,'web_id','d921943c-673d-4748-993f-f84406f8a6e3'),(43957,3007,'slug','spring-2023-four-pack-set'),(43958,3007,'title','Spring 2023 Four-Bottle Set'),(43959,3007,'type','Bundle'),(43960,3007,'image','https://images.commerce7.com/meadowcroft-wines/images/original/spring-4pk-1683520568138-1683920001336.jpeg'),(43961,3007,'teaser',NULL),(43962,3007,'content','<p>A perfect 4 pack of wine to enjoy the warm Spring weather.</p>\n<p><strong>One bottle each:</strong></p>\n<ul>\n<li>2021 Rose of Pinot Noir</li>\n<li>2021 French Colombard</li>\n<li>2021 Pinot Blanc</li>\n<li>2022 Sauvignon Blanc</li>\n</ul>'),(43963,3007,'subtitle',NULL),(43964,3007,'price','13000'),(43965,3007,'web_status','Retired'),(43966,3007,'admin_status','Not Available'),(43967,3007,'collections','a:0:{}'),(43968,3007,'primary_collection',''),(43982,3009,'inline_featured_image','0'),(43983,3009,'_edit_lock','1706701418:5'),(43984,3009,'_edit_last','5'),(43985,3010,'_wp_attached_file','2023/05/img_11000-7331bc7d5056b3a_7331bda8-5056-b3a8-4912409a269a635c-1.webp'),(43986,3010,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1214;s:6:\"height\";i:910;s:4:\"file\";s:76:\"2023/05/img_11000-7331bc7d5056b3a_7331bda8-5056-b3a8-4912409a269a635c-1.webp\";s:8:\"filesize\";i:198294;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:76:\"img_11000-7331bc7d5056b3a_7331bda8-5056-b3a8-4912409a269a635c-1-300x225.webp\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:30424;}s:5:\"large\";a:5:{s:4:\"file\";s:77:\"img_11000-7331bc7d5056b3a_7331bda8-5056-b3a8-4912409a269a635c-1-1024x768.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:182302;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:76:\"img_11000-7331bc7d5056b3a_7331bda8-5056-b3a8-4912409a269a635c-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16356;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:76:\"img_11000-7331bc7d5056b3a_7331bda8-5056-b3a8-4912409a269a635c-1-768x576.webp\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:117712;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:76:\"img_11000-7331bc7d5056b3a_7331bda8-5056-b3a8-4912409a269a635c-1-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:36414;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:76:\"img_11000-7331bc7d5056b3a_7331bda8-5056-b3a8-4912409a269a635c-1-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:52412;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:76:\"img_11000-7331bc7d5056b3a_7331bda8-5056-b3a8-4912409a269a635c-1-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:38808;}s:8:\"tileview\";a:5:{s:4:\"file\";s:76:\"img_11000-7331bc7d5056b3a_7331bda8-5056-b3a8-4912409a269a635c-1-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:44114;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:77:\"img_11000-7331bc7d5056b3a_7331bda8-5056-b3a8-4912409a269a635c-1-1200x900.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:234432;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(43987,3010,'_wp_attachment_image_alt','Meadowcroft-wines-top-sonoma-winery'),(43988,3011,'_wp_attached_file','2023/05/iron-horse-vineyards-visit-us.webp'),(43989,3011,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:950;s:6:\"height\";i:390;s:4:\"file\";s:42:\"2023/05/iron-horse-vineyards-visit-us.webp\";s:8:\"filesize\";i:95126;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"iron-horse-vineyards-visit-us-300x123.webp\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9972;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"iron-horse-vineyards-visit-us-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8082;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"iron-horse-vineyards-visit-us-768x315.webp\";s:5:\"width\";i:768;s:6:\"height\";i:315;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:47776;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:42:\"iron-horse-vineyards-visit-us-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:25294;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:42:\"iron-horse-vineyards-visit-us-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:38558;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:42:\"iron-horse-vineyards-visit-us-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:27492;}s:8:\"tileview\";a:5:{s:4:\"file\";s:42:\"iron-horse-vineyards-visit-us-300x390.webp\";s:5:\"width\";i:300;s:6:\"height\";i:390;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:35602;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(43990,3011,'_wp_attachment_image_alt','Iron-Horse-vineyard'),(43991,3012,'_wp_attached_file','2023/05/ridge.webp'),(43992,3012,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:18:\"2023/05/ridge.webp\";s:8:\"filesize\";i:60646;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"ridge-300x169.webp\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7614;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"ridge-1024x576.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:35412;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"ridge-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4420;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"ridge-768x432.webp\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:24470;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:18:\"ridge-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11056;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:18:\"ridge-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17438;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:18:\"ridge-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13422;}s:8:\"tileview\";a:5:{s:4:\"file\";s:18:\"ridge-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12792;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"ridge-1200x675.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:43600;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(43993,3012,'_wp_attachment_image_alt','ridge'),(43994,3013,'_wp_attached_file','2023/05/bedrock2.webp'),(43995,3013,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:926;s:6:\"height\";i:926;s:4:\"file\";s:21:\"2023/05/bedrock2.webp\";s:8:\"filesize\";i:25248;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"bedrock2-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8002;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"bedrock2-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3396;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"bedrock2-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:24520;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:21:\"bedrock2-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8002;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:21:\"bedrock2-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11662;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:21:\"bedrock2-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8898;}s:8:\"tileview\";a:5:{s:4:\"file\";s:21:\"bedrock2-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8496;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(43996,3013,'_wp_attachment_image_alt','bedrock'),(43997,3014,'_wp_attached_file','2023/05/ramsgate-copy_1.webp'),(43998,3014,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:28:\"2023/05/ramsgate-copy_1.webp\";s:8:\"filesize\";i:837416;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"ramsgate-copy_1-300x200.webp\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:25822;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"ramsgate-copy_1-1024x683.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:177802;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"ramsgate-copy_1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:15174;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"ramsgate-copy_1-768x512.webp\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:107262;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:28:\"ramsgate-copy_1-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:33704;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:28:\"ramsgate-copy_1-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:50406;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:28:\"ramsgate-copy_1-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:36956;}s:8:\"tileview\";a:5:{s:4:\"file\";s:28:\"ramsgate-copy_1-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:41436;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"ramsgate-copy_1-1536x1024.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:334788;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:29:\"ramsgate-copy_1-1200x800.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:226778;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(43999,3014,'_wp_attachment_image_alt','ramsgate'),(44000,3015,'_wp_attached_file','2023/05/new-state-of-the-art.jpg'),(44001,3015,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:900;s:4:\"file\";s:32:\"2023/05/new-state-of-the-art.jpg\";s:8:\"filesize\";i:266420;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"new-state-of-the-art-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17266;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"new-state-of-the-art-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176287;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"new-state-of-the-art-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5817;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"new-state-of-the-art-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105552;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:32:\"new-state-of-the-art-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21058;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:32:\"new-state-of-the-art-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39562;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:32:\"new-state-of-the-art-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26391;}s:8:\"tileview\";a:5:{s:4:\"file\";s:32:\"new-state-of-the-art-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26612;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(44002,3015,'_wp_attachment_image_alt','new-state-of-the-art'),(44003,3016,'_wp_attached_file','2023/05/HERO-IMAGE-MEADOWCROFT-WINES.jpg'),(44004,3016,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:600;s:4:\"file\";s:40:\"2023/05/HERO-IMAGE-MEADOWCROFT-WINES.jpg\";s:8:\"filesize\";i:78628;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"HERO-IMAGE-MEADOWCROFT-WINES-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18963;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"HERO-IMAGE-MEADOWCROFT-WINES-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8854;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:40:\"HERO-IMAGE-MEADOWCROFT-WINES-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22337;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:40:\"HERO-IMAGE-MEADOWCROFT-WINES-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31864;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:40:\"HERO-IMAGE-MEADOWCROFT-WINES-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23648;}s:8:\"tileview\";a:5:{s:4:\"file\";s:40:\"HERO-IMAGE-MEADOWCROFT-WINES-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25888;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(44005,3016,'_wp_attachment_image_alt','MEADOWCROFT WINES'),(44006,3017,'_wp_attached_file','2023/05/Featured-Image-800px.jpg'),(44007,3017,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:32:\"2023/05/Featured-Image-800px.jpg\";s:8:\"filesize\";i:106494;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Featured-Image-800px-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23679;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Featured-Image-800px-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8849;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"Featured-Image-800px-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94958;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:32:\"Featured-Image-800px-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23679;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:32:\"Featured-Image-800px-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32896;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:32:\"Featured-Image-800px-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23954;}s:8:\"tileview\";a:5:{s:4:\"file\";s:32:\"Featured-Image-800px-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27796;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(44008,3017,'_wp_attachment_image_alt','Best Wineries in Sonoma 2023'),(44009,3009,'_thumbnail_id','3017'),(44010,3009,'allowed_customer_tag_titles','a:0:{}'),(44011,3009,'allowed_customer_club_titles','a:0:{}'),(44012,3009,'hide_post_title','0'),(44013,3009,'_hide_post_title','field_5bbe18c8efa0ac'),(44014,3009,'custom_title',''),(44015,3009,'_custom_title','field_5bbe1b83pfa0c'),(44016,3009,'the_teaser','<span style=\"font-weight: 400;\">If you\'re a wine drinker, traveler, or foodie looking for the perfect winery shenanigans in Sonoma County, then you\'ve come to the right place. This blog post is going to be your guide to our favorite wineries</span>'),(44017,3009,'_the_teaser','field_5c1d78f88e54c'),(44018,3009,'hero_image','3016'),(44019,3009,'_hero_image','field_5d138e7f31334'),(44020,3009,'enable_banner','0'),(44021,3009,'_enable_banner','field_5bbe19c8efa0acb'),(44022,3009,'banner_full_width','0'),(44023,3009,'_banner_full_width','field_5bbe19c8efa0ac'),(44024,3009,'banner_size','normal'),(44025,3009,'_banner_size','field_5bbe232929ec9c'),(44026,3009,'add_parallax_effect','0'),(44027,3009,'_add_parallax_effect','field_5bbe219ccb6a9'),(44028,3009,'add_veil_over_banner','0'),(44029,3009,'_add_veil_over_banner','field_5bbe333f39212'),(44030,3009,'banner_content_position','centered'),(44031,3009,'_banner_content_position','field_5bbe259b02b62'),(44032,3009,'banner_title',''),(44033,3009,'_banner_title','field_5bbe1b78efa0b'),(44034,3009,'banner_subtitle',''),(44035,3009,'_banner_subtitle','field_5bbe1b83efa0c'),(44036,3009,'banner_button_link',''),(44037,3009,'_banner_button_link','field_5bbe1b8cefa0d'),(44038,3009,'banner_button_new_tab','0'),(44039,3009,'_banner_button_new_tab','field_5bbe1e6d18fae'),(44040,3009,'show_down_arrow','0'),(44041,3009,'_show_down_arrow','field_5bbe24f721165'),(44042,3009,'banner_image',''),(44043,3009,'_banner_image','field_5bbe201718fafa'),(44044,3009,'banner_image_position','center center'),(44045,3009,'_banner_image_position','field_5bbe278f9fb97'),(44046,3009,'banner_image_mobile',''),(44047,3009,'_banner_image_mobile','field_5bbe202818fb0b'),(44048,3009,'banner_image_mobile_position','center center'),(44049,3009,'_banner_image_mobile_position','field_5bbe279c9fb98'),(44050,3009,'content_block',''),(44051,3009,'_content_block','field_5bbe19a7efa09'),(44052,3009,'_yoast_wpseo_primary_category','2'),(44053,3009,'_yoast_wpseo_focuskw','top wineries'),(44054,3009,'_yoast_wpseo_title','Top 5 wineries in Sonoma County\'s You Must Try in 2023'),(44055,3009,'_yoast_wpseo_metadesc','Looking for the ultimate wine tasting experience in Sonoma County? Check out our list of the top 5 wineries you must try in 2023. 🍷🌿'),(44056,3009,'_yoast_wpseo_linkdex','76'),(44057,3009,'_yoast_wpseo_content_score','90'),(44058,3009,'_yoast_wpseo_estimated-reading-time-minutes','7'),(44059,3009,'_yoast_wpseo_wordproof_timestamp',''),(44061,1565,'allowed_customer_tag_titles','a:0:{}'),(44062,1565,'allowed_customer_club_titles','a:0:{}'),(44063,3018,'hide_post_title','0'),(44064,3018,'_hide_post_title','field_5bbe18c8efa0ac'),(44065,3018,'custom_title',''),(44066,3018,'_custom_title','field_5bbe1b83pfa0c'),(44067,3018,'the_teaser','Trying to figure out some great wine and food pairings for your holiday gatherings?  Check out these wine pairing recommendations from Meadowcroft.'),(44068,3018,'_the_teaser','field_5c1d78f88e54c'),(44069,3018,'hero_image','1568'),(44070,3018,'_hero_image','field_5d138e7f31334'),(44071,3018,'enable_banner','0'),(44072,3018,'_enable_banner','field_5bbe19c8efa0acb'),(44073,3018,'banner_full_width','0'),(44074,3018,'_banner_full_width','field_5bbe19c8efa0ac'),(44075,3018,'banner_size','normal'),(44076,3018,'_banner_size','field_5bbe232929ec9c'),(44077,3018,'add_parallax_effect','0'),(44078,3018,'_add_parallax_effect','field_5bbe219ccb6a9'),(44079,3018,'add_veil_over_banner','0'),(44080,3018,'_add_veil_over_banner','field_5bbe333f39212'),(44081,3018,'banner_content_position','centered'),(44082,3018,'_banner_content_position','field_5bbe259b02b62'),(44083,3018,'banner_title',''),(44084,3018,'_banner_title','field_5bbe1b78efa0b'),(44085,3018,'banner_subtitle',''),(44086,3018,'_banner_subtitle','field_5bbe1b83efa0c'),(44087,3018,'banner_button_link',''),(44088,3018,'_banner_button_link','field_5bbe1b8cefa0d'),(44089,3018,'banner_button_new_tab','0'),(44090,3018,'_banner_button_new_tab','field_5bbe1e6d18fae'),(44091,3018,'show_down_arrow','0'),(44092,3018,'_show_down_arrow','field_5bbe24f721165'),(44093,3018,'banner_image',''),(44094,3018,'_banner_image','field_5bbe201718fafa'),(44095,3018,'banner_image_position','center center'),(44096,3018,'_banner_image_position','field_5bbe278f9fb97'),(44097,3018,'banner_image_mobile',''),(44098,3018,'_banner_image_mobile','field_5bbe202818fb0b'),(44099,3018,'banner_image_mobile_position','center center'),(44100,3018,'_banner_image_mobile_position','field_5bbe279c9fb98'),(44101,3018,'content_block',''),(44102,3018,'_content_block','field_5bbe19a7efa09'),(44103,1565,'_yoast_wpseo_schema_article_type','BlogPosting'),(44109,1840,'allowed_customer_tag_titles','a:0:{}'),(44110,1840,'allowed_customer_club_titles','a:0:{}'),(44115,1859,'allowed_customer_tag_titles','a:0:{}'),(44116,1859,'allowed_customer_club_titles','a:0:{}'),(44119,2792,'_yoast_wpseo_focuskw','Blanc de Noir Rosé'),(44120,2792,'_yoast_wpseo_title','Blanc de Noir Rosé - Handcrafted with Napa Valley Grapes'),(44121,2792,'_yoast_wpseo_linkdex','49'),(44122,2793,'_edit_lock','1691497762:5'),(44123,2793,'_edit_last','5'),(44124,2793,'trade_assets','a:0:{}'),(44125,2793,'downloads','a:0:{}'),(44126,2793,'related_products','a:0:{}'),(44127,2793,'recipe_pairings','a:0:{}'),(44128,2793,'external_recipe_pairings','a:0:{}'),(44129,2793,'should_exclude_from_search',''),(44130,2793,'additional_css_classes',''),(44131,2793,'template',''),(44132,2793,'allowed_customer_tag_titles','a:0:{}'),(44133,2793,'allowed_customer_club_titles','a:0:{}'),(44134,2793,'_yoast_wpseo_focuskw','Blancs de Blancs'),(44135,2793,'_yoast_wpseo_title','Blancs de Blancs - Premium Sparkling Wine from Sonoma Valley'),(44136,2793,'_yoast_wpseo_metadesc','Savor the crisp, refreshing taste of Meadowcroft Wines Blancs de Blancs - a premium sparkling wine made from the finest Chardonnay grapes in Sonoma Valley. Order now.'),(44137,2793,'_yoast_wpseo_linkdex','49'),(44138,2793,'_yoast_wpseo_estimated-reading-time-minutes','0'),(44139,2793,'_yoast_wpseo_wordproof_timestamp',''),(44140,2775,'_edit_lock','1691497890:5'),(44141,2775,'_edit_last','5'),(44142,2775,'primary_collection',''),(44143,2775,'trade_assets','a:0:{}'),(44144,2775,'downloads','a:0:{}'),(44145,2775,'related_products','a:0:{}'),(44146,2775,'recipe_pairings','a:0:{}'),(44147,2775,'external_recipe_pairings','a:0:{}'),(44148,2775,'should_exclude_from_search',''),(44149,2775,'additional_css_classes',''),(44150,2775,'template',''),(44151,2775,'allowed_customer_tag_titles','a:0:{}'),(44152,2775,'allowed_customer_club_titles','a:0:{}'),(44153,2775,'_yoast_wpseo_focuskw','2022 Sauvignon Blanc'),(44154,2775,'_yoast_wpseo_title','Meadowcroft Wines | 2022 Sauvignon Blanc | Sonoma Valley'),(44155,2775,'_yoast_wpseo_metadesc','Discover the bright and refreshing 2022 Sauvignon Blanc from Meadowcroft Wines, crafted with grapes from the Sonoma Valley. Order online today!'),(44156,2775,'_yoast_wpseo_linkdex','46'),(44157,2775,'_yoast_wpseo_estimated-reading-time-minutes','0'),(44158,2775,'_yoast_wpseo_wordproof_timestamp',''),(44159,2751,'_edit_lock','1691497875:5'),(44160,2751,'_edit_last','5'),(44161,2751,'primary_collection',''),(44162,2751,'trade_assets','a:0:{}'),(44163,2751,'downloads','a:0:{}'),(44164,2751,'related_products','a:0:{}'),(44165,2751,'recipe_pairings','a:0:{}'),(44166,2751,'external_recipe_pairings','a:0:{}'),(44167,2751,'should_exclude_from_search',''),(44168,2751,'additional_css_classes',''),(44169,2751,'template',''),(44170,2751,'allowed_customer_tag_titles','a:0:{}'),(44171,2751,'allowed_customer_club_titles','a:0:{}'),(44172,2751,'_yoast_wpseo_focuskw','French Colombard Wine'),(44173,2751,'_yoast_wpseo_title','French Colombard Wine from Sonoma Valley | Meadowcroft Wines'),(44174,2751,'_yoast_wpseo_metadesc','Discover the exquisite taste of French Colombard wine from Meadowcroft Wines in Sonoma Valley. Order online now and experience the perfect balance of fruity and floral aromas.'),(44175,2751,'_yoast_wpseo_linkdex','49'),(44176,2751,'_yoast_wpseo_estimated-reading-time-minutes','0'),(44177,2751,'_yoast_wpseo_wordproof_timestamp',''),(44178,3020,'_edit_lock','1684223926:5'),(44179,3020,'_edit_last','5'),(44180,3020,'wpsm_accordion_data','s:2198:\"a:3:{i:0;a:4:{s:15:\"accordion_title\";s:60:\"What is the difference between sparkling wine and Champagne?\";s:20:\"accordion_title_icon\";s:9:\"fa-laptop\";s:18:\"enable_single_icon\";s:3:\"yes\";s:14:\"accordion_desc\";s:441:\"Sparkling wines and Champagne are often used interchangeably, but there are some differences between the two. Champagne is a sparkling wine, made only in the Champagne region of France. It has strict rules that must be followed, such as using only certain grape varieties (Chardonnay, Pinot Noir, and Pinot Meunier) and specific vineyard practices. On the other hand, sparkling wine can be produced worldwide and can use a variety of grapes.\";}i:1;a:4:{s:15:\"accordion_title\";s:27:\"How is sparkling wine made?\";s:20:\"accordion_title_icon\";s:9:\"fa-laptop\";s:18:\"enable_single_icon\";s:3:\"yes\";s:14:\"accordion_desc\";s:680:\"The process of making sparkling wine involves a secondary fermentation that occurs in the bottle, trapping carbon dioxide and creating bubbles. There are two methods: traditional method and tank method. In the traditional method, after the wine is made and bottled, a mixture of yeast and sugar is added to the bottle. The bottle is then sealed with a crown cap and left for a minimum of 15 months to age. During this process, the yeast consumes the sugar, producing carbon dioxide as a byproduct, which dissolves into the wine as bubbles. The tank method is a faster process, where the wine undergoes secondary fermentation in a pressurized tank, and then bottled under pressure.\";}i:2;a:4:{s:15:\"accordion_title\";s:34:\"Are sparkling wines high in sugar?\";s:20:\"accordion_title_icon\";s:9:\"fa-laptop\";s:18:\"enable_single_icon\";s:3:\"yes\";s:14:\"accordion_desc\";s:494:\"Sparkling wines vary in sweetness levels. The amount of sugar in a sparkling wine is determined by the style, ranging from brut (very dry) to doux (very sweet). The sweetness level of sparkling wine is measured by the residual sugar content, which is the amount of sugar left in the wine after fermentation. Brut Nature has less than 3 grams per liter, while Doux has more than 50 grams per liter. Extra Brut, Brut, Extra Dry, and Sec fall in between, depending on their residual sugar content.\";}}\";'),(44181,3020,'wpsm_accordion_count','3'),(44182,3020,'Accordion_Settings','s:571:\"a:18:{s:13:\"acc_sec_title\";s:3:\"yes\";s:10:\"op_cl_icon\";s:3:\"yes\";s:14:\"acc_title_icon\";s:3:\"yes\";s:10:\"acc_radius\";s:3:\"yes\";s:10:\"acc_margin\";s:3:\"yes\";s:15:\"acc_op_cl_align\";s:5:\"right\";s:13:\"enable_toggle\";s:2:\"no\";s:16:\"enable_ac_border\";s:3:\"yes\";s:13:\"expand_option\";s:1:\"1\";s:9:\"ac_styles\";s:1:\"1\";s:16:\"acc_title_bg_clr\";s:7:\"#e8e8e8\";s:18:\"acc_title_icon_clr\";s:7:\"#000000\";s:15:\"acc_desc_bg_clr\";s:7:\"#ffffff\";s:17:\"acc_desc_font_clr\";s:7:\"#000000\";s:10:\"title_size\";s:2:\"18\";s:8:\"des_size\";s:2:\"16\";s:11:\"font_family\";s:9:\"Open Sans\";s:10:\"custom_css\";s:0:\"\";}\";'),(44183,3020,'allowed_customer_tag_titles','a:0:{}'),(44184,3020,'allowed_customer_club_titles','a:0:{}'),(44185,1574,'allowed_customer_tag_titles','a:0:{}'),(44186,1574,'allowed_customer_club_titles','a:0:{}'),(44187,3021,'content_block_0_layout_title','Page Title'),(44188,3021,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(44189,3021,'content_block_0_text_block_columns','one'),(44190,3021,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(44191,3021,'content_block_0_narrow_text_block_content','0'),(44192,3021,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(44193,3021,'content_block_0_reverse_colors','0'),(44194,3021,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(44195,3021,'content_block_0_enable_background_image','0'),(44196,3021,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(44197,3021,'content_block_0_custom_css_class',''),(44198,3021,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(44199,3021,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">Sparkling Wines</h1>\r\nMeadowcroft\'s bubbles are a delightful addition to any occasion. Don\'t limit yourself to saving them for the once-in-a-lifetime moments; indulge in their fanciful fizz at any time. Savor a glass of sparkling wine alongside a delicious spread of cheeses, succulent shellfish or even on a mundane Tuesday evening - because every day is worth celebrating.\r\n\r\n<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org\",\r\n  \"@type\": \"FAQPage\",\r\n  \"mainEntity\": [{\r\n    \"@type\": \"Question\",\r\n    \"name\": \"What is the difference between sparkling wine and Champagne?\",\r\n    \"acceptedAnswer\": {\r\n      \"@type\": \"Answer\",\r\n      \"text\": \"Sparkling wines and Champagne are often used interchangeably, but there are some differences between the two. Champagne is a sparkling wine, made only in the Champagne region of France. It has strict rules that must be followed, such as using only certain grape varieties (Chardonnay, Pinot Noir, and Pinot Meunier) and specific vineyard practices. On the other hand, sparkling wine can be produced worldwide and can use a variety of grapes.\"\r\n    }\r\n  },{\r\n    \"@type\": \"Question\",\r\n    \"name\": \"How is sparkling wine made?\",\r\n    \"acceptedAnswer\": {\r\n      \"@type\": \"Answer\",\r\n      \"text\": \"The process of making sparkling wine involves a secondary fermentation that occurs in the bottle, trapping carbon dioxide and creating bubbles. There are two methods: traditional method and tank method. In the traditional method, after the wine is made and bottled, a mixture of yeast and sugar is added to the bottle. The bottle is then sealed with a crown cap and left for a minimum of 15 months to age. During this process, the yeast consumes the sugar, producing carbon dioxide as a byproduct, which dissolves into the wine as bubbles. The tank method is a faster process, where the wine undergoes secondary fermentation in a pressurized tank, and then bottled under pressure.\"\r\n    }\r\n  },{\r\n    \"@type\": \"Question\",\r\n    \"name\": \"Are sparkling wines high in sugar?\",\r\n    \"acceptedAnswer\": {\r\n      \"@type\": \"Answer\",\r\n      \"text\": \"Sparkling wines vary in sweetness levels. The amount of sugar in a sparkling wine is determined by the style, ranging from brut (very dry) to doux (very sweet). The sweetness level of sparkling wine is measured by the residual sugar content, which is the amount of sugar left in the wine after fermentation. Brut Nature has less than 3 grams per liter, while Doux has more than 50 grams per liter. Extra Brut, Brut, Extra Dry, and Sec fall in between, depending on their residual sugar content.\"\r\n    }\r\n  }]\r\n}\r\n</script>'),(44200,3021,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(44201,3021,'content_block_1_layout_title',''),(44202,3021,'_content_block_1_layout_title','field_5bc11ca9a0d50-v'),(44203,3021,'content_block_1_product_row_number','2up'),(44204,3021,'_content_block_1_product_row_number','field_5bc11c6da0d4f'),(44205,3021,'content_block_1_data_collection_slug','sparkling-champagne'),(44206,3021,'_content_block_1_data_collection_slug','field_5bc11ca9a0d50'),(44207,3021,'content_block_1_manually_enter_collection_slug','0'),(44208,3021,'_content_block_1_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(44209,3021,'content_block_1_product_display_feature','0'),(44210,3021,'_content_block_1_product_display_feature','field_5d1144d5e6922'),(44211,3021,'content_block_1_product_display_teaser','0'),(44212,3021,'_content_block_1_product_display_teaser','field_5d114505e6923'),(44213,3021,'content_block','a:2:{i:0;s:10:\"text_block\";i:1;s:18:\"product_collection\";}'),(44214,3021,'_content_block','field_5bbe19a7efa09'),(44215,3022,'web_id','cf2458d0-617a-4174-8375-90ad53c1bdb3'),(44216,3022,'slug','double-bottle-textured-bag'),(44217,3022,'title','DOUBLE BOTTLE TEXTURED BAG'),(44218,3022,'type','General Merchandise'),(44219,3022,'image',NULL),(44220,3022,'teaser',''),(44221,3022,'content',''),(44222,3022,'subtitle','2 BOTTLE BAG'),(44223,3022,'price','0'),(44224,3022,'web_status','Not Available'),(44225,3022,'admin_status','Not Available'),(44226,3022,'collections','a:0:{}'),(44227,3022,'primary_collection',''),(44228,3022,'_wp_old_slug','single-bottle-textured-bag-duplicate'),(44229,2752,'_edit_lock','1691497944:5'),(44230,2752,'_edit_last','5'),(44231,2752,'primary_collection',''),(44232,2752,'trade_assets','a:0:{}'),(44233,2752,'downloads','a:0:{}'),(44234,2752,'related_products','a:0:{}'),(44235,2752,'recipe_pairings','a:0:{}'),(44236,2752,'external_recipe_pairings','a:0:{}'),(44237,2752,'should_exclude_from_search',''),(44238,2752,'additional_css_classes',''),(44239,2752,'template',''),(44240,2752,'allowed_customer_tag_titles','a:0:{}'),(44241,2752,'allowed_customer_club_titles','a:0:{}'),(44242,2752,'_yoast_wpseo_focuskw','2021 Pinot Blanc'),(44243,2752,'_yoast_wpseo_title','2021 Pinot Blanc from Sonoma County - Meadowcroft Wines\"'),(44244,2752,'_yoast_wpseo_metadesc','Discover the crisp elegance of our 2021 Pinot Blanc from Sonoma County. Experience a refreshing and vibrant wine that embodies the essence of Meadowcroft Wines'),(44245,2752,'_yoast_wpseo_linkdex','49'),(44246,2752,'_yoast_wpseo_estimated-reading-time-minutes','0'),(44247,2752,'_yoast_wpseo_wordproof_timestamp',''),(44248,2764,'_edit_lock','1684224446:5'),(44249,2764,'_edit_last','5'),(44250,2764,'primary_collection',''),(44251,2764,'trade_assets','a:0:{}'),(44252,2764,'downloads','a:0:{}'),(44253,2764,'related_products','a:0:{}'),(44254,2764,'recipe_pairings','a:0:{}'),(44255,2764,'external_recipe_pairings','a:0:{}'),(44256,2764,'should_exclude_from_search',''),(44257,2764,'additional_css_classes',''),(44258,2764,'template',''),(44259,2764,'allowed_customer_tag_titles','a:0:{}'),(44260,2764,'allowed_customer_club_titles','a:0:{}'),(44261,2764,'_yoast_wpseo_focuskw','2021 Viognier'),(44262,2764,'_yoast_wpseo_title','2021 Viognier, Wyldvin Vineyard from Sonoma County - Meadowcroft Wines'),(44263,2764,'_yoast_wpseo_metadesc','Indulge in the aromatic delights of our 2021 Viognier, Wyldvin Vineyard from Sonoma County. Immerse yourself in the captivating flavors crafted by Meadowcroft Wines'),(44264,2764,'_yoast_wpseo_linkdex','42'),(44265,2764,'_yoast_wpseo_estimated-reading-time-minutes','0'),(44266,2764,'_yoast_wpseo_wordproof_timestamp',''),(44267,2761,'_edit_last','5'),(44268,2761,'primary_collection',''),(44269,2761,'trade_assets','a:0:{}'),(44270,2761,'downloads','a:0:{}'),(44271,2761,'related_products','a:0:{}'),(44272,2761,'recipe_pairings','a:0:{}'),(44273,2761,'external_recipe_pairings','a:0:{}'),(44274,2761,'should_exclude_from_search',''),(44275,2761,'additional_css_classes',''),(44276,2761,'template',''),(44277,2761,'allowed_customer_tag_titles','a:0:{}'),(44278,2761,'allowed_customer_club_titles','a:0:{}'),(44279,2761,'_yoast_wpseo_focuskw','2021 Roussanne'),(44280,2761,'_yoast_wpseo_title','2021 Roussanne from Sonoma County - Meadowcroft Wines'),(44281,2761,'_yoast_wpseo_metadesc','Experience the alluring flavors of our 2021 Roussanne from Sonoma County. Delight in the harmonious blend of floral notes and luscious fruit, meticulously crafted by Meadowcroft Wines'),(44282,2761,'_yoast_wpseo_linkdex','49'),(44283,2761,'_yoast_wpseo_estimated-reading-time-minutes','0'),(44284,2761,'_yoast_wpseo_wordproof_timestamp',''),(44285,2747,'_edit_lock','1684224591:5'),(44286,2747,'_edit_last','5'),(44287,2747,'primary_collection',''),(44288,2747,'trade_assets','a:0:{}'),(44289,2747,'downloads','a:0:{}'),(44290,2747,'related_products','a:0:{}'),(44291,2747,'recipe_pairings','a:0:{}'),(44292,2747,'external_recipe_pairings','a:0:{}'),(44293,2747,'should_exclude_from_search',''),(44294,2747,'additional_css_classes',''),(44295,2747,'template',''),(44296,2747,'allowed_customer_tag_titles','a:0:{}'),(44297,2747,'allowed_customer_club_titles','a:0:{}'),(44298,2747,'_yoast_wpseo_focuskw','2021 Chardonnay'),(44299,2747,'_yoast_wpseo_title','2021 Chardonnay, Anderson Valley from Sonoma County - Meadowcroft Wines'),(44300,2747,'_yoast_wpseo_metadesc','Savor the richness of our 2021 Chardonnay, Anderson Valley from Sonoma County. Discover a sophisticated wine with balanced flavors, skillfully crafted by Meadowcroft Wines'),(44301,2747,'_yoast_wpseo_linkdex','42'),(44302,2747,'_yoast_wpseo_estimated-reading-time-minutes','0'),(44303,2747,'_yoast_wpseo_wordproof_timestamp',''),(44304,2750,'_edit_lock','1691498009:5'),(44305,2750,'_edit_last','5'),(44306,2750,'primary_collection',''),(44307,2750,'trade_assets','a:0:{}'),(44308,2750,'downloads','a:0:{}'),(44309,2750,'related_products','a:0:{}'),(44310,2750,'recipe_pairings','a:0:{}'),(44311,2750,'external_recipe_pairings','a:0:{}'),(44312,2750,'should_exclude_from_search',''),(44313,2750,'additional_css_classes',''),(44314,2750,'template',''),(44315,2750,'allowed_customer_tag_titles','a:0:{}'),(44316,2750,'allowed_customer_club_titles','a:0:{}'),(44317,2750,'_yoast_wpseo_focuskw','2021 Chardonnay'),(44318,2750,'_yoast_wpseo_title','2021 Chardonnay, Vino Del Sol Vineyard from Sonoma County - Meadowcroft Wines'),(44319,2750,'_yoast_wpseo_metadesc','Unveiling the distinctive character of our 2021 Chardonnay, Vino Del Sol Vineyard from Sonoma County. Experience the exquisite blend of flavors and the essence of Meadowcroft Wines'),(44320,2750,'_yoast_wpseo_linkdex','32'),(44321,2750,'_yoast_wpseo_estimated-reading-time-minutes','0'),(44322,2750,'_yoast_wpseo_wordproof_timestamp',''),(44323,2749,'_edit_lock','1691498141:5'),(44324,2749,'_edit_last','5'),(44325,2749,'primary_collection',''),(44326,2749,'trade_assets','a:0:{}'),(44327,2749,'downloads','a:0:{}'),(44328,2749,'related_products','a:0:{}'),(44329,2749,'recipe_pairings','a:0:{}'),(44330,2749,'external_recipe_pairings','a:0:{}'),(44331,2749,'should_exclude_from_search',''),(44332,2749,'additional_css_classes',''),(44333,2749,'template',''),(44334,2749,'allowed_customer_tag_titles','a:0:{}'),(44335,2749,'allowed_customer_club_titles','a:0:{}'),(44336,2749,'_yoast_wpseo_focuskw','2021 chardonnay carneros'),(44337,2749,'_yoast_wpseo_title','2021 Chardonnay, Napa Carneros from Sonoma County - Meadowcroft Wines'),(44338,2749,'_yoast_wpseo_metadesc','Embrace the elegance of our 2021 Chardonnay, Napa Carneros from Sonoma County. Discover a refined wine that showcases the terroir of the region, created by Meadowcroft Wines'),(44339,2749,'_yoast_wpseo_linkdex','38'),(44340,2749,'_yoast_wpseo_estimated-reading-time-minutes','0'),(44341,2749,'_yoast_wpseo_wordproof_timestamp',''),(44342,2748,'_edit_lock','1691498019:5'),(44343,2748,'_edit_last','5'),(44344,2748,'primary_collection',''),(44345,2748,'trade_assets','a:0:{}'),(44346,2748,'downloads','a:0:{}'),(44347,2748,'related_products','a:0:{}'),(44348,2748,'recipe_pairings','a:0:{}'),(44349,2748,'external_recipe_pairings','a:0:{}'),(44350,2748,'should_exclude_from_search',''),(44351,2748,'additional_css_classes',''),(44352,2748,'template',''),(44353,2748,'allowed_customer_tag_titles','a:0:{}'),(44354,2748,'allowed_customer_club_titles','a:0:{}'),(44355,2748,'_yoast_wpseo_focuskw','2021 Chardonnay'),(44356,2748,'_yoast_wpseo_title','2021 Chardonnay, Carneros 375ml from Sonoma County - Meadowcroft Wines'),(44357,2748,'_yoast_wpseo_metadesc','Delight in the intimate size of our 2021 Chardonnay, Carneros 375ml from Sonoma County. Enjoy a smaller format of our exceptional wine, meticulously crafted by Meadowcroft Wines'),(44358,2748,'_yoast_wpseo_linkdex','32'),(44359,2748,'_yoast_wpseo_estimated-reading-time-minutes','0'),(44360,2748,'_yoast_wpseo_wordproof_timestamp',''),(44375,3007,'_edit_lock','1684319743:5'),(44378,3026,'inline_featured_image','0'),(44379,3026,'_edit_lock','1731522353:3'),(44380,3026,'_edit_last','3'),(44381,3026,'_wp_page_template','default'),(44382,3026,'allowed_customer_tag_titles','a:0:{}'),(44383,3026,'allowed_customer_club_titles','a:0:{}'),(44384,3026,'content_block_0_layout_title','Page Title'),(44385,3026,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(44386,3026,'content_block_0_text_block_columns','one'),(44387,3026,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(44388,3026,'content_block_0_narrow_text_block_content','0'),(44389,3026,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(44390,3026,'content_block_0_reverse_colors','0'),(44391,3026,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(44392,3026,'content_block_0_enable_background_image','0'),(44393,3026,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(44394,3026,'content_block_0_custom_css_class',''),(44395,3026,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(44396,3026,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">GIFTS &amp; BUNDLES</h1>\r\nLooking for the perfect gift for the wine lover in your life? Look no further than Meadowcroft wine gifts! With our wide variety of options, we have something for everyone on your list. Whether it\'s for a birthday, anniversary, or just to show someone you care, our wine gifts are sure to impress.  So why settle for a generic gift when you can give the gift of Meadowcroft wine? Cheers to the joy of giving!'),(44397,3026,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(44398,3026,'content_block_1_layout_title',''),(44399,3026,'_content_block_1_layout_title','field_5bc11ca9a0d50-v'),(44400,3026,'content_block_1_product_row_number','3up'),(44401,3026,'_content_block_1_product_row_number','field_5bc11c6da0d4f'),(44402,3026,'content_block_1_data_collection_slug','gifts'),(44403,3026,'_content_block_1_data_collection_slug','field_5bc11ca9a0d50'),(44404,3026,'content_block_1_manually_enter_collection_slug','0'),(44405,3026,'_content_block_1_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(44406,3026,'content_block_1_product_display_feature','0'),(44407,3026,'_content_block_1_product_display_feature','field_5d1144d5e6922'),(44408,3026,'content_block_1_product_display_teaser','0'),(44409,3026,'_content_block_1_product_display_teaser','field_5d114505e6923'),(44410,3026,'content_block','a:2:{i:0;s:10:\"text_block\";i:1;s:18:\"product_collection\";}'),(44411,3026,'_content_block','field_5bbe19a7efa09'),(44412,3026,'_yoast_wpseo_estimated-reading-time-minutes','1'),(44413,3026,'_yoast_wpseo_wordproof_timestamp',''),(44414,3026,'_yoast_wpseo_content_score','90'),(44415,3027,'_menu_item_type','post_type'),(44416,3027,'_menu_item_menu_item_parent','0'),(44417,3027,'_menu_item_object_id','3026'),(44418,3027,'_menu_item_object','page'),(44419,3027,'_menu_item_target',''),(44420,3027,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44421,3027,'_menu_item_xfn',''),(44422,3027,'_menu_item_url',''),(44424,920,'_wp_old_date','2023-05-09'),(44425,456,'_wp_old_date','2023-05-09'),(44427,759,'_wp_old_date','2023-05-09'),(44428,2993,'_wp_old_date','2023-05-09'),(44429,2990,'_wp_old_date','2023-05-09'),(44430,2989,'_wp_old_date','2023-05-09'),(44431,2992,'_wp_old_date','2023-05-09'),(44432,2991,'_wp_old_date','2023-05-09'),(44434,1563,'_wp_old_date','2023-05-09'),(44435,948,'_wp_old_date','2023-05-09'),(44436,949,'_wp_old_date','2023-05-09'),(44437,950,'_wp_old_date','2023-05-09'),(44438,880,'_wp_old_date','2023-05-09'),(44439,1541,'_wp_old_date','2023-05-09'),(44440,2973,'content','<p>Explore our curated selection of wine gifts that will delight any wine enthusiast. Whether you\'re seeking the ideal present or a delightful bundle for yourself, Meadowcroft Wines offers exquisite options for every occasion.</p>'),(44441,2869,'primary_collection',''),(44442,2892,'primary_collection',''),(44443,2826,'primary_collection',''),(44444,2885,'primary_collection',''),(44458,3030,'web_id','4d1b3475-fd80-408b-a759-5ca05d2e6306'),(44459,3030,'slug','celebrate-spring-6-pack'),(44460,3030,'title','Celebrate Spring 6 pack'),(44461,3030,'type','Bundle'),(44462,3030,'image','https://images.commerce7.com/meadowcroft-wines/images/original/spring-refresher-6pk-1684530655110.jpg'),(44463,3030,'teaser',NULL),(44464,3030,'content','<p>Refresh and celebrate in style - Toast to warmer days with six bottles of crisp, light and refreshing wines perfect for sipping in the sun.</p>\n<p>Each pack contains one bottle each of our warm weather favorites: NV Blanc de Blanc, 2022 Pinot Gris, 2022 Napa Carneros Chardonnay, 2021 Roussanne, 2021 Pinot Blanc and 2021 Rose of Pinot Noir.</p>'),(44465,3030,'subtitle',NULL),(44466,3030,'price','18500'),(44467,3030,'web_status','Retired'),(44468,3030,'admin_status','Not Available'),(44469,3030,'collections','a:0:{}'),(44470,3030,'primary_collection',''),(44471,3031,'web_id','65a2baf9-b0c4-4484-b1e0-635cff72e9a5'),(44472,3031,'slug','spring-reds-6-pack'),(44473,3031,'title','Spring Reds 6 Pack'),(44474,3031,'type','Bundle'),(44475,3031,'image','https://images.commerce7.com/meadowcroft-wines/images/original/spring-reds-6pk-1684536294441.jpg'),(44476,3031,'teaser',NULL),(44477,3031,'content','<p>Rich, red flavors - Perfect for the springtime! Our diverse range of red wines bring out lush flavors and aromas. Enjoy the 2020 Russian River Pinot Noir for its juicy cherry and raspberry notes; the 2021 Anderson Valley Pinot Noir for its subtle tannins and bright fruit; the 2020 Sangiovese for its well-rounded acidity; the 2020 River Trace GSM for its bold yet smooth mouthfeel; the 2018 Speedy Creek Zinfandel for its lush raspberry flavor and 2019 Nelson Ranch Cabernet Sauvignon for its complex structure.</p>'),(44478,3031,'subtitle',NULL),(44479,3031,'price','26000'),(44480,3031,'web_status','Retired'),(44481,3031,'admin_status','Not Available'),(44482,3031,'collections','a:0:{}'),(44483,3031,'primary_collection',''),(44484,3032,'inline_featured_image','0'),(44485,3032,'_edit_lock','1706614932:5'),(44486,3032,'_edit_last','5'),(44490,3035,'_wp_attached_file','2023/05/wine-blending-_1_-scaled.webp'),(44491,3035,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:37:\"2023/05/wine-blending-_1_-scaled.webp\";s:8:\"filesize\";i:409948;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"wine-blending-_1_-300x200.webp\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16168;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"wine-blending-_1_-1024x683.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:108956;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"wine-blending-_1_-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7012;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"wine-blending-_1_-768x512.webp\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:72006;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:30:\"wine-blending-_1_-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:22544;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:30:\"wine-blending-_1_-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:34856;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:30:\"wine-blending-_1_-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:24840;}s:8:\"tileview\";a:5:{s:4:\"file\";s:30:\"wine-blending-_1_-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:28956;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"wine-blending-_1_-1536x1024.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:197302;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:32:\"wine-blending-_1_-2048x1365.webp\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:293976;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:31:\"wine-blending-_1_-1200x800.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:138582;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:22:\"wine-blending-_1_.webp\";}'),(44492,3035,'_wp_attachment_image_alt','Wine Blending'),(44493,3036,'_wp_attached_file','2023/05/cabernet-sauvignon-_2_-scaled.webp'),(44494,3036,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:42:\"2023/05/cabernet-sauvignon-_2_-scaled.webp\";s:8:\"filesize\";i:251758;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"cabernet-sauvignon-_2_-300x200.webp\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13640;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"cabernet-sauvignon-_2_-1024x683.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:73502;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"cabernet-sauvignon-_2_-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6764;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"cabernet-sauvignon-_2_-768x512.webp\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:49946;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:35:\"cabernet-sauvignon-_2_-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19066;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:35:\"cabernet-sauvignon-_2_-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:26546;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:35:\"cabernet-sauvignon-_2_-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19886;}s:8:\"tileview\";a:5:{s:4:\"file\";s:35:\"cabernet-sauvignon-_2_-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:22660;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"cabernet-sauvignon-_2_-1536x1024.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:125882;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"cabernet-sauvignon-_2_-2048x1365.webp\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:188146;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:36:\"cabernet-sauvignon-_2_-1200x800.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:90964;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:27:\"cabernet-sauvignon-_2_.webp\";}'),(44495,3036,'_wp_attachment_image_alt','Cabernet Sauvignon Meadowcroft Wines'),(44498,3038,'_wp_attached_file','2023/05/zinfandel-_1_-scaled.webp'),(44499,3038,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:33:\"2023/05/zinfandel-_1_-scaled.webp\";s:8:\"filesize\";i:330372;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"zinfandel-_1_-300x200.webp\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18348;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"zinfandel-_1_-1024x683.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:103040;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"zinfandel-_1_-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8736;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"zinfandel-_1_-768x512.webp\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:69654;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:26:\"zinfandel-_1_-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:24212;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:26:\"zinfandel-_1_-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:36482;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:26:\"zinfandel-_1_-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:27150;}s:8:\"tileview\";a:5:{s:4:\"file\";s:26:\"zinfandel-_1_-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:27700;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"zinfandel-_1_-1536x1024.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:172224;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:28:\"zinfandel-_1_-2048x1365.webp\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:248496;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:27:\"zinfandel-_1_-1200x800.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:127482;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:18:\"zinfandel-_1_.webp\";}'),(44500,3038,'_wp_attachment_image_alt','Zinfandel Wines - Meadowcroft Wines'),(44501,3032,'allowed_customer_tag_titles','a:0:{}'),(44502,3032,'allowed_customer_club_titles','a:0:{}'),(44503,3032,'hide_post_title','0'),(44504,3032,'_hide_post_title','field_5bbe18c8efa0ac'),(44505,3032,'custom_title',''),(44506,3032,'_custom_title','field_5bbe1b83pfa0c'),(44507,3032,'the_teaser','If you’re a wine lover, then chances are you’ve heard of the five most popular red wine varietals – Cabernet Sauvignon, Merlot, Pinot Noir, Syrah and Zinfandel. With their rich flavors and complexity on the palate'),(44508,3032,'_the_teaser','field_5c1d78f88e54c'),(44509,3032,'hero_image','3039'),(44510,3032,'_hero_image','field_5d138e7f31334'),(44511,3032,'enable_banner','0'),(44512,3032,'_enable_banner','field_5bbe19c8efa0acb'),(44513,3032,'banner_full_width','0'),(44514,3032,'_banner_full_width','field_5bbe19c8efa0ac'),(44515,3032,'banner_size','normal'),(44516,3032,'_banner_size','field_5bbe232929ec9c'),(44517,3032,'add_parallax_effect','0'),(44518,3032,'_add_parallax_effect','field_5bbe219ccb6a9'),(44519,3032,'add_veil_over_banner','0'),(44520,3032,'_add_veil_over_banner','field_5bbe333f39212'),(44521,3032,'banner_content_position','centered'),(44522,3032,'_banner_content_position','field_5bbe259b02b62'),(44523,3032,'banner_title',''),(44524,3032,'_banner_title','field_5bbe1b78efa0b'),(44525,3032,'banner_subtitle',''),(44526,3032,'_banner_subtitle','field_5bbe1b83efa0c'),(44527,3032,'banner_button_link',''),(44528,3032,'_banner_button_link','field_5bbe1b8cefa0d'),(44529,3032,'banner_button_new_tab','0'),(44530,3032,'_banner_button_new_tab','field_5bbe1e6d18fae'),(44531,3032,'show_down_arrow','0'),(44532,3032,'_show_down_arrow','field_5bbe24f721165'),(44533,3032,'banner_image',''),(44534,3032,'_banner_image','field_5bbe201718fafa'),(44535,3032,'banner_image_position','center center'),(44536,3032,'_banner_image_position','field_5bbe278f9fb97'),(44537,3032,'banner_image_mobile',''),(44538,3032,'_banner_image_mobile','field_5bbe202818fb0b'),(44539,3032,'banner_image_mobile_position','center center'),(44540,3032,'_banner_image_mobile_position','field_5bbe279c9fb98'),(44541,3032,'content_block',''),(44542,3032,'_content_block','field_5bbe19a7efa09'),(44543,3032,'_yoast_wpseo_primary_category','2'),(44544,3032,'_yoast_wpseo_content_score','90'),(44545,3032,'_yoast_wpseo_estimated-reading-time-minutes','6'),(44546,3032,'_yoast_wpseo_wordproof_timestamp',''),(44547,3039,'_wp_attached_file','2023/05/HERO-IMAGE-MEADOWCROFT-WINES-1.jpg'),(44548,3039,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:600;s:4:\"file\";s:42:\"2023/05/HERO-IMAGE-MEADOWCROFT-WINES-1.jpg\";s:8:\"filesize\";i:49860;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"HERO-IMAGE-MEADOWCROFT-WINES-1-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12978;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"HERO-IMAGE-MEADOWCROFT-WINES-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6196;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:42:\"HERO-IMAGE-MEADOWCROFT-WINES-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14778;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:42:\"HERO-IMAGE-MEADOWCROFT-WINES-1-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22900;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:42:\"HERO-IMAGE-MEADOWCROFT-WINES-1-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17236;}s:8:\"tileview\";a:5:{s:4:\"file\";s:42:\"HERO-IMAGE-MEADOWCROFT-WINES-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16576;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(44549,3039,'_wp_attachment_image_alt','Most Popular Red Wine Varietals'),(44550,3040,'_wp_attached_file','2023/05/Featured-Image-800px-1.jpg'),(44551,3040,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:34:\"2023/05/Featured-Image-800px-1.jpg\";s:8:\"filesize\";i:62054;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Featured-Image-800px-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14368;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Featured-Image-800px-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6018;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"Featured-Image-800px-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56303;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:34:\"Featured-Image-800px-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14368;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:34:\"Featured-Image-800px-1-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22700;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:34:\"Featured-Image-800px-1-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16870;}s:8:\"tileview\";a:5:{s:4:\"file\";s:34:\"Featured-Image-800px-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17162;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(44552,3040,'_wp_attachment_image_alt','Most Popular Red Wine Varietals'),(44553,3032,'_thumbnail_id','3040'),(44554,3032,'_yoast_wpseo_focuskw','red wine varietals'),(44555,3032,'_yoast_wpseo_title','Discover the Top 5 Red Wine Varietals That Everyone Loves'),(44556,3032,'_yoast_wpseo_metadesc','Explore the world of red wine with our list of the 5 most popular red wine varietals. From full-bodied Cabernet Sauvignon to smooth Merlot, learn about these beloved wines and enhance your wine-tasting experience.'),(44557,3032,'_yoast_wpseo_linkdex','72'),(44558,3041,'web_id','ed229f98-8107-49ef-a887-7ef6bbd2d976'),(44559,3041,'slug','card-plantable'),(44560,3041,'title','Greeting Card - all types'),(44561,3041,'type','General Merchandise'),(44562,3041,'image',NULL),(44563,3041,'teaser',NULL),(44564,3041,'content',NULL),(44565,3041,'subtitle',NULL),(44566,3041,'price','500'),(44567,3041,'web_status','Not Available'),(44568,3041,'admin_status','Available'),(44569,3041,'vendor','Faire- The Bower Studio'),(44570,3041,'collections','a:0:{}'),(44571,3041,'primary_collection',''),(44576,3044,'_wp_attached_file','2023/05/tom-spraying-sparkling.jpg'),(44577,3044,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:846;s:4:\"file\";s:34:\"2023/05/tom-spraying-sparkling.jpg\";s:8:\"filesize\";i:348745;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"tom-spraying-sparkling-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15992;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"tom-spraying-sparkling-1024x722.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:722;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115624;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"tom-spraying-sparkling-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7168;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"tom-spraying-sparkling-768x541.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:541;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69367;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:34:\"tom-spraying-sparkling-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19336;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:34:\"tom-spraying-sparkling-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31079;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:34:\"tom-spraying-sparkling-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22364;}s:8:\"tileview\";a:5:{s:4:\"file\";s:34:\"tom-spraying-sparkling-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22826;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(44652,3045,'web_id','acb9656b-e7a6-4bb5-8ac9-dc9c247544d0'),(44653,3045,'slug','ticket-spring-2023-wine-club-pick-up-party-and-open-house'),(44654,3045,'title','Ticket- Spring 2023 Pick Up Party - Club Member Tickets'),(44655,3045,'type','Event Ticket'),(44656,3045,'image','https://images.commerce7.com/meadowcroft-wines/images/original/tom-1684886007492.png'),(44657,3045,'teaser','Wine Pick Up Party Tickets - Wine Club members'),(44658,3045,'content','<div><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 400;\">Spring is in the air and that can only mean one thing - it\'s time for our Spring Open House and Wine Pick Up Party at Meadowcroft wines! Join us for an unforgettable afternoon of sipping and savoring your favorite wines, including some exciting new releases that you\'re sure to enjoy.</span></div>\n<div><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 400;\">&nbsp;</span><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 400;\">But wait, there\'s more! We\'ve partnered with Chef Dan Lucia catering to bring you delectable bites that will complement your wine choices perfectly.&nbsp; And we\'ve also got some live music lined up.&nbsp; Jason Movrich will</span><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 400;\"> keep the good vibes flowing.&nbsp;</span></div>\n<div>&nbsp;</div>\n<p><strong><span style=\"font-size: 20px;\">When</span>:</strong>&nbsp; <span style=\"font-size: 14px;\">Saturday, June 17th.&nbsp; 3pm-6pm</span></p>\n<p><span style=\"font-size: 20px;\"><strong>Where:</strong> <span style=\"font-size: 14px;\">Meadowcroft Tasting Room in Cornerstone Sonoma&nbsp;</span></span></p>\n<p><span style=\"font-size: 20px; font-weight: bold;\">Tickets:</span> <span style=\"font-size: 14px;\">Club Members $20 (2 at this price) / </span><span style=\"font-size: 14px;\">$35 non-members</span></p>\n<div>\n<div><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 400;\">So come on down and indulge in all the wonderful things that make springtime so special. Bring your friends, bring your family, and don\'t forget to leave your worries at the door. This is an event you won\'t want to miss!</span></div>\n<div><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 400;\">&nbsp;</span></div>\n<div><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 400;\">Cheers to good company, good food, and of course, great wine!</span><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 400;\">&nbsp;</span></div>\n<div><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 400;\">The Meadowcroft Wines Team</span></div>\n<div>&nbsp;</div>\n<div>&nbsp;</div>\n</div>'),(44659,3045,'subtitle',NULL),(44660,3045,'price','2000'),(44661,3045,'web_status','Retired'),(44662,3045,'admin_status','Not Available'),(44663,3045,'vendor','Meadowcroft Wines'),(44664,3045,'collections','a:0:{}'),(44665,3045,'primary_collection',''),(44666,3047,'web_id','78171222-1471-4b0d-8c25-41824d535e22'),(44667,3047,'slug','ticket--spring-23-pick-up-party---club-member-duplicate'),(44668,3047,'title','Ticket- Spring 23 Pick Up Party - Non-Member Ticket'),(44669,3047,'type','Event Ticket'),(44670,3047,'image','https://images.commerce7.com/meadowcroft-wines/images/original/784ee891-58e9-482c-b35d-d72d9690f0c1-1684885900548.png'),(44671,3047,'teaser','Wine Club Pick Up Party - non-members'),(44672,3047,'content','<div><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 400;\">Spring is in the air and that can only mean one thing - it\'s time for our Spring Open House and Wine Pick Up Party at Meadowcroft wines! Join us for an unforgettable afternoon of sipping and savoring your favorite wines, including some exciting new releases that you\'re sure to enjoy.</span></div>\n<div><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 400;\">&nbsp;</span><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 400;\">But wait, there\'s more! We\'ve partnered with Chef Dan Lucia catering to bring you delectable bites that will complement your wine choices perfectly.&nbsp; And we\'ve also got some live music lined up.&nbsp; Jason Movrich will</span><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 400;\"> keep the good vibes flowing.&nbsp;</span></div>\n<div>&nbsp;</div>\n<p><strong><span style=\"font-size: 20px;\">When</span>:</strong>&nbsp; <span style=\"font-size: 14px;\">Saturday, June 17th.&nbsp; 3pm-6pm</span></p>\n<p><span style=\"font-size: 20px;\"><strong>Where:</strong> <span style=\"font-size: 14px;\">Meadowcroft Tasting Room in Cornerstone Sonoma&nbsp;</span></span></p>\n<p><span style=\"font-size: 20px; font-weight: bold;\">Tickets:</span> <span style=\"font-size: 14px;\">Club Members $20 (2 at this price) / </span><span style=\"font-size: 14px;\">$35 non-members</span></p>\n<div>\n<div><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 400;\">So come on down and indulge in all the wonderful things that make springtime so special. Bring your friends, bring your family, and don\'t forget to leave your worries at the door. This is an event you won\'t want to miss!</span></div>\n<div><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 400;\">&nbsp;</span></div>\n<div><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 400;\">Cheers to good company, good food, and of course, great wine!</span><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 400;\">&nbsp;</span></div>\n<div><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 400;\">The Meadowcroft Wines Team</span></div>\n<div>&nbsp;</div>\n<div>&nbsp;</div>\n</div>'),(44673,3047,'subtitle',NULL),(44674,3047,'price','3500'),(44675,3047,'web_status','Retired'),(44676,3047,'admin_status','Not Available'),(44677,3047,'vendor','Meadowcroft Wines'),(44678,3047,'collections','a:0:{}'),(44679,3047,'primary_collection',''),(44693,3049,'web_id','1e72c6b4-5a46-42a0-8a6b-0dc8b9681770'),(44694,3049,'slug','event-tickets-2'),(44695,3049,'type','Manual'),(44696,3049,'content','<p>Meadowcroft wines hosts events throughout the year at our tasting room located in the Cornerstone Sonoma marketplace.&nbsp;&nbsp;</p>'),(44697,3049,'web_status','Available'),(44698,3049,'admin_status','Available'),(44699,3049,'product_web_ids','a:2:{i:0;s:36:\"bebba989-c825-4e97-9ce0-7193b6fd9aca\";i:1;s:36:\"5e72bbd7-cc87-42c2-b578-f69556ed2c95\";}'),(44700,3049,'product_post_ids','a:2:{i:0;i:3413;i:1;i:3437;}'),(44701,3049,'is_imported','1'),(44751,920,'_wp_old_date','2023-05-16'),(44752,456,'_wp_old_date','2023-05-16'),(44754,759,'_wp_old_date','2023-05-16'),(44755,2993,'_wp_old_date','2023-05-16'),(44756,2990,'_wp_old_date','2023-05-16'),(44757,2989,'_wp_old_date','2023-05-16'),(44758,2992,'_wp_old_date','2023-05-16'),(44759,2991,'_wp_old_date','2023-05-16'),(44761,3027,'_wp_old_date','2023-05-16'),(44762,1563,'_wp_old_date','2023-05-16'),(44763,948,'_wp_old_date','2023-05-16'),(44764,949,'_wp_old_date','2023-05-16'),(44765,950,'_wp_old_date','2023-05-16'),(44766,880,'_wp_old_date','2023-05-16'),(44767,1541,'_wp_old_date','2023-05-16'),(44783,3055,'web_id','3df34809-19c1-42a2-8537-75568f6a91e4'),(44784,3055,'slug','plush-dog-toy-duplicate'),(44785,3055,'title','Plush Dog Toy- Blanc de Blancs'),(44786,3055,'type','General Merchandise'),(44787,3055,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1172-1661821116377.png'),(44788,3055,'teaser',NULL),(44789,3055,'content',NULL),(44790,3055,'subtitle',NULL),(44791,3055,'price','1500'),(44792,3055,'web_status','Retired'),(44793,3055,'admin_status','Not Available'),(44794,3055,'collections','a:0:{}'),(44795,3055,'primary_collection',''),(44812,3057,'web_id','6853c989-3af3-42e7-9b7d-e5efdbc21df5'),(44813,3057,'slug','2021-sangiovese-speedy-creek-vineyard'),(44814,3057,'title','2021 Sangiovese, Speedy Creek Vineyard'),(44815,3057,'type','Wine'),(44816,3057,'image','https://images.commerce7.com/meadowcroft-wines/images/original/2021-sangiovese-1715812782466.png'),(44817,3057,'teaser',NULL),(44818,3057,'content','<p class=\"p1\"><strong><span class=\"s1\">Tasting Notes</span></strong></p>\n<p class=\"p2\">The bucolic Kinght&rsquo;s Valley AVA is nestled to the eastern edges of Alexander Valley and Chalk Hill regions.<span class=\"Apple-converted-space\">&nbsp; </span>The 2021 Sangiovese from the Speedy Creek Vineyard is an excellet representation of this noble varietal from Tuscany.<span class=\"Apple-converted-space\">&nbsp; </span>On the nose, aromas of ripe red and black fruits with subtle notes of anise flow from the glass.<span class=\"Apple-converted-space\">&nbsp; </span>Flavors of dark cherry, black currant, vanilla, and black pepper please the palate.<span class=\"Apple-converted-space\">&nbsp; </span>Drink now through 2027.</p>\n<p class=\"p3\">&nbsp;</p>\n<p class=\"p1\"><strong><span class=\"s1\">SUGGESTED FOOD PAIRING</span></strong></p>\n<p class=\"p4\">Classic dishes to enjoy with Sangiovese include wood fired pizzas or pasta with rich tomato sauces.<span class=\"Apple-converted-space\">&nbsp; </span>Mushrooms have a particular afinity for this varietal.<span class=\"Apple-converted-space\">&nbsp; </span>A creamy mushroom risotto will make this wine shine at the table.</p>\n<p class=\"p1\">&nbsp;</p>\n<p class=\"p1\"><span class=\"s1\">APPELLATION: </span>Knight&rsquo;s Valley</p>\n<p class=\"p1\"><span class=\"s1\">VARIETAL:</span> Sangiovese</p>\n<p class=\"p1\"><span class=\"s1\">HARVESTED:</span> September 2021</p>\n<p class=\"p1\"><span class=\"s1\">BOTTLED:</span> April 2023</p>\n<p class=\"p2\"><span class=\"s2\">PRODUCTION:</span><span class=\"s3\"> 184 cases</span></p>\n<p class=\"p2\"><span class=\"s2\">ALCOHOL:</span><span class=\"s3\"> 14.5%</span></p>\n<p class=\"p1\"><span class=\"s1\">pH:</span> 3.78</p>\n<p class=\"p1\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2021-sangiovese-techsheet-final.pdf\"><strong>Download Full PDF Wine Notes</strong></a></p>\n<p class=\"p1\"><strong>ACCOLADES:</strong></p>\n<p class=\"p1\"><strong>91 points -&nbsp;</strong>Wine Enthusiast</p>\n<p class=\"p1\"><strong>Gold Medal </strong>- San Francisco Chronicle Wine Competition</p>'),(44819,3057,'subtitle','Knights Valley, Sonoma County'),(44820,3057,'price','5500'),(44821,3057,'web_status','Available'),(44822,3057,'admin_status','Available'),(44823,3057,'varietal','Sangiovese'),(44824,3057,'appellation','Knights Valley'),(44825,3057,'vintage','2021'),(44826,3057,'meta_data_review-text','<div>GOLD |&nbsp;<a href=\"https://winejudging.com/medal_winners_2022/awards_by_winery.php\"\" title=\"\"\"\" target=\"\"\"\">2022 San Francisco Chronicle Wine Judging Competition</a>&nbsp;(2019 Vintage)</div><div>91 pts GOLD |&nbsp;&nbsp;<a href=\"\"https://www.criticschallenge.com/\"\" title=\"\"\"\" target=\"\"\"\">Critics Challenge International Wine Competition</a>&nbsp;<span style=\"\"font-style: italic;\"\">(2019 vintage)</span></div><div><p class=\"\"MsoNormal\"\" style=\"\"margin: 0in;\"\">GOLD |&nbsp; <a href=\"\"http://http://harvestfair.org/professional-wine-competition/\"\" title=\"\"\"\" target=\"\"\"\">Sonoma County Harvest Fair Wine Competition</a> (2019 vintage)</p><p class=\"\"MsoNormal\"\" style=\"\"margin: 0in;\"\"><span style=\"\"font-size: inherit;\"\">92 pts GOLD |&nbsp; <a href=\"\"http://https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"\"\" target=\"\"\"\">Sunset International Wine Competition</a> (2018 vintage)</span><br></p></div>\"'),(44827,3057,'meta_data_feature-text','Knights Valley, Sonoma County'),(44828,3057,'meta_data_wine-notes','$44.00'),(44829,3057,'meta_data_technical-notes','Appellation: Knights Valley, Sonoma County<br><span style=\"line-height: 1.5;\"\">Varietal: Sangiovese<br></span><span style=\"\"line-height: 1.5;\"\">Harvested: September 2020</span><span style=\"\"line-height: 1.5;\"\"><br></span><span style=\"\"line-height: 1.5;\"\">Production: 209 cases<br></span><span style=\"\"line-height: 1.5;\"\">Alcohol: 14.79%</span>\"'),(44830,3057,'collections','a:0:{}'),(44831,3057,'primary_collection',''),(44832,3057,'_wp_old_slug','2020-sangiovese-speedy-creek-vineyard-duplicate'),(44833,3058,'web_id','50d4ba71-c6a3-4777-9dd8-ede463297ed5'),(44834,3058,'slug','2022-pinot-noir-napa-carneros'),(44835,3058,'title','2022 Pinot Noir, Napa Carneros'),(44836,3058,'type','Wine'),(44837,3058,'image','https://images.commerce7.com/meadowcroft-wines/images/original/pinotnoir-novintage-napacarneros-1714501534103.png'),(44838,3058,'teaser',NULL),(44839,3058,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>\n<p class=\"p1\"><strong><span class=\"s1\">Tasting Notes</span></strong></p>\n<p class=\"p2\">Aromas of boysenberry, sweet cherry and cola leap from the glass followed by subtle floral notes. The palate offers layers of ripe dark cherries, fresh raspberry and strawberry. Soft integrated tannins and balanced acidity lend to a smooth lengthy finish. flinty and crisp, this nose leads with notes of fresh cut lime, jasmine and delicate floral notes. With a balanced palate that expresses flavors of key lime pie, gooseberry and clean minerality,<span class=\"Apple-converted-space\">&nbsp; </span>this complex wine has a lengthy, lush and fruity finish.</p>\n<p class=\"p3\"><strong><span class=\"s1\">SUGGESTED FOOD PAIRING</span></strong></p>\n<p class=\"p2\">The concentrated richness and exceptional acidity make this wine a remarkable partner with food. We recommend anything with mushrooms, cedar plank grilled salmon, or lamb and duck. Our cheese recommendations would include something aged and salty, like Gouda or aged cheddar.</p>\n<p class=\"p2\"><strong>&nbsp;</strong></p>\n<p class=\"p2\"><strong>ACCOLADES</strong></p>\n<p class=\"p2\"><strong>91 pts - </strong>Wine Enthusiast</p>\n<p class=\"p2\"><strong>Technical Data:</strong></p>\n<p class=\"p1\"><strong><span class=\"s1\">APPELLATION: </span></strong><span class=\"s2\">Napa Carneros</span></p>\n<p class=\"p2\"><strong><span class=\"s3\">VARIETAL:</span></strong> Pinot Noir</p>\n<p class=\"p2\"><strong><span class=\"s3\">HARVESTED:</span></strong> September 2022</p>\n<p class=\"p2\"><strong><span class=\"s3\">BOTTLED:</span></strong> March 2023</p>\n<p class=\"p1\"><strong><span class=\"s1\">PRODUCTION:</span></strong><span class=\"s2\"> 165 cases</span></p>\n<p class=\"p1\"><strong><span class=\"s1\">ALCOHOL:</span></strong><span class=\"s2\"> 13.8</span></p>\n<p class=\"p2\"><strong><span class=\"s3\">pH:</span></strong> 3.79</p>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\">&nbsp;</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/03/2022-PinotNoir-NapaCarneros.pdf\"><strong>Pdf Wine Notes</strong></a></div>'),(44840,3058,'subtitle','Carneros, Napa Valley'),(44841,3058,'price','4200'),(44842,3058,'web_status','Available'),(44843,3058,'admin_status','Available'),(44844,3058,'varietal','Pinot Noir'),(44845,3058,'appellation','Carneros'),(44846,3058,'vintage','2022'),(44847,3058,'collections','a:0:{}'),(44848,3058,'primary_collection',''),(44849,3058,'_wp_old_slug','2021-pinot-noir-napa-carneros-duplicate'),(44850,2758,'_wp_old_slug','2021-pinot-noir-vino-del-sol-sonoma-coast'),(44851,3059,'web_id','7092a258-c9a2-4480-ab37-34ce12781bd7'),(44852,3059,'slug','2022-pinot-noir-vina-del-sol-vineyard-sonoma-coast'),(44853,3059,'title','2022 Pinot Noir, Viña Del Sol Vineyard'),(44854,3059,'type','Wine'),(44855,3059,'image','https://images.commerce7.com/meadowcroft-wines/images/original/sonomabottle-meadowcroftwines_pinotnoir_viadelsol_2022-1688677754431.png'),(44856,3059,'teaser',NULL),(44857,3059,'content','<p><span style=\"font-weight: bold;\">TASTING NOTES:&nbsp;</span>Sourced from Sonoma\'s largest AVA<span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">, the vines cultivated in this world-famous growing region experience cool-climate growing conditions year-round. The longer growing season allows for the development of rich fruit characteristics and bright acidity. Enjoy red cherry, pomegranate, and cranberry aromas and flavors with underpinnings of baking spice. The palate is velvety with textured tannins leading to a smooth, rich finish.&nbsp;</span></p>\n<div>&nbsp;</div>\n<div>FOOD PAIRINGS:&nbsp;&nbsp;Easy to pair, this supple and elegant wine is perfect for everyday enjoyment or to share in a special moment. Try with wood-fired pizza, roasted duck, or barbecued pork ribs. If you plan to serve it with cheese, pair this wine with Brie, Gouda, and Manchego cheeses.</div>'),(44858,3059,'subtitle','Sonoma Coast'),(44859,3059,'price','3800'),(44860,3059,'web_status','Available'),(44861,3059,'admin_status','Available'),(44862,3059,'varietal','Pinot Noir'),(44863,3059,'appellation','Sonoma Coast'),(44864,3059,'vintage','2022'),(44865,3059,'meta_data_wine-notes','$30.40'),(44866,3059,'meta_data_technical-notes','Appellation: Sonoma Coast, Sonoma County Pinot Noir<br>Harvest Date: September 2021<br>Barrel Regime: French oak barrels<br>Bottling Date: April 2022<br>Production: 200 Cases<br>Alcohol: 13.38%<br>pH: 3.75<br>'),(44867,3059,'collections','a:0:{}'),(44868,3059,'primary_collection',''),(44869,3059,'_wp_old_slug','2021-pinot-noir-vina-del-sol-vineyard-sonoma-coast-duplicate'),(44870,3060,'web_id','9475d978-f74b-4b97-8456-67f627d08310'),(44871,3060,'slug','2021-cabernet-sauvignon-napa-valley'),(44872,3060,'title','2021 Cabernet Sauvignon, Napa Valley'),(44873,3060,'type','Wine'),(44874,3060,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_napavalley_cabernetsauvignon-1688672927933.jpg'),(44875,3060,'teaser',NULL),(44876,3060,'content','<p><strong>TASTING NOTES:</strong>&nbsp;A rich and compelling nose of blackberry, blueberries, sandalwood, and dried herbs is augmented by layers of plum and cherry, cocoa, and graphite. Bold and full-bodied, this wine is structured firmly around a solid core of rich fruit, licorice, and herbs. Supple, ripe tannins provide ample backbone. The mouth-feel is plush and unctuous while retaining stability and finesse. The finish is extended, with lingering flavors of caramel, sweet oak, and chocolate.&nbsp;</p>\n<div><strong>FOOD PAIRING:</strong> &nbsp;A quintessential Cabernet, this bold and structured wine is an effortless match with well-marbled beef and long-braised stews and sauces. Dishes with fresh herbs will marry nicely with the earthy notes, while the bold fruit will complement hard cheeses like Parmesan or Asiago.</div>\n<div>\n<div>&nbsp;</div>\n<div><strong>TECHNICAL DATA:</strong></div>\n<div>&nbsp;</div>\n<div><span id=\"page63R_mcid21\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Appellation:</span></span><span id=\"page63R_mcid22\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">Napa Valley</span></span><span id=\"page63R_mcid23\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Varietal:</span></span><span id=\"page63R_mcid24\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">Cabernet Sauvignon</span></span><span id=\"page63R_mcid25\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Harvested:</span></span><span id=\"page63R_mcid26\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">September 2021</span></span><span id=\"page63R_mcid27\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Bottled:</span></span><span id=\"page63R_mcid28\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">March 2023</span></span><span id=\"page63R_mcid29\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Production:</span></span><span id=\"page63R_mcid30\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">551 cases</span></span></div>\n<div>&nbsp;</div>\n<div><strong><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-NapaValley-Cabernet-Final-2.pdf\">PDF Wine Notes</a></strong></div>\n<div>&nbsp;</div>\n</div>'),(44877,3060,'subtitle',NULL),(44878,3060,'price','6500'),(44879,3060,'web_status','Not Available'),(44880,3060,'admin_status','Available'),(44881,3060,'varietal','Cabernet Sauvignon'),(44882,3060,'appellation','Napa Valley'),(44883,3060,'vintage','2021'),(44884,3060,'meta_data_review-text','<div>90 pt |&nbsp; James Suckling&nbsp; |&nbsp; 2016 vintage</div>\n<div><span style=\"font-style: italic;\">A prototypical, modern Napa red that has the big cassis character of fully ripe cabernet sauvignon, moderate tannins that are already well integrated and nice freshness at the finish.&nbsp; Makes you want to order or cook some Osso Bucco.&nbsp; &nbsp;</span></div>\n<div>&nbsp;</div>\n<p>94 pts | &nbsp;Chris Sawyer, Certified Sommelier&nbsp; |&nbsp; 2014 vintage</p>\n<div><span>&nbsp;On the palate, the generous flavors of black raspberry, dark cherry, cassis, ripe currants, cinnamon, hickory spice and dark chocolate truffle are complemented with a harmonious mixture of smooth, silky texture, chewy tannins, firm structure, and a lingering finish. Overall, an extremely well-crafted wine that is not only approachable when young, but also worthy of cellaring for more 10-15 years.</span></div>\n<p>\"</p>'),(44885,3060,'meta_data_wine-notes','<p>$52.00</p>'),(44886,3060,'meta_data_technical-notes','<div>Appellation: &nbsp;Napa Valley<br />Varietal: &nbsp;Cabernet Sauvignon<br />Harvested:&nbsp; September 2020<br />Bottle Date:&nbsp; March 2022<br />Production: 578 cases</div>'),(44887,3060,'collections','a:1:{s:5:\"wines\";s:5:\"Wines\";}'),(44888,3060,'primary_collection','wines, Wines'),(44889,3060,'_wp_old_slug','2020-cabernet-sauvignon-napa-valley-duplicate'),(44890,3061,'web_id','a544b927-5a5a-45ab-ad4e-7e8a3a50537d'),(44891,3061,'slug','2022-pinot-noir-russian-river-valley'),(44892,3061,'title','2022 Pinot Noir, Russian River Valley'),(44893,3061,'type','Wine'),(44894,3061,'image','https://images.commerce7.com/meadowcroft-wines/images/original/rr-pinot-noir-c7-1695060254626.png'),(44895,3061,'teaser',NULL),(44896,3061,'content','<p><span style=\"font-weight: bold;\">TASTING NOTE: &nbsp;</span>Aromas of boysenberry, sweet cherry and cola leap from the glass followed by subtle floral notes. The palate offers layers of ripe dark cherries, fresh raspberry and strawberry. Soft integrated tannins and balanced acidity lend to a smooth lengthy finish.</p>\n<div>&nbsp;</div>\n<div><strong>FOOD PAIRING:</strong>&nbsp;&nbsp;The concentrated richness and exceptional acidity that are indicative of a Russian River Valley Pinot Noir make this intense wine a remarkable partner with food. We recommend anything with mushrooms, cedar plank grilled salmon, or lamb and duck. Our cheese recommendations would include something aged and salty, like Gouda or aged cheddar cheese.</div>\n<div>&nbsp;</div>\n<div><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/09/2022-PinotNoir-RussianRiver-FINAL.pdf\"><strong>WINE NOTES</strong></a></div>\n<div>&nbsp;</div>\n<div><strong>ACCOLADES:</strong></div>\n<div>Gold Medal - San Francisco Chronicle Wine Competition</div>'),(44897,3061,'subtitle','Sonoma County'),(44898,3061,'price','3400'),(44899,3061,'web_status','Available'),(44900,3061,'admin_status','Available'),(44901,3061,'varietal','Pinot Noir'),(44902,3061,'appellation','Sonoma County'),(44903,3061,'vintage','2022'),(44904,3061,'meta_data_review-text','<div><span style=\"font-weight: bold;\"\">AWARDS AND REVIEWS</span><br><div><div>GOLD MEDAL |&nbsp; <span style=\"\"font-style: italic;\"\">2018 Russian River Valley Pinot Noir</span><br></div><span style=\"\"font-style: italic;\"\">San Francisco Chronicle Wine Competition</span><span style=\"\"font-style: italic;\"\"><br></span></div><div><span style=\"\"font-style: italic;\"\"><br></span></div><span style=\"\"font-weight: bold;\"\"></span></div><div>James Suckling&nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2015 Russian River Valley Pinot Noir</span><br></div><div><span style=\"\"font-style: italic;\"\">Lots of ripe cherries with some jam character. &nbsp;Full body, light tannins.</span></div><div><span style=\"\"font-style: italic;\"\"><br></span></div>\"'),(44905,3061,'meta_data_feature-text','Sonoma County<br>'),(44906,3061,'meta_data_wine-notes','$33.60'),(44907,3061,'meta_data_technical-notes','Appellations: &nbsp;Russian River Valley, Sonoma County<div>Varietal: &nbsp;Pinot Noir</div><div>Harvested: &nbsp;September 2021</div><div>Bottle Date:&nbsp; April 2022<br>Production:&nbsp; 160 cases</div>'),(44908,3061,'collections','a:0:{}'),(44909,3061,'primary_collection',''),(44910,3061,'_wp_old_slug','2021-pinot-noir-russian-river-valley-duplicate'),(44911,3062,'web_id','2cda066c-2841-4fff-a0d5-c388eda2b091'),(44912,3062,'slug','2022-chardonnay-sonoma-coast-vina-del-sol-vineyard'),(44913,3062,'title','2022 Chardonnay, Sonoma Coast'),(44914,3062,'type','Wine'),(44915,3062,'image','https://images.commerce7.com/meadowcroft-wines/images/original/2022-sonomacoast-chardonnay-web-1720480908756.png'),(44916,3062,'teaser',NULL),(44917,3062,'content','<p>The Sonoma Coast AVA extends from San Pablo Bay to the border with Mendocino County. The appellation is known for its cool climate and high rainfall relative to other parts of Sonoma County. Close to the Pacific, with more than twice the annual rainfall of its inland neighbors, it&rsquo;s warm enough to ripen wine grapes because most vineyards are above the fog line.</p>\n<p><span style=\"font-weight: bold;\">TASTING NOTES:</span>&nbsp; Showcases vibrant notes of tropical fruit and green apple on the nose. The palate is medium, with fresh flavors of lychee, grapefruit, ripe cantaloupe, and vanilla bean. The finish lingers delightfully with notes of apple strudel and suggestions of baking spice.&nbsp;</p>\n<div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp; We love this clean, complex chardonnay with fresh dishes like ceviche, Ahi tuna tartare, buttered crab, and crusty sourdough bread. Serve chilled with salads and young cheeses, or at room temperature with richer dishes and aged cheeses. A versatile and complex wine is a great cellar staple.</div>\n</div>'),(44918,3062,'subtitle','Sonoma Coast'),(44919,3062,'price','3500'),(44920,3062,'web_status','Available'),(44921,3062,'admin_status','Available'),(44922,3062,'varietal','Chardonnay'),(44923,3062,'appellation','Sonoma Coast'),(44924,3062,'vintage','2022'),(44925,3062,'meta_data_feature-text','Sonoma Coast'),(44926,3062,'meta_data_wine-notes','$28.00'),(44927,3062,'meta_data_technical-notes','<div>Appellation: Vino Del Sol Sonoma Coast, Sonoma County</div><div>Varietal: Chardonnay</div><div>Oak Regime: 100% French Oak, 35% New</div><div>Harvested: September 2021</div><div>Bottle Date: April 2022</div><div>Production: 145 Cases</div><div>Alc: 13.5%</div><div><br></div>'),(44928,3062,'collections','a:0:{}'),(44929,3062,'primary_collection',''),(44930,3062,'_wp_old_slug','2021-chardonnay-vino-del-sol-vineyard-duplicate'),(44932,3062,'_edit_lock','1686096033:2'),(44933,3065,'web_id','23d84ed9-c344-4f26-8814-d60e7329a631'),(44934,3065,'slug','travel-mug-splash-proof'),(44935,3065,'title','Travel Mug, splash proof'),(44936,3065,'type','General Merchandise'),(44937,3065,'image','https://images.commerce7.com/meadowcroft-wines/images/original/travel-mugs-1696618041664.jpg'),(44938,3065,'teaser','Enjoy your morning coffee without the risk of slashing as you make your commute.   Keeps coffee warm for hours.'),(44939,3065,'content','<p>Carter Move splash proof travel mug with Meadowcroft logo.&nbsp; Enjoy your morning coffee without the risk of slashing as you make your commute. &nbsp; Keeps coffee warm for hours.</p>'),(44940,3065,'subtitle',NULL),(44941,3065,'price','3500'),(44942,3065,'web_status','Available'),(44943,3065,'admin_status','Available'),(44944,3065,'vendor','Fellow'),(44945,3065,'collections','a:0:{}'),(44946,3065,'primary_collection',''),(44947,2689,'_edit_lock','1691498194:5'),(44948,2689,'_edit_last','5'),(44949,2689,'primary_collection',''),(44950,2689,'trade_assets','a:0:{}'),(44951,2689,'downloads','a:0:{}'),(44952,2689,'related_products','a:0:{}'),(44953,2689,'recipe_pairings','a:0:{}'),(44954,2689,'external_recipe_pairings','a:0:{}'),(44955,2689,'should_exclude_from_search',''),(44956,2689,'additional_css_classes',''),(44957,2689,'template',''),(44958,2689,'allowed_customer_tag_titles','a:0:{}'),(44959,2689,'allowed_customer_club_titles','a:0:{}'),(44960,2689,'_yoast_wpseo_focuskw','2019 Mt. Veeder Cabernet Sauvignon'),(44961,2689,'_yoast_wpseo_title','2019 Mt. Veeder Cabernet Sauvignon - Premium Napa Valley Red Wine'),(44962,2689,'_yoast_wpseo_metadesc','Discover the Exquisite 2019 Mt. Veeder Cabernet Sauvignon! Indulge in the Finest Napa Valley Red Wine from Meadowcroft Wines. Order Now!'),(44963,2689,'_yoast_wpseo_linkdex','42'),(44964,2689,'_yoast_wpseo_estimated-reading-time-minutes','0'),(44965,2689,'_yoast_wpseo_wordproof_timestamp',''),(44966,2702,'_edit_lock','1685386771:5'),(44967,2702,'_edit_last','5'),(44968,2702,'primary_collection','red, Red Wines'),(44969,2702,'trade_assets','a:0:{}'),(44970,2702,'downloads','a:0:{}'),(44971,2702,'related_products','a:0:{}'),(44972,2702,'recipe_pairings','a:0:{}'),(44973,2702,'external_recipe_pairings','a:0:{}'),(44974,2702,'should_exclude_from_search',''),(44975,2702,'additional_css_classes',''),(44976,2702,'template',''),(44977,2702,'allowed_customer_tag_titles','a:0:{}'),(44978,2702,'allowed_customer_club_titles','a:0:{}'),(44979,2702,'_yoast_wpseo_focuskw','Sonoma Coast Pinot Noir'),(44980,2702,'_yoast_wpseo_title','Deliciously Bold 2019 Sonoma Coast Pinot Noir | Meadowcroft Wines'),(44981,2702,'_yoast_wpseo_metadesc','Indulge in the Sensational Taste of Deliciously Bold 2019 Sonoma Coast Pinot Noir! Discover the Perfect Blend at Meadowcroft Wines.'),(44982,2702,'_yoast_wpseo_linkdex','42'),(44983,2702,'_yoast_wpseo_estimated-reading-time-minutes','0'),(44984,2702,'_yoast_wpseo_wordproof_timestamp',''),(44985,2733,'_edit_lock','1691498358:5'),(44986,2733,'_edit_last','5'),(44987,2733,'primary_collection','red, Red Wines'),(44988,2733,'trade_assets','a:0:{}'),(44989,2733,'downloads','a:0:{}'),(44990,2733,'related_products','a:0:{}'),(44991,2733,'recipe_pairings','a:0:{}'),(44992,2733,'external_recipe_pairings','a:0:{}'),(44993,2733,'should_exclude_from_search',''),(44994,2733,'additional_css_classes',''),(44995,2733,'template',''),(44996,2733,'allowed_customer_tag_titles','a:0:{}'),(44997,2733,'allowed_customer_club_titles','a:0:{}'),(44998,2733,'_yoast_wpseo_focuskw','Russian River Valley'),(44999,2733,'_yoast_wpseo_title','2020 Pinot Noir from Russian River Valley - Meadowcroft Wines'),(45000,2733,'_yoast_wpseo_metadesc','Discover the exquisite flavors of our 2020 Pinot Noir from Russian River Valley at Meadowcroft Wines. Experience the essence of Sonoma County, California. Order now!'),(45001,2733,'_yoast_wpseo_linkdex','46'),(45002,2733,'_yoast_wpseo_estimated-reading-time-minutes','0'),(45003,2733,'_yoast_wpseo_wordproof_timestamp',''),(45004,2755,'_edit_lock','1691498195:5'),(45005,2755,'_edit_last','5'),(45006,2755,'primary_collection','red, Red Wines'),(45007,2755,'trade_assets','a:0:{}'),(45008,2755,'downloads','a:0:{}'),(45009,2755,'related_products','a:0:{}'),(45010,2755,'recipe_pairings','a:0:{}'),(45011,2755,'external_recipe_pairings','a:0:{}'),(45012,2755,'should_exclude_from_search',''),(45013,2755,'additional_css_classes',''),(45014,2755,'template',''),(45015,2755,'allowed_customer_tag_titles','a:0:{}'),(45016,2755,'allowed_customer_club_titles','a:0:{}'),(45017,2755,'_yoast_wpseo_focuskw','2021 Pinot Noir Carneros'),(45018,2755,'_yoast_wpseo_title','2021 Pinot Noir Carneros | Meadowcroft Wines | Sonoma County, CA'),(45019,2755,'_yoast_wpseo_metadesc','Experience the rich flavors of our 2021 Pinot Noir Carneros. Handcrafted with care at Meadowcroft Wines in Sonoma County, California. Order now'),(45020,2755,'_yoast_wpseo_linkdex','42'),(45021,2755,'_yoast_wpseo_estimated-reading-time-minutes','0'),(45022,2755,'_yoast_wpseo_wordproof_timestamp',''),(45023,2732,'_edit_lock','1691498196:5'),(45024,2732,'_edit_last','5'),(45025,2732,'primary_collection',''),(45026,2732,'trade_assets','a:0:{}'),(45027,2732,'downloads','a:0:{}'),(45028,2732,'related_products','a:0:{}'),(45029,2732,'recipe_pairings','a:0:{}'),(45030,2732,'external_recipe_pairings','a:0:{}'),(45031,2732,'should_exclude_from_search',''),(45032,2732,'additional_css_classes',''),(45033,2732,'template',''),(45034,2732,'allowed_customer_tag_titles','a:0:{}'),(45035,2732,'allowed_customer_club_titles','a:0:{}'),(45036,2732,'_yoast_wpseo_focuskw','2020 Pinot Noir Cornerstone Vineyard'),(45037,2732,'_yoast_wpseo_title','2020 Pinot Noir Cornerstone Vineyard | Meadowcroft Wines'),(45038,2732,'_yoast_wpseo_metadesc','Discover the exquisite flavors of our 2020 Pinot Noir Cornerstone Vineyard. Handcrafted with care in Sonoma County, CA. Order now for a delightful wine experience.'),(45039,2732,'_yoast_wpseo_linkdex','46'),(45040,2732,'_yoast_wpseo_estimated-reading-time-minutes','0'),(45041,2732,'_yoast_wpseo_wordproof_timestamp',''),(45042,2739,'_edit_lock','1691498532:5'),(45043,2739,'_edit_last','5'),(45044,2739,'primary_collection','red, Red Wines'),(45045,2739,'trade_assets','a:0:{}'),(45046,2739,'downloads','a:0:{}'),(45047,2739,'related_products','a:0:{}'),(45048,2739,'recipe_pairings','a:0:{}'),(45049,2739,'external_recipe_pairings','a:0:{}'),(45050,2739,'should_exclude_from_search',''),(45051,2739,'additional_css_classes',''),(45052,2739,'template',''),(45053,2739,'allowed_customer_tag_titles','a:0:{}'),(45054,2739,'allowed_customer_club_titles','a:0:{}'),(45055,2739,'_yoast_wpseo_focuskw','2020 Meadowcroft Sangiovese'),(45056,2739,'_yoast_wpseo_title','2020 Meadowcroft Sangiovese | Sonoma County | Meadowcroft Wines'),(45057,2739,'_yoast_wpseo_metadesc','Experience the rich flavors of our 2020 Meadowcroft Sangiovese from Speedy Creek Vineyard in Sonoma County. Indulge in the essence of Sonoma with every sip. Order now!'),(45058,2739,'_yoast_wpseo_linkdex','42'),(45059,2739,'_yoast_wpseo_estimated-reading-time-minutes','0'),(45060,2739,'_yoast_wpseo_wordproof_timestamp',''),(45061,3066,'_wp_attached_file','2023/05/2022-Pinot-Noir-And-Valley.pdf'),(45062,3066,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:34:\"2022-Pinot-Noir-And-Valley-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:168685;}s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"2022-Pinot-Noir-And-Valley-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13618;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"2022-Pinot-Noir-And-Valley-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91868;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"2022-Pinot-Noir-And-Valley-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6477;}}s:8:\"filesize\";i:216956;}'),(45063,2726,'_edit_lock','1691498435:5'),(45064,2726,'_edit_last','5'),(45065,2726,'primary_collection','red, Red Wines'),(45066,2726,'trade_assets','a:0:{}'),(45067,2726,'downloads','a:0:{}'),(45068,2726,'related_products','a:0:{}'),(45069,2726,'recipe_pairings','a:0:{}'),(45070,2726,'external_recipe_pairings','a:0:{}'),(45071,2726,'should_exclude_from_search',''),(45072,2726,'additional_css_classes',''),(45073,2726,'template',''),(45074,2726,'allowed_customer_tag_titles','a:0:{}'),(45075,2726,'allowed_customer_club_titles','a:0:{}'),(45076,2726,'_yoast_wpseo_focuskw','2020 Cru de la Ruche Malbec'),(45077,2726,'_yoast_wpseo_title','Buy 2020 Cru de la Ruche Malbec - Meadowcroft Wines'),(45078,2726,'_yoast_wpseo_metadesc','Indulge in the exquisite flavors of 2020 Cru de la Ruche Malbec from Meadowcroft Wines. Shop now and savor the rich aromas and exceptional quality of this Sonoma County, California wine.'),(45079,2726,'_yoast_wpseo_linkdex','42'),(45080,2726,'_yoast_wpseo_estimated-reading-time-minutes','0'),(45081,2726,'_yoast_wpseo_wordproof_timestamp',''),(45082,2685,'_edit_lock','1691498373:5'),(45083,2685,'_edit_last','5'),(45084,2685,'primary_collection','red, Red Wines'),(45085,2685,'trade_assets','a:0:{}'),(45086,2685,'downloads','a:0:{}'),(45087,2685,'related_products','a:0:{}'),(45088,2685,'recipe_pairings','a:0:{}'),(45089,2685,'external_recipe_pairings','a:0:{}'),(45090,2685,'should_exclude_from_search',''),(45091,2685,'additional_css_classes',''),(45092,2685,'template',''),(45093,2685,'allowed_customer_tag_titles','a:0:{}'),(45094,2685,'allowed_customer_club_titles','a:0:{}'),(45095,2685,'_yoast_wpseo_focuskw','2018 Zinfandel Speedy Creek Vineyard'),(45096,2685,'_yoast_wpseo_title','Exquisite 2018 Zinfandel Speedy Creek Vineyard | Meadowcroft Wines'),(45097,2685,'_yoast_wpseo_metadesc','Indulge in the exquisite flavors of our 2018 Zinfandel Speedy Creek Vineyard. Crafted with care at Meadowcroft Wines in Sonoma County, California.'),(45098,2685,'_yoast_wpseo_linkdex','35'),(45099,2685,'_yoast_wpseo_estimated-reading-time-minutes','0'),(45100,2685,'_yoast_wpseo_wordproof_timestamp',''),(45101,2710,'_edit_lock','1691498384:5'),(45102,2710,'_edit_last','5'),(45103,2710,'primary_collection','red, Red Wines'),(45104,2710,'trade_assets','a:0:{}'),(45105,2710,'downloads','a:0:{}'),(45106,2710,'related_products','a:0:{}'),(45107,2710,'recipe_pairings','a:0:{}'),(45108,2710,'external_recipe_pairings','a:0:{}'),(45109,2710,'should_exclude_from_search',''),(45110,2710,'additional_css_classes',''),(45111,2710,'template',''),(45112,2710,'allowed_customer_tag_titles','a:0:{}'),(45113,2710,'allowed_customer_club_titles','a:0:{}'),(45114,2710,'_yoast_wpseo_focuskw','2019 Meadowcroft Dry Creek Valley Zinfandel'),(45115,2710,'_yoast_wpseo_title','2019 Meadowcroft Dry Creek Valley Zinfandel - Wyldvin Vineyard'),(45116,2710,'_yoast_wpseo_metadesc','Unveiling the Hidden Gems: Taste the Bold Elegance of 2019 Meadowcroft Dry Creek Valley Zinfandel - Wyldvin Vineyard. Don\'t Miss Out!'),(45117,2710,'_yoast_wpseo_linkdex','49'),(45118,2710,'_yoast_wpseo_estimated-reading-time-minutes','0'),(45119,2710,'_yoast_wpseo_wordproof_timestamp',''),(45120,2743,'_edit_lock','1691498434:5'),(45121,2743,'_edit_last','5'),(45122,2743,'primary_collection','red, Red Wines'),(45123,2743,'trade_assets','a:0:{}'),(45124,2743,'downloads','a:0:{}'),(45125,2743,'related_products','a:0:{}'),(45126,2743,'recipe_pairings','a:0:{}'),(45127,2743,'external_recipe_pairings','a:0:{}'),(45128,2743,'should_exclude_from_search',''),(45129,2743,'additional_css_classes',''),(45130,2743,'template',''),(45131,2743,'allowed_customer_tag_titles','a:0:{}'),(45132,2743,'allowed_customer_club_titles','a:0:{}'),(45133,2743,'_yoast_wpseo_focuskw','2020 Zinfandel Mae Vineyard'),(45134,2743,'_yoast_wpseo_title','Buy 2020 Zinfandel Mae Vineyard | Meadowcroft Wines, Sonoma County'),(45135,2743,'_yoast_wpseo_metadesc','Discover the bold flavors of our 2020 Zinfandel Mae Vineyard. Handcrafted with care in Sonoma County. Shop now and experience the essence of California winemaking.'),(45136,2743,'_yoast_wpseo_linkdex','38'),(45137,2743,'_yoast_wpseo_estimated-reading-time-minutes','0'),(45138,2743,'_yoast_wpseo_wordproof_timestamp',''),(45139,2734,'_edit_lock','1691498531:5'),(45140,2734,'_edit_last','5'),(45141,2734,'primary_collection','red, Red Wines'),(45142,2734,'trade_assets','a:0:{}'),(45143,2734,'downloads','a:0:{}'),(45144,2734,'related_products','a:0:{}'),(45145,2734,'recipe_pairings','a:0:{}'),(45146,2734,'external_recipe_pairings','a:0:{}'),(45147,2734,'should_exclude_from_search',''),(45148,2734,'additional_css_classes',''),(45149,2734,'template',''),(45150,2734,'allowed_customer_tag_titles','a:0:{}'),(45151,2734,'allowed_customer_club_titles','a:0:{}'),(45152,2734,'_yoast_wpseo_focuskw','2020 River Trace GSM'),(45153,2734,'_yoast_wpseo_title','2020 River Trace GSM | Premium Sonoma County Wine | Meadowcroft Wines'),(45154,2734,'_yoast_wpseo_metadesc','Discover the Exquisite Flavors of 2020 River Trace GSM Wine! Indulge in Premium Sonoma County Elegance at Meadowcroft Wines.'),(45155,2734,'_yoast_wpseo_linkdex','46'),(45156,2734,'_yoast_wpseo_estimated-reading-time-minutes','0'),(45157,2734,'_yoast_wpseo_wordproof_timestamp',''),(45158,2763,'_edit_lock','1691498532:5'),(45159,2763,'_edit_last','5'),(45160,2763,'primary_collection','red, Red Wines'),(45161,2763,'trade_assets','a:0:{}'),(45162,2763,'downloads','a:0:{}'),(45163,2763,'related_products','a:0:{}'),(45164,2763,'recipe_pairings','a:0:{}'),(45165,2763,'external_recipe_pairings','a:0:{}'),(45166,2763,'should_exclude_from_search',''),(45167,2763,'additional_css_classes',''),(45168,2763,'template',''),(45169,2763,'allowed_customer_tag_titles','a:0:{}'),(45170,2763,'allowed_customer_club_titles','a:0:{}'),(45171,2763,'_yoast_wpseo_focuskw','The Magi'),(45172,2763,'_yoast_wpseo_title','Discover the Magic of \"The Magi\" | Meadowcroft Wines'),(45173,2763,'_yoast_wpseo_metadesc','Immerse yourself in the enchantment of \"The Magi\" by Meadowcroft Wines. Experience the captivating flavors of this exquisite wine, crafted with passion and expertise.'),(45174,2763,'_yoast_wpseo_linkdex','46'),(45175,2763,'_yoast_wpseo_estimated-reading-time-minutes','0'),(45176,2763,'_yoast_wpseo_wordproof_timestamp',''),(45177,2785,'_edit_lock','1691505514:5'),(45178,2785,'_edit_last','5'),(45179,2785,'primary_collection','red, Red Wines'),(45180,2785,'trade_assets','a:0:{}'),(45181,2785,'downloads','a:0:{}'),(45182,2785,'related_products','a:0:{}'),(45183,2785,'recipe_pairings','a:0:{}'),(45184,2785,'external_recipe_pairings','a:0:{}'),(45185,2785,'should_exclude_from_search',''),(45186,2785,'additional_css_classes',''),(45187,2785,'template',''),(45188,2785,'allowed_customer_tag_titles','a:0:{}'),(45189,2785,'allowed_customer_club_titles','a:0:{}'),(45190,2785,'_yoast_wpseo_focuskw','Anniversary Cuvée'),(45191,2785,'_yoast_wpseo_title','Celebrate with Meadowcroft Wines | Anniversary Cuvée | Sonoma County'),(45192,2785,'_yoast_wpseo_metadesc','Raise a glass and toast to special moments with Meadowcroft Wines\' Anniversary Cuvée. Handcrafted in Sonoma County, this exceptional wine is the perfect choice for celebrations and memorable occasions.'),(45193,2785,'_yoast_wpseo_linkdex','35'),(45194,2785,'_yoast_wpseo_estimated-reading-time-minutes','0'),(45195,2785,'_yoast_wpseo_wordproof_timestamp',''),(45196,2674,'_edit_lock','1691498532:5'),(45197,2674,'_edit_last','5'),(45198,2674,'primary_collection','red, Red Wines'),(45199,2674,'trade_assets','a:0:{}'),(45200,2674,'downloads','a:0:{}'),(45201,2674,'related_products','a:0:{}'),(45202,2674,'recipe_pairings','a:0:{}'),(45203,2674,'external_recipe_pairings','a:0:{}'),(45204,2674,'should_exclude_from_search',''),(45205,2674,'additional_css_classes',''),(45206,2674,'template',''),(45207,2674,'allowed_customer_tag_titles','a:0:{}'),(45208,2674,'allowed_customer_club_titles','a:0:{}'),(45209,2674,'_yoast_wpseo_focuskw','2018 Cabernet Franc'),(45210,2674,'_yoast_wpseo_title','2018 Cabernet Franc from Rivino Vineyard | Meadowcroft Wines'),(45211,2674,'_yoast_wpseo_metadesc','Experience the elegance of our 2018 Cabernet Franc from Rivino Vineyard. Discover rich flavors, exquisite craftsmanship, and order your bottle today from Meadowcroft Wines.'),(45212,2674,'_yoast_wpseo_linkdex','49'),(45213,2674,'_yoast_wpseo_estimated-reading-time-minutes','0'),(45214,2674,'_yoast_wpseo_wordproof_timestamp',''),(45215,2688,'_edit_lock','1685523315:5'),(45216,2688,'_edit_last','5'),(45217,2688,'primary_collection','red, Red Wines'),(45218,2688,'trade_assets','a:0:{}'),(45219,2688,'downloads','a:0:{}'),(45220,2688,'related_products','a:0:{}'),(45221,2688,'recipe_pairings','a:0:{}'),(45222,2688,'external_recipe_pairings','a:0:{}'),(45223,2688,'should_exclude_from_search',''),(45224,2688,'additional_css_classes',''),(45225,2688,'template',''),(45226,2688,'allowed_customer_tag_titles','a:0:{}'),(45227,2688,'allowed_customer_club_titles','a:0:{}'),(45228,2688,'_yoast_wpseo_focuskw','2019 Cabernet Sauvignon'),(45229,2688,'_yoast_wpseo_title','Premium 2019 Cabernet Sauvignon from Nelson Ranch Vineyard'),(45230,2688,'_yoast_wpseo_metadesc','Experience the elegance of our 2019 Cabernet Sauvignon from Nelson Ranch Vineyard. Crafted with care, this premium wine offers rich flavors and a smooth finish. Order now from Meadowcroft Wines.'),(45231,2688,'_yoast_wpseo_linkdex','46'),(45232,2688,'_yoast_wpseo_estimated-reading-time-minutes','0'),(45233,2688,'_yoast_wpseo_wordproof_timestamp',''),(45234,2716,'_edit_lock','1691498616:5'),(45235,2716,'_edit_last','5'),(45236,2716,'primary_collection','red, Red Wines'),(45237,2716,'trade_assets','a:0:{}'),(45238,2716,'downloads','a:0:{}'),(45239,2716,'related_products','a:0:{}'),(45240,2716,'recipe_pairings','a:0:{}'),(45241,2716,'external_recipe_pairings','a:0:{}'),(45242,2716,'should_exclude_from_search',''),(45243,2716,'additional_css_classes',''),(45244,2716,'template',''),(45245,2716,'allowed_customer_tag_titles','a:0:{}'),(45246,2716,'allowed_customer_club_titles','a:0:{}'),(45247,2716,'_yoast_wpseo_focuskw','2020 Cabernet Sauvignon'),(45248,2716,'_yoast_wpseo_title','Discover the Richness of 2020 Cabernet Sauvignon from Napa Valley'),(45249,2716,'_yoast_wpseo_metadesc','Immerse yourself in the opulence of our 2020 Cabernet Sauvignon from Napa Valley. Experience the exquisite flavors and aromas of this renowned vintage. Order now for an unforgettable wine journey.'),(45250,2716,'_yoast_wpseo_linkdex','38'),(45251,2716,'_yoast_wpseo_estimated-reading-time-minutes','0'),(45252,2716,'_yoast_wpseo_wordproof_timestamp',''),(45253,2675,'_edit_lock','1691505369:5'),(45254,2675,'_edit_last','5'),(45255,2675,'primary_collection',''),(45256,2675,'trade_assets','a:0:{}'),(45257,2675,'downloads','a:0:{}'),(45258,2675,'related_products','a:0:{}'),(45259,2675,'recipe_pairings','a:0:{}'),(45260,2675,'external_recipe_pairings','a:0:{}'),(45261,2675,'should_exclude_from_search',''),(45262,2675,'additional_css_classes',''),(45263,2675,'template',''),(45264,2675,'allowed_customer_tag_titles','a:0:{}'),(45265,2675,'allowed_customer_club_titles','a:0:{}'),(45266,2675,'_yoast_wpseo_focuskw','2018 Mt. Veeder Cabernet Sauvignon'),(45267,2675,'_yoast_wpseo_title','Award-Winning 2018 Mt. Veeder Cabernet Sauvignon | Meadowcroft Wines'),(45268,2675,'_yoast_wpseo_metadesc','Savor the bold flavors of our 2018 Mt. Veeder Cabernet Sauvignon. Handcrafted by Meadowcroft Wines in Sonoma County, CA. Order now for a taste of exceptional craftsmanship.'),(45269,2675,'_yoast_wpseo_linkdex','35'),(45270,2675,'_yoast_wpseo_estimated-reading-time-minutes','0'),(45271,2675,'_yoast_wpseo_wordproof_timestamp',''),(45272,2691,'_edit_lock','1691498706:5'),(45273,2691,'_edit_last','5'),(45274,2691,'primary_collection','red, Red Wines'),(45275,2691,'trade_assets','a:0:{}'),(45276,2691,'downloads','a:0:{}'),(45277,2691,'related_products','a:0:{}'),(45278,2691,'recipe_pairings','a:0:{}'),(45279,2691,'external_recipe_pairings','a:0:{}'),(45280,2691,'should_exclude_from_search',''),(45281,2691,'additional_css_classes',''),(45282,2691,'template',''),(45283,2691,'allowed_customer_tag_titles','a:0:{}'),(45284,2691,'allowed_customer_club_titles','a:0:{}'),(45285,2691,'_yoast_wpseo_focuskw','2019 Cabernet Sauvigno'),(45286,2691,'_yoast_wpseo_title','Award-Winning 2019 Cabernet Sauvignon from Oakville | Meadowcroft Wines'),(45287,2691,'_yoast_wpseo_metadesc','Savor the excellence of our award-winning 2019 Cabernet Sauvignon from Oakville. Experience the rich flavors and elegance of this exceptional wine at Meadowcroft Wines in Sonoma County, CA. Order now for a memorable tasting journey.'),(45288,2691,'_yoast_wpseo_linkdex','26'),(45289,2691,'_yoast_wpseo_estimated-reading-time-minutes','0'),(45290,2691,'_yoast_wpseo_wordproof_timestamp',''),(45291,2642,'_edit_lock','1691498706:5'),(45292,2642,'_edit_last','5'),(45293,2642,'primary_collection',''),(45294,2642,'trade_assets','a:0:{}'),(45295,2642,'downloads','a:0:{}'),(45296,2642,'related_products','a:0:{}'),(45297,2642,'recipe_pairings','a:0:{}'),(45298,2642,'external_recipe_pairings','a:0:{}'),(45299,2642,'should_exclude_from_search',''),(45300,2642,'additional_css_classes',''),(45301,2642,'template',''),(45302,2642,'allowed_customer_tag_titles','a:0:{}'),(45303,2642,'allowed_customer_club_titles','a:0:{}'),(45304,2642,'_yoast_wpseo_focuskw','2012 Cabernet Sauvignon'),(45305,2642,'_yoast_wpseo_title','Discover the Richness of 2012 Cabernet Sauvignon | Mt. Veeder Estate'),(45306,2642,'_yoast_wpseo_metadesc','Immerse yourself in the opulence of our 2012 Cabernet Sauvignon from Mt. Veeder Estate. Experience the perfect blend of bold flavors and refined elegance.'),(45307,2642,'_yoast_wpseo_linkdex','38'),(45308,2642,'_yoast_wpseo_estimated-reading-time-minutes','0'),(45309,2642,'_yoast_wpseo_wordproof_timestamp',''),(45310,2784,'_edit_lock','1691498707:5'),(45311,2784,'_edit_last','5'),(45312,2784,'primary_collection','red, Red Wines'),(45313,2784,'trade_assets','a:0:{}'),(45314,2784,'downloads','a:0:{}'),(45315,2784,'related_products','a:0:{}'),(45316,2784,'recipe_pairings','a:0:{}'),(45317,2784,'external_recipe_pairings','a:0:{}'),(45318,2784,'should_exclude_from_search',''),(45319,2784,'additional_css_classes',''),(45320,2784,'template',''),(45321,2784,'allowed_customer_tag_titles','a:0:{}'),(45322,2784,'allowed_customer_club_titles','a:0:{}'),(45323,2784,'_yoast_wpseo_focuskw','All She Wrote'),(45324,2784,'_yoast_wpseo_title','All She Wrote | Meadowcroft Wines | Sonoma County, CA'),(45325,2784,'_yoast_wpseo_metadesc','Experience the allure of All She Wrote by Meadowcroft Wines. Discover this exquisite Sonoma County, CA wine with its rich flavors and smooth finish. Order online now for a captivating wine experience.'),(45326,2784,'_yoast_wpseo_linkdex','49'),(45327,2784,'_yoast_wpseo_estimated-reading-time-minutes','0'),(45328,2784,'_yoast_wpseo_wordproof_timestamp',''),(45329,3068,'web_id','32379c40-a581-4843-b444-6e398d60b97d'),(45330,3068,'slug','private-label-wine'),(45331,3068,'title','Private label wine'),(45332,3068,'type','Wine'),(45333,3068,'image',NULL),(45334,3068,'teaser',''),(45335,3068,'content',''),(45336,3068,'subtitle',''),(45337,3068,'price','1000'),(45338,3068,'web_status','Not Available'),(45339,3068,'admin_status','Available'),(45340,3068,'vendor','Meadowcroft Wines'),(45341,3068,'varietal',NULL),(45342,3068,'appellation',NULL),(45343,3068,'vintage',NULL),(45344,3068,'collections','a:0:{}'),(45345,3068,'primary_collection',''),(45348,1538,'allowed_customer_tag_titles','a:0:{}'),(45349,1538,'allowed_customer_club_titles','a:0:{}'),(45350,3071,'content_block_0_layout_title',''),(45351,3071,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(45352,3071,'content_block_0_custom_css_class',''),(45353,3071,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(45354,3071,'content_block_0_banner_full_width','1'),(45355,3071,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(45356,3071,'content_block_0_banner_size','normal'),(45357,3071,'_content_block_0_banner_size','field_5bbe232929ec9'),(45358,3071,'content_block_0_add_parallax_effect','0'),(45359,3071,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(45360,3071,'content_block_0_add_veil_over_banner','1'),(45361,3071,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(45362,3071,'content_block_0_banner_content_position','centered'),(45363,3071,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(45364,3071,'content_block_0_banner_title','Stay in Touch'),(45365,3071,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(45366,3071,'content_block_0_banner_subtitle','If you like rewards, you should join our email list.'),(45367,3071,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(45368,3071,'content_block_0_banner_button_link',''),(45369,3071,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(45370,3071,'content_block_0_banner_button_new_tab','0'),(45371,3071,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(45372,3071,'content_block_0_show_down_arrow','0'),(45373,3071,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(45374,3071,'content_block_0_banner_image_description',''),(45375,3071,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(45376,3071,'content_block_0_banner_image','1006'),(45377,3071,'_content_block_0_banner_image','field_5bbe201718faf'),(45378,3071,'content_block_0_banner_image_position','center center'),(45379,3071,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(45380,3071,'content_block_0_banner_image_mobile','1006'),(45381,3071,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(45382,3071,'content_block_0_banner_image_mobile_position','center center'),(45383,3071,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(45384,3071,'content_block_1_layout_title',''),(45385,3071,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(45386,3071,'content_block_1_text_block_columns','one'),(45387,3071,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(45388,3071,'content_block_1_narrow_text_block_content','1'),(45389,3071,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(45390,3071,'content_block_1_reverse_colors','0'),(45391,3071,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(45392,3071,'content_block_1_enable_background_image','0'),(45393,3071,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(45394,3071,'content_block_1_custom_css_class',''),(45395,3071,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(45396,3071,'content_block_1_text_block_content_col_one','<p style=\"text-align: center;\">Our email subscribers receive priority access to our extremely limited production wines and first look at our vibrant events, both in the tasting room and at Cornerstone Gardens. Subscribe today and receive 200 loyalty points to use towards your first order of sustainably sourced, award-winning Meadowcroft Wines.</p>'),(45397,3071,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(45398,3071,'content_block_2_layout_title',''),(45399,3071,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(45400,3071,'content_block_2_text_block_columns','one'),(45401,3071,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(45402,3071,'content_block_2_column_size','equal'),(45403,3071,'_content_block_2_column_size','field_columnsize'),(45404,3071,'content_block_2_narrow_text_block_content','0'),(45405,3071,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(45406,3071,'content_block_2_reverse_colors','0'),(45407,3071,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(45408,3071,'content_block_2_enable_background_image','0'),(45409,3071,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(45410,3071,'content_block_2_custom_css_class',''),(45411,3071,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(45412,3071,'content_block_2_text_block_content_col_one','[c7-subscribe]'),(45413,3071,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(45414,3071,'content_block_2_text_block_content_col_two','[c7-subscribe]'),(45415,3071,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(45416,3071,'content_block_2_text_block_content_col_three',''),(45417,3071,'_content_block_2_text_block_content_col_three','field_5bbe31793920f'),(45418,3071,'content_block','a:3:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";}'),(45419,3071,'_content_block','field_5bbe19a7efa09'),(45420,1538,'_yoast_wpseo_metadesc','Our email subscribers receive priority access to our extremely limited production wines and first look at our vibrant events, both in the tasting room and at Cornerstone Gardens.'),(45422,2735,'_edit_lock','1686574255:5'),(45423,2799,'_edit_lock','1691498733:5'),(45424,3055,'_edit_lock','1686573424:5'),(45425,3060,'_edit_lock','1713857771:5'),(45429,3074,'hide_post_title','0'),(45430,3074,'_hide_post_title','field_5bbe18c8efa0ac'),(45431,3074,'custom_title',''),(45432,3074,'_custom_title','field_5bbe1b83pfa0c'),(45433,3074,'the_teaser','<span style=\"font-weight: 400;\">If you\'re a wine drinker, traveler, or foodie looking for the perfect winery shenanigans in Sonoma County, then you\'ve come to the right place. This blog post is going to be your guide to our favorite wineries</span>'),(45434,3074,'_the_teaser','field_5c1d78f88e54c'),(45435,3074,'hero_image','3016'),(45436,3074,'_hero_image','field_5d138e7f31334'),(45437,3074,'enable_banner','0'),(45438,3074,'_enable_banner','field_5bbe19c8efa0acb'),(45439,3074,'banner_full_width','0'),(45440,3074,'_banner_full_width','field_5bbe19c8efa0ac'),(45441,3074,'banner_size','normal'),(45442,3074,'_banner_size','field_5bbe232929ec9c'),(45443,3074,'add_parallax_effect','0'),(45444,3074,'_add_parallax_effect','field_5bbe219ccb6a9'),(45445,3074,'add_veil_over_banner','0'),(45446,3074,'_add_veil_over_banner','field_5bbe333f39212'),(45447,3074,'banner_content_position','centered'),(45448,3074,'_banner_content_position','field_5bbe259b02b62'),(45449,3074,'banner_title',''),(45450,3074,'_banner_title','field_5bbe1b78efa0b'),(45451,3074,'banner_subtitle',''),(45452,3074,'_banner_subtitle','field_5bbe1b83efa0c'),(45453,3074,'banner_button_link',''),(45454,3074,'_banner_button_link','field_5bbe1b8cefa0d'),(45455,3074,'banner_button_new_tab','0'),(45456,3074,'_banner_button_new_tab','field_5bbe1e6d18fae'),(45457,3074,'show_down_arrow','0'),(45458,3074,'_show_down_arrow','field_5bbe24f721165'),(45459,3074,'banner_image',''),(45460,3074,'_banner_image','field_5bbe201718fafa'),(45461,3074,'banner_image_position','center center'),(45462,3074,'_banner_image_position','field_5bbe278f9fb97'),(45463,3074,'banner_image_mobile',''),(45464,3074,'_banner_image_mobile','field_5bbe202818fb0b'),(45465,3074,'banner_image_mobile_position','center center'),(45466,3074,'_banner_image_mobile_position','field_5bbe279c9fb98'),(45467,3074,'content_block',''),(45468,3074,'_content_block','field_5bbe19a7efa09'),(45469,3075,'inline_featured_image','0'),(45470,3075,'_edit_lock','1709271815:5'),(45471,3075,'_edit_last','5'),(45472,3076,'_wp_attached_file','2023/06/Meadowcroft-tasting-room-1-scaled.jpg'),(45473,3076,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1815;s:4:\"file\";s:45:\"2023/06/Meadowcroft-tasting-room-1-scaled.jpg\";s:8:\"filesize\";i:693570;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Meadowcroft-tasting-room-1-300x213.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13283;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"Meadowcroft-tasting-room-1-1024x726.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:726;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132730;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Meadowcroft-tasting-room-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5268;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"Meadowcroft-tasting-room-1-768x545.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:545;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77026;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:38:\"Meadowcroft-tasting-room-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17398;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:38:\"Meadowcroft-tasting-room-1-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30397;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:38:\"Meadowcroft-tasting-room-1-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20672;}s:8:\"tileview\";a:5:{s:4:\"file\";s:38:\"Meadowcroft-tasting-room-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21720;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-tasting-room-1-1536x1089.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1089;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:283227;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-tasting-room-1-2048x1452.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1452;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:471595;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:39:\"Meadowcroft-tasting-room-1-1200x851.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:851;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:180057;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:30:\"Meadowcroft-tasting-room-1.jpg\";}'),(45474,3076,'_wp_attachment_image_alt','Meadowcroft tasting room'),(45475,3077,'_wp_attached_file','2023/06/carlisle1.webp'),(45476,3077,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1400;s:6:\"height\";i:795;s:4:\"file\";s:22:\"2023/06/carlisle1.webp\";s:8:\"filesize\";i:402050;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"carlisle1-300x170.webp\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17756;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"carlisle1-1024x581.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:581;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:94986;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"carlisle1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7698;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"carlisle1-768x436.webp\";s:5:\"width\";i:768;s:6:\"height\";i:436;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:65142;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:22:\"carlisle1-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:20734;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:22:\"carlisle1-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:35388;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:22:\"carlisle1-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:27294;}s:8:\"tileview\";a:5:{s:4:\"file\";s:22:\"carlisle1-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:23698;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:23:\"carlisle1-1200x681.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:113082;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(45477,3077,'_wp_attachment_image_alt','Carlisle Winery & Vineyards'),(45478,3078,'_wp_attached_file','2023/06/Bedroick-Wine-Co.jpeg'),(45479,3078,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:275;s:6:\"height\";i:183;s:4:\"file\";s:29:\"2023/06/Bedroick-Wine-Co.jpeg\";s:8:\"filesize\";i:13527;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Bedroick-Wine-Co-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7592;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(45480,3078,'_wp_attachment_image_alt','Bedroick Wine Co'),(45484,3080,'_wp_attached_file','2023/06/Biale-Vineyards.jpeg'),(45485,3080,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:275;s:6:\"height\";i:183;s:4:\"file\";s:28:\"2023/06/Biale-Vineyards.jpeg\";s:8:\"filesize\";i:7250;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Biale-Vineyards-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5199;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(45486,3080,'_wp_attachment_image_alt','Biale Vineyards'),(45487,3081,'_wp_attached_file','2023/06/Seghesio.jpeg'),(45488,3081,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:318;s:6:\"height\";i:159;s:4:\"file\";s:21:\"2023/06/Seghesio.jpeg\";s:8:\"filesize\";i:13219;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"Seghesio-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15875;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Seghesio-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8119;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:21:\"Seghesio-300x159.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:159;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19063;}s:8:\"tileview\";a:5:{s:4:\"file\";s:21:\"Seghesio-300x159.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:159;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19063;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(45489,3081,'_wp_attachment_image_alt','Seghesio'),(45490,3075,'allowed_customer_tag_titles','a:0:{}'),(45491,3075,'allowed_customer_club_titles','a:0:{}'),(45492,3075,'hide_post_title','0'),(45493,3075,'_hide_post_title','field_5bbe18c8efa0ac'),(45494,3075,'custom_title',''),(45495,3075,'_custom_title','field_5bbe1b83pfa0c'),(45496,3075,'the_teaser','<span style=\"font-weight: 400;\">Sonoma County in California is known among wine enthusiasts for its picturesque vineyards and delicious wines. Its scenic location, sunny climate, and perfect soil conditions make it an ideal place for wineries.</span>'),(45497,3075,'_the_teaser','field_5c1d78f88e54c'),(45498,3075,'hero_image','3085'),(45499,3075,'_hero_image','field_5d138e7f31334'),(45500,3075,'enable_banner','0'),(45501,3075,'_enable_banner','field_5bbe19c8efa0acb'),(45502,3075,'banner_full_width','0'),(45503,3075,'_banner_full_width','field_5bbe19c8efa0ac'),(45504,3075,'banner_size','normal'),(45505,3075,'_banner_size','field_5bbe232929ec9c'),(45506,3075,'add_parallax_effect','0'),(45507,3075,'_add_parallax_effect','field_5bbe219ccb6a9'),(45508,3075,'add_veil_over_banner','0'),(45509,3075,'_add_veil_over_banner','field_5bbe333f39212'),(45510,3075,'banner_content_position','centered'),(45511,3075,'_banner_content_position','field_5bbe259b02b62'),(45512,3075,'banner_title',''),(45513,3075,'_banner_title','field_5bbe1b78efa0b'),(45514,3075,'banner_subtitle',''),(45515,3075,'_banner_subtitle','field_5bbe1b83efa0c'),(45516,3075,'banner_button_link',''),(45517,3075,'_banner_button_link','field_5bbe1b8cefa0d'),(45518,3075,'banner_button_new_tab','0'),(45519,3075,'_banner_button_new_tab','field_5bbe1e6d18fae'),(45520,3075,'show_down_arrow','0'),(45521,3075,'_show_down_arrow','field_5bbe24f721165'),(45522,3075,'banner_image',''),(45523,3075,'_banner_image','field_5bbe201718fafa'),(45524,3075,'banner_image_position','center center'),(45525,3075,'_banner_image_position','field_5bbe278f9fb97'),(45526,3075,'banner_image_mobile',''),(45527,3075,'_banner_image_mobile','field_5bbe202818fb0b'),(45528,3075,'banner_image_mobile_position','center center'),(45529,3075,'_banner_image_mobile_position','field_5bbe279c9fb98'),(45530,3075,'content_block',''),(45531,3075,'_content_block','field_5bbe19a7efa09'),(45532,3075,'_yoast_wpseo_primary_category','2'),(45533,3075,'_yoast_wpseo_content_score','30'),(45534,3075,'_yoast_wpseo_estimated-reading-time-minutes','6'),(45535,3075,'_yoast_wpseo_wordproof_timestamp',''),(45536,3082,'_wp_attached_file','2023/06/Hartford-Court.png'),(45537,3082,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:26:\"2023/06/Hartford-Court.png\";s:8:\"filesize\";i:425517;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Hartford-Court-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61549;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Hartford-Court-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28026;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"Hartford-Court-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:337458;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:26:\"Hartford-Court-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:95471;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:26:\"Hartford-Court-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146572;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:26:\"Hartford-Court-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:99073;}s:8:\"tileview\";a:5:{s:4:\"file\";s:26:\"Hartford-Court-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:120780;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(45538,3082,'_wp_attachment_image_alt','Hartford Court'),(45539,3083,'_wp_attached_file','2023/06/wines-2018.jpg'),(45540,3083,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:677;s:4:\"file\";s:22:\"2023/06/wines-2018.jpg\";s:8:\"filesize\";i:127596;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"wines-2018-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14738;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"wines-2018-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6983;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"wines-2018-768x520.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72488;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:22:\"wines-2018-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19802;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:22:\"wines-2018-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31492;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:22:\"wines-2018-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22088;}s:8:\"tileview\";a:5:{s:4:\"file\";s:22:\"wines-2018-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26554;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:19:\"© sara sanger 2018\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(45541,3083,'_wp_attachment_image_alt','Bedrock Wine Co.'),(45542,3084,'_wp_attached_file','2023/06/Napa_Mustard-05023-David-Collier-Large.webp'),(45543,3084,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1619;s:6:\"height\";i:1080;s:4:\"file\";s:51:\"2023/06/Napa_Mustard-05023-David-Collier-Large.webp\";s:8:\"filesize\";i:147938;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"Napa_Mustard-05023-David-Collier-Large-300x200.webp\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16312;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"Napa_Mustard-05023-David-Collier-Large-1024x683.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:56240;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"Napa_Mustard-05023-David-Collier-Large-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11580;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"Napa_Mustard-05023-David-Collier-Large-768x512.webp\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:40084;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:51:\"Napa_Mustard-05023-David-Collier-Large-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18794;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:51:\"Napa_Mustard-05023-David-Collier-Large-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:24854;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:51:\"Napa_Mustard-05023-David-Collier-Large-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:20566;}s:8:\"tileview\";a:5:{s:4:\"file\";s:51:\"Napa_Mustard-05023-David-Collier-Large-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:21012;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:53:\"Napa_Mustard-05023-David-Collier-Large-1536x1025.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:95376;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:52:\"Napa_Mustard-05023-David-Collier-Large-1200x800.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:69430;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(45544,3084,'_wp_attachment_image_alt','Biale Vineyards'),(45545,3085,'_wp_attached_file','2023/06/HERO-IMAGE-MEADOWCROFT-WINES-2.jpg'),(45546,3085,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:600;s:4:\"file\";s:42:\"2023/06/HERO-IMAGE-MEADOWCROFT-WINES-2.jpg\";s:8:\"filesize\";i:85707;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"HERO-IMAGE-MEADOWCROFT-WINES-2-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15655;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"HERO-IMAGE-MEADOWCROFT-WINES-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6812;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:42:\"HERO-IMAGE-MEADOWCROFT-WINES-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18103;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:42:\"HERO-IMAGE-MEADOWCROFT-WINES-2-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31918;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:42:\"HERO-IMAGE-MEADOWCROFT-WINES-2-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22498;}s:8:\"tileview\";a:5:{s:4:\"file\";s:42:\"HERO-IMAGE-MEADOWCROFT-WINES-2-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22778;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(45547,3086,'_wp_attached_file','2023/06/Featured-Image-800px-2.jpg'),(45548,3086,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:34:\"2023/06/Featured-Image-800px-2.jpg\";s:8:\"filesize\";i:115326;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Featured-Image-800px-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18559;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Featured-Image-800px-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6814;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"Featured-Image-800px-2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99340;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:34:\"Featured-Image-800px-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18559;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:34:\"Featured-Image-800px-2-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33670;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:34:\"Featured-Image-800px-2-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23645;}s:8:\"tileview\";a:5:{s:4:\"file\";s:34:\"Featured-Image-800px-2-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22466;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(45549,3086,'_wp_attachment_image_alt','Meadowcroft Wines'),(45550,3075,'_thumbnail_id','3086'),(45551,3075,'_yoast_wpseo_focuskw','Best Wineries in Sonoma'),(45552,3075,'_yoast_wpseo_title','7 Best Wineries in Sonoma County for Zinfandel Lovers'),(45553,3075,'_yoast_wpseo_metadesc','Uncover the Ultimate Zinfandel Paradise! Explore Sonoma County\'s 7 Top Wineries, Perfect for Zinfandel Lovers. Discover the Finest Blends & Unforgettable Tastings.'),(45554,3075,'_yoast_wpseo_linkdex','69'),(45557,445,'allowed_customer_tag_titles','a:0:{}'),(45558,445,'allowed_customer_club_titles','a:0:{}'),(45559,3088,'web_id','80d44f30-2c66-4a3a-9d6e-a9caa8204fd8'),(45560,3088,'slug','disposable-wine-glass-govino'),(45561,3088,'title','Disposable Wine Glass - Govino'),(45562,3088,'type','General Merchandise'),(45563,3088,'image',NULL),(45564,3088,'teaser',NULL),(45565,3088,'content',NULL),(45566,3088,'subtitle',NULL),(45567,3088,'price','400'),(45568,3088,'web_status','Not Available'),(45569,3088,'admin_status','Available'),(45570,3088,'collections','a:0:{}'),(45571,3088,'primary_collection',''),(45624,2854,'varietal','Cabernet Franc'),(45625,2854,'appellation',NULL),(45626,2854,'vintage','2021'),(45627,2855,'varietal','Cabernet Sauvignon'),(45628,2855,'appellation',NULL),(45629,2855,'vintage','2021'),(45630,2856,'varietal','Malbec'),(45631,2856,'appellation',NULL),(45632,2856,'vintage','2021'),(45633,2857,'varietal','Merlot'),(45634,2857,'appellation',NULL),(45635,2857,'vintage','2021'),(45636,2858,'varietal','Petit Verdot'),(45637,2858,'appellation',NULL),(45638,2858,'vintage','2021'),(45640,2799,'_edit_last','5'),(45641,2799,'primary_collection',''),(45642,2799,'trade_assets','a:0:{}'),(45643,2799,'downloads','a:0:{}'),(45644,2799,'related_products','a:0:{}'),(45645,2799,'recipe_pairings','a:0:{}'),(45646,2799,'external_recipe_pairings','a:0:{}'),(45647,2799,'should_exclude_from_search',''),(45648,2799,'additional_css_classes',''),(45649,2799,'template',''),(45650,2799,'allowed_customer_tag_titles','a:0:{}'),(45651,2799,'allowed_customer_club_titles','a:0:{}'),(45652,2799,'_yoast_wpseo_title','Bouquet of Rose - Sonoma County-California | Meadowcroft Wines'),(45653,2799,'_yoast_wpseo_metadesc','Bouquet of Rose, a delightful collection of exquisite Rose wines. Discover the perfect blend of elegance and flavor. Order now!'),(45654,2799,'_yoast_wpseo_estimated-reading-time-minutes','0'),(45655,2799,'_yoast_wpseo_wordproof_timestamp',''),(45656,2760,'_edit_lock','1691498802:5'),(45657,2760,'_edit_last','5'),(45658,2760,'primary_collection',''),(45659,2760,'trade_assets','a:0:{}'),(45660,2760,'downloads','a:0:{}'),(45661,2760,'related_products','a:0:{}'),(45662,2760,'recipe_pairings','a:0:{}'),(45663,2760,'external_recipe_pairings','a:0:{}'),(45664,2760,'should_exclude_from_search',''),(45665,2760,'additional_css_classes',''),(45666,2760,'template',''),(45667,2760,'allowed_customer_tag_titles','a:0:{}'),(45668,2760,'allowed_customer_club_titles','a:0:{}'),(45669,2760,'_yoast_wpseo_title','Rosé of Pinot Noir-Sonoma County-California | Meadowcroft Wines'),(45670,2760,'_yoast_wpseo_metadesc','Indulge in the exquisite 2021 Rosé of Pinot Noir. Delicate, refreshing, and perfectly crafted. Discover the essence of rosé sophistication.'),(45671,2760,'_yoast_wpseo_estimated-reading-time-minutes','0'),(45672,2760,'_yoast_wpseo_wordproof_timestamp',''),(45673,3095,'inline_featured_image','0'),(45674,3095,'_edit_lock','1706699154:5'),(45675,3095,'_edit_last','5'),(45676,3095,'allowed_customer_tag_titles','a:0:{}'),(45677,3095,'allowed_customer_club_titles','a:0:{}'),(45678,3095,'hide_post_title','0'),(45679,3095,'_hide_post_title','field_5bbe18c8efa0ac'),(45680,3095,'custom_title',''),(45681,3095,'_custom_title','field_5bbe1b83pfa0c'),(45682,3095,'the_teaser','<span lang=\"EN-US\">Nothing can ruin a fine glass of white wine quicker than improper storage and service. When it comes to enjoying this classic beverage, temperature plays an essential role in releasing the flavors and aromas of your favorite wines. If you’re not sure how to store or serve up your white wines correctly during special occasion</span>'),(45683,3095,'_the_teaser','field_5c1d78f88e54c'),(45684,3095,'hero_image','3096'),(45685,3095,'_hero_image','field_5d138e7f31334'),(45686,3095,'enable_banner','0'),(45687,3095,'_enable_banner','field_5bbe19c8efa0acb'),(45688,3095,'banner_full_width','0'),(45689,3095,'_banner_full_width','field_5bbe19c8efa0ac'),(45690,3095,'banner_size','normal'),(45691,3095,'_banner_size','field_5bbe232929ec9c'),(45692,3095,'add_parallax_effect','0'),(45693,3095,'_add_parallax_effect','field_5bbe219ccb6a9'),(45694,3095,'add_veil_over_banner','0'),(45695,3095,'_add_veil_over_banner','field_5bbe333f39212'),(45696,3095,'banner_content_position','centered'),(45697,3095,'_banner_content_position','field_5bbe259b02b62'),(45698,3095,'banner_title',''),(45699,3095,'_banner_title','field_5bbe1b78efa0b'),(45700,3095,'banner_subtitle',''),(45701,3095,'_banner_subtitle','field_5bbe1b83efa0c'),(45702,3095,'banner_button_link',''),(45703,3095,'_banner_button_link','field_5bbe1b8cefa0d'),(45704,3095,'banner_button_new_tab','0'),(45705,3095,'_banner_button_new_tab','field_5bbe1e6d18fae'),(45706,3095,'show_down_arrow','0'),(45707,3095,'_show_down_arrow','field_5bbe24f721165'),(45708,3095,'banner_image',''),(45709,3095,'_banner_image','field_5bbe201718fafa'),(45710,3095,'banner_image_position','center center'),(45711,3095,'_banner_image_position','field_5bbe278f9fb97'),(45712,3095,'banner_image_mobile',''),(45713,3095,'_banner_image_mobile','field_5bbe202818fb0b'),(45714,3095,'banner_image_mobile_position','center center'),(45715,3095,'_banner_image_mobile_position','field_5bbe279c9fb98'),(45716,3095,'content_block',''),(45717,3095,'_content_block','field_5bbe19a7efa09'),(45718,3095,'_yoast_wpseo_primary_category','2'),(45719,3095,'_yoast_wpseo_content_score','30'),(45720,3095,'_yoast_wpseo_estimated-reading-time-minutes','9'),(45721,3095,'_yoast_wpseo_wordproof_timestamp',''),(45722,3096,'_wp_attached_file','2023/06/webp.webp'),(45723,3096,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:600;s:4:\"file\";s:17:\"2023/06/webp.webp\";s:8:\"filesize\";i:54434;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"webp-300x240.webp\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16202;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"webp-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7342;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:17:\"webp-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17966;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:17:\"webp-500x500.webp\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:38002;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:17:\"webp-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:26598;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:17:\"webp-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:20104;}s:8:\"tileview\";a:5:{s:4:\"file\";s:17:\"webp-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:20702;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(45724,3096,'_wp_attachment_image_alt','Bottle of White Whine'),(45725,3097,'_wp_attached_file','2023/06/white-wine-and-food-scaled.webp'),(45726,3097,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:39:\"2023/06/white-wine-and-food-scaled.webp\";s:8:\"filesize\";i:751178;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"white-wine-and-food-300x200.webp\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:54460;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"white-wine-and-food-1024x684.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:221544;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"white-wine-and-food-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:40714;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"white-wine-and-food-768x513.webp\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:151176;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:32:\"white-wine-and-food-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:64334;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:32:\"white-wine-and-food-500x500.webp\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:111240;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:32:\"white-wine-and-food-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:85886;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:32:\"white-wine-and-food-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:69318;}s:8:\"tileview\";a:5:{s:4:\"file\";s:32:\"white-wine-and-food-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:71592;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"white-wine-and-food-1536x1025.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:385296;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:34:\"white-wine-and-food-2048x1367.webp\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:563414;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:33:\"white-wine-and-food-1200x801.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:273966;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"white-wine-and-food.webp\";}'),(45727,3098,'_wp_attached_file','2023/06/webp-1.webp'),(45728,3098,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:19:\"2023/06/webp-1.webp\";s:8:\"filesize\";i:161884;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"webp-1-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:34206;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"webp-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:10546;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"webp-1-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:156916;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:19:\"webp-1-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:34206;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:19:\"webp-1-500x500.webp\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:80000;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:19:\"webp-1-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:51908;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:19:\"webp-1-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:37204;}s:8:\"tileview\";a:5:{s:4:\"file\";s:19:\"webp-1-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:40948;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(45729,3098,'_wp_attachment_image_alt',''),(45730,3095,'_thumbnail_id','3098'),(45731,3095,'_yoast_wpseo_title','The Ultimate Guide to Proper Storage and Serving: Meadowcroft wines'),(45732,3095,'_yoast_wpseo_metadesc','Discover the art of storing and serving white wines flawlessly. Learn about the ideal temperature, storage techniques, and expert tips to elevate your wine experience. Uncork the secrets to impeccable enjoyment'),(45733,3099,'_wp_attached_file','2023/06/serving-white-wine-scaled.jpeg'),(45734,3099,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:38:\"2023/06/serving-white-wine-scaled.jpeg\";s:8:\"filesize\";i:408492;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"serving-white-wine-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29068;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"serving-white-wine-1024x683.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105997;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"serving-white-wine-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21675;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"serving-white-wine-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73096;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:31:\"serving-white-wine-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33113;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:31:\"serving-white-wine-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54482;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:31:\"serving-white-wine-474x324.jpeg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43626;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:31:\"serving-white-wine-391x260.jpeg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35705;}s:8:\"tileview\";a:5:{s:4:\"file\";s:31:\"serving-white-wine-300x400.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35628;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"serving-white-wine-1536x1024.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185832;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:33:\"serving-white-wine-2048x1365.jpeg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:286135;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:32:\"serving-white-wine-1200x800.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130979;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:32:\"exclusive-design - stock.adobe.c\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:140:\"Pouring two glasses of white wine from a bottle in a close up view of the wineglasses over an abstract brown blue background with copy space\";s:17:\"created_timestamp\";s:10:\"1464085921\";s:9:\"copyright\";s:14:\"stockcreations\";s:12:\"focal_length\";s:3:\"100\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:47:\"Pouring two glasses of white wine from a bottle\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:100:{i:0;s:5:\"white\";i:1;s:7:\"alcohol\";i:2;s:8:\"beverage\";i:3;s:4:\"wine\";i:4;s:6:\"bottle\";i:5;s:7:\"filling\";i:6;s:7:\"pouring\";i:7;s:7:\"serving\";i:8;s:8:\"oenology\";i:9;s:11:\"viticulture\";i:10;s:3:\"bar\";i:11;s:3:\"pub\";i:12;s:10:\"restaurant\";i:13;s:6:\"winery\";i:14;s:12:\"wine tasting\";i:15;s:10:\"copy space\";i:16;s:7:\"vintage\";i:17;s:9:\"wineglass\";i:18;s:4:\"vino\";i:19;s:9:\"nightclub\";i:20;s:7:\"glasses\";i:21;s:3:\"two\";i:22;s:11:\"hospitality\";i:23;s:4:\"neck\";i:24;s:8:\"aperitif\";i:25;s:10:\"background\";i:26;s:6:\"design\";i:27;s:6:\"modern\";i:28;s:3:\"new\";i:29;s:6:\"rustic\";i:30;s:5:\"tasty\";i:31;s:13:\"advertisement\";i:32;s:11:\"advertising\";i:33;s:7:\"concept\";i:34;s:9:\"menu card\";i:35;s:6:\"object\";i:36;s:6:\"symbol\";i:37;s:8:\"vineyard\";i:38;s:9:\"wine card\";i:39;s:6:\"splash\";i:40;s:5:\"party\";i:41;s:8:\"together\";i:42;s:7:\"chablis\";i:43;s:14:\"muller-thurgau\";i:44;s:11:\"pinot blanc\";i:45;s:10:\"pinot gris\";i:46;s:8:\"riesling\";i:47;s:7:\"rivaner\";i:48;s:15:\"sauvignon blanc\";i:49;s:8:\"silvaner\";i:50;s:5:\"white\";i:51;s:7:\"alcohol\";i:52;s:8:\"beverage\";i:53;s:4:\"wine\";i:54;s:6:\"bottle\";i:55;s:7:\"filling\";i:56;s:7:\"pouring\";i:57;s:7:\"serving\";i:58;s:8:\"oenology\";i:59;s:11:\"viticulture\";i:60;s:3:\"bar\";i:61;s:3:\"pub\";i:62;s:10:\"restaurant\";i:63;s:6:\"winery\";i:64;s:12:\"wine tasting\";i:65;s:10:\"copy space\";i:66;s:7:\"vintage\";i:67;s:9:\"wineglass\";i:68;s:4:\"vino\";i:69;s:9:\"nightclub\";i:70;s:7:\"glasses\";i:71;s:3:\"two\";i:72;s:11:\"hospitality\";i:73;s:4:\"neck\";i:74;s:8:\"aperitif\";i:75;s:10:\"background\";i:76;s:6:\"design\";i:77;s:6:\"modern\";i:78;s:3:\"new\";i:79;s:6:\"rustic\";i:80;s:5:\"tasty\";i:81;s:13:\"advertisement\";i:82;s:11:\"advertising\";i:83;s:7:\"concept\";i:84;s:9:\"menu card\";i:85;s:6:\"object\";i:86;s:6:\"symbol\";i:87;s:8:\"vineyard\";i:88;s:9:\"wine card\";i:89;s:6:\"splash\";i:90;s:5:\"party\";i:91;s:8:\"together\";i:92;s:7:\"chablis\";i:93;s:14:\"muller-thurgau\";i:94;s:11:\"pinot blanc\";i:95;s:10:\"pinot gris\";i:96;s:8:\"riesling\";i:97;s:7:\"rivaner\";i:98;s:15:\"sauvignon blanc\";i:99;s:8:\"silvaner\";}}s:14:\"original_image\";s:23:\"serving-white-wine.jpeg\";}'),(45735,3099,'_wp_attachment_image_alt',''),(45736,3100,'_wp_attached_file','2023/06/white-wine-on-ice-scaled.webp'),(45737,3100,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:37:\"2023/06/white-wine-on-ice-scaled.webp\";s:8:\"filesize\";i:315430;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"white-wine-on-ice-300x200.webp\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16594;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"white-wine-on-ice-1024x683.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:72586;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"white-wine-on-ice-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11328;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"white-wine-on-ice-768x512.webp\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:48738;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:30:\"white-wine-on-ice-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:20320;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:30:\"white-wine-on-ice-500x500.webp\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:37742;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:30:\"white-wine-on-ice-474x324.webp\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:27298;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:30:\"white-wine-on-ice-391x260.webp\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:21756;}s:8:\"tileview\";a:5:{s:4:\"file\";s:30:\"white-wine-on-ice-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:23616;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"white-wine-on-ice-1536x1024.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:133872;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:32:\"white-wine-on-ice-2048x1365.webp\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:216678;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:31:\"white-wine-on-ice-1200x800.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:91572;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:22:\"white-wine-on-ice.webp\";}'),(45738,3100,'_wp_attachment_image_alt',''),(45739,3095,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org\",\r\n  \"@type\": \"FAQPage\",\r\n  \"mainEntity\": [{\r\n    \"@type\": \"Question\",\r\n    \"name\": \"What\'s the best temperature for serving white wines at home\",\r\n    \"acceptedAnswer\": {\r\n      \"@type\": \"Answer\",\r\n      \"text\": \"If you\'re a fan of chilled white wines, it\'s important to serve them at the right temperature for maximum enjoyment. Most experts recommend serving white wines between 45-50 degrees Fahrenheit, which can be achieved by placing the bottle in the refrigerator for a few hours before opening. This cool temperature helps highlight the wine\'s refreshing acidity and fruity flavors, while balancing any sweetness or oakiness. It\'s worth noting that some white wines, such as full-bodied Chardonnay or aged Riesling, may benefit from being served slightly warmer to bring out their complex aromas. No matter your preference, experimenting with different serving temperatures can help you find the perfect balance of flavor and refreshment in your favorite white wines.\"\r\n    }\r\n  },{\r\n    \"@type\": \"Question\",\r\n    \"name\": \"How long can I keep an opened bottle of white wine stored in the refrigerator\",\r\n    \"acceptedAnswer\": {\r\n      \"@type\": \"Answer\",\r\n      \"text\": \"White wine is a delicate and refreshing beverage that many people enjoy, especially when paired with a delicious meal or served as a standalone drink. However, it can be frustrating when you open a bottle of wine and don\'t finish it all in one sitting. So, how long can you keep an opened bottle of white wine stored in the refrigerator? The answer to this question depends on a few factors such as the type of wine, the storage conditions, and how long the wine has been open. Generally speaking, a bottle of white wine that has been opened can be stored in the refrigerator for up to five days. After that, the quality of the wine may begin to deteriorate, and it may start to lose its flavor. But don\'t worry, with proper storage and a little bit of knowledge, you can make sure that your white wine stays fresh and delicious for as long as possible.\"\r\n    }\r\n  },{\r\n    \"@type\": \"Question\",\r\n    \"name\": \"Is it better to store my white wine bottles upright or on their sides\",\r\n    \"acceptedAnswer\": {\r\n      \"@type\": \"Answer\",\r\n      \"text\": \"When it comes to storing white wine, there is often debate on whether to store the bottles upright or on their sides. While both methods have their benefits, storing white wine bottles on their sides is generally preferred. This is because it allows for the wine to come into contact with the cork, which helps to keep it moist and prevent it from drying out. If the cork were to dry out, air could leak into the bottle and cause the wine to spoil. Storing the bottles on their sides also helps to prevent the wine from being exposed to light, which can cause it to age prematurely. By storing your white wine bottles on their sides, you can ensure that they will age properly and be ready to enjoy when the time is right.\"\r\n    }\r\n  }]\r\n}\r\n</script>'),(45740,3095,'_yoast_wpseo_schema_page_type','WebPage'),(45741,3095,'_yoast_wpseo_schema_article_type','BlogPosting'),(45745,3103,'inline_featured_image','0'),(45746,3103,'_edit_lock','1733913455:5'),(45747,3103,'_edit_last','5'),(45748,3104,'_wp_attached_file','2023/07/choosing-white-wine.jpg'),(45749,3104,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:798;s:4:\"file\";s:31:\"2023/07/choosing-white-wine.jpg\";s:8:\"filesize\";i:174839;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"choosing-white-wine-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19673;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"choosing-white-wine-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124811;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"choosing-white-wine-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8489;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"choosing-white-wine-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80803;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:31:\"choosing-white-wine-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24002;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:31:\"choosing-white-wine-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51432;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:31:\"choosing-white-wine-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40303;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:31:\"choosing-white-wine-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29343;}s:8:\"tileview\";a:5:{s:4:\"file\";s:31:\"choosing-white-wine-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26785;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(45750,3104,'_wp_attachment_image_alt','a man selecting white wine'),(45751,3103,'_thumbnail_id','3104'),(45752,3103,'allowed_customer_tag_titles','a:0:{}'),(45753,3103,'allowed_customer_club_titles','a:0:{}'),(45754,3103,'hide_post_title','0'),(45755,3103,'_hide_post_title','field_5bbe18c8efa0ac'),(45756,3103,'custom_title',''),(45757,3103,'_custom_title','field_5bbe1b83pfa0c'),(45758,3103,'the_teaser','Sonoma County\'s reputation for producing high-quality white wines is well-deserved. The region has a diverse set of microclimates, including coastal and inland areas, providing an ideal environment for growing different grape varieties. Some of the common white grapes grown in Sonoma County include Chardonnay, Sauvignon Blanc, Pinot Gris, and Gewürztraminer, among others.'),(45759,3103,'_the_teaser','field_5c1d78f88e54c'),(45760,3103,'hero_image','3104'),(45761,3103,'_hero_image','field_5d138e7f31334'),(45762,3103,'enable_banner','0'),(45763,3103,'_enable_banner','field_5bbe19c8efa0acb'),(45764,3103,'banner_full_width','0'),(45765,3103,'_banner_full_width','field_5bbe19c8efa0ac'),(45766,3103,'banner_size','normal'),(45767,3103,'_banner_size','field_5bbe232929ec9c'),(45768,3103,'add_parallax_effect','0'),(45769,3103,'_add_parallax_effect','field_5bbe219ccb6a9'),(45770,3103,'add_veil_over_banner','0'),(45771,3103,'_add_veil_over_banner','field_5bbe333f39212'),(45772,3103,'banner_content_position','centered'),(45773,3103,'_banner_content_position','field_5bbe259b02b62'),(45774,3103,'banner_title',''),(45775,3103,'_banner_title','field_5bbe1b78efa0b'),(45776,3103,'banner_subtitle',''),(45777,3103,'_banner_subtitle','field_5bbe1b83efa0c'),(45778,3103,'banner_button_link',''),(45779,3103,'_banner_button_link','field_5bbe1b8cefa0d'),(45780,3103,'banner_button_new_tab','0'),(45781,3103,'_banner_button_new_tab','field_5bbe1e6d18fae'),(45782,3103,'show_down_arrow','0'),(45783,3103,'_show_down_arrow','field_5bbe24f721165'),(45784,3103,'banner_image',''),(45785,3103,'_banner_image','field_5bbe201718fafa'),(45786,3103,'banner_image_position','center center'),(45787,3103,'_banner_image_position','field_5bbe278f9fb97'),(45788,3103,'banner_image_mobile',''),(45789,3103,'_banner_image_mobile','field_5bbe202818fb0b'),(45790,3103,'banner_image_mobile_position','center center'),(45791,3103,'_banner_image_mobile_position','field_5bbe279c9fb98'),(45792,3103,'content_block',''),(45793,3103,'_content_block','field_5bbe19a7efa09'),(45794,3103,'_yoast_wpseo_primary_category','2'),(45795,3103,'_yoast_wpseo_content_score','90'),(45796,3103,'_yoast_wpseo_estimated-reading-time-minutes','7'),(45797,3103,'_yoast_wpseo_wordproof_timestamp',''),(45798,3103,'_yoast_wpseo_focuskw','White wine'),(45799,3103,'_yoast_wpseo_title','How to Choose a White Wine | Meadowcroft Wines'),(45800,3103,'_yoast_wpseo_metadesc','Explore Sonoma County\'s white wines, from Chardonnay to Sauvignon Blanc. Discover how to choose the perfect white wine and unlock delightful flavors and pairings'),(45801,3103,'_yoast_wpseo_linkdex','72'),(45802,3106,'_wp_attached_file','2023/07/white-wine-general.jpg'),(45803,3106,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:30:\"2023/07/white-wine-general.jpg\";s:8:\"filesize\";i:117717;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"white-wine-general-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11585;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"white-wine-general-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84069;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"white-wine-general-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5432;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"white-wine-general-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53049;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:30:\"white-wine-general-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16879;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:30:\"white-wine-general-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39251;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:30:\"white-wine-general-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25092;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:30:\"white-wine-general-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17752;}s:8:\"tileview\";a:5:{s:4:\"file\";s:30:\"white-wine-general-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21708;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(45804,3106,'_wp_attachment_image_alt','Image of white wine in a glass'),(45805,3107,'_wp_attached_file','2023/07/white-wine-general2.jpg'),(45806,3107,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:31:\"2023/07/white-wine-general2.jpg\";s:8:\"filesize\";i:148336;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"white-wine-general2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16184;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"white-wine-general2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107652;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"white-wine-general2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7554;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"white-wine-general2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68774;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:31:\"white-wine-general2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21956;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:31:\"white-wine-general2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47980;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:31:\"white-wine-general2-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33926;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:31:\"white-wine-general2-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24373;}s:8:\"tileview\";a:5:{s:4:\"file\";s:31:\"white-wine-general2-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25089;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(45807,3107,'_wp_attachment_image_alt','Pouring a white wine into the glass'),(45811,3108,'hide_post_title','0'),(45812,3108,'_hide_post_title','field_5bbe18c8efa0ac'),(45813,3108,'custom_title',''),(45814,3108,'_custom_title','field_5bbe1b83pfa0c'),(45815,3108,'the_teaser','Sonoma County\'s reputation for producing high-quality white wines is well-deserved. The region has a diverse set of microclimates, including coastal and inland areas, providing an ideal environment for growing different grape varieties. Some of the common white grapes grown in Sonoma County include Chardonnay, Sauvignon Blanc, Pinot Gris, and Gewürztraminer, among others.'),(45816,3108,'_the_teaser','field_5c1d78f88e54c'),(45817,3108,'hero_image',''),(45818,3108,'_hero_image','field_5d138e7f31334'),(45819,3108,'enable_banner','0'),(45820,3108,'_enable_banner','field_5bbe19c8efa0acb'),(45821,3108,'banner_full_width','0'),(45822,3108,'_banner_full_width','field_5bbe19c8efa0ac'),(45823,3108,'banner_size','normal'),(45824,3108,'_banner_size','field_5bbe232929ec9c'),(45825,3108,'add_parallax_effect','0'),(45826,3108,'_add_parallax_effect','field_5bbe219ccb6a9'),(45827,3108,'add_veil_over_banner','0'),(45828,3108,'_add_veil_over_banner','field_5bbe333f39212'),(45829,3108,'banner_content_position','centered'),(45830,3108,'_banner_content_position','field_5bbe259b02b62'),(45831,3108,'banner_title',''),(45832,3108,'_banner_title','field_5bbe1b78efa0b'),(45833,3108,'banner_subtitle',''),(45834,3108,'_banner_subtitle','field_5bbe1b83efa0c'),(45835,3108,'banner_button_link',''),(45836,3108,'_banner_button_link','field_5bbe1b8cefa0d'),(45837,3108,'banner_button_new_tab','0'),(45838,3108,'_banner_button_new_tab','field_5bbe1e6d18fae'),(45839,3108,'show_down_arrow','0'),(45840,3108,'_show_down_arrow','field_5bbe24f721165'),(45841,3108,'banner_image',''),(45842,3108,'_banner_image','field_5bbe201718fafa'),(45843,3108,'banner_image_position','center center'),(45844,3108,'_banner_image_position','field_5bbe278f9fb97'),(45845,3108,'banner_image_mobile',''),(45846,3108,'_banner_image_mobile','field_5bbe202818fb0b'),(45847,3108,'banner_image_mobile_position','center center'),(45848,3108,'_banner_image_mobile_position','field_5bbe279c9fb98'),(45849,3108,'content_block',''),(45850,3108,'_content_block','field_5bbe19a7efa09'),(45852,3110,'web_id','682436c1-5420-4f4c-b38a-15277ce45993'),(45853,3110,'slug','meadowcroft-2022-pinot-noir-sonoma-coast'),(45854,3110,'title','2022 Pinot Noir Sonoma Coast'),(45855,3110,'type','Wine'),(45856,3110,'image','https://images.commerce7.com/meadowcroft-wines/images/original/22soncoastpinotnoir-1706038124497.png'),(45857,3110,'teaser',NULL),(45858,3110,'content','<p>Sourced from Sonoma&rsquo;s largest AVA, the vines cultivated in this world-famous growing region experience cool-climate growing conditions year-round. The longer growing season allows for the development of rich fruit characteristics and bright acidity. Enjoy aromas of blackberry, ripe plum, cranberry and black&nbsp;followed by flavors of dark cherry and warm spice. Drink now through 2029.</p>\n<p><strong>SUGGESTED FOOD PAIRING</strong><br />Easy to pair, this supple and elegant wine is perfect for every day enjoyment or to share in a special moment. Try with wood-fired pizza, roasted duck or barbecued pork ribs. If you plan to serve it with cheese, pair this wine with Brie, Gouda, and Manchego cheeses.</p>\n<p><strong><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/01/2022-Pinot-Noir-Son-Coast-Tech-Sheet-DRAFT.pdf\">PDF Wine Notes</a></strong></p>'),(45859,3110,'subtitle','Sonoma County'),(45860,3110,'price','4200'),(45861,3110,'web_status','Available'),(45862,3110,'admin_status','Available'),(45863,3110,'varietal','Pinot Noir'),(45864,3110,'appellation','Sonoma Coast'),(45865,3110,'vintage','2022'),(45866,3110,'collections','a:0:{}'),(45867,3110,'primary_collection',''),(45869,3112,'web_id','7a0ddf6f-11e4-49f9-8145-d6ba2b97ddc4'),(45870,3112,'slug','ticket--spring-2023-pick-up-party---club-member-tickets-duplicate'),(45871,3112,'title','Ticket- Summer BBQ Party - Club Member Tickets'),(45872,3112,'type','Event Ticket'),(45873,3112,'image','https://images.commerce7.com/meadowcroft-wines/images/original/tom-1684886007492.png'),(45874,3112,'teaser','Summer BBQ Party - Wine Club Members'),(45875,3112,'content','<div>Get ready to kick up your boots and groove to some country music because Meadowcroft Wines is throwing the ultimate winery party! The guys from Northern Pines will be belting out country tunes while you nosh on finger-licking barbecue from Sonoma\'s very own&nbsp;<a href=\"https://trk.klclick.com/ls/click?upn=JY78JqvFm2sUmRbc1TdVlCv5IUSg35bqVL6jDuTf9ak9-2FZRxcoVijvtgs-2FQngF7JDe8omXAFy-2FjI2Oz5Lo-2FDU7LVoMuKShKPCDxfoKrk8whTbsDd56vmCs0ZPGrB3FotHZss_f0D7hj0BJ4b-2F7NuVqzPDs7OD0vPFegzrYWuF2BCcWWZ6xB3B5qbmXMg5mH3Q-2F8cRbbEjfyh2zd99FEbpiD2-2F3nJ51Dyytca6qUTV2nu5zkgPGbJzxtOwFotyi2SAT9QiAW5VSlf1SuFKV6n9hNqTbymeA-2FMhPRJaULDWWqHAkyXyHfY7yQCow1fFY3kLSwGUpK7E2hCNbA13SUCWZxPXKl67G6LFHOyhzGweEtcMQNoq0JJzzN0MGOnH9M133AqXEN-2BIhfwJL-2FCAuWPdm2aOQ-2Bw6wN-2B1iW9WEpJ9WIjQaHYKk17QLShRaepDVoIxujRz\" target=\"_blank\" rel=\"noopener\" data-saferedirecturl=\"https://www.google.com/url?q=https://trk.klclick.com/ls/click?upn%3DJY78JqvFm2sUmRbc1TdVlCv5IUSg35bqVL6jDuTf9ak9-2FZRxcoVijvtgs-2FQngF7JDe8omXAFy-2FjI2Oz5Lo-2FDU7LVoMuKShKPCDxfoKrk8whTbsDd56vmCs0ZPGrB3FotHZss_f0D7hj0BJ4b-2F7NuVqzPDs7OD0vPFegzrYWuF2BCcWWZ6xB3B5qbmXMg5mH3Q-2F8cRbbEjfyh2zd99FEbpiD2-2F3nJ51Dyytca6qUTV2nu5zkgPGbJzxtOwFotyi2SAT9QiAW5VSlf1SuFKV6n9hNqTbymeA-2FMhPRJaULDWWqHAkyXyHfY7yQCow1fFY3kLSwGUpK7E2hCNbA13SUCWZxPXKl67G6LFHOyhzGweEtcMQNoq0JJzzN0MGOnH9M133AqXEN-2BIhfwJL-2FCAuWPdm2aOQ-2Bw6wN-2B1iW9WEpJ9WIjQaHYKk17QLShRaepDVoIxujRz&amp;source=gmail&amp;ust=1690658026003000&amp;usg=AOvVaw2Ft1UkB7aBBJfIwq9uut36\">Cochon Volant BBQ</a>.&nbsp; They\'ll be bringing their super cool BBQ smoker to the party, ensuring the meat will be melt-in-your-mouth delicious.</div>\n<div>&nbsp;</div>\n<div>We\'ll also have cornhole contests and some fabulous drawing prizes up for grabs. And of course, we\'ll be pouring your favorite Meadowcroft wines all evening.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Don\'t miss out on an unforgettable evening of great food, toe-tapping music, and, of course, incredible wine. Cheers to that!</div>\n<div><hr /></div>\n<div>&nbsp;</div>\n<div>\n<div><strong>When:&nbsp;</strong> &nbsp;&nbsp;Friday, September 1st, 4-7pm&nbsp;</div>\n<div><strong>Where:&nbsp;</strong> &nbsp;Meadowcroft Tasting Room</div>\n<div><strong>Tickets:</strong>&nbsp; &nbsp;$25 Club Members | $45 non-members</div>\n<div>&nbsp;</div>\n<div>This event is limited to 100 guests - purchase tickets soon.&nbsp; &nbsp;2 tickets per membership at wine club price.&nbsp; Email us at <a href=\"mailto:tastingroom@meadowcroftwines.com\" target=\"_blank\" rel=\"noopener\">tastingroom@meadowcroftwines</a>&nbsp;with questions.&nbsp;</div>\n</div>\n<div>&nbsp;</div>\n<hr />\n<div><strong>Reminder</strong>- you can use your available loyalty points towards your ticket purchase.&nbsp; See you there!&nbsp;</div>'),(45876,3112,'subtitle',NULL),(45877,3112,'price','2500'),(45878,3112,'web_status','Retired'),(45879,3112,'admin_status','Not Available'),(45880,3112,'vendor','Meadowcroft Wines'),(45881,3112,'collections','a:0:{}'),(45882,3112,'primary_collection',''),(45883,3113,'web_id','a790a042-c5df-432e-bcfe-89d5035ba4a6'),(45884,3113,'slug','ticket--spring-23-pick-up-party---non-member-ticket-duplicate'),(45885,3113,'title','Ticket- Summer BBQ Party- Non-Member'),(45886,3113,'type','Event Ticket'),(45887,3113,'image','https://images.commerce7.com/meadowcroft-wines/images/original/784ee891-58e9-482c-b35d-d72d9690f0c1-1684885900548.png'),(45888,3113,'teaser','Summer BBQ Ticket - non-member'),(45889,3113,'content','<div>\n<div>Get ready to kick up your boots and groove to some country music because Meadowcroft Wines is throwing the ultimate winery party! The guys from Northern Pines will be belting out country tunes while you nosh on finger-licking barbecue from Sonoma\'s very own&nbsp;<a href=\"https://trk.klclick.com/ls/click?upn=JY78JqvFm2sUmRbc1TdVlCv5IUSg35bqVL6jDuTf9ak9-2FZRxcoVijvtgs-2FQngF7JDe8omXAFy-2FjI2Oz5Lo-2FDU7LVoMuKShKPCDxfoKrk8whTbsDd56vmCs0ZPGrB3FotHZss_f0D7hj0BJ4b-2F7NuVqzPDs7OD0vPFegzrYWuF2BCcWWZ6xB3B5qbmXMg5mH3Q-2F8cRbbEjfyh2zd99FEbpiD2-2F3nJ51Dyytca6qUTV2nu5zkgPGbJzxtOwFotyi2SAT9QiAW5VSlf1SuFKV6n9hNqTbymeA-2FMhPRJaULDWWqHAkyXyHfY7yQCow1fFY3kLSwGUpK7E2hCNbA13SUCWZxPXKl67G6LFHOyhzGweEtcMQNoq0JJzzN0MGOnH9M133AqXEN-2BIhfwJL-2FCAuWPdm2aOQ-2Bw6wN-2B1iW9WEpJ9WIjQaHYKk17QLShRaepDVoIxujRz\" target=\"_blank\" rel=\"noopener\" data-saferedirecturl=\"https://www.google.com/url?q=https://trk.klclick.com/ls/click?upn%3DJY78JqvFm2sUmRbc1TdVlCv5IUSg35bqVL6jDuTf9ak9-2FZRxcoVijvtgs-2FQngF7JDe8omXAFy-2FjI2Oz5Lo-2FDU7LVoMuKShKPCDxfoKrk8whTbsDd56vmCs0ZPGrB3FotHZss_f0D7hj0BJ4b-2F7NuVqzPDs7OD0vPFegzrYWuF2BCcWWZ6xB3B5qbmXMg5mH3Q-2F8cRbbEjfyh2zd99FEbpiD2-2F3nJ51Dyytca6qUTV2nu5zkgPGbJzxtOwFotyi2SAT9QiAW5VSlf1SuFKV6n9hNqTbymeA-2FMhPRJaULDWWqHAkyXyHfY7yQCow1fFY3kLSwGUpK7E2hCNbA13SUCWZxPXKl67G6LFHOyhzGweEtcMQNoq0JJzzN0MGOnH9M133AqXEN-2BIhfwJL-2FCAuWPdm2aOQ-2Bw6wN-2B1iW9WEpJ9WIjQaHYKk17QLShRaepDVoIxujRz&amp;source=gmail&amp;ust=1690658026003000&amp;usg=AOvVaw2Ft1UkB7aBBJfIwq9uut36\">Cochon Volant BBQ</a>.&nbsp; They\'ll be bringing their super cool BBQ smoker to the party, ensuring the meat will be melt-in-your-mouth delicious.</div>\n<div>&nbsp;</div>\n<div>We\'ll also have cornhole contests and some fabulous drawing prizes up for grabs. And of course, we\'ll be pouring your favorite Meadowcroft wines all evening.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Don\'t miss out on an unforgettable evening of great food, toe-tapping music, and, of course, incredible wine. Cheers to that!</div>\n<div><hr /></div>\n<div>&nbsp;</div>\n<div>\n<div><strong>When:&nbsp;</strong> &nbsp;&nbsp;Friday, September 1st, 4-7pm&nbsp;</div>\n<div><strong>Where:&nbsp;</strong> &nbsp;Meadowcroft Tasting Room</div>\n<div><strong>Tickets:</strong>&nbsp; &nbsp;$25 Club Members | $45 non-members</div>\n<div>&nbsp;</div>\n<div>This event is limited to 100 guests - purchase tickets soon.&nbsp; &nbsp;2 tickets per membership at wine club price.&nbsp; Email us at <a href=\"mailto:tastingroom@meadowcroftwines.com\" target=\"_blank\" rel=\"noopener\">tastingroom@meadowcroftwines</a>&nbsp;with questions.&nbsp;</div>\n</div>\n<div>&nbsp;</div>\n<hr />\n<div><strong>Reminder</strong>- you can use your available loyalty points towards your ticket purchase.&nbsp; See you there!&nbsp;</div>\n</div>'),(45890,3113,'subtitle',NULL),(45891,3113,'price','4500'),(45892,3113,'web_status','Retired'),(45893,3113,'admin_status','Not Available'),(45894,3113,'vendor','Meadowcroft Wines'),(45895,3113,'collections','a:0:{}'),(45896,3113,'primary_collection',''),(45901,3116,'_wp_attached_file','2023/07/MCWines-BBQ-event2.jpg'),(45902,3116,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:520;s:4:\"file\";s:30:\"2023/07/MCWines-BBQ-event2.jpg\";s:8:\"filesize\";i:96874;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"MCWines-BBQ-event2-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21564;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"MCWines-BBQ-event2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11270;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"MCWines-BBQ-event2-768x499.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94042;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:30:\"MCWines-BBQ-event2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32619;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:30:\"MCWines-BBQ-event2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71359;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:30:\"MCWines-BBQ-event2-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47477;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:30:\"MCWines-BBQ-event2-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33371;}s:8:\"tileview\";a:5:{s:4:\"file\";s:30:\"MCWines-BBQ-event2-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39157;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(45980,412,'allowed_customer_tag_titles','a:0:{}'),(45981,412,'allowed_customer_club_titles','a:0:{}'),(45982,3117,'content_block_0_layout_title',''),(45983,3117,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(45984,3117,'content_block_0_custom_css_class',''),(45985,3117,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(45986,3117,'content_block_0_banner_full_width','1'),(45987,3117,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(45988,3117,'content_block_0_banner_size','long'),(45989,3117,'_content_block_0_banner_size','field_5bbe232929ec9'),(45990,3117,'content_block_0_add_parallax_effect','0'),(45991,3117,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(45992,3117,'content_block_0_add_veil_over_banner','0'),(45993,3117,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(45994,3117,'content_block_0_banner_content_position','centered'),(45995,3117,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(45996,3117,'content_block_0_banner_title',' <h1 style=\"color: #ffffff;\">MEADOWCROFT WINES<h1>'),(45997,3117,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(45998,3117,'content_block_0_banner_subtitle','● SONOMA | NAPA ●'),(45999,3117,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(46000,3117,'content_block_0_banner_button_link','a:3:{s:5:\"title\";s:5:\"Visit\";s:3:\"url\";s:14:\"/tasting-room/\";s:6:\"target\";s:0:\"\";}'),(46001,3117,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(46002,3117,'content_block_0_banner_button_text','VISIT US IN SONOMA, CALIFORNIA'),(46003,3117,'_content_block_0_banner_button_text','field_5bbe1ba0efa0e'),(46004,3117,'content_block_0_banner_button_link_description','Click to go to our visit page and make a reservation to visit our winery'),(46005,3117,'_content_block_0_banner_button_link_description','field_5bbf30b1a4de2-1b'),(46006,3117,'content_block_0_banner_button_new_tab','0'),(46007,3117,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(46008,3117,'content_block_0_show_down_arrow','0'),(46009,3117,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(46010,3117,'content_block_0_banner_image_description',''),(46011,3117,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(46012,3117,'content_block_0_banner_image','851'),(46013,3117,'_content_block_0_banner_image','field_5bbe201718faf'),(46014,3117,'content_block_0_banner_image_position','center center'),(46015,3117,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(46016,3117,'content_block_0_banner_image_mobile','852'),(46017,3117,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(46018,3117,'content_block_0_banner_image_mobile_position','center center'),(46019,3117,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(46020,3117,'content_block_1_layout_title','Meadowcroft Summer BBQ Party'),(46021,3117,'_content_block_1_layout_title','field_5bc11ca9a0d50-l'),(46022,3117,'content_block_1_event_0_event_title','Summer BBQ Party'),(46023,3117,'_content_block_1_event_0_event_title','field_5bc0fcaa5636e'),(46024,3117,'content_block_1_event_0_day_of_event','1'),(46025,3117,'_content_block_1_event_0_day_of_event','field_5bc0fc275636a'),(46026,3117,'content_block_1_event_0_day_of_the_week','FRI'),(46027,3117,'_content_block_1_event_0_day_of_the_week','field_5bc118c1b9202'),(46028,3117,'content_block_1_event_0_month_of_event','SEP'),(46029,3117,'_content_block_1_event_0_month_of_event','field_5bc0fc3a5636b'),(46030,3117,'content_block_1_event_0_year_of_event','2020'),(46031,3117,'_content_block_1_event_0_year_of_event','field_5bc0fc535636c'),(46032,3117,'content_block_1_event_0_event_date','20230901'),(46033,3117,'_content_block_1_event_0_event_date','field_62705750fc8b8'),(46034,3117,'content_block_1_event_0_start_time','04:00 pm'),(46035,3117,'_content_block_1_event_0_start_time','field_5bc11839b91ff'),(46036,3117,'content_block_1_event_0_end_time','07:00 pm'),(46037,3117,'_content_block_1_event_0_end_time','field_5bc11840b9200'),(46038,3117,'content_block_1_event_0_location','Meadowcroft Tasting Room'),(46039,3117,'_content_block_1_event_0_location','field_5bc11848b9201'),(46040,3117,'content_block_1_event_0_event_photo','3116'),(46041,3117,'_content_block_1_event_0_event_photo','field_5bc0fc795636d'),(46042,3117,'content_block_1_event_0_event_description','<div>Get ready to kick up your boots and groove to some country music because Meadowcroft Wines is throwing the ultimate winery party! The guys from Northern Pines will be belting out country tunes while you nosh on finger-licking barbecue from Sonoma\'s very own <a href=\"https://trk.klclick.com/ls/click?upn=JY78JqvFm2sUmRbc1TdVlCv5IUSg35bqVL6jDuTf9ak9-2FZRxcoVijvtgs-2FQngF7JDe8omXAFy-2FjI2Oz5Lo-2FDU7LVoMuKShKPCDxfoKrk8whTbsDd56vmCs0ZPGrB3FotHZss_f0D7hj0BJ4b-2F7NuVqzPDs7OD0vPFegzrYWuF2BCcWWZ6xB3B5qbmXMg5mH3Q-2F8cRbbEjfyh2zd99FEbpiD2-2F3nJ51Dyytca6qUTV2nu5zkgPGbJzxtOwFotyi2SAT9QiAW5VSlf1SuFKV6n9hNqTbymeA-2FMhPRJaULDWWqHAkyXyHfY7yQCow1fFY3kLSwGUpK7E2hCNbA13SUCWZxPXKl67G6LFHOyhzGweEtcMQNoq0JJzzN0MGOnH9M133AqXEN-2BIhfwJL-2FCAuWPdm2aOQ-2Bw6wN-2B1iW9WEpJ9WIjQaHYKk17QLShRaepDVoIxujRz\" target=\"_blank\" rel=\"noopener\" data-saferedirecturl=\"https://www.google.com/url?q=https://trk.klclick.com/ls/click?upn%3DJY78JqvFm2sUmRbc1TdVlCv5IUSg35bqVL6jDuTf9ak9-2FZRxcoVijvtgs-2FQngF7JDe8omXAFy-2FjI2Oz5Lo-2FDU7LVoMuKShKPCDxfoKrk8whTbsDd56vmCs0ZPGrB3FotHZss_f0D7hj0BJ4b-2F7NuVqzPDs7OD0vPFegzrYWuF2BCcWWZ6xB3B5qbmXMg5mH3Q-2F8cRbbEjfyh2zd99FEbpiD2-2F3nJ51Dyytca6qUTV2nu5zkgPGbJzxtOwFotyi2SAT9QiAW5VSlf1SuFKV6n9hNqTbymeA-2FMhPRJaULDWWqHAkyXyHfY7yQCow1fFY3kLSwGUpK7E2hCNbA13SUCWZxPXKl67G6LFHOyhzGweEtcMQNoq0JJzzN0MGOnH9M133AqXEN-2BIhfwJL-2FCAuWPdm2aOQ-2Bw6wN-2B1iW9WEpJ9WIjQaHYKk17QLShRaepDVoIxujRz&amp;source=gmail&amp;ust=1690658026003000&amp;usg=AOvVaw2Ft1UkB7aBBJfIwq9uut36\" aria-label=\"Cochon Volant BBQ - opens in new tab\" data-uw-rm-ext-link=\"\">Cochon Volant BBQ</a>.  They\'ll be bringing their super cool BBQ smoker to the party, ensuring the meat will be melt-in-your-mouth delicious.</div>\r\n<div></div>\r\n<div>We\'ll also have cornhole contests and some fabulous drawing prizes up for grabs. And of course, we\'ll be pouring your favorite Meadowcroft wines all evening.</div>\r\n<div></div>\r\n<div>Don\'t miss out on an unforgettable evening of great food, toe-tapping music, and, of course, incredible wine. Cheers to that!</div>\r\n<div>\r\n\r\n<hr role=\"presentation\" data-uw-rm-sr=\"\" />\r\n\r\n</div>\r\n<div>\r\n<div><strong>When: </strong>   Friday, September 1st, 4-7pm</div>\r\n<div><strong>Where: </strong>  Meadowcroft Tasting Room</div>\r\n<div><strong>Tickets:</strong>   $25 Club Members | $45 non-members</div>\r\n<div></div>\r\n<div>This event is limited to 100 guests - purchase tickets soon.   2 tickets per membership at wine club price.  Email us at <a href=\"mailto:tastingroom@meadowcroftwines.com\" target=\"_blank\" rel=\"noopener\" aria-label=\"send an email to tastingroom@meadowcroftwines.com\" data-uw-rm-vglnk=\"\">tastingroom@meadowcroftwines</a> with questions.</div>\r\n</div>'),(46043,3117,'_content_block_1_event_0_event_description','field_5bc0fcb35636f'),(46044,3117,'content_block_1_event_0_button_link','https://www.meadowcroftwines.com/collection/event-tickets/'),(46045,3117,'_content_block_1_event_0_button_link','field_5bc0fcbf56370'),(46046,3117,'content_block_1_event_0_button_text','Tickets'),(46047,3117,'_content_block_1_event_0_button_text','field_5bc0fcc656371'),(46048,3117,'content_block_1_event','2'),(46049,3117,'_content_block_1_event','field_5bc0fbc656369'),(46050,3117,'content_block_2_layout_title','3 Columns'),(46051,3117,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(46052,3117,'content_block_2_text_block_columns','three'),(46053,3117,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(46054,3117,'content_block_2_column_size','equal'),(46055,3117,'_content_block_2_column_size','field_columnsize'),(46056,3117,'content_block_2_narrow_text_block_content','0'),(46057,3117,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(46058,3117,'content_block_2_reverse_colors','0'),(46059,3117,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(46060,3117,'content_block_2_enable_background_image','0'),(46061,3117,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(46062,3117,'content_block_2_custom_css_class',''),(46063,3117,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(46064,3117,'content_block_2_text_block_content_col_one','<img class=\"alignnone wp-image-853 aligncenter\" src=\"/wp-content/uploads/2022/11/bee-300x200.jpg\" alt=\"Closeup of gold bee logo on Meadowcroft wine label\" width=\"380\" height=\"253\" />\r\n<h3 style=\"text-align: center;\">ONLINE STORE</h3>\r\n<p style=\"text-align: center;\">Acquire current release Meadowcroft wines, including Cabernet Sauvignon, Zinfandel, Pinot Noir and Chardonnay</p>\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"/wines/\">GO TO ONLINE STORE</a></p>'),(46065,3117,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(46066,3117,'content_block_2_text_block_content_col_two','<img class=\"alignnone wp-image-854 aligncenter\" src=\"/wp-content/uploads/2022/11/visit-300x199.jpg\" alt=\"People toasting with wine\" width=\"380\" height=\"253\" />\r\n<h3 style=\"text-align: center;\">VISIT US</h3>\r\n<p style=\"text-align: center;\">Open Daily until 5:00 p.m\r\n23574 Arnold Drive\r\nSonoma, CA 95476</p>\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"/tasting-room/\">TASTING ROOM INFO</a></p>'),(46067,3117,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(46068,3117,'content_block_2_text_block_content_col_three','<img class=\"alignnone wp-image-1051 aligncenter\" src=\"/wp-content/uploads/2022/11/club.jpg\" alt=\"Red and white Meadowcroft wines on table\" width=\"380\" height=\"253\" />\r\n<h3 style=\"text-align: center;\">JOIN THE CLUB</h3>\r\n<p style=\"text-align: center;\">Receive only the wines you want when you want them. Customize shipments and delivery frequency. Skip shipments as needed.</p>\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"/wine-club/\">CHECK OUT THE CLUB</a></p>'),(46069,3117,'_content_block_2_text_block_content_col_three','field_5bbe31793920f'),(46070,3117,'content_block_3_layout_title','Top 100 Winery'),(46071,3117,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(46072,3117,'content_block_3_text_block_columns','one'),(46073,3117,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(46074,3117,'content_block_3_narrow_text_block_content','1'),(46075,3117,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(46076,3117,'content_block_3_reverse_colors','0'),(46077,3117,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(46078,3117,'content_block_3_enable_background_image','0'),(46079,3117,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(46080,3117,'content_block_3_custom_css_class',''),(46081,3117,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(46082,3117,'content_block_3_text_block_content_col_one','&nbsp;\r\n<h3 style=\"text-align: center;\">TOP 100 WINERY FROM BONFORT’S WINE &amp; SPIRITS!</h3>\r\n<img class=\"wp-image-866 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Top_100_Winner_Gold-1-1-300x138.png\" alt=\"Top 100 Winery Logo\" width=\"463\" height=\"213\" />'),(46083,3117,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(46084,3117,'content_block_4_layout_title','Award Winning Wines'),(46085,3117,'_content_block_4_layout_title','field_5bc11ca9a0d50-s'),(46086,3117,'content_block_4_text_block_columns','one'),(46087,3117,'_content_block_4_text_block_columns','field_5bbe2f81a4de0'),(46088,3117,'content_block_4_narrow_text_block_content','0'),(46089,3117,'_content_block_4_narrow_text_block_content','field_5bbe342e08360'),(46090,3117,'content_block_4_reverse_colors','0'),(46091,3117,'_content_block_4_reverse_colors','field_5bbe3027a4de1'),(46092,3117,'content_block_4_enable_background_image','0'),(46093,3117,'_content_block_4_enable_background_image','field_5bbe30b1a4de2'),(46094,3117,'content_block_4_custom_css_class','feature-box'),(46095,3117,'_content_block_4_custom_css_class','field_5bbe30b1a4de2-1'),(46096,3117,'content_block_4_text_block_content_col_one','<h3 style=\"text-align: center;\">AWARD-WINNING SUSTAINABLY SOURCED WINES IN BEAUTIFUL WINE COUNTRY</h3>\r\nMeadowcroft Wines are sustainably sourced award-winning wines that are vineyard specific and limited in production, expressing both European wine heritage and California creativity.\r\n\r\nIf you’re looking to savor something special from the best California vineyards, you’ve come to the right place. We’re proud to offer sustainably sourced award-winning wines. Every sip is a memorable experience, and we can’t wait for you to discover our limited-production, boutique wines. No matter which wines you try, we’re certain they’ll delight you. We’re also honored to be among the top 100 Sonoma wineries.\r\n\r\nCome out to our Tasting Room! Nestled in the middle of the renowned <a href=\"https://www.cornerstonesonoma.com/\">Cornerstone Sonoma Gardens</a>, it’s an exquisite and unforgettable space—though if you can’t make it in, our online store offers a vast selection of wine for any palate.'),(46097,3117,'_content_block_4_text_block_content_col_one','field_5bbe313b3920d'),(46098,3117,'content_block_5_layout_title','Tom Quote'),(46099,3117,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(46100,3117,'content_block_5_text_block_columns','one'),(46101,3117,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(46102,3117,'content_block_5_narrow_text_block_content','1'),(46103,3117,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(46104,3117,'content_block_5_reverse_colors','0'),(46105,3117,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(46106,3117,'content_block_5_enable_background_image','0'),(46107,3117,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(46108,3117,'content_block_5_custom_css_class',''),(46109,3117,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(46110,3117,'content_block_5_text_block_content_col_one','&nbsp;\r\n<p class=\"large-quote\" style=\"text-align: center;\">“My hope is to create wines with a Sonoma pulse that express the complexity found in European varietals.\"</p>\r\n<p class=\"testimonial\" style=\"text-align: center;\">TOM MEADOWCROFT</p>'),(46111,3117,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(46112,3117,'content_block_6_layout_title','Spacer'),(46113,3117,'_content_block_6_layout_title','field_5bc11ca9a0d50-s'),(46114,3117,'content_block_6_text_block_columns','one'),(46115,3117,'_content_block_6_text_block_columns','field_5bbe2f81a4de0'),(46116,3117,'content_block_6_narrow_text_block_content','0'),(46117,3117,'_content_block_6_narrow_text_block_content','field_5bbe342e08360'),(46118,3117,'content_block_6_reverse_colors','0'),(46119,3117,'_content_block_6_reverse_colors','field_5bbe3027a4de1'),(46120,3117,'content_block_6_enable_background_image','0'),(46121,3117,'_content_block_6_enable_background_image','field_5bbe30b1a4de2'),(46122,3117,'content_block_6_custom_css_class',''),(46123,3117,'_content_block_6_custom_css_class','field_5bbe30b1a4de2-1'),(46124,3117,'content_block_6_text_block_content_col_one',''),(46125,3117,'_content_block_6_text_block_content_col_one','field_5bbe313b3920d'),(46126,3117,'content_block_7_layout_title','Atmospheric Video'),(46127,3117,'_content_block_7_layout_title','field_5bc11ca9a0d50-u'),(46128,3117,'content_block_7_video_width','full'),(46129,3117,'_content_block_7_video_width','field_5bbe75793d323'),(46130,3117,'content_block_7_autoplay_video','1'),(46131,3117,'_content_block_7_autoplay_video','field_5bbe7f869a2a7'),(46132,3117,'content_block_7_add_a_muteunmute_button','0'),(46133,3117,'_content_block_7_add_a_muteunmute_button','field_5de6f2f5cc5c4m'),(46134,3117,'content_block_7_mobile_video','autoplay'),(46135,3117,'_content_block_7_mobile_video','field_5de7031a2009e'),(46136,3117,'content_block_7_video_source','Local'),(46137,3117,'_content_block_7_video_source','field_5bbe74973d31d'),(46138,3117,'content_block_7_local_video','863'),(46139,3117,'_content_block_7_local_video','field_5bbe74c83d31e'),(46140,3117,'content_block_7_video_cover_image','864'),(46141,3117,'_content_block_7_video_cover_image','field_5bbe75d33d326'),(46142,3117,'content_block_7_video_cover_image_mobile','865'),(46143,3117,'_content_block_7_video_cover_image_mobile','field_5bbe765b3d327'),(46144,3117,'content_block_8_layout_title','Visit'),(46145,3117,'_content_block_8_layout_title','field_5bc11ca9a0d50-s'),(46146,3117,'content_block_8_text_block_columns','one'),(46147,3117,'_content_block_8_text_block_columns','field_5bbe2f81a4de0'),(46148,3117,'content_block_8_narrow_text_block_content','1'),(46149,3117,'_content_block_8_narrow_text_block_content','field_5bbe342e08360'),(46150,3117,'content_block_8_reverse_colors','0'),(46151,3117,'_content_block_8_reverse_colors','field_5bbe3027a4de1'),(46152,3117,'content_block_8_enable_background_image','0'),(46153,3117,'_content_block_8_enable_background_image','field_5bbe30b1a4de2'),(46154,3117,'content_block_8_custom_css_class',''),(46155,3117,'_content_block_8_custom_css_class','field_5bbe30b1a4de2-1'),(46156,3117,'content_block_8_text_block_content_col_one','<p class=\"metatitle\" style=\"text-align: center;\">OPEN DAILY</p>\r\n\r\n<h3 style=\"text-align: center;\">VISIT THE MEADOWCROFT\r\nTASTING ROOM</h3>\r\n<p style=\"text-align: center;\">Our tasting room is located in California’s iconic Sonoma Valley. Here our guests take the time to slow down and enjoy the flavors of our wines. We are open daily from 10:00 a.m. – 5:00 p.m.</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"https://www.meadowcroftwines.com/tasting-room/\">Reservations</a> are recommended but walk-ins are welcome and accommodated as possible.</strong></p>\r\n<p style=\"text-align: center;\"><strong>Please call us at (707)934-4090 for last minute reservations or same-day requests.</strong></p>\r\n<p style=\"text-align: center;\">23574 Arnold Drive\r\nSonoma, CA 95476\r\n<a href=\"https://www.google.com/maps/dir//Meadowcroft+wines,+%2FHwy.+121,+suite+Meadowcroft+wines,+23574+Arnold+Dr,+Sonoma,+CA+95476/@38.22773,-122.457926,15z/data=!4m15!1m6!3m5!1s0x0:0xd21fda9232c58ee9!2sMeadowcroft+wines!8m2!3d38.22773!4d-122.457926!4m7!1m0!1m5!1m1!1s0x8085af4f80be9b43:0xd21fda9232c58ee9!2m2!1d-122.457926!2d38.22773\">Get Directions</a></p>\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"/tasting-room/\">BROWSE OUR UNIQUE TASTING ROOM EXPERIENCES</a></p>\r\n&nbsp;'),(46157,3117,'_content_block_8_text_block_content_col_one','field_5bbe313b3920d'),(46158,3117,'content_block_9_layout_title','Illustration'),(46159,3117,'_content_block_9_layout_title','field_5bc11ca9a0d50-c'),(46160,3117,'content_block_9_custom_css_class','illustration'),(46161,3117,'_content_block_9_custom_css_class','field_5bbf30b1a4de2-1'),(46162,3117,'content_block_9_banner_full_width','1'),(46163,3117,'_content_block_9_banner_full_width','field_5bbe19c8efa0a'),(46164,3117,'content_block_9_banner_size','long'),(46165,3117,'_content_block_9_banner_size','field_5bbe232929ec9'),(46166,3117,'content_block_9_add_parallax_effect','0'),(46167,3117,'_content_block_9_add_parallax_effect','field_5bbe219ccb6a9'),(46168,3117,'content_block_9_add_veil_over_banner','0'),(46169,3117,'_content_block_9_add_veil_over_banner','field_5bbe333f39212'),(46170,3117,'content_block_9_banner_content_position','centered'),(46171,3117,'_content_block_9_banner_content_position','field_5bbe259b02b62'),(46172,3117,'content_block_9_banner_title',''),(46173,3117,'_content_block_9_banner_title','field_5bbe1b78efa0b'),(46174,3117,'content_block_9_banner_subtitle',''),(46175,3117,'_content_block_9_banner_subtitle','field_5bbe1b83efa0c'),(46176,3117,'content_block_9_banner_button_link',''),(46177,3117,'_content_block_9_banner_button_link','field_5bbe1b8cefa0d'),(46178,3117,'content_block_9_banner_button_new_tab','0'),(46179,3117,'_content_block_9_banner_button_new_tab','field_5bbe1e6d18fae'),(46180,3117,'content_block_9_show_down_arrow','0'),(46181,3117,'_content_block_9_show_down_arrow','field_5bbe24f721165'),(46182,3117,'content_block_9_banner_image_description','Illustration of field with bee and flowers'),(46183,3117,'_content_block_9_banner_image_description','field_5bbf30b1a4de2-1a'),(46184,3117,'content_block_9_banner_image','867'),(46185,3117,'_content_block_9_banner_image','field_5bbe201718faf'),(46186,3117,'content_block_9_banner_image_position','center center'),(46187,3117,'_content_block_9_banner_image_position','field_5bbe278f9fb97'),(46188,3117,'content_block_9_banner_image_mobile','867'),(46189,3117,'_content_block_9_banner_image_mobile','field_5bbe202818fb0'),(46190,3117,'content_block_9_banner_image_mobile_position','center center'),(46191,3117,'_content_block_9_banner_image_mobile_position','field_5bbe279c9fb98'),(46192,3117,'content_block','a:10:{i:0;s:6:\"banner\";i:1;s:6:\"events\";i:2;s:10:\"text_block\";i:3;s:10:\"text_block\";i:4;s:10:\"text_block\";i:5;s:10:\"text_block\";i:6;s:10:\"text_block\";i:7;s:5:\"video\";i:8;s:10:\"text_block\";i:9;s:6:\"banner\";}'),(46193,3117,'_content_block','field_5bbe19a7efa09'),(46194,3117,'content_block_1_event_1_event_title',''),(46195,3117,'_content_block_1_event_1_event_title','field_5bc0fcaa5636e'),(46196,3117,'content_block_1_event_1_day_of_event',''),(46197,3117,'_content_block_1_event_1_day_of_event','field_5bc0fc275636a'),(46198,3117,'content_block_1_event_1_day_of_the_week',''),(46199,3117,'_content_block_1_event_1_day_of_the_week','field_5bc118c1b9202'),(46200,3117,'content_block_1_event_1_month_of_event',''),(46201,3117,'_content_block_1_event_1_month_of_event','field_5bc0fc3a5636b'),(46202,3117,'content_block_1_event_1_year_of_event',''),(46203,3117,'_content_block_1_event_1_year_of_event','field_5bc0fc535636c'),(46204,3117,'content_block_1_event_1_event_date',''),(46205,3117,'_content_block_1_event_1_event_date','field_62705750fc8b8'),(46206,3117,'content_block_1_event_1_start_time',''),(46207,3117,'_content_block_1_event_1_start_time','field_5bc11839b91ff'),(46208,3117,'content_block_1_event_1_end_time',''),(46209,3117,'_content_block_1_event_1_end_time','field_5bc11840b9200'),(46210,3117,'content_block_1_event_1_location',''),(46211,3117,'_content_block_1_event_1_location','field_5bc11848b9201'),(46212,3117,'content_block_1_event_1_event_photo',''),(46213,3117,'_content_block_1_event_1_event_photo','field_5bc0fc795636d'),(46214,3117,'content_block_1_event_1_event_description',''),(46215,3117,'_content_block_1_event_1_event_description','field_5bc0fcb35636f'),(46216,3117,'content_block_1_event_1_button_link',''),(46217,3117,'_content_block_1_event_1_button_link','field_5bc0fcbf56370'),(46218,2974,'content',''),(46219,2771,'primary_collection','red, Red Wines'),(46220,2980,'content',''),(46221,2770,'primary_collection','wines, Wines'),(46222,2769,'primary_collection','wines, Wines'),(46223,2693,'primary_collection','wines, Wines'),(46224,2766,'primary_collection','wines, Wines'),(46225,2759,'primary_collection',''),(46226,2746,'primary_collection','wines, Wines'),(46227,2718,'primary_collection','wines, Wines'),(46228,3118,'_wp_attached_file','2023/08/Social-Clip-2-Blending-Horizontal.mp4'),(46229,3118,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:32354702;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:16;s:16:\"length_formatted\";s:4:\"0:16\";s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:48000;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1690386772;}'),(46724,3121,'web_id','16409253-5ca1-4c96-8f74-4b6313838811'),(46725,3121,'slug','mug-stoneware-coffee'),(46726,3121,'title','Mug, stoneware coffee'),(46727,3121,'type','General Merchandise'),(46728,3121,'image','https://images.commerce7.com/meadowcroft-wines/images/original/logo-mug-1694115391763.png'),(46729,3121,'teaser',NULL),(46730,3121,'content',NULL),(46731,3121,'subtitle','14OZ - BLUE'),(46732,3121,'price','1500'),(46733,3121,'web_status','Available'),(46734,3121,'admin_status','Available'),(46735,3121,'vendor','Revive Drinkware'),(46736,3121,'collections','a:0:{}'),(46737,3121,'primary_collection',''),(46739,2792,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"http://schema.org/\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"Blanc de Noir Rose\",\r\n  \"image\": \"https://www.meadowcroftwines.com/product_images/BlancDeNoirRose.png\",\r\n  \"description\": \"Meaning white from black, our Blanc de Noir is our first release of sparkling rosé.  Perfect for any special occasion such as a job promotion, anniversary, holidays, or just making it through Monday. This non-vintage Blanc de Noirs Rose displays lush aromas of sweet cranberries, and ripe wild strawberries with hints of fresh vanilla bean. The palate boasts flavors of pomegranate and vanilla, and an elegant minerality that contributes to the firm tannins and citrus finish..\",\r\n  \"sku\": \"MCBR-005\",\r\n  \"brand\": {\r\n    \"@type\": \"Thing\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"price\": \"42.00\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"availability\": \"http://schema.org/InStock\",\r\n    \"seller\": {\r\n      \"@type\": \"Organization\",\r\n      \"name\": \"Meadowcroft Wines\"\r\n    }\r\n  },\r\n  \"aggregateRating\": {\r\n    \"@type\": \"AggregateRating\",\r\n    \"ratingValue\": \"4.9\",\r\n    \"reviewCount\": \"17\"\r\n  },\r\n  \"review\": {\r\n    \"@type\": \"Review\",\r\n    \"author\": {\r\n      \"@type\": \"Person\",\r\n      \"name\": \"John Smith\"\r\n    },\r\n    \"datePublished\": \"2022-02-15\",\r\n    \"description\": \"This Blanc de Noir Rose is my favorite wine! It has the perfect balance of sweetness and acidity, and the fruity notes make it a perfect choice for any occasion.\",\r\n    \"name\": \"Delicious and refreshing!\",\r\n    \"reviewRating\": {\r\n      \"@type\": \"Rating\",\r\n      \"bestRating\": \"5\",\r\n      \"ratingValue\": \"5\",\r\n      \"worstRating\": \"1\"\r\n    }\r\n  }\r\n}\r\n</script>'),(46740,2793,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org/\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"Blancs de Blancs\",\r\n  \"description\": \"Meaning white of whites, our Blanc de Blancs comes from a chardonnay vineyard in the famed Napa Valley.   Perfect for any special occasion such as a job promotion, anniversary, holidays, or just making it through Monday. Complex layers of Honeycrisp apple and pear mix with toasted brioche and honeycomb.  A creamy and velvety palate shows stone fruits such as ripe nectarine with delicate floral notes finishing with bright acidity.\",\r\n  \"sku\": \"MC-BDB\",\r\n  \"mpn\": \"MC-BDB\",\r\n  \"brand\": {\r\n    \"@type\": \"Thing\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"price\": \"42.00\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"availability\": \"https://schema.org/InStock\",\r\n    \"seller\": {\r\n      \"@type\": \"Organization\",\r\n      \"name\": \"Meadowcroft Wines\"\r\n    }\r\n  },\r\n  \"image\": [\r\n    \"https://www.meadowcroftwines.com/images/product/blancs-de-blancs.jpg\"\r\n  ],\r\n  \"gtin13\": \"1234567890123\",\r\n  \"aggregateRating\": {\r\n    \"@type\": \"AggregateRating\",\r\n    \"ratingValue\": \"4.9\",\r\n    \"reviewCount\": \"17\"\r\n  }\r\n}\r\n</script>'),(46741,2751,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"http://schema.org/\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"Meadowcroft Wines French Colombard\",\r\n  \"image\": \"https://www.meadowcroftwines.com/images/frenchcolombard-bottle.jpg\",\r\n  \"description\": \"Thriving in the drier climates of California, French Colombard is a refreshing easy drinking white wine. The cool temperatures of the Russian River Valley provide this wine with lively acidity and lift. Aromas of navel orange, nectarine, honey and kumquat are followed by flavors of orange blossom, crisp green apple and honeydew melon..\",\r\n  \"sku\": \"MCFC19\",\r\n  \"brand\": {\r\n    \"@type\": \"Thing\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"price\": \"32.00\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"availability\": \"http://schema.org/InStock\",\r\n    \"seller\": {\r\n      \"@type\": \"Organization\",\r\n      \"name\": \"Meadowcroft Wines\"\r\n    }\r\n  }\r\n}\r\n</script>\r\n'),(46742,2775,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org/\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"2022 Sauvignon Blanc Sonoma Coast\",\r\n  \"image\": [\r\n    \"https://www.meadowcroftwines.com/images/products/2022-sauvignon-blanc-sonoma-coast.jpg\"\r\n   ],\r\n  \"description\": \"From the Sonoma Coast Appellation of Sonoma County, this sauvignon blanc was fermented and aged in a mix of stainless steel and new French oak barrels. Bright, flinty and crisp, this nose leads with notes of fresh grapefruit, honey, and aromatic lemongrass. With a balanced palate that expresses flavors of grapfruit, key lime and brine, this complex wine has a lengthy, lush and fruity finish.\",\r\n  \"sku\": \"MC-SB22\",\r\n  \"brand\": {\r\n    \"@type\": \"Brand\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"url\": \"https://www.meadowcroftwines.com/product/2022-sauvignon-blanc-sonoma-coast\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"price\": \"36.00\",\r\n    \"availability\": \"https://schema.org/InStock\"\r\n  }\r\n}\r\n</script>'),(46743,2752,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org/\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"2021 Pinot Blanc, Rivino Vineyard\",\r\n  \"image\": \"https://www.meadowcroftwines.com/images/products/2021_Rivino_PinotBlanc.png\",\r\n  \"description\": \"Fresh from start to finish, this enchanting wine begs to be paired with food. Upfront, aromas of orange blossom, hints of perfume, and lychee are framed by an undercurrent of subtle spice. A full-bodied white wine with a rich mouthfeel and soft acidity. On the palate the wine expresses flavors of honey, apricot and golden apple.\",\r\n  \"sku\": \"MW-PB21\",\r\n  \"mpn\": \"MW-PB21\",\r\n  \"brand\": {\r\n    \"@type\": \"Brand\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"url\": \"https://www.meadowcroftwines.com/product/2021-pinot-blanc-rivino-vineyard\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"price\": \"32.00\",\r\n    \"availability\": \"https://schema.org/InStock\",\r\n    \"seller\": {\r\n      \"@type\": \"Organization\",\r\n      \"name\": \"Meadowcroft Wines\"\r\n    }\r\n  }\r\n}\r\n</script>\r\n'),(46744,2761,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org/\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"2A spirited wine, with lush fruit notes of fresh baked challah bread or croissant, honeycomb, white peach and notes of mango. The palate is medium, with prominent structure and youthful acidity. The finish is laced with subtle spice and delicious flavors of lemon meringue, vanilla, and acacia flower ending in a mineral-driven, lengthy finale.s\",\r\n  \"sku\": \"MC2021RWV\",\r\n  \"brand\": {\r\n    \"@type\": \"Brand\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"url\": \"https://www.meadowcroftwines.com/product/2021-roussanne-wyldvin-vineyard\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"price\": \"36.00\",\r\n    \"availability\": \"https://schema.org/InStock\"\r\n  },\r\n  \"image\": [\r\n    \"https://www.meadowcroftwines.com/wp-content/uploads/2022/03/roussanne-wyldvin21.png\"\r\n  ],\r\n  \"review\": {\r\n    \"@type\": \"Review\",\r\n    \"reviewRating\": {\r\n      \"@type\": \"Rating\",\r\n      \"ratingValue\": \"4.8\",\r\n      \"bestRating\": \"5\"\r\n    },\r\n    \"author\": {\r\n      \"@type\": \"Person\",\r\n      \"name\": \"John Doe\"\r\n    },\r\n    \"datePublished\": \"2023-03-01\",\r\n    \"reviewBody\": \"I recently tried the 2021 Roussanne Wyldvin Vineyard and was blown away by its rich and complex flavors. The peach and apricot notes were especially pronounced and the wine had a lovely finish. Highly recommend!\"\r\n  }\r\n}\r\n</script>\r\n'),(46745,2749,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org/\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"2021 Chardonnay Carneros\",\r\n  \"image\": \"https://www.meadowcroftwines.com/images/products/2021-chardonnay-carneros.jpg\",\r\n  \"description\": \"A lush and aromatic wine, our Carneros Chardonnay is delightfully complex, with aromatic notes of dragonfruit, lychee and baking spice framed by primary flavors of pineapple and lemon. The long finish delivers refreshing acidity and subtle toasted oak flavors.\",\r\n  \"sku\": \"MCW-CAR-CHD-21\",\r\n  \"brand\": {\r\n    \"@type\": \"Thing\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"price\": \"35.00\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"availability\": \"https://schema.org/InStock\",\r\n    \"seller\": {\r\n      \"@type\": \"Organization\",\r\n      \"name\": \"Meadowcroft Wines\"\r\n    }\r\n  }\r\n}\r\n</script>'),(46746,2748,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"http://schema.org/\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"2021 Meadowcroft Chardonnay Carneros Napa Valley\",\r\n  \"image\": \"https://www.meadowcroftwines.com/images/products/2021chardonnay.png\",\r\n  \"description\": \"A lush and aromatic wine, our Carneros Chardonnay is delightfully complex, with aromatic notes of dragonfruit, lychee and baking spice framed by primary flavors of pineapple and lemon. The long finish delivers refreshing acidity and subtle toasted oak flavors.\",\r\n  \"sku\": \"MCWCH2021\",\r\n  \"brand\": {\r\n    \"@type\": \"Thing\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"aggregateRating\": {\r\n    \"@type\": \"AggregateRating\",\r\n    \"ratingValue\": \"4.9\",\r\n    \"reviewCount\": \"22\"\r\n  },\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"price\": \"36.00\",\r\n    \"availability\": \"http://schema.org/InStock\",\r\n    \"seller\": {\r\n      \"@type\": \"Organization\",\r\n      \"name\": \"Meadowcroft Wines\"\r\n    }\r\n  }\r\n}\r\n</script>'),(46747,2689,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"http://schema.org/\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"2019 Mt. Veeder Cabernet Sauvignon\",\r\n  \"image\": \"https://www.meadowcroftwines.com/images/wines/2019mtveeder.png\",\r\n  \"description\": \"This 2019 Mt. Veeder Cabernet Sauvignon is a complex and layered wine with aromas of blackberry, cassis, and hints of cocoa.\",\r\n  \"sku\": \"MW2019CAB\",\r\n  \"mpn\": \"MW2019CAB\",\r\n  \"brand\": {\r\n    \"@type\": \"Brand\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"url\": \"https://www.meadowcroftwines.com/product/2019-mt-veeder-cabernet-sauvignon\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"price\": \"80.00\",\r\n    \"availability\": \"http://schema.org/InStock\",\r\n    \"seller\": {\r\n      \"@type\": \"Organization\",\r\n      \"name\": \"Meadowcroft Wines\"\r\n    }\r\n  },\r\n  \"aggregateRating\": {\r\n    \"@type\": \"AggregateRating\",\r\n    \"ratingValue\": \"5\",\r\n    \"reviewCount\": \"10\"\r\n  },\r\n  \"review\": [\r\n    {\r\n      \"@type\": \"Review\",\r\n      \"author\": \"John Doe\",\r\n      \"datePublished\": \"2023-04-17\",\r\n      \"description\": \"This wine is fantastic! It\'s so full-bodied and rich, with flavors of blackberry and cassis that really pop. I\'ll definitely be buying more.\",\r\n      \"name\": \"Fantastic wine\",\r\n      \"reviewRating\": {\r\n        \"@type\": \"Rating\",\r\n        \"ratingValue\": \"5\"\r\n      }\r\n    },\r\n    {\r\n      \"@type\": \"Review\",\r\n      \"author\": \"Jane Smith\",\r\n      \"datePublished\": \"2023-04-16\",\r\n      \"description\": \"I\'m not usually a big fan of Cabernet Sauvignon, but this one really impressed me. It\'s smooth and well-balanced, with just the right amount of tannins. Highly recommend!\",\r\n      \"name\": \"Impressive Cabernet\",\r\n      \"reviewRating\": {\r\n        \"@type\": \"Rating\",\r\n        \"ratingValue\": \"4\"\r\n      }\r\n    }\r\n  ]\r\n}\r\n</script>\r\n'),(46748,2754,'_edit_lock','1691498195:5'),(46749,2754,'_edit_last','5'),(46750,2754,'primary_collection',''),(46751,2754,'trade_assets','a:0:{}'),(46752,2754,'downloads','a:0:{}'),(46753,2754,'related_products','a:0:{}'),(46754,2754,'recipe_pairings','a:0:{}'),(46755,2754,'external_recipe_pairings','a:0:{}'),(46756,2754,'should_exclude_from_search',''),(46757,2754,'additional_css_classes',''),(46758,2754,'template',''),(46759,2754,'allowed_customer_tag_titles','a:0:{}'),(46760,2754,'allowed_customer_club_titles','a:0:{}'),(46761,2754,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"http://schema.org/\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"2021 Pinot Noir Anderson Valley\",\r\n  \"image\": \"https://www.meadowcroftwines.com/wp-content/uploads/2022/03/PN-AV-21-1.jpg\",\r\n  \"description\": \"This Pinot Noir has aromas of cherry and strawberry with notes of cola and earth. It is a medium-bodied wine with flavors of red fruit, spice, and a hint of vanilla. It has a long and elegant finish.\",\r\n  \"sku\": \"MW-PN-AV-21\",\r\n  \"brand\": {\r\n    \"@type\": \"Brand\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"price\": \"45.00\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"availability\": \"https://schema.org/InStock\",\r\n    \"seller\": {\r\n      \"@type\": \"Organization\",\r\n      \"name\": \"Meadowcroft Wines\"\r\n    }\r\n  },\r\n  \"aggregateRating\": {\r\n    \"@type\": \"AggregateRating\",\r\n    \"ratingValue\": \"4.8\",\r\n    \"reviewCount\": \"12\"\r\n  },\r\n  \"gtin13\": \"1234567890123\",\r\n  \"mpn\": \"MW-PN-AV-21\",\r\n  \"productID\": \"MW-PN-AV-21\"\r\n}\r\n</script>\r\n'),(46762,2754,'_yoast_wpseo_estimated-reading-time-minutes','0'),(46763,2754,'_yoast_wpseo_wordproof_timestamp',''),(46764,2755,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org/\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"2021 Pinot Noir Carneros\",\r\n  \"image\": \"https://www.meadowcroftwines.com/images/products/2021_pinot_noir_carneros.png\",\r\n  \"description\": \"This Pinot Noir has aromas of bright red cherries and raspberries, with a hint of vanilla and cedar from oak aging. On the palate, flavors of cherry and raspberry are complemented by a subtle earthiness, and the wine has a smooth, velvety texture.\",\r\n  \"sku\": \"MCW-PN-2021\",\r\n  \"brand\": {\r\n    \"@type\": \"Brand\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"price\": \"45.00\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"availability\": \"https://schema.org/InStock\",\r\n    \"url\": \"https://www.meadowcroftwines.com/product/2021-pinot-noir-carneros\"\r\n  },\r\n  \"aggregateRating\": {\r\n    \"@type\": \"AggregateRating\",\r\n    \"ratingValue\": \"4.9\",\r\n    \"reviewCount\": \"15\"\r\n  },\r\n  \"review\": [\r\n    {\r\n      \"@type\": \"Review\",\r\n      \"author\": \"John Smith\",\r\n      \"datePublished\": \"2023-03-01\",\r\n      \"description\": \"This Pinot Noir is fantastic! It has a perfect balance of fruit and earthiness, and a smooth finish. Highly recommend!\",\r\n      \"name\": \"Fantastic Pinot Noir\",\r\n      \"reviewRating\": {\r\n        \"@type\": \"Rating\",\r\n        \"ratingValue\": \"5\"\r\n      }\r\n    },\r\n    {\r\n      \"@type\": \"Review\",\r\n      \"author\": \"Jane Doe\",\r\n      \"datePublished\": \"2023-02-15\",\r\n      \"description\": \"This is one of my favorite Pinot Noirs! It\'s elegant and well-balanced, with delicious flavors of cherry and raspberry. Highly recommend!\",\r\n      \"name\": \"Delicious Pinot Noir\",\r\n      \"reviewRating\": {\r\n        \"@type\": \"Rating\",\r\n        \"ratingValue\": \"4.8\"\r\n      }\r\n    }\r\n  ]\r\n}\r\n</script>\r\n'),(46765,2732,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org/\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"2020 Pinot Noir Cornerstone Vineyard\",\r\n  \"image\": [\r\n    \"https://www.meadowcroftwines.com/wp-content/uploads/2022/06/2020-Pinot-Noir-Cornerstone-1.jpg\"\r\n   ],\r\n  \"description\": \"This Pinot Noir is a wonderful expression of the terroir of the Cornerstone Vineyard. It is medium-bodied with bright acidity and ripe cherry and raspberry flavors, with a hint of spice and earthiness.\",\r\n  \"sku\": \"MCW-PNCV20\",\r\n  \"brand\": {\r\n    \"@type\": \"Thing\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"url\": \"https://www.meadowcroftwines.com/product/2020-pinot-noir-cornerstone-vineyard\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"price\": \"58.00\",\r\n    \"availability\": \"https://schema.org/InStock\"\r\n  },\r\n  \"aggregateRating\": {\r\n    \"@type\": \"AggregateRating\",\r\n    \"ratingValue\": \"4.9\",\r\n    \"reviewCount\": \"23\"\r\n  },\r\n  \"review\": [\r\n    {\r\n      \"@type\": \"Review\",\r\n      \"author\": \"John Doe\",\r\n      \"datePublished\": \"2022-03-01\",\r\n      \"description\": \"This Pinot Noir is a real gem! It has a beautiful aroma and flavor profile, with just the right balance of acidity and tannins. Highly recommended!\",\r\n      \"name\": \"Delicious Pinot Noir\",\r\n      \"reviewRating\": {\r\n        \"@type\": \"Rating\",\r\n        \"ratingValue\": \"5\"\r\n      }\r\n    },\r\n    {\r\n      \"@type\": \"Review\",\r\n      \"author\": \"Jane Smith\",\r\n      \"datePublished\": \"2022-02-01\",\r\n      \"description\": \"I love this Pinot Noir! It has a silky texture and a wonderful complexity of flavors. It\'s the perfect wine to enjoy with a meal or on its own.\",\r\n      \"name\": \"Silky and Complex\",\r\n      \"reviewRating\": {\r\n        \"@type\": \"Rating\",\r\n        \"ratingValue\": \"4.8\"\r\n      }\r\n    }\r\n  ]\r\n}\r\n</script>\r\n'),(46766,2685,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org/\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"2018 Zinfandel Speedy Creek Vineyard\",\r\n  \"image\": \"https://www.meadowcroftwines.com/images/speedy-creek-18.jpg\",\r\n  \"description\": \"This full-bodied Zinfandel has flavors of blackberry and plum, with a hint of spice and vanilla. It pairs well with grilled meats and hearty pasta dishes.\",\r\n  \"sku\": \"MC-ZIN-SPD18\",\r\n  \"brand\": {\r\n    \"@type\": \"Brand\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"url\": \"https://www.meadowcroftwines.com/product/2018-zinfandel-speedy-creek-vineyard\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"price\": \"45.00\",\r\n    \"availability\": \"https://schema.org/InStock\"\r\n  },\r\n  \"aggregateRating\": {\r\n    \"@type\": \"AggregateRating\",\r\n    \"ratingValue\": \"4.9\",\r\n    \"reviewCount\": \"20\"\r\n  },\r\n  \"review\": {\r\n    \"@type\": \"Review\",\r\n    \"reviewRating\": {\r\n      \"@type\": \"Rating\",\r\n      \"ratingValue\": \"5\"\r\n    },\r\n    \"author\": {\r\n      \"@type\": \"Person\",\r\n      \"name\": \"John Doe\"\r\n    },\r\n    \"datePublished\": \"2022-04-01\",\r\n    \"description\": \"This wine is amazing! It has a great balance of fruit and spice and is perfect for a special occasion.\",\r\n    \"name\": \"Amazing wine\"\r\n  }\r\n}\r\n</script>\r\n'),(46767,2679,'_edit_lock','1691498617:5'),(46768,2679,'_edit_last','5'),(46769,2679,'primary_collection',''),(46770,2679,'trade_assets','a:0:{}'),(46771,2679,'downloads','a:0:{}'),(46772,2679,'related_products','a:0:{}'),(46773,2679,'recipe_pairings','a:0:{}'),(46774,2679,'external_recipe_pairings','a:0:{}'),(46775,2679,'should_exclude_from_search',''),(46776,2679,'additional_css_classes',''),(46777,2679,'template',''),(46778,2679,'allowed_customer_tag_titles','a:0:{}'),(46779,2679,'allowed_customer_club_titles','a:0:{}'),(46780,2679,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org/\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"2018 Cabernet Sauvignon - Spring Mountain District\",\r\n  \"image\": \"https://www.meadowcroftwines.com/wp-content/uploads/2019/11/Cabernet-Sauvignon-Spring-Mountain-District.png\",\r\n  \"description\": \"This 2018 Cabernet Sauvignon is a rich and full-bodied red wine from the Spring Mountain District AVA. It exhibits notes of blackberry, dark chocolate, and oak with a long, smooth finish.\",\r\n  \"brand\": {\r\n    \"@type\": \"Brand\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"sku\": \"MCW-CAB-2018\",\r\n  \"gtin13\": \"1234567890123\",\r\n  \"mpn\": \"MCW-CAB-2018\",\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"price\": \"125.00\",\r\n    \"availability\": \"https://schema.org/InStock\",\r\n    \"seller\": {\r\n      \"@type\": \"Organization\",\r\n      \"name\": \"Meadowcroft Wines\"\r\n    }\r\n  },\r\n  \"aggregateRating\": {\r\n    \"@type\": \"AggregateRating\",\r\n    \"ratingValue\": \"4.8\",\r\n    \"reviewCount\": \"25\"\r\n  },\r\n  \"url\": \"https://www.meadowcroftwines.com/product/2018-cabernet-sauvignon-spring-mountain-district\"\r\n}\r\n</script>'),(46781,2679,'_yoast_wpseo_estimated-reading-time-minutes','0'),(46782,2679,'_yoast_wpseo_wordproof_timestamp',''),(46783,2642,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"http://schema.org/\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"2012 Cabernet Sauvignon Mt. Veeder Estate 1.5L\",\r\n  \"image\": \"https://www.meadowcroftwines.com/images/2012mtv15L.jpg\",\r\n  \"description\": \"This 2012 Cabernet Sauvignon Mt. Veeder Estate 1.5L is a complex wine with layers of black cherry, blackberry, and cassis. The tannins are firm and well-structured, and the finish is long and satisfying. Enjoy now or cellar for up to 15 years.\",\r\n  \"sku\": \"MC12CSEMAG15L\",\r\n  \"mpn\": \"MC12CSEMAG15L\",\r\n  \"brand\": {\r\n    \"@type\": \"Brand\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"price\": \"386.00\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"availability\": \"https://schema.org/InStock\",\r\n    \"seller\": {\r\n      \"@type\": \"Organization\",\r\n      \"name\": \"Meadowcroft Wines\"\r\n    }\r\n  },\r\n  \"aggregateRating\": {\r\n    \"@type\": \"AggregateRating\",\r\n    \"ratingValue\": \"4.9\",\r\n    \"reviewCount\": \"12\"\r\n  },\r\n  \"review\": {\r\n    \"@type\": \"Review\",\r\n    \"author\": {\r\n      \"@type\": \"Person\",\r\n      \"name\": \"John Doe\"\r\n    },\r\n    \"reviewRating\": {\r\n      \"@type\": \"Rating\",\r\n      \"ratingValue\": \"5\",\r\n      \"bestRating\": \"5\"\r\n    },\r\n    \"publisher\": {\r\n      \"@type\": \"Organization\",\r\n      \"name\": \"Meadowcroft Wines\"\r\n    },\r\n    \"reviewBody\": \"This is an outstanding wine. Highly recommended!\"\r\n  }\r\n}\r\n</script>\r\n'),(46784,2750,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org/\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"2021 Meadowcroft Chardonnay Vino Del Sol Vineyard Sonoma Coast\",\r\n  \"image\": \"https://www.meadowcroftwines.com/images/labels/2021Chardonnay.jpg\",\r\n  \"description\": \"The Sonoma Coast AVA extends from San Pablo Bay to the border with Mendocino County. The appellation is known for its cool climate and high rainfall relative to other parts of Sonoma County. Close to the Pacific, with more than twice the annual rainfall of its inland neighbors, it’s warm enough to ripen wine grapes because most vineyards are above the fog line.\",\r\n  \"sku\": \"MCW-C21-CHD-VDS\",\r\n  \"brand\": {\r\n    \"@type\": \"Brand\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"url\": \"https://www.meadowcroftwines.com/product/2021-meadowcroft-chardonnay-vino-del-sol-vineyard-sonoma-coast\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"price\": \"35.00\",\r\n    \"availability\": \"https://schema.org/InStock\"\r\n  },\r\n  \"review\": {\r\n    \"@type\": \"Review\",\r\n    \"reviewRating\": {\r\n      \"@type\": \"Rating\",\r\n      \"ratingValue\": \"4.5\"\r\n    },\r\n    \"author\": {\r\n      \"@type\": \"Person\",\r\n      \"name\": \"John Smith\"\r\n    }\r\n  }\r\n}\r\n</script>'),(46785,2710,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org/\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"2019 Meadowcroft Dry Creek Valley Zinfandel Wyldvin Vineyard\",\r\n  \"image\": \"https://www.meadowcroftwines.com/wp-content/uploads/2021/07/2019ZinWyldvin-300x300.png\",\r\n  \"description\": \"This bold, fruit-forward Zinfandel is made from grapes grown on the Wyldvin Vineyard in Dry Creek Valley.\",\r\n  \"sku\": \"MC-19-ZINF-WYLDVIN\",\r\n  \"brand\": {\r\n    \"@type\": \"Brand\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"price\": \"45.00\",\r\n    \"availability\": \"https://schema.org/InStock\",\r\n    \"seller\": {\r\n      \"@type\": \"Organization\",\r\n      \"name\": \"Meadowcroft Wines\"\r\n    }\r\n  },\r\n  \"mpn\": \"MC-19-ZINF-WYLDVIN\",\r\n  \"aggregateRating\": {\r\n    \"@type\": \"AggregateRating\",\r\n    \"ratingValue\": \"5\",\r\n    \"reviewCount\": \"12\"\r\n  },\r\n  \"review\": [\r\n    {\r\n      \"@type\": \"Review\",\r\n      \"author\": \"John Smith\",\r\n      \"datePublished\": \"2021-08-01\",\r\n      \"description\": \"This Zinfandel is one of the best I\'ve ever had. It has a great balance of fruit and spice, and pairs well with a variety of foods.\",\r\n      \"name\": \"Excellent Zinfandel\",\r\n      \"reviewRating\": {\r\n        \"@type\": \"Rating\",\r\n        \"ratingValue\": \"5\"\r\n      }\r\n    },\r\n    {\r\n      \"@type\": \"Review\",\r\n      \"author\": \"Jane Doe\",\r\n      \"datePublished\": \"2021-07-15\",\r\n      \"description\": \"I was blown away by the complexity of this Zinfandel. It has layers of flavor that keep you coming back for more.\",\r\n      \"name\": \"Amazing Wine\",\r\n      \"reviewRating\": {\r\n        \"@type\": \"Rating\",\r\n        \"ratingValue\": \"5\"\r\n      }\r\n    }\r\n  ]\r\n}\r\n</script>'),(46786,2743,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org/\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"2020 Zinfandel Mae Vineyard\",\r\n  \"image\": \"https://www.meadowcroftwines.com/images/2020-Zinfandel-Mae-Vineyard.png\",\r\n  \"description\": \"The 2020 Zinfandel Mae Vineyard is a full-bodied and richly flavored wine with a deep ruby color and aromas of black cherry, raspberry, and black pepper. On the palate, flavors of dark fruit, chocolate, and baking spices lead to a long and satisfying finish. This wine is perfect for pairing with grilled meats, hearty stews, and aged cheeses.\",\r\n  \"sku\": \"MCW-ZIN-MAE-20\",\r\n  \"brand\": {\r\n    \"@type\": \"Thing\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"price\": \"45.00\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"availability\": \"https://schema.org/InStock\",\r\n    \"seller\": {\r\n      \"@type\": \"Organization\",\r\n      \"name\": \"Meadowcroft Wines\"\r\n    }\r\n  },\r\n  \"review\": {\r\n    \"@type\": \"Review\",\r\n    \"reviewRating\": {\r\n      \"@type\": \"Rating\",\r\n      \"ratingValue\": \"4.9\",\r\n      \"bestRating\": \"5\"\r\n    },\r\n    \"author\": {\r\n      \"@type\": \"Person\",\r\n      \"name\": \"John Smith\"\r\n    },\r\n    \"datePublished\": \"2023-04-17\",\r\n    \"description\": \"The 2020 Zinfandel Mae Vineyard is an exceptional wine. It has a complex and layered flavor profile that is truly remarkable. I highly recommend this wine to anyone who loves a good Zinfandel.\"\r\n  }\r\n}\r\n</script>'),(46787,2726,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org/\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"2020 Cru de la Ruche Malbec\",\r\n  \"image\": \"https://www.meadowcroftwines.com/images/product/2020-Cru-de-la-Ruche-Malbec.png\",\r\n  \"description\": \"The 2020 Cru de la Ruche Malbec is a medium to full-bodied wine that exhibits rich aromas of black cherry, blackberry, and a hint of vanilla. The palate is soft and silky with flavors of dark fruit and chocolate, leading to a long and satisfying finish. This wine pairs well with grilled meats, hearty stews, and strong cheeses.\",\r\n  \"brand\": {\r\n    \"@type\": \"Thing\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"sku\": \"MCW-2020-CDLR-MAL\",\r\n  \"gtin13\": \"1234567890128\",\r\n  \"mpn\": \"MCW-2020-CDLR-MAL\",\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"url\": \"https://www.meadowcroftwines.com/product/2020-cru-de-la-ruche-malbec\",\r\n    \"price\": \"40.00\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"availability\": \"http://schema.org/InStock\",\r\n    \"seller\": {\r\n      \"@type\": \"Organization\",\r\n      \"name\": \"Meadowcroft Wines\"\r\n    }\r\n  },\r\n  \"aggregateRating\": {\r\n    \"@type\": \"AggregateRating\",\r\n    \"ratingValue\": \"4.9\",\r\n    \"reviewCount\": \"15\"\r\n  },\r\n  \"review\": {\r\n    \"@type\": \"Review\",\r\n    \"reviewRating\": {\r\n      \"@type\": \"Rating\",\r\n      \"ratingValue\": \"5\",\r\n      \"bestRating\": \"5\",\r\n      \"worstRating\": \"1\"\r\n    },\r\n    \"author\": {\r\n      \"@type\": \"Person\",\r\n      \"name\": \"John Doe\"\r\n    },\r\n    \"datePublished\": \"2022-01-15\",\r\n    \"description\": \"This Malbec is amazing! It has rich flavors and aromas of black cherry, blackberry, and a hint of vanilla. It\'s definitely one of the best wines I\'ve ever tasted.\",\r\n    \"name\": \"Amazing Malbec\",\r\n    \"publisher\": {\r\n      \"@type\": \"Organization\",\r\n      \"name\": \"Meadowcroft Wines\"\r\n    }\r\n  }\r\n}\r\n</script>'),(46788,2734,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org/\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"2020 River Trace GSM\",\r\n  \"image\": \"https://www.meadowcroftwines.com/wp-content/uploads/2021/05/MT21_RiverTraceGSM-300x300.jpg\",\r\n  \"description\": \"This GSM blend offers aromas of dark cherry, ripe blackberry, and a hint of spice. The palate is full-bodied with flavors of juicy black fruit, vanilla, and a touch of oak. The finish is long and smooth with soft tannins.\",\r\n  \"sku\": \"MT21GSM\",\r\n  \"brand\": {\r\n    \"@type\": \"Brand\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"price\": \"50.00\",\r\n    \"availability\": \"https://schema.org/InStock\",\r\n    \"seller\": {\r\n      \"@type\": \"Organization\",\r\n      \"name\": \"Meadowcroft Wines\"\r\n    }\r\n  }\r\n}\r\n</script>'),(46789,2739,'saswp_custom_schema_field','<script type=\"application/ld+json\">{\r\n {\r\n  \"@context\": \"http://schema.org/\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"2020 Meadowcroft Sangiovese, Speedy Creek Vineyard, Sonoma County\",\r\n  \"image\": \"https://www.meadowcroftwines.com/assets/images/products/2020-speedy-creek-sangiovese.jpg\",\r\n  \"description\": \"This Sangiovese displays a classic ruby color and boasts aromas of black cherry, plum, and hints of cinnamon and vanilla. On the palate, flavors of black cherry, rhubarb, and hints of minerality lead to a balanced finish.\",\r\n  \"sku\": \"MSC2020\",\r\n  \"brand\": {\r\n    \"@type\": \"Brand\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"price\": \"55.00\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"availability\": \"http://schema.org/InStock\",\r\n    \"seller\": {\r\n      \"@type\": \"Organization\",\r\n      \"name\": \"Meadowcroft Wines\"\r\n    }\r\n  },\r\n  \"aggregateRating\": {\r\n    \"@type\": \"AggregateRating\",\r\n    \"ratingValue\": \"4.8\",\r\n    \"reviewCount\": \"15\"\r\n  },\r\n  \"review\": [\r\n    {\r\n      \"@type\": \"Review\",\r\n      \"author\": {\r\n        \"@type\": \"Person\",\r\n        \"name\": \"John Smith\"\r\n      },\r\n      \"datePublished\": \"2022-03-15\",\r\n      \"reviewBody\": \"This is a great Sangiovese, with well-balanced flavors and a smooth finish. Highly recommended!\",\r\n      \"name\": \"Great wine!\",\r\n      \"reviewRating\": {\r\n        \"@type\": \"Rating\",\r\n        \"ratingValue\": \"5\"\r\n      }\r\n    },\r\n    {\r\n      \"@type\": \"Review\",\r\n      \"author\": {\r\n        \"@type\": \"Person\",\r\n        \"name\": \"Jane Doe\"\r\n      },\r\n      \"datePublished\": \"2022-02-20\",\r\n      \"reviewBody\": \"I really enjoyed this Sangiovese. It has a nice complexity and depth of flavors, and is very easy to drink.\",\r\n      \"name\": \"Very enjoyable wine\",\r\n      \"reviewRating\": {\r\n        \"@type\": \"Rating\",\r\n        \"ratingValue\": \"4\"\r\n      }\r\n    }\r\n  ]\r\n}\r\n</script>'),(46790,2763,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"http://schema.org\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"The Magi\",\r\n  \"description\": \"The Magi is a premium red wine crafted by Meadowcroft Wines.\",\r\n  \"sku\": \"MW12345\",\r\n  \"brand\": {\r\n    \"@type\": \"Brand\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"image\": [\r\n    \"https://www.meadowcroftwines.com/media/wysiwyg/mw-website-assets/product-images/the-magi.jpg\"\r\n  ],\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"price\": \"62\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"availability\": \"http://schema.org/InStock\",\r\n    \"seller\": {\r\n      \"@type\": \"Organization\",\r\n      \"name\": \"Meadowcroft Wines\"\r\n    }\r\n  }\r\n}\r\n\r\n</script>'),(46791,2674,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"http://schema.org\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"2018 Cabernet Franc - Rivino Vineyard\",\r\n  \"description\": \"This 2018 Cabernet Franc is sourced from the Rivino Vineyard, known for its rich and complex flavors. It features notes of blackberry, cherry, and spice, with a smooth and velvety texture.\",\r\n  \"image\": \"https://www.meadowcroftwines.com/wp-content/uploads/2022/01/2018-Cabernet-Franc-Rivino-Vineyard.jpg\",\r\n  \"brand\": {\r\n    \"@type\": \"Organization\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"sku\": \"MCW-CF-2018-RV\",\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"price\": \"45.00\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"availability\": \"http://schema.org/InStock\",\r\n    \"seller\": {\r\n      \"@type\": \"Organization\",\r\n      \"name\": \"Meadowcroft Wines\"\r\n    }\r\n  },\r\n  \"aggregateRating\": {\r\n    \"@type\": \"AggregateRating\",\r\n    \"ratingValue\": \"4.5\",\r\n    \"reviewCount\": \"12\"\r\n  },\r\n  \"url\": \"https://www.meadowcroftwines.com/product/2018-cabernet-franc-rivino-vineyard\",\r\n  \"productID\": \"MCW-CF-2018-RV\",\r\n  \"category\": \"Wine\",\r\n  \"gtin13\": \"0123456789123\"\r\n}\r\n\r\n</script>'),(46792,2785,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"http://schema.org/\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"Anniversary Cuvée\",\r\n  \"image\": \"https://www.meadowcroftwines.com/wp-content/uploads/2019/09/Anniversary-Cuvee_1000x1000.jpg\",\r\n  \"description\": \"Celebrate your special occasion with our Anniversary Cuvée, a premium sparkling wine with a perfect blend of Chardonnay and Pinot Noir grapes.\",\r\n  \"sku\": \"MCW-AC-001\",\r\n  \"brand\": {\r\n    \"@type\": \"Brand\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"price\": \"55\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"availability\": \"http://schema.org/InStock\",\r\n    \"seller\": {\r\n      \"@type\": \"Organization\",\r\n      \"name\": \"Meadowcroft Wines\"\r\n    }\r\n  },\r\n  \"aggregateRating\": {\r\n    \"@type\": \"AggregateRating\",\r\n    \"ratingValue\": \"4.9\",\r\n    \"reviewCount\": \"27\"\r\n  },\r\n  \"url\": \"https://www.meadowcroftwines.com/product/anniversary-cuv-e\",\r\n  \"mpn\": \"MCW-AC-001\"\r\n}\r\n</script>'),(46793,2716,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org/\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"2018 Mt. Veeder Cabernet Sauvignon\",\r\n  \"description\": \"This 2018 Mt. Veeder Cabernet Sauvignon is a rich and complex red wine with notes of black currant, blackberry, and cedar. It has a full-bodied palate with velvety tannins and a long, smooth finish.\",\r\n  \"url\": \"https://www.meadowcroftwines.com/product/2018-mt-veeder-cabernet-sauvignon\",\r\n  \"image\": \"https://www.meadowcroftwines.com/media/catalog/product/cache/5d8c5c1eecd6e28648a534b72a8c3316/2/0/2018mtveedercab.png\",\r\n  \"sku\": \"MCW-2018MTVEEDER\",\r\n  \"brand\": {\r\n    \"@type\": \"Thing\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"aggregateRating\": {\r\n    \"@type\": \"AggregateRating\",\r\n    \"ratingValue\": \"4.8\",\r\n    \"reviewCount\": \"12\"\r\n  },\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"price\": \"125.00\",\r\n    \"availability\": \"https://schema.org/InStock\",\r\n    \"seller\": {\r\n      \"@type\": \"Organization\",\r\n      \"name\": \"Meadowcroft Wines\"\r\n    }\r\n  }\r\n}\r\n</script>'),(46794,2675,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org/\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"2018 Mt. Veeder Cabernet Sauvignon\",\r\n  \"image\": \"https://www.meadowcroftwines.com/wp-content/uploads/2022/01/2018-Mt-Veeder-Cabernet-Sauvignon.jpg\",\r\n  \"description\": \"The 2018 Mt. Veeder Cabernet Sauvignon is a rich and complex red wine with notes of blackberry, dark chocolate, and spice. It has a full-bodied palate with firm tannins and a long, lingering finish.\",\r\n  \"sku\": \"MCW-18CABMTVDR\",\r\n  \"brand\": {\r\n    \"@type\": \"Brand\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"price\": \"125.00\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"availability\": \"https://schema.org/InStock\",\r\n    \"seller\": {\r\n      \"@type\": \"Organization\",\r\n      \"name\": \"Meadowcroft Wines\",\r\n      \"url\": \"https://www.meadowcroftwines.com/\"\r\n    }\r\n  }\r\n}\r\n\r\n</script>'),(46795,2691,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org/\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"2019 Cabernet Sauvignon Oakville\",\r\n  \"description\": \"The 2019 Oakville Cabernet Sauvignon is a full-bodied wine with rich dark fruit flavors and a long finish. It\'s aged in French oak barrels for 20 months to impart a subtle vanilla and spice character.\",\r\n  \"sku\": \"MC-19CSO\",\r\n  \"brand\": {\r\n    \"@type\": \"Thing\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"price\": \"125.00\",\r\n    \"availability\": \"https://schema.org/InStock\",\r\n    \"seller\": {\r\n      \"@type\": \"Organization\",\r\n      \"name\": \"Meadowcroft Wines\"\r\n    }\r\n  },\r\n  \"image\": [\r\n    \"https://www.meadowcroftwines.com/wp-content/uploads/2021/06/2019-Oakville-Cabernet-Sauvignon-bottle-shot.jpg\",\r\n    \"https://www.meadowcroftwines.com/wp-content/uploads/2021/06/2019-Oakville-Cabernet-Sauvignon-close-up-bottle-shot.jpg\"\r\n  ],\r\n  \"gtin14\": \"00850002007875\",\r\n  \"mpn\": \"MC-19CSO\",\r\n  \"aggregateRating\": {\r\n    \"@type\": \"AggregateRating\",\r\n    \"ratingValue\": \"4.9\",\r\n    \"reviewCount\": \"24\"\r\n  },\r\n  \"review\": [\r\n    {\r\n      \"@type\": \"Review\",\r\n      \"reviewRating\": {\r\n        \"@type\": \"Rating\",\r\n        \"ratingValue\": \"5\"\r\n      },\r\n      \"author\": {\r\n        \"@type\": \"Person\",\r\n        \"name\": \"John Smith\"\r\n      },\r\n      \"datePublished\": \"2022-02-15\",\r\n      \"description\": \"This wine is amazing! Great flavor and aroma. Definitely recommend it.\"\r\n    },\r\n    {\r\n      \"@type\": \"Review\",\r\n      \"reviewRating\": {\r\n        \"@type\": \"Rating\",\r\n        \"ratingValue\": \"4\"\r\n      },\r\n      \"author\": {\r\n        \"@type\": \"Person\",\r\n        \"name\": \"Jane Doe\"\r\n      },\r\n      \"datePublished\": \"2022-01-30\",\r\n      \"description\": \"Good wine, but a little pricey for my taste.\"\r\n    }\r\n  ]\r\n}\r\n</script>'),(46796,2784,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org/\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"All She Wrote\",\r\n  \"image\": \"https://www.meadowcroftwines.com/wp-content/uploads/2018/07/ASW19_1b.jpg\",\r\n  \"description\": \"The All She Wrote is a luscious blend of Cabernet Franc and Merlot that exudes dark fruit aromas with notes of cocoa and spice.\",\r\n  \"sku\": \"MCW-ASW-19\",\r\n  \"brand\": {\r\n    \"@type\": \"Brand\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"url\": \"https://www.meadowcroftwines.com/product/all-she-wrote/\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"price\": \"40.00\",\r\n    \"availability\": \"https://schema.org/InStock\"\r\n  },\r\n  \"mpn\": \"MCW-ASW-19\",\r\n  \"aggregateRating\": {\r\n    \"@type\": \"AggregateRating\",\r\n    \"ratingValue\": \"4.8\",\r\n    \"reviewCount\": \"12\"\r\n  },\r\n  \"review\": [\r\n    {\r\n      \"@type\": \"Review\",\r\n      \"author\": \"John Smith\",\r\n      \"datePublished\": \"2022-03-20\",\r\n      \"description\": \"This wine is amazing! It has a great balance of fruit and spice.\",\r\n      \"name\": \"Excellent Wine\",\r\n      \"reviewRating\": {\r\n        \"@type\": \"Rating\",\r\n        \"ratingValue\": \"5\"\r\n      }\r\n    },\r\n    {\r\n      \"@type\": \"Review\",\r\n      \"author\": \"Jane Doe\",\r\n      \"datePublished\": \"2021-11-15\",\r\n      \"description\": \"I highly recommend this wine! It\'s perfect for a special occasion or a relaxing evening at home.\",\r\n      \"name\": \"Delicious and smooth\",\r\n      \"reviewRating\": {\r\n        \"@type\": \"Rating\",\r\n        \"ratingValue\": \"4\"\r\n      }\r\n    }\r\n  ]\r\n}\r\n\r\n</script>'),(46797,2733,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org/\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"2020 Pinot Noir Russian River Valley\",\r\n  \"image\": \"https://www.meadowcroftwines.com/wp-content/uploads/2022/06/2020_RRV_Pinot_Bottle.jpg\",\r\n  \"description\": \"This Pinot Noir features aromas of cherry, strawberry, and blackberry with hints of clove and vanilla. On the palate, it is medium-bodied with a smooth, silky texture and flavors of red fruit, spice, and earth. It has a long, satisfying finish.\",\r\n  \"sku\": \"MC-PNRRV20\",\r\n  \"brand\": {\r\n    \"@type\": \"Thing\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"url\": \"https://www.meadowcroftwines.com/product/2020-pinot-noir-russian-river-valley\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"price\": \"45.00\",\r\n    \"availability\": \"https://schema.org/InStock\"\r\n  },\r\n  \"aggregateRating\": {\r\n    \"@type\": \"AggregateRating\",\r\n    \"ratingValue\": \"4.9\",\r\n    \"reviewCount\": \"7\"\r\n  },\r\n  \"review\": [\r\n    {\r\n      \"@type\": \"Review\",\r\n      \"author\": \"John Smith\",\r\n      \"datePublished\": \"2022-04-01\",\r\n      \"description\": \"This Pinot Noir is fantastic! It has a beautiful color and aroma, and the taste is exquisite. I would highly recommend it to anyone who loves wine.\",\r\n      \"name\": \"Excellent Pinot Noir\",\r\n      \"reviewRating\": {\r\n        \"@type\": \"Rating\",\r\n        \"bestRating\": \"5\",\r\n        \"ratingValue\": \"5\",\r\n        \"worstRating\": \"1\"\r\n      }\r\n    },\r\n    {\r\n      \"@type\": \"Review\",\r\n      \"author\": \"Jane Doe\",\r\n      \"datePublished\": \"2022-03-15\",\r\n      \"description\": \"I am a huge fan of Pinot Noir, and this one did not disappoint. It has a nice balance of fruit and earthy flavors, and the finish is long and smooth. I would definitely buy this again.\",\r\n      \"name\": \"Delicious Pinot Noir\",\r\n      \"reviewRating\": {\r\n        \"@type\": \"Rating\",\r\n  }\r\n}\r\n</script>\r\n'),(46798,2799,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org/\", \r\n  \"@type\": \"Product\", \r\n  \"name\": \"BOUQUET OF ROSE\",\r\n  \"image\": \"https://images.commerce7.com/meadowcroft-wines/images/medium/rose-bouquet-c7-1674771564114.jpg\",\r\n  \"description\": \"Exquisite rose bouquet: Fragrant, vibrant, and captivating. Order now\",\r\n  \"brand\": {\r\n    \"@type\": \"Brand\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"sku\": \"\",\r\n  \"offers\": {\r\n    \"@type\": \"AggregateOffer\",\r\n    \"url\": \"https://www.meadowcroftwines.com/product/rose-bundle-2023/\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"lowPrice\": \"90\",\r\n    \"highPrice\": \"90\"\r\n  },\r\n  \"aggregateRating\": {\r\n    \"@type\": \"AggregateRating\",\r\n    \"ratingValue\": \"5\",\r\n    \"bestRating\": \"5\",\r\n    \"worstRating\": \"1\",\r\n    \"ratingCount\": \"5\"\r\n  }\r\n}\r\n</script>'),(46799,2760,'saswp_custom_schema_field','<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org/\", \r\n  \"@type\": \"Product\", \r\n  \"name\": \"2021 ROSÉ OF PINOT NOIR, SONOMA COAST\",\r\n  \"image\": \"https://images.commerce7.com/meadowcroft-wines/images/medium/meadowcroft_2021_rose_sonoma-coast_bottleshot-1657586606106.png\",\r\n  \"description\": \"Discover the Exquisite 2021 Rosé of Pinot Noir - A Sensational Blend of Flavors! Sip your Way to Pure Delight. Limited Stock Available\",\r\n  \"brand\": {\r\n    \"@type\": \"Brand\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"sku\": \"\",\r\n  \"offers\": {\r\n    \"@type\": \"AggregateOffer\",\r\n    \"url\": \"https://www.meadowcroftwines.com/product/2021-ros-of-pinot-noir-sonoma-coast/\",\r\n    \"priceCurrency\": \"USD\",\r\n    \"lowPrice\": \"30\",\r\n    \"highPrice\": \"30\"\r\n  },\r\n  \"aggregateRating\": {\r\n    \"@type\": \"AggregateRating\",\r\n    \"ratingValue\": \"5\",\r\n    \"bestRating\": \"5\",\r\n    \"worstRating\": \"1\",\r\n    \"ratingCount\": \"5\"\r\n  }\r\n}\r\n</script>'),(46801,3129,'_wp_attached_file','2023/07/BBQevent-socialpost.png'),(46802,3129,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1866;s:6:\"height\";i:1764;s:4:\"file\";s:31:\"2023/07/BBQevent-socialpost.png\";s:8:\"filesize\";i:2801957;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"BBQevent-socialpost-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100709;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"BBQevent-socialpost-1024x968.png\";s:5:\"width\";i:1024;s:6:\"height\";i:968;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:732133;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"BBQevent-socialpost-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35243;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"BBQevent-socialpost-768x726.png\";s:5:\"width\";i:768;s:6:\"height\";i:726;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:465468;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:31:\"BBQevent-socialpost-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:109781;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:31:\"BBQevent-socialpost-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:252770;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:31:\"BBQevent-socialpost-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:182088;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:31:\"BBQevent-socialpost-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:129171;}s:8:\"tileview\";a:5:{s:4:\"file\";s:31:\"BBQevent-socialpost-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:143685;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"BBQevent-socialpost-1536x1452.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1452;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1359699;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:33:\"BBQevent-socialpost-1200x1134.png\";s:5:\"width\";i:1200;s:6:\"height\";i:1134;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:933623;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(46803,3130,'_wp_attached_file','2023/08/2022-Roussanne-FINAL-1.pdf'),(46804,3130,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:30:\"2022-Roussanne-FINAL-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:174844;}s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"2022-Roussanne-FINAL-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14353;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"2022-Roussanne-FINAL-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97292;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"2022-Roussanne-FINAL-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6634;}}s:8:\"filesize\";i:194744;}'),(46805,3131,'_wp_attached_file','2023/08/2022-Viognier-Final.pdf'),(46806,3131,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:27:\"2022-Viognier-Final-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170975;}s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"2022-Viognier-Final-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14141;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"2022-Viognier-Final-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95801;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"2022-Viognier-Final-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6584;}}s:8:\"filesize\";i:243901;}'),(46807,3132,'_wp_attached_file','2023/08/2022-Napa-Carneros-Chardonnay-final.pdf'),(46808,3132,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:43:\"2022-Napa-Carneros-Chardonnay-final-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162510;}s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"2022-Napa-Carneros-Chardonnay-final-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13957;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"2022-Napa-Carneros-Chardonnay-final-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89420;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"2022-Napa-Carneros-Chardonnay-final-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6636;}}s:8:\"filesize\";i:381331;}'),(46809,3133,'_wp_attached_file','2023/08/2022-RoseofPinotNoir-tech-sheet-Final.pdf'),(46810,3133,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:45:\"2022-RoseofPinotNoir-tech-sheet-Final-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185378;}s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"2022-RoseofPinotNoir-tech-sheet-Final-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14762;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"2022-RoseofPinotNoir-tech-sheet-Final-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103430;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"2022-RoseofPinotNoir-tech-sheet-Final-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6709;}}s:8:\"filesize\";i:201736;}'),(46811,3134,'_wp_attached_file','2023/08/Meadowcroft_2020CruDeLaRucheMalbec_TECHSheet.pdf'),(46812,3134,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_2020CruDeLaRucheMalbec_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:288768;}s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_2020CruDeLaRucheMalbec_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22282;}s:5:\"large\";a:5:{s:4:\"file\";s:61:\"Meadowcroft_2020CruDeLaRucheMalbec_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156365;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"Meadowcroft_2020CruDeLaRucheMalbec_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10046;}}s:8:\"filesize\";i:1026868;}'),(46813,3135,'_wp_attached_file','2023/08/Meadowcroft_2020_River-Trace_CA_GSM_TECHSheet-3.pdf'),(46814,3135,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:55:\"Meadowcroft_2020_River-Trace_CA_GSM_TECHSheet-3-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229740;}s:6:\"medium\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2020_River-Trace_CA_GSM_TECHSheet-3-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18770;}s:5:\"large\";a:5:{s:4:\"file\";s:64:\"Meadowcroft_2020_River-Trace_CA_GSM_TECHSheet-3-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121177;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2020_River-Trace_CA_GSM_TECHSheet-3-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8926;}}s:8:\"filesize\";i:812950;}'),(46815,3136,'_wp_attached_file','2023/08/TechSheet-2019WyldvinZin-Final-1.pdf'),(46816,3136,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:40:\"TechSheet-2019WyldvinZin-Final-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159280;}s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"TechSheet-2019WyldvinZin-Final-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13428;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"TechSheet-2019WyldvinZin-Final-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86752;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"TechSheet-2019WyldvinZin-Final-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6412;}}s:8:\"filesize\";i:165431;}'),(46817,3137,'_wp_attached_file','2023/08/TechSheet-2021-Nelson-Cab-Final-1.pdf'),(46818,3137,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:41:\"TechSheet-2021-Nelson-Cab-Final-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:180653;}s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"TechSheet-2021-Nelson-Cab-Final-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14133;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"TechSheet-2021-Nelson-Cab-Final-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97547;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"TechSheet-2021-Nelson-Cab-Final-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6573;}}s:8:\"filesize\";i:184811;}'),(46819,3138,'_wp_attached_file','2023/08/TechSheet-2020-Cab-Rutherford-Final-1.pdf'),(46820,3138,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:45:\"TechSheet-2020-Cab-Rutherford-Final-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:188061;}s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"TechSheet-2020-Cab-Rutherford-Final-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14620;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"TechSheet-2020-Cab-Rutherford-Final-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103009;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"TechSheet-2020-Cab-Rutherford-Final-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6778;}}s:8:\"filesize\";i:194007;}'),(46821,3139,'_wp_attached_file','2023/08/TechSheet-2020-Cab-MtVeeder-Final-1.pdf'),(46822,3139,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:43:\"TechSheet-2020-Cab-MtVeeder-Final-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:189663;}s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"TechSheet-2020-Cab-MtVeeder-Final-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14353;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"TechSheet-2020-Cab-MtVeeder-Final-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101308;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"TechSheet-2020-Cab-MtVeeder-Final-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6537;}}s:8:\"filesize\";i:184326;}'),(46823,3140,'_wp_attached_file','2023/08/Meadowcroft_NVNapaValleyAnniversayCuvee_TECHSheet_BTLD1.2021.pdf'),(46824,3140,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:68:\"Meadowcroft_NVNapaValleyAnniversayCuvee_TECHSheet_BTLD1.2021-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:263047;}s:6:\"medium\";a:5:{s:4:\"file\";s:76:\"Meadowcroft_NVNapaValleyAnniversayCuvee_TECHSheet_BTLD1.2021-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51189;}s:5:\"large\";a:5:{s:4:\"file\";s:77:\"Meadowcroft_NVNapaValleyAnniversayCuvee_TECHSheet_BTLD1.2021-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152944;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:76:\"Meadowcroft_NVNapaValleyAnniversayCuvee_TECHSheet_BTLD1.2021-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41726;}}s:8:\"filesize\";i:1590545;}'),(46825,3141,'_wp_attached_file','2023/08/TechSheet-2019CabFranc-Final-1.pdf'),(46826,3141,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:38:\"TechSheet-2019CabFranc-Final-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:190846;}s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"TechSheet-2019CabFranc-Final-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14439;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"TechSheet-2019CabFranc-Final-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103615;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"TechSheet-2019CabFranc-Final-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6651;}}s:8:\"filesize\";i:191193;}'),(46827,3142,'_wp_attached_file','2023/08/NV-Blanc-de-Blanc-Tech-Sheet-Final-1.pdf'),(46828,3142,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:44:\"NV-Blanc-de-Blanc-Tech-Sheet-Final-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196766;}s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"NV-Blanc-de-Blanc-Tech-Sheet-Final-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15239;}s:5:\"large\";a:5:{s:4:\"file\";s:53:\"NV-Blanc-de-Blanc-Tech-Sheet-Final-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105656;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"NV-Blanc-de-Blanc-Tech-Sheet-Final-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6933;}}s:8:\"filesize\";i:272560;}'),(46831,3129,'_wp_attachment_image_alt','BBQ, Wine & Live Music at Meadowcroft'),(46838,1892,'_edit_lock','1707395124:5'),(46839,726,'allowed_customer_tag_titles','a:0:{}'),(46840,726,'allowed_customer_club_titles','a:0:{}'),(46841,3145,'web_id','bb9679e9-4bac-4abb-b1fe-b502af61e300'),(46842,3145,'slug','books'),(46843,3145,'title','Books'),(46844,3145,'type','General Merchandise'),(46845,3145,'image',NULL),(46846,3145,'teaser',NULL),(46847,3145,'content',NULL),(46848,3145,'subtitle',NULL),(46849,3145,'price','2700'),(46850,3145,'web_status','Not Available'),(46851,3145,'admin_status','Available'),(46852,3145,'vendor','Hatchette Book Group'),(46853,3145,'collections','a:0:{}'),(46854,3145,'primary_collection',''),(46861,3149,'_wp_attached_file','2023/08/Meadowcroft-wine-blending-1.jpg'),(46862,3149,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1205;s:4:\"file\";s:39:\"2023/08/Meadowcroft-wine-blending-1.jpg\";s:8:\"filesize\";i:471850;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Meadowcroft-wine-blending-1-300x226.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20510;}s:5:\"large\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-wine-blending-1-1024x771.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:771;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150411;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Meadowcroft-wine-blending-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8362;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"Meadowcroft-wine-blending-1-768x578.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93932;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:39:\"Meadowcroft-wine-blending-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25764;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:39:\"Meadowcroft-wine-blending-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60045;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:39:\"Meadowcroft-wine-blending-1-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39846;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:39:\"Meadowcroft-wine-blending-1-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28316;}s:8:\"tileview\";a:5:{s:4:\"file\";s:39:\"Meadowcroft-wine-blending-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31848;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:41:\"Meadowcroft-wine-blending-1-1536x1157.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1157;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:289884;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:40:\"Meadowcroft-wine-blending-1-1200x904.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:904;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193495;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(46863,3149,'_wp_attachment_image_alt','Meadowcroft-wine-blending (1)'),(46864,3150,'inline_featured_image','0'),(46865,3150,'_edit_lock','1693991297:5'),(46866,3150,'_edit_last','5'),(46867,3150,'_wp_page_template','default'),(46868,3150,'allowed_customer_tag_titles','a:0:{}'),(46869,3150,'allowed_customer_club_titles','a:0:{}'),(46870,3150,'content_block_0_layout_title','Balloon and Blending: Soaring Above Vineyards and Crafting Your Own Wine Blend'),(46871,3150,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(46872,3150,'content_block_0_custom_css_class','balloon-blending-banner'),(46873,3150,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(46874,3150,'content_block_0_banner_full_width','1'),(46875,3150,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(46876,3150,'content_block_0_banner_size','normal'),(46877,3150,'_content_block_0_banner_size','field_5bbe232929ec9'),(46878,3150,'content_block_0_add_parallax_effect','0'),(46879,3150,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(46880,3150,'content_block_0_add_veil_over_banner','1'),(46881,3150,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(46882,3150,'content_block_0_banner_content_position','centered'),(46883,3150,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(46884,3150,'content_block_0_banner_title','Meadowcroft Balloon and Blending Experience'),(46885,3150,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(46886,3150,'content_block_0_banner_subtitle',''),(46887,3150,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(46888,3150,'content_block_0_banner_button_link',''),(46889,3150,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(46890,3150,'content_block_0_banner_button_new_tab','1'),(46891,3150,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(46892,3150,'content_block_0_show_down_arrow','0'),(46893,3150,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(46894,3150,'content_block_0_banner_image_description','Sonoma Ballooning flying over vineyards in wine country'),(46895,3150,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(46896,3150,'content_block_0_banner_image','3166'),(46897,3150,'_content_block_0_banner_image','field_5bbe201718faf'),(46898,3150,'content_block_0_banner_image_position','center center'),(46899,3150,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(46900,3150,'content_block_0_banner_image_mobile','3166'),(46901,3150,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(46902,3150,'content_block_0_banner_image_mobile_position','center center'),(46903,3150,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(46904,3150,'content_block_1_layout_title','Top-Rated Hot air balloon'),(46905,3150,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(46906,3150,'content_block_1_text_block_columns','one'),(46907,3150,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(46908,3150,'content_block_1_narrow_text_block_content','0'),(46909,3150,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(46910,3150,'content_block_1_reverse_colors','0'),(46911,3150,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(46912,3150,'content_block_1_enable_background_image','0'),(46913,3150,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(46914,3150,'content_block_1_custom_css_class',''),(46915,3150,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(46916,3150,'content_block_1_text_block_content_col_one','<h2 role=\"heading\" aria-level=\"2\" data-uw-rm-heading=\"level\">Soar Above the Vineyards and Blend Your Own Wine</h2>\r\nEscape to Sonoma Valley for an unforgettable adventure that combines the thrill of a hot air balloon ride with the art of wine blending. We\'ve teamed up with Sonoma Ballooning to create a truly unique experience that will leave you with memories to cherish.\r\n\r\n<strong>Picture this:</strong> as the sun rises, you\'ll embark on a magical hot air balloon flight with Sonoma Ballooning. Enjoy breathtaking views of the vineyards and countryside as you float through the sky. After landing, it\'s time for a post-flight celebration with a champagne toast.\r\n\r\nBut the excitement doesn\'t end there. You\'ll then head to Meadowcroft Wines for a blending seminar like no other. Explore the beautiful Cornerstone Gardens and learn the secrets of wine blending from the experts. Create your own signature blend and even personalize and hand-cork your own 750ml bottle of the perfect blend that you created.\r\n\r\nThis exclusive package is perfect for wine enthusiasts and adventure seekers alike. It\'s a once-in-a-lifetime experience that you can share with your loved ones for years to come.\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"/tasting-room/#a-perfect-blend\">Book Now</a></p>'),(46917,3150,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(46956,3150,'content_block','a:8:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:5:\"video\";i:3;s:6:\"banner\";i:4;s:10:\"text_block\";i:5;s:10:\"text_block\";i:6;s:13:\"media_section\";i:7;s:11:\"faq_section\";}'),(46957,3150,'_content_block','field_5bbe19a7efa09'),(46958,3150,'_yoast_wpseo_content_score','90'),(46959,3150,'_yoast_wpseo_estimated-reading-time-minutes','0'),(46960,3150,'_yoast_wpseo_wordproof_timestamp',''),(46961,3151,'inline_featured_image','0'),(46962,3151,'_edit_lock','1734993834:3'),(46963,3151,'_edit_last','3'),(46964,3152,'_wp_attached_file','2023/08/About_our_wines_new-1-scaled.jpg'),(46965,3152,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1928;s:4:\"file\";s:40:\"2023/08/About_our_wines_new-1-scaled.jpg\";s:8:\"filesize\";i:829421;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"About_our_wines_new-1-300x226.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20421;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"About_our_wines_new-1-1024x771.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:771;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171093;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"About_our_wines_new-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8511;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"About_our_wines_new-1-768x578.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102796;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:33:\"About_our_wines_new-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26747;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:33:\"About_our_wines_new-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64937;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:33:\"About_our_wines_new-1-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42067;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:33:\"About_our_wines_new-1-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29409;}s:8:\"tileview\";a:5:{s:4:\"file\";s:33:\"About_our_wines_new-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32997;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"About_our_wines_new-1-1536x1157.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1157;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:347214;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"About_our_wines_new-1-2048x1542.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:569719;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:34:\"About_our_wines_new-1-1200x904.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:904;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:225542;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"About_our_wines_new-1.jpg\";}'),(46966,3153,'_wp_attached_file','2023/08/Ceo_message-1-scaled.jpg'),(46967,3153,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:2048;s:4:\"file\";s:32:\"2023/08/Ceo_message-1-scaled.jpg\";s:8:\"filesize\";i:540788;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Ceo_message-1-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42378;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"Ceo_message-1-1024x819.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:819;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120924;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Ceo_message-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33295;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"Ceo_message-1-768x614.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87273;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:25:\"Ceo_message-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44886;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:25:\"Ceo_message-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64648;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:25:\"Ceo_message-1-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53176;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:25:\"Ceo_message-1-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46217;}s:8:\"tileview\";a:5:{s:4:\"file\";s:25:\"Ceo_message-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48452;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"Ceo_message-1-1536x1229.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1229;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:212235;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:27:\"Ceo_message-1-2048x1638.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1638;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:348299;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:26:\"Ceo_message-1-1200x960.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147796;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1629208173\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:17:\"Ceo_message-1.jpg\";}'),(46968,3151,'_wp_page_template','default'),(46969,3151,'allowed_customer_tag_titles','a:0:{}'),(46970,3151,'allowed_customer_club_titles','a:0:{}'),(46971,3151,'content_block_0_layout_title','Wine Blending Experience'),(46972,3151,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(46973,3151,'content_block_0_custom_css_class',''),(46974,3151,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(46975,3151,'content_block_0_banner_full_width','1'),(46976,3151,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(46977,3151,'content_block_0_banner_size','normal'),(46978,3151,'_content_block_0_banner_size','field_5bbe232929ec9'),(46979,3151,'content_block_0_add_parallax_effect','0'),(46980,3151,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(46981,3151,'content_block_0_add_veil_over_banner','1'),(46982,3151,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(46983,3151,'content_block_0_banner_content_position','centered'),(46984,3151,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(46985,3151,'content_block_0_banner_title','Wine Blending Experience at Meadowcroft'),(46986,3151,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(46987,3151,'content_block_0_banner_subtitle',''),(46988,3151,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(46989,3151,'content_block_0_banner_button_link',''),(46990,3151,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(46991,3151,'content_block_0_banner_button_new_tab','0'),(46992,3151,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(46993,3151,'content_block_0_show_down_arrow','0'),(46994,3151,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(46995,3151,'content_block_0_banner_image_description','Hand corking a bottle of wine at Meadowcroft'),(46996,3151,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(46997,3151,'content_block_0_banner_image','3163'),(46998,3151,'_content_block_0_banner_image','field_5bbe201718faf'),(46999,3151,'content_block_0_banner_image_position','left center'),(47000,3151,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(47001,3151,'content_block_0_banner_image_mobile','3163'),(47002,3151,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(47003,3151,'content_block_0_banner_image_mobile_position','center center'),(47004,3151,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(47005,3151,'content_block_1_layout_title','About the Experience'),(47006,3151,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(47007,3151,'content_block_1_text_block_columns','two'),(47008,3151,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(47009,3151,'content_block_1_column_size','equal'),(47010,3151,'_content_block_1_column_size','field_columnsize'),(47011,3151,'content_block_1_narrow_text_block_content','0'),(47012,3151,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(47013,3151,'content_block_1_reverse_colors','0'),(47014,3151,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(47015,3151,'content_block_1_enable_background_image','0'),(47016,3151,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(47017,3151,'content_block_1_custom_css_class','about_wines'),(47018,3151,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(47019,3151,'content_block_1_text_block_content_col_one','<img class=\"alignnone wp-image-3170 size-large\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/09/PXL_20230121_203801680-771x1024.jpg\" alt=\"Hand corking a bottle\" width=\"771\" height=\"1024\" />'),(47020,3151,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(47021,3151,'content_block_1_text_block_content_col_two','<h2>About Our Wine Blending Experience</h2>\r\nCreate your own Perfect Blend at Meadowcroft! Immerse yourself in the beauty of the Cornerstone Gardens as you learn about Meadowcroft\'s unique wine making perspective and the fascinating history of Sonoma. Get hands-on as you create your own classic red Bordeaux style blend using carefully aged wines from separate oak barrels. Engage your senses as you experiment with different components to find your perfect flavor combination.\r\n\r\n<strong>And the best part?</strong>  You\'ll get to label and hand-cork your own 750ml bottle of your custom blend to take home! This unforgettable experience also includes a selection of delectable locally sourced cheese and accompaniments.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"/tasting-room/#a-perfect-blend\">Sign up for the Perfect Blend</a></p>'),(47022,3151,'_content_block_1_text_block_content_col_two','field_5bbe31593920e'),(47041,3151,'content_block_3_layout_title','Book your wine blending Experience'),(47042,3151,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(47043,3151,'content_block_3_text_block_columns','one'),(47044,3151,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(47045,3151,'content_block_3_narrow_text_block_content','0'),(47046,3151,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(47047,3151,'content_block_3_reverse_colors','0'),(47048,3151,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(47049,3151,'content_block_3_enable_background_image','0'),(47050,3151,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(47051,3151,'content_block_3_custom_css_class','wine_booking'),(47052,3151,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(47053,3151,'content_block_3_text_block_content_col_one','<h2 style=\"text-align: center;\">Everyone Is Welcome To Blend</h2>\r\nFrom beginners to seasoned wine experts - all are welcome around the blending table.\r\n\r\nLooking for a unique activity for your corporate group, team building event, or large party?  Are you new to wine and looking to explore a bit?  Maybe you\'re a seasoned wine drinker and you just want to try your hand at blending.  In any case, we\'ve got you covered!\r\n\r\nOur blending experience is perfect for all levels of wine experience and we can host most any group size.  Contact us to discuss your needs and let us help you plan the perfect wine adventure.Advance reservations required, so don\'t miss out on this fantastic opportunity. Prices are $150/person or $120 for <a href=\"https://www.meadowcroftwines.com/wine-club/\">club members</a>.  Price varies for groups of 12 or more guests.  <a href=\"mailto:tastingroom@meadowcroftwines.com\">Contact us</a> for pricing.\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"#\">Check Avilability</a></p>'),(47054,3151,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(47055,3151,'content_block_4_layout_title','Message from Meadowcroft wines CEO'),(47056,3151,'_content_block_4_layout_title','field_5bc11ca9a0d50-s'),(47057,3151,'content_block_4_text_block_columns','one'),(47058,3151,'_content_block_4_text_block_columns','field_5bbe2f81a4de0'),(47059,3151,'content_block_4_narrow_text_block_content','0'),(47060,3151,'_content_block_4_narrow_text_block_content','field_5bbe342e08360'),(47061,3151,'content_block_4_reverse_colors','0'),(47062,3151,'_content_block_4_reverse_colors','field_5bbe3027a4de1'),(47063,3151,'content_block_4_enable_background_image','0'),(47064,3151,'_content_block_4_enable_background_image','field_5bbe30b1a4de2'),(47065,3151,'content_block_4_custom_css_class','ceo_message'),(47066,3151,'_content_block_4_custom_css_class','field_5bbe30b1a4de2-1'),(47067,3151,'content_block_4_text_block_content_col_one','<h2 style=\"text-align: center;\">Message from Tom Meadowcroft</h2>\r\n<img class=\"wp-image-885 aligncenter\" src=\"/wp-content/uploads/2023/08/Ceo_message-1-scaled.jpg\" alt=\"Woman pouring red wine into glass\" width=\"500\" height=\"353\" />\r\n\r\nAs the winemaker and owner of Meadowcroft, I invite you to join us for a unique and unforgettable wine blending experience. Following a stroll through the breathtaking Cornerstone Gardens, you’ll unleash your inner winemaker as you blend 4 distinct varietals to create a classic Bordeaux-style red blend. I invite you to experiment with different blending components until you\'ve found the perfect balance. Once you\'ve created your masterpiece, you\'ll have the pleasure of labeling and hand-corking your own 750ml bottle.\r\n\r\nAt Meadowcroft, we welcome corporate groups, team building events, and large parties, and we would love to help you plan the perfect outing. So, gather your friends, family, or colleagues and join us for an educational and enjoyable afternoon in one of Sonoma\'s most picturesque wineries.\r\n\r\nCheers!\r\n\r\nTom Meadowcroft'),(47068,3151,'_content_block_4_text_block_content_col_one','field_5bbe313b3920d'),(47069,3151,'content_block','a:5:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:5:\"video\";i:3;s:10:\"text_block\";i:4;s:10:\"text_block\";}'),(47070,3151,'_content_block','field_5bbe19a7efa09'),(47071,3151,'_yoast_wpseo_content_score','90'),(47072,3151,'_yoast_wpseo_estimated-reading-time-minutes','4'),(47073,3151,'_yoast_wpseo_wordproof_timestamp',''),(47114,3044,'_wp_attachment_image_alt','tom-spraying-sparkling'),(47115,3155,'_wp_attached_file','2023/08/meadow.jpg'),(47116,3155,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:18:\"2023/08/meadow.jpg\";s:8:\"filesize\";i:43596;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"meadow-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18967;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"meadow-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7644;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:18:\"meadow-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23636;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:18:\"meadow-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37659;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:18:\"meadow-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26851;}s:8:\"tileview\";a:5:{s:4:\"file\";s:18:\"meadow-300x360.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30360;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(47117,3155,'_wp_attachment_image_alt','Wine blending experience at Meadowcroft Wines'),(47118,3156,'_wp_attached_file','2023/08/meadow2.jpg'),(47119,3156,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:19:\"2023/08/meadow2.jpg\";s:8:\"filesize\";i:24415;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"meadow2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18430;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"meadow2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7842;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:19:\"meadow2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26559;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:19:\"meadow2-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40100;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:19:\"meadow2-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28838;}s:8:\"tileview\";a:5:{s:4:\"file\";s:19:\"meadow2-300x360.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34588;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(47120,3156,'_wp_attachment_image_alt','meadow2'),(47213,3160,'_wp_attached_file','2023/09/5F9F10E1-422D-42DB-87CA-BBF82FD5DBAB.jpg'),(47214,3160,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:665;s:6:\"height\";i:665;s:4:\"file\";s:48:\"2023/09/5F9F10E1-422D-42DB-87CA-BBF82FD5DBAB.jpg\";s:8:\"filesize\";i:146505;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"5F9F10E1-422D-42DB-87CA-BBF82FD5DBAB-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19725;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"5F9F10E1-422D-42DB-87CA-BBF82FD5DBAB-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6010;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:48:\"5F9F10E1-422D-42DB-87CA-BBF82FD5DBAB-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19725;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:48:\"5F9F10E1-422D-42DB-87CA-BBF82FD5DBAB-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48137;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:48:\"5F9F10E1-422D-42DB-87CA-BBF82FD5DBAB-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34434;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:48:\"5F9F10E1-422D-42DB-87CA-BBF82FD5DBAB-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23772;}s:8:\"tileview\";a:5:{s:4:\"file\";s:48:\"5F9F10E1-422D-42DB-87CA-BBF82FD5DBAB-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25067;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(47215,3160,'_wp_attachment_image_alt','Sonoma Ballooning'),(47216,3161,'_wp_attached_file','2023/09/corking-wine-bottle2.jpg'),(47217,3161,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1205;s:6:\"height\";i:1600;s:4:\"file\";s:32:\"2023/09/corking-wine-bottle2.jpg\";s:8:\"filesize\";i:400571;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"corking-wine-bottle2-226x300.jpg\";s:5:\"width\";i:226;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17083;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"corking-wine-bottle2-771x1024.jpg\";s:5:\"width\";i:771;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127451;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"corking-wine-bottle2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7268;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"corking-wine-bottle2-768x1020.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1020;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126372;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:32:\"corking-wine-bottle2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21852;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:32:\"corking-wine-bottle2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51382;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:32:\"corking-wine-bottle2-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38396;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:32:\"corking-wine-bottle2-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27046;}s:8:\"tileview\";a:5:{s:4:\"file\";s:32:\"corking-wine-bottle2-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26683;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"corking-wine-bottle2-1157x1536.jpg\";s:5:\"width\";i:1157;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:248204;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:34:\"corking-wine-bottle2-1200x1593.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1593;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:262991;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(47218,3161,'_wp_attachment_image_alt','Hand-corking bottles after blending wines at Meadowcroft'),(47219,3162,'_wp_attached_file','2023/09/corporate-groups-blending.jpg'),(47220,3162,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1205;s:6:\"height\";i:1600;s:4:\"file\";s:37:\"2023/09/corporate-groups-blending.jpg\";s:8:\"filesize\";i:522477;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"corporate-groups-blending-226x300.jpg\";s:5:\"width\";i:226;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19325;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"corporate-groups-blending-771x1024.jpg\";s:5:\"width\";i:771;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160391;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"corporate-groups-blending-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7684;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"corporate-groups-blending-768x1020.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1020;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159004;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:37:\"corporate-groups-blending-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24670;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:37:\"corporate-groups-blending-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60549;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:37:\"corporate-groups-blending-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37663;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:37:\"corporate-groups-blending-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26045;}s:8:\"tileview\";a:5:{s:4:\"file\";s:37:\"corporate-groups-blending-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31379;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"corporate-groups-blending-1157x1536.jpg\";s:5:\"width\";i:1157;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:318557;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:39:\"corporate-groups-blending-1200x1593.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1593;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:338365;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(47221,3163,'_wp_attached_file','2023/09/Meadowcroft-wine-blending.jpg'),(47222,3163,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1205;s:4:\"file\";s:37:\"2023/09/Meadowcroft-wine-blending.jpg\";s:8:\"filesize\";i:471850;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Meadowcroft-wine-blending-300x226.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20510;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"Meadowcroft-wine-blending-1024x771.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:771;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150411;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Meadowcroft-wine-blending-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8362;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Meadowcroft-wine-blending-768x578.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93932;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:37:\"Meadowcroft-wine-blending-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25764;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:37:\"Meadowcroft-wine-blending-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60045;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:37:\"Meadowcroft-wine-blending-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39846;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:37:\"Meadowcroft-wine-blending-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28316;}s:8:\"tileview\";a:5:{s:4:\"file\";s:37:\"Meadowcroft-wine-blending-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31848;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"Meadowcroft-wine-blending-1536x1157.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1157;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:289884;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:38:\"Meadowcroft-wine-blending-1200x904.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:904;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193495;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(47223,3164,'_wp_attached_file','2023/09/TomMedowcroft-helping-guests-blend.jpg'),(47224,3164,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1205;s:6:\"height\";i:1600;s:4:\"file\";s:46:\"2023/09/TomMedowcroft-helping-guests-blend.jpg\";s:8:\"filesize\";i:396773;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"TomMedowcroft-helping-guests-blend-226x300.jpg\";s:5:\"width\";i:226;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18526;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"TomMedowcroft-helping-guests-blend-771x1024.jpg\";s:5:\"width\";i:771;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142991;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"TomMedowcroft-helping-guests-blend-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7212;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"TomMedowcroft-helping-guests-blend-768x1020.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1020;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141931;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:46:\"TomMedowcroft-helping-guests-blend-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22349;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:46:\"TomMedowcroft-helping-guests-blend-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52364;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:46:\"TomMedowcroft-helping-guests-blend-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30097;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:46:\"TomMedowcroft-helping-guests-blend-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21397;}s:8:\"tileview\";a:5:{s:4:\"file\";s:46:\"TomMedowcroft-helping-guests-blend-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30369;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"TomMedowcroft-helping-guests-blend-1157x1536.jpg\";s:5:\"width\";i:1157;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:260427;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:48:\"TomMedowcroft-helping-guests-blend-1200x1593.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1593;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:274813;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(47225,3165,'_wp_attached_file','2023/09/7cb9e4a4-a4d8-4721-a873-2803ee4a2f51-scaled.jpg'),(47226,3165,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:55:\"2023/09/7cb9e4a4-a4d8-4721-a873-2803ee4a2f51-scaled.jpg\";s:8:\"filesize\";i:564217;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"7cb9e4a4-a4d8-4721-a873-2803ee4a2f51-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14083;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"7cb9e4a4-a4d8-4721-a873-2803ee4a2f51-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104708;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"7cb9e4a4-a4d8-4721-a873-2803ee4a2f51-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6254;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"7cb9e4a4-a4d8-4721-a873-2803ee4a2f51-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63495;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:48:\"7cb9e4a4-a4d8-4721-a873-2803ee4a2f51-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15936;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:48:\"7cb9e4a4-a4d8-4721-a873-2803ee4a2f51-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36672;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:48:\"7cb9e4a4-a4d8-4721-a873-2803ee4a2f51-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26852;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:48:\"7cb9e4a4-a4d8-4721-a873-2803ee4a2f51-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19483;}s:8:\"tileview\";a:5:{s:4:\"file\";s:48:\"7cb9e4a4-a4d8-4721-a873-2803ee4a2f51-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18614;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"7cb9e4a4-a4d8-4721-a873-2803ee4a2f51-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214010;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:50:\"7cb9e4a4-a4d8-4721-a873-2803ee4a2f51-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:364796;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:49:\"7cb9e4a4-a4d8-4721-a873-2803ee4a2f51-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138758;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XS\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1612595955\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:16:\"0.00431034482759\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:40:\"7cb9e4a4-a4d8-4721-a873-2803ee4a2f51.jpg\";}'),(47227,3166,'_wp_attached_file','2023/09/1157C11B-F8D1-468C-9B97-363D77AF5E1D-2-scaled.jpg'),(47228,3166,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:57:\"2023/09/1157C11B-F8D1-468C-9B97-363D77AF5E1D-2-scaled.jpg\";s:8:\"filesize\";i:737952;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"1157C11B-F8D1-468C-9B97-363D77AF5E1D-2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17082;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"1157C11B-F8D1-468C-9B97-363D77AF5E1D-2-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129006;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"1157C11B-F8D1-468C-9B97-363D77AF5E1D-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8513;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"1157C11B-F8D1-468C-9B97-363D77AF5E1D-2-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77082;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:50:\"1157C11B-F8D1-468C-9B97-363D77AF5E1D-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22045;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:50:\"1157C11B-F8D1-468C-9B97-363D77AF5E1D-2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49826;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:50:\"1157C11B-F8D1-468C-9B97-363D77AF5E1D-2-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31734;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:50:\"1157C11B-F8D1-468C-9B97-363D77AF5E1D-2-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22721;}s:8:\"tileview\";a:5:{s:4:\"file\";s:50:\"1157C11B-F8D1-468C-9B97-363D77AF5E1D-2-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27949;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:52:\"1157C11B-F8D1-468C-9B97-363D77AF5E1D-2-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:272850;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:52:\"1157C11B-F8D1-468C-9B97-363D77AF5E1D-2-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:476249;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:51:\"1157C11B-F8D1-468C-9B97-363D77AF5E1D-2-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:173015;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"FC3170\";s:7:\"caption\";s:7:\"default\";s:17:\"created_timestamp\";s:10:\"1610869160\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.5\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:7:\"default\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:42:\"1157C11B-F8D1-468C-9B97-363D77AF5E1D-2.jpg\";}'),(47229,3167,'_wp_attached_file','2023/09/D2ACD611-6537-49A8-B110-C1D1E037DF06.jpg'),(47230,3167,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:602;s:6:\"height\";i:800;s:4:\"file\";s:48:\"2023/09/D2ACD611-6537-49A8-B110-C1D1E037DF06.jpg\";s:8:\"filesize\";i:213578;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"D2ACD611-6537-49A8-B110-C1D1E037DF06-226x300.jpg\";s:5:\"width\";i:226;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20586;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"D2ACD611-6537-49A8-B110-C1D1E037DF06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7841;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:48:\"D2ACD611-6537-49A8-B110-C1D1E037DF06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27409;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:48:\"D2ACD611-6537-49A8-B110-C1D1E037DF06-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72919;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:48:\"D2ACD611-6537-49A8-B110-C1D1E037DF06-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47012;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:48:\"D2ACD611-6537-49A8-B110-C1D1E037DF06-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31778;}s:8:\"tileview\";a:5:{s:4:\"file\";s:48:\"D2ACD611-6537-49A8-B110-C1D1E037DF06-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33576;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(47231,3168,'_wp_attached_file','2023/09/gopr0578-scaled.jpg'),(47232,3168,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:27:\"2023/09/gopr0578-scaled.jpg\";s:8:\"filesize\";i:1159860;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"gopr0578-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23503;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"gopr0578-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:218889;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"gopr0578-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9577;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"gopr0578-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128761;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:20:\"gopr0578-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32419;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:20:\"gopr0578-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82167;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:20:\"gopr0578-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48602;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:20:\"gopr0578-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32923;}s:8:\"tileview\";a:5:{s:4:\"file\";s:20:\"gopr0578-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42509;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"gopr0578-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:462461;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"gopr0578-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:779211;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:21:\"gopr0578-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:294829;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"gopr0578.jpg\";}'),(47233,3169,'_wp_attached_file','2023/09/PXL_20230121_183205619.jpg'),(47234,3169,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1205;s:6:\"height\";i:1600;s:4:\"file\";s:34:\"2023/09/PXL_20230121_183205619.jpg\";s:8:\"filesize\";i:522477;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"PXL_20230121_183205619-226x300.jpg\";s:5:\"width\";i:226;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19325;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"PXL_20230121_183205619-771x1024.jpg\";s:5:\"width\";i:771;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160391;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"PXL_20230121_183205619-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7684;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"PXL_20230121_183205619-768x1020.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1020;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159004;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:34:\"PXL_20230121_183205619-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24670;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:34:\"PXL_20230121_183205619-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60549;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:34:\"PXL_20230121_183205619-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37663;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:34:\"PXL_20230121_183205619-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26045;}s:8:\"tileview\";a:5:{s:4:\"file\";s:34:\"PXL_20230121_183205619-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31379;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"PXL_20230121_183205619-1157x1536.jpg\";s:5:\"width\";i:1157;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:318557;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:36:\"PXL_20230121_183205619-1200x1593.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1593;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:338365;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(47235,3170,'_wp_attached_file','2023/09/PXL_20230121_203801680.jpg'),(47236,3170,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1205;s:6:\"height\";i:1600;s:4:\"file\";s:34:\"2023/09/PXL_20230121_203801680.jpg\";s:8:\"filesize\";i:470203;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"PXL_20230121_203801680-226x300.jpg\";s:5:\"width\";i:226;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16149;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"PXL_20230121_203801680-771x1024.jpg\";s:5:\"width\";i:771;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138096;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"PXL_20230121_203801680-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6784;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"PXL_20230121_203801680-768x1020.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1020;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137313;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:34:\"PXL_20230121_203801680-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21001;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:34:\"PXL_20230121_203801680-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50828;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:34:\"PXL_20230121_203801680-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33755;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:34:\"PXL_20230121_203801680-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23926;}s:8:\"tileview\";a:5:{s:4:\"file\";s:34:\"PXL_20230121_203801680-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26394;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"PXL_20230121_203801680-1157x1536.jpg\";s:5:\"width\";i:1157;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:280585;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:36:\"PXL_20230121_203801680-1200x1593.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1593;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:299595;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(47237,3171,'_wp_attached_file','2023/09/PXL_20230221_225833501-scaled.jpg'),(47238,3171,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1928;s:6:\"height\";i:2560;s:4:\"file\";s:41:\"2023/09/PXL_20230221_225833501-scaled.jpg\";s:8:\"filesize\";i:629959;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"PXL_20230221_225833501-226x300.jpg\";s:5:\"width\";i:226;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55064;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"PXL_20230221_225833501-771x1024.jpg\";s:5:\"width\";i:771;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177633;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"PXL_20230221_225833501-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43854;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"PXL_20230221_225833501-768x1020.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1020;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177002;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:34:\"PXL_20230221_225833501-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60349;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:34:\"PXL_20230221_225833501-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93196;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:34:\"PXL_20230221_225833501-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73967;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:34:\"PXL_20230221_225833501-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63028;}s:8:\"tileview\";a:5:{s:4:\"file\";s:34:\"PXL_20230221_225833501-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65963;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"PXL_20230221_225833501-1157x1536.jpg\";s:5:\"width\";i:1157;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:304022;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:36:\"PXL_20230221_225833501-1542x2048.jpg\";s:5:\"width\";i:1542;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:455846;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:36:\"PXL_20230221_225833501-1200x1594.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1594;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:319459;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:4:\"1.85\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"Pixel 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1676991513\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"6.81\";s:3:\"iso\";s:4:\"1081\";s:13:\"shutter_speed\";s:7:\"0.00833\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:26:\"PXL_20230221_225833501.jpg\";}'),(47239,3172,'_wp_attached_file','2023/09/PXL_20221203_010358414_2-1.jpg'),(47240,3172,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1135;s:4:\"file\";s:38:\"2023/09/PXL_20221203_010358414_2-1.jpg\";s:8:\"filesize\";i:419916;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"PXL_20221203_010358414_2-1-300x213.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13696;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"PXL_20221203_010358414_2-1-1024x726.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:726;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124872;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"PXL_20221203_010358414_2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5823;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"PXL_20221203_010358414_2-1-768x545.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:545;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74161;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:38:\"PXL_20221203_010358414_2-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17632;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:38:\"PXL_20221203_010358414_2-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44141;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:38:\"PXL_20221203_010358414_2-1-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30261;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:38:\"PXL_20221203_010358414_2-1-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20917;}s:8:\"tileview\";a:5:{s:4:\"file\";s:38:\"PXL_20221203_010358414_2-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21682;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:40:\"PXL_20221203_010358414_2-1-1536x1090.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1090;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:255775;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:39:\"PXL_20221203_010358414_2-1-1200x851.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:851;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166726;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(47269,3168,'_wp_attachment_image_alt','Group flying over vineyards in Sonoma Valley'),(47270,3169,'_wp_attachment_image_alt','Meadowcroft wine blending for large parties and corporate groups'),(47271,3164,'_wp_attachment_image_alt','Tom Meadowcroft helping guests blend wine'),(47272,3172,'_wp_attachment_image_alt','Meadowcroft Wines tasting room'),(47273,3167,'_wp_attachment_image_alt','Soaring over the vineyards'),(47434,3173,'_wp_attached_file','2023/09/IMG_3149.heic'),(47435,3173,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:931722;}'),(47436,3173,'_wp_attachment_image_alt','Sonoma Ballooning'),(47437,3174,'content_block_0_layout_title','Balloon and Blending: Soaring Above Vineyards and Crafting Your Own Wine Blend'),(47438,3174,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(47439,3174,'content_block_0_custom_css_class','balloon-blending-banner'),(47440,3174,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(47441,3174,'content_block_0_banner_full_width','1'),(47442,3174,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(47443,3174,'content_block_0_banner_size','normal'),(47444,3174,'_content_block_0_banner_size','field_5bbe232929ec9'),(47445,3174,'content_block_0_add_parallax_effect','0'),(47446,3174,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(47447,3174,'content_block_0_add_veil_over_banner','1'),(47448,3174,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(47449,3174,'content_block_0_banner_content_position','centered'),(47450,3174,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(47451,3174,'content_block_0_banner_title','Meadowcroft Balloon and Blending Experience'),(47452,3174,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(47453,3174,'content_block_0_banner_subtitle',''),(47454,3174,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(47455,3174,'content_block_0_banner_button_link',''),(47456,3174,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(47457,3174,'content_block_0_banner_button_new_tab','1'),(47458,3174,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(47459,3174,'content_block_0_show_down_arrow','0'),(47460,3174,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(47461,3174,'content_block_0_banner_image_description','Sonoma Ballooning flying over vineyards in wine country'),(47462,3174,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(47463,3174,'content_block_0_banner_image','3166'),(47464,3174,'_content_block_0_banner_image','field_5bbe201718faf'),(47465,3174,'content_block_0_banner_image_position','center center'),(47466,3174,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(47467,3174,'content_block_0_banner_image_mobile','3166'),(47468,3174,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(47469,3174,'content_block_0_banner_image_mobile_position','center center'),(47470,3174,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(47471,3174,'content_block_1_layout_title','Top-Rated Hot air balloon'),(47472,3174,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(47473,3174,'content_block_1_text_block_columns','one'),(47474,3174,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(47475,3174,'content_block_1_narrow_text_block_content','0'),(47476,3174,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(47477,3174,'content_block_1_reverse_colors','0'),(47478,3174,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(47479,3174,'content_block_1_enable_background_image','0'),(47480,3174,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(47481,3174,'content_block_1_custom_css_class',''),(47482,3174,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(47483,3174,'content_block_1_text_block_content_col_one','<h2 role=\"heading\" aria-level=\"2\" data-uw-rm-heading=\"level\">Soar Above the Vineyards and Blend Your Own Wine</h2>\r\nEscape to Sonoma Valley for an unforgettable adventure that combines the thrill of a hot air balloon ride with the art of wine blending. We\'ve teamed up with Sonoma Ballooning to create a truly unique experience that will leave you with memories to cherish.\r\n\r\n<strong>Picture this:</strong> as the sun rises, you\'ll embark on a magical hot air balloon flight with Sonoma Ballooning. Enjoy breathtaking views of the vineyards and countryside as you float through the sky. After landing, it\'s time for a post-flight celebration with a champagne toast.\r\n\r\nBut the excitement doesn\'t end there. You\'ll then head to Meadowcroft Wines for a blending seminar like no other. Explore the beautiful Cornerstone Gardens and learn the secrets of wine blending from the experts. Create your own signature blend and even personalize and hand-cork your own 750ml bottle of the perfect blend that you created.\r\n\r\nThis exclusive package is perfect for wine enthusiasts and adventure seekers alike. It\'s a once-in-a-lifetime experience that you can share with your loved ones for years to come.\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"/tasting-room/#a-perfect-blend\">Book Now</a></p>'),(47484,3174,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(47485,3174,'content_block_2_layout_title','Wine blending experience video'),(47486,3174,'_content_block_2_layout_title','field_5bc11ca9a0d50-u'),(47487,3174,'content_block_2_video_width','regular'),(47488,3174,'_content_block_2_video_width','field_5bbe75793d323'),(47489,3174,'content_block_2_autoplay_video','0'),(47490,3174,'_content_block_2_autoplay_video','field_5bbe7f869a2a7'),(47491,3174,'content_block_2_add_a_muteunmute_button','1'),(47492,3174,'_content_block_2_add_a_muteunmute_button','field_5de6f2f5cc5c4m'),(47493,3174,'content_block_2_mobile_video','autoplay'),(47494,3174,'_content_block_2_mobile_video','field_5de7031a2009e'),(47495,3174,'content_block_2_video_source','Local'),(47496,3174,'_content_block_2_video_source','field_5bbe74973d31d'),(47497,3174,'content_block_2_local_video','3118'),(47498,3174,'_content_block_2_local_video','field_5bbe74c83d31e'),(47499,3174,'content_block_2_video_cover_image','3152'),(47500,3174,'_content_block_2_video_cover_image','field_5bbe75d33d326'),(47501,3174,'content_block_2_video_cover_image_mobile','3152'),(47502,3174,'_content_block_2_video_cover_image_mobile','field_5bbe765b3d327'),(47503,3174,'content_block_3_layout_title','Quote section'),(47504,3174,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(47505,3174,'content_block_3_text_block_columns','one'),(47506,3174,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(47507,3174,'content_block_3_narrow_text_block_content','0'),(47508,3174,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(47509,3174,'content_block_3_reverse_colors','1'),(47510,3174,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(47511,3174,'content_block_3_enable_background_image','1'),(47512,3174,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(47513,3174,'content_block_3_parallax_effect_on_image','0'),(47514,3174,'_content_block_3_parallax_effect_on_image','field_5bbe319b39211'),(47515,3174,'content_block_3_custom_css_class','quote_section'),(47516,3174,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(47517,3174,'content_block_3_text_block_content_col_one','<h2 style=\"text-align: center;\">Make Memories in Wine Country</h2>\r\n<p style=\"text-align: center;\">“As the owner of Meadowcroft Wines, I invite you to come and take part in our unique Balloon and Blending experience. With over 20 years of expertise in the wine industry, we are thrilled to offer an unforgettable opportunity for wine enthusiasts and adventure-seekers alike. Our blending seminar takes place in our tasting room located in Cornerstone Marketplace, where you\'ll learn about the art of wine blending. Along with your newfound winemaking skills, you\'ll also be able to take home a 750ml bottle of your wine - labeled and hand-corked by you.</p>\r\n<p style=\"text-align: center;\">Combined with a magical sunrise balloon flight with Sonoma Ballooning, this is truly a once-in-a-lifetime experience that you don\'t want to miss out on. Join us for a day filled with breathtaking views, unforgettable memories, and exceptional wine. We hope to see you soon!” - Tom Meadowcroft</p>'),(47518,3174,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(47519,3174,'content_block_3_background_image','947'),(47520,3174,'_content_block_3_background_image','field_5bbe2eb1a4ddb'),(47521,3174,'content_block_3_background_image_position','center center'),(47522,3174,'_content_block_3_background_image_position','field_5bbe2eb1a4ddc'),(47523,3174,'content_block_3_background_image_mobile','947'),(47524,3174,'_content_block_3_background_image_mobile','field_5bbe3b5e5f6f8'),(47525,3174,'content_block_3_background_image_position_mobile','center center'),(47526,3174,'_content_block_3_background_image_position_mobile','field_5bbe3b695f6f9'),(47527,3174,'content_block_4_layout_title','Disclaimer'),(47528,3174,'_content_block_4_layout_title','field_5bc11ca9a0d50-s'),(47529,3174,'content_block_4_text_block_columns','one'),(47530,3174,'_content_block_4_text_block_columns','field_5bbe2f81a4de0'),(47531,3174,'content_block_4_narrow_text_block_content','0'),(47532,3174,'_content_block_4_narrow_text_block_content','field_5bbe342e08360'),(47533,3174,'content_block_4_reverse_colors','0'),(47534,3174,'_content_block_4_reverse_colors','field_5bbe3027a4de1'),(47535,3174,'content_block_4_enable_background_image','0'),(47536,3174,'_content_block_4_enable_background_image','field_5bbe30b1a4de2'),(47537,3174,'content_block_4_custom_css_class','disclaimer_section'),(47538,3174,'_content_block_4_custom_css_class','field_5bbe30b1a4de2-1'),(47539,3174,'content_block_4_text_block_content_col_one','<h2 style=\"text-align: center;\">Disclaimer</h2>\r\nBalloon and Blending experience is subject to availability due to weather conditions and the availability of appointments at Sonoma Ballooning. All participants must be 21 years of age or older.'),(47540,3174,'_content_block_4_text_block_content_col_one','field_5bbe313b3920d'),(47541,3174,'content_block_5_media_heading','Media'),(47542,3174,'_content_block_5_media_heading','field_64cce6e0be3a0'),(47543,3174,'content_block_5_media_image_section_0_gallery_images','3161'),(47544,3174,'_content_block_5_media_image_section_0_gallery_images','field_64ccd3ad4019f'),(47545,3174,'content_block_5_media_image_section_1_gallery_images','3168'),(47546,3174,'_content_block_5_media_image_section_1_gallery_images','field_64ccd3ad4019f'),(47547,3174,'content_block_5_media_image_section_2_gallery_images','3169'),(47548,3174,'_content_block_5_media_image_section_2_gallery_images','field_64ccd3ad4019f'),(47549,3174,'content_block_5_media_image_section_3_gallery_images','3164'),(47550,3174,'_content_block_5_media_image_section_3_gallery_images','field_64ccd3ad4019f'),(47551,3174,'content_block_5_media_image_section_4_gallery_images','3172'),(47552,3174,'_content_block_5_media_image_section_4_gallery_images','field_64ccd3ad4019f'),(47553,3174,'content_block_5_media_image_section_5_gallery_images','3167'),(47554,3174,'_content_block_5_media_image_section_5_gallery_images','field_64ccd3ad4019f'),(47555,3174,'content_block_5_media_image_section_6_gallery_images','3163'),(47556,3174,'_content_block_5_media_image_section_6_gallery_images','field_64ccd3ad4019f'),(47557,3174,'content_block_5_media_image_section_7_gallery_images','3165'),(47558,3174,'_content_block_5_media_image_section_7_gallery_images','field_64ccd3ad4019f'),(47559,3174,'content_block_5_media_image_section','8'),(47560,3174,'_content_block_5_media_image_section','field_64cccba4f180e'),(47561,3174,'content_block_5_media_video_section',''),(47562,3174,'_content_block_5_media_video_section','field_64ccd40f401a1'),(47563,3174,'content_block_6_faq_head',''),(47564,3174,'_content_block_6_faq_head','field_64d080fb1832c'),(47565,3174,'content_block_6_faq_0_faq_heading','What does the \"Balloon and Blending\" experience entail?'),(47566,3174,'_content_block_6_faq_0_faq_heading','field_64d084b4a51fd'),(47567,3174,'content_block_6_faq_0_faq_content','Meadowcroft’s Balloon and Blending experience begins with an adventurous balloon flight over wine country with Sonoma Ballooning.  Following the flight, guests are taken to the Meadowcroft tasting room located in the Cornerstone Sonoma Marketplace.   The blending portion begins with a tour of the breathtaking Cornerstone gardens (weather permitting) offering an opportunity to learn about viticulture and to awaken your senses.  After the tour, you’ll explore four of the noble Bordeaux red wine varietals and assemble your very own “Perfect Blend”.  When you’re finished, you will bottle and hand-cork your very own wine blend to share with family and friends at home. '),(47568,3174,'_content_block_6_faq_0_faq_content','field_64d084c3a51fe'),(47569,3174,'content_block_6_faq_1_faq_heading','Can I personalize my own wine blend during the seminar?'),(47570,3174,'_content_block_6_faq_1_faq_heading','field_64d084b4a51fd'),(47571,3174,'content_block_6_faq_1_faq_content','Yes, personalization is what this experience is all about.  You will add specific amounts of various wine varietal barrel samples to create a blend that is unique to you.  No two blends are alike and everyone is encouraged to experiment. '),(47572,3174,'_content_block_6_faq_1_faq_content','field_64d084c3a51fe'),(47573,3174,'content_block_6_faq_2_faq_heading','Is the \"Balloon and Blending\" adventure suitable for all ages? '),(47574,3174,'_content_block_6_faq_2_faq_heading','field_64d084b4a51fd'),(47575,3174,'content_block_6_faq_2_faq_content','While we absolutely welcome all levels of experience, unfortunately, we can only allow guests 21 years of age and older to participate in the wine blending. '),(47576,3174,'_content_block_6_faq_2_faq_content','field_64d084c3a51fe'),(47577,3174,'content_block_6_faq_3_faq_heading','Are advanced reservations necessary to participate in the experience?'),(47578,3174,'_content_block_6_faq_3_faq_heading','field_64d084b4a51fd'),(47579,3174,'content_block_6_faq_3_faq_content','Advance reservations are indeed required for the Balloon and Blending experience.  All reservations begin with scheduling a balloon flight with Sonoma Ballooning.  The blending is coordinated according to the flight schedule. '),(47580,3174,'_content_block_6_faq_3_faq_content','field_64d084c3a51fe'),(47581,3174,'content_block_6_faq_4_faq_heading','Can I gift this experience to a loved one for a special occasion?'),(47582,3174,'_content_block_6_faq_4_faq_heading','field_64d084b4a51fd'),(47583,3174,'content_block_6_faq_4_faq_content','Our Balloon and Blending experience would make an excellent gift.  Please contact us to help you arrange it. '),(47584,3174,'_content_block_6_faq_4_faq_content','field_64d084c3a51fe'),(47585,3174,'content_block_6_faq','5'),(47586,3174,'_content_block_6_faq','field_64d0849aa51fc'),(47587,3174,'content_block','a:7:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:5:\"video\";i:3;s:10:\"text_block\";i:4;s:10:\"text_block\";i:5;s:13:\"media_section\";i:6;s:11:\"faq_section\";}'),(47588,3174,'_content_block','field_5bbe19a7efa09'),(47651,3150,'content_block_5_layout_title','Disclaimer'),(47652,3150,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(47653,3150,'content_block_5_text_block_columns','one'),(47654,3150,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(47655,3150,'content_block_5_narrow_text_block_content','0'),(47656,3150,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(47657,3150,'content_block_5_reverse_colors','0'),(47658,3150,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(47659,3150,'content_block_5_enable_background_image','0'),(47660,3150,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(47661,3150,'content_block_5_custom_css_class','disclaimer_section'),(47662,3150,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(47663,3150,'content_block_5_text_block_content_col_one','<h2 style=\"text-align: center;\">Disclaimer</h2>\r\nBalloon and Blending experience is subject to availability due to weather conditions and the availability of appointments at Sonoma Ballooning. All participants must be 21 years of age or older.'),(47664,3150,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(47711,3150,'content_block_2_layout_title','Wine blending experience video'),(47712,3150,'_content_block_2_layout_title','field_5bc11ca9a0d50-u'),(47713,3150,'content_block_2_video_width','regular'),(47714,3150,'_content_block_2_video_width','field_5bbe75793d323'),(47715,3150,'content_block_2_autoplay_video','0'),(47716,3150,'_content_block_2_autoplay_video','field_5bbe7f869a2a7'),(47717,3150,'content_block_2_add_a_muteunmute_button','1'),(47718,3150,'_content_block_2_add_a_muteunmute_button','field_5de6f2f5cc5c4m'),(47719,3150,'content_block_2_mobile_video','autoplay'),(47720,3150,'_content_block_2_mobile_video','field_5de7031a2009e'),(47721,3150,'content_block_2_video_source','Local'),(47722,3150,'_content_block_2_video_source','field_5bbe74973d31d'),(47723,3150,'content_block_2_local_video','3118'),(47724,3150,'_content_block_2_local_video','field_5bbe74c83d31e'),(47725,3150,'content_block_2_video_cover_image','3152'),(47726,3150,'_content_block_2_video_cover_image','field_5bbe75d33d326'),(47727,3150,'content_block_2_video_cover_image_mobile','3152'),(47728,3150,'_content_block_2_video_cover_image_mobile','field_5bbe765b3d327'),(47777,3150,'content_block_5_parallax_effect_on_image','0'),(47778,3150,'_content_block_5_parallax_effect_on_image','field_5bbe319b39211'),(47779,3150,'content_block_5_background_image','947'),(47780,3150,'_content_block_5_background_image','field_5bbe2eb1a4ddb'),(47781,3150,'content_block_5_background_image_position','center center'),(47782,3150,'_content_block_5_background_image_position','field_5bbe2eb1a4ddc'),(47783,3150,'content_block_5_background_image_mobile','947'),(47784,3150,'_content_block_5_background_image_mobile','field_5bbe3b5e5f6f8'),(47785,3150,'content_block_5_background_image_position_mobile','center center'),(47786,3150,'_content_block_5_background_image_position_mobile','field_5bbe3b695f6f9'),(47917,3170,'_wp_attachment_image_alt','Hand corking a bottle'),(47918,3175,'_wp_attached_file','2023/09/Social-Clip-1-Shortened-Trailer-Horizontal.mp4'),(47919,3175,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:30517545;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:16;s:16:\"length_formatted\";s:4:\"0:16\";s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:48000;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1690386642;}'),(47920,3152,'_wp_attachment_image_alt','Creating the perfect wine blend'),(47921,3176,'content_block_0_layout_title','Wine Blending Experience'),(47922,3176,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(47923,3176,'content_block_0_custom_css_class',''),(47924,3176,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(47925,3176,'content_block_0_banner_full_width','1'),(47926,3176,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(47927,3176,'content_block_0_banner_size','normal'),(47928,3176,'_content_block_0_banner_size','field_5bbe232929ec9'),(47929,3176,'content_block_0_add_parallax_effect','0'),(47930,3176,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(47931,3176,'content_block_0_add_veil_over_banner','1'),(47932,3176,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(47933,3176,'content_block_0_banner_content_position','centered'),(47934,3176,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(47935,3176,'content_block_0_banner_title','Wine Blending Experience at Meadowcroft'),(47936,3176,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(47937,3176,'content_block_0_banner_subtitle',''),(47938,3176,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(47939,3176,'content_block_0_banner_button_link',''),(47940,3176,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(47941,3176,'content_block_0_banner_button_new_tab','0'),(47942,3176,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(47943,3176,'content_block_0_show_down_arrow','0'),(47944,3176,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(47945,3176,'content_block_0_banner_image_description','Hand corking a bottle of wine at Meadowcroft'),(47946,3176,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(47947,3176,'content_block_0_banner_image','3163'),(47948,3176,'_content_block_0_banner_image','field_5bbe201718faf'),(47949,3176,'content_block_0_banner_image_position','left center'),(47950,3176,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(47951,3176,'content_block_0_banner_image_mobile','3163'),(47952,3176,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(47953,3176,'content_block_0_banner_image_mobile_position','center center'),(47954,3176,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(47955,3176,'content_block_1_layout_title','About the Experience'),(47956,3176,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(47957,3176,'content_block_1_text_block_columns','two'),(47958,3176,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(47959,3176,'content_block_1_column_size','equal'),(47960,3176,'_content_block_1_column_size','field_columnsize'),(47961,3176,'content_block_1_narrow_text_block_content','0'),(47962,3176,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(47963,3176,'content_block_1_reverse_colors','0'),(47964,3176,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(47965,3176,'content_block_1_enable_background_image','0'),(47966,3176,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(47967,3176,'content_block_1_custom_css_class','about_wines'),(47968,3176,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(47969,3176,'content_block_1_text_block_content_col_one','<img class=\"alignnone wp-image-3170 size-large\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/09/PXL_20230121_203801680-771x1024.jpg\" alt=\"Hand corking a bottle\" width=\"771\" height=\"1024\" />'),(47970,3176,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(47971,3176,'content_block_1_text_block_content_col_two','<h2>About Our Wine Blending Experience</h2>\r\nCreate your own Perfect Blend at Meadowcroft! Immerse yourself in the beauty of the Cornerstone Gardens as you learn about Meadowcroft\'s unique wine making perspective and the fascinating history of Sonoma. Get hands-on as you create your own classic red Bordeaux style blend using carefully aged wines from separate oak barrels. Engage your senses as you experiment with different components to find the perfect flavor.\r\n\r\n<strong>And the best part?</strong> You\'ll get to label and hand-cork your own 750ml bottle of your custom blend to take home! This unforgettable experience also includes a selection of delectable locally sourced cheese and accompaniments.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"/tasting-room/#a-perfect-blend\">Book Now</a></p>'),(47972,3176,'_content_block_1_text_block_content_col_two','field_5bbe31593920e'),(47973,3176,'content_block_2_layout_title',''),(47974,3176,'_content_block_2_layout_title','field_5bc11ca9a0d50-u'),(47975,3176,'content_block_2_video_width','regular'),(47976,3176,'_content_block_2_video_width','field_5bbe75793d323'),(47977,3176,'content_block_2_autoplay_video','0'),(47978,3176,'_content_block_2_autoplay_video','field_5bbe7f869a2a7'),(47979,3176,'content_block_2_add_a_muteunmute_button','0'),(47980,3176,'_content_block_2_add_a_muteunmute_button','field_5de6f2f5cc5c4m'),(47981,3176,'content_block_2_mobile_video','autoplay'),(47982,3176,'_content_block_2_mobile_video','field_5de7031a2009e'),(47983,3176,'content_block_2_video_source','Local'),(47984,3176,'_content_block_2_video_source','field_5bbe74973d31d'),(47985,3176,'content_block_2_local_video','3175'),(47986,3176,'_content_block_2_local_video','field_5bbe74c83d31e'),(47987,3176,'content_block_2_video_cover_image','3152'),(47988,3176,'_content_block_2_video_cover_image','field_5bbe75d33d326'),(47989,3176,'content_block_2_video_cover_image_mobile','3152'),(47990,3176,'_content_block_2_video_cover_image_mobile','field_5bbe765b3d327'),(47991,3176,'content_block_3_layout_title','Spacer'),(47992,3176,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(47993,3176,'content_block_3_text_block_columns','one'),(47994,3176,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(47995,3176,'content_block_3_narrow_text_block_content','0'),(47996,3176,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(47997,3176,'content_block_3_reverse_colors','0'),(47998,3176,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(47999,3176,'content_block_3_enable_background_image','0'),(48000,3176,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(48001,3176,'content_block_3_custom_css_class',''),(48002,3176,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(48003,3176,'content_block_3_text_block_content_col_one',''),(48004,3176,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(48005,3176,'content_block_4_layout_title','Book your wine blendig Experience'),(48006,3176,'_content_block_4_layout_title','field_5bc11ca9a0d50-s'),(48007,3176,'content_block_4_text_block_columns','one'),(48008,3176,'_content_block_4_text_block_columns','field_5bbe2f81a4de0'),(48009,3176,'content_block_4_narrow_text_block_content','0'),(48010,3176,'_content_block_4_narrow_text_block_content','field_5bbe342e08360'),(48011,3176,'content_block_4_reverse_colors','0'),(48012,3176,'_content_block_4_reverse_colors','field_5bbe3027a4de1'),(48013,3176,'content_block_4_enable_background_image','0'),(48014,3176,'_content_block_4_enable_background_image','field_5bbe30b1a4de2'),(48015,3176,'content_block_4_custom_css_class','wine_booking'),(48016,3176,'_content_block_4_custom_css_class','field_5bbe30b1a4de2-1'),(48017,3176,'content_block_4_text_block_content_col_one','<h2 style=\"text-align: center;\">Everyone Can Learn To Blend</h2>\r\nFrom beginners to seasoned wine experts - all are welcome around the blending table.  Looking for a unique activity for your corporate group, team building event, or large party? Are you new to wine and looking to explore a bit?  In any case, we\'ve got you covered!\r\n\r\nOur blending experience is perfect for all levels of wine experience and we can host most any group size.  Contact us to discuss your needs and let us help you plan the perfect wine adventure.Advance reservations required, so don\'t miss out on this fantastic opportunity. Prices are $125/person or $100 for club members.  Price varies for groups of 12 or more guests.  <a href=\"mailto:tastingroom@meadowcroftwines.com\">Contact us</a> for pricing.\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"#\">Check Avilability</a></p>'),(48018,3176,'_content_block_4_text_block_content_col_one','field_5bbe313b3920d'),(48019,3176,'content_block_5_layout_title','Message from Meadowcroft wines CEO'),(48020,3176,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(48021,3176,'content_block_5_text_block_columns','one'),(48022,3176,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(48023,3176,'content_block_5_narrow_text_block_content','0'),(48024,3176,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(48025,3176,'content_block_5_reverse_colors','0'),(48026,3176,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(48027,3176,'content_block_5_enable_background_image','0'),(48028,3176,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(48029,3176,'content_block_5_custom_css_class','ceo_message'),(48030,3176,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(48031,3176,'content_block_5_text_block_content_col_one','<h2 style=\"text-align: center;\">Message from Tom Meadowcroft</h2>\r\n<img class=\"wp-image-885 aligncenter\" src=\"/wp-content/uploads/2023/08/Ceo_message-1-scaled.jpg\" alt=\"Woman pouring red wine into glass\" width=\"500\" height=\"353\" />\r\n\r\nAs the winemaker and owner of Meadowcroft, I invite you to join us for a unique and unforgettable wine blending experience. Following a stroll through the breathtaking Cornerstone Gardens, you’ll unleash your inner winemaker as you blend 4 distinct varietals to create a classic Bordeaux-style red blend. I invite you to experiment with different blending components until you\'ve found the perfect balance. Once you\'ve created your masterpiece, you\'ll have the pleasure of labeling and hand-corking your own 750ml bottle.\r\n\r\nAt Meadowcroft, we welcome corporate groups, team building events, and large parties, and we would love to help you plan the perfect outing. So, gather your friends, family, or colleagues and join us for an educational and enjoyable afternoon in one of Sonoma\'s most picturesque wineries.\r\n\r\nCheers!\r\n\r\nTom Meadowcroft'),(48032,3176,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(48073,3176,'content_block','a:7:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:5:\"video\";i:3;s:10:\"text_block\";i:4;s:10:\"text_block\";i:5;s:10:\"text_block\";i:6;s:11:\"faq_section\";}'),(48074,3176,'_content_block','field_5bbe19a7efa09'),(48075,3151,'content_block_2_layout_title',''),(48076,3151,'_content_block_2_layout_title','field_5bc11ca9a0d50-u'),(48077,3151,'content_block_2_video_width','regular'),(48078,3151,'_content_block_2_video_width','field_5bbe75793d323'),(48079,3151,'content_block_2_autoplay_video','0'),(48080,3151,'_content_block_2_autoplay_video','field_5bbe7f869a2a7'),(48081,3151,'content_block_2_add_a_muteunmute_button','0'),(48082,3151,'_content_block_2_add_a_muteunmute_button','field_5de6f2f5cc5c4m'),(48083,3151,'content_block_2_mobile_video','autoplay'),(48084,3151,'_content_block_2_mobile_video','field_5de7031a2009e'),(48085,3151,'content_block_2_video_source','Vimeo'),(48086,3151,'_content_block_2_video_source','field_5bbe74973d31d'),(48087,3151,'content_block_2_local_video','3175'),(48088,3151,'_content_block_2_local_video','field_5bbe74c83d31e'),(48089,3151,'content_block_2_video_cover_image','3152'),(48090,3151,'_content_block_2_video_cover_image','field_5bbe75d33d326'),(48091,3151,'content_block_2_video_cover_image_mobile','3152'),(48092,3151,'_content_block_2_video_cover_image_mobile','field_5bbe765b3d327'),(48175,3176,'content_block_6_faq_head','Frequently Asked Questions'),(48176,3176,'_content_block_6_faq_head','field_64d080fb1832c'),(48177,3176,'content_block_6_faq_0_faq_heading','How do you blend wine?'),(48178,3176,'_content_block_6_faq_0_faq_heading','field_64d084b4a51fd'),(48179,3176,'content_block_6_faq_0_faq_content','Wine blending is the process of mixing different wines together to create a final product that has a balanced, desirable flavor profile. You’ll blend different grape varieties from distinct vineyards to achieve the desired balance of acidity, tannins, and fruitiness. You’ll begin by smelling each potential component and then tasting through the wines to see which elements you prefer.  The key is to create a final wine that showcases the best qualities of each individual component. Your perfect blend will be defined by you according to your own unique preferences.  We look forward to teaching you the art of the blending process and look forward to seeing what you create. '),(48180,3176,'_content_block_6_faq_0_faq_content','field_64d084c3a51fe'),(48181,3176,'content_block_6_faq_1_faq_heading','Is it normal to blend wine varietals?'),(48182,3176,'_content_block_6_faq_1_faq_heading','field_64d084b4a51fd'),(48183,3176,'content_block_6_faq_1_faq_content','Blending wine is an option but not required.  Some wines are comprised of varying percentages of several varietals while others can be perfect as a single varietal.  This is the choice of the winemaker/blender and there are limitless possibilities of blending combinations. '),(48184,3176,'_content_block_6_faq_1_faq_content','field_64d084c3a51fe'),(48185,3176,'content_block_6_faq_2_faq_heading','What is the purpose of blending wines?'),(48186,3176,'_content_block_6_faq_2_faq_heading','field_64d084b4a51fd'),(48187,3176,'content_block_6_faq_2_faq_content','Wine blending is the process of combining different grape varieties or wines to create a single wine product that offers a balanced/round taste profile that a winemaker aims to achieve. This process is done to showcase the best characteristics of a varietal and perhaps minimize undesirable elements in another.  The blending process can also create a unique taste that\'s not possible to achieve with a single grape variety. The goal of winemakers is to produce a harmonious blend that has a consistent flavor and aroma from year to year. Different blending techniques such as trial and error and mathematical models are employed to achieve the desired wine blend.'),(48188,3176,'_content_block_6_faq_2_faq_content','field_64d084c3a51fe'),(48189,3176,'content_block_6_faq_3_faq_heading','What are some well known wine blends?'),(48190,3176,'_content_block_6_faq_3_faq_heading','field_64d084b4a51fd'),(48191,3176,'content_block_6_faq_3_faq_content','When it comes to famous wine blends, the possibilities are endless. One classic example is Bordeaux, which is a blend of Cabernet Sauvignon, Merlot, and sometimes Cabernet Franc, Petit Verdot, or Malbec. Another popular blend is Châteauneuf-du-Pape, a Rhône Valley blend of Grenache, Syrah, and Mourvèdre, and sometimes Cinsault, Counoise, or Muscardin. In Italy, Super Tuscans are highly sought-after blends that often include Sangiovese, Merlot, and Cabernet Sauvignon, while in Spain, Rioja blends feature Tempranillo, Grenache, and sometimes Graciano or Mazuelo. These famous wine blends showcase the complexity and depth that can be achieved through careful blending, and offer wine lovers a range of delicious and unique flavor profiles to explore.'),(48192,3176,'_content_block_6_faq_3_faq_content','field_64d084c3a51fe'),(48193,3176,'content_block_6_faq_4_faq_heading','Does blending wine make it better?'),(48194,3176,'_content_block_6_faq_4_faq_heading','field_64d084b4a51fd'),(48195,3176,'content_block_6_faq_4_faq_content','Well, blending wine has been a common practice for years to achieve specific flavors and aromas in the final product. Though it\'s not a guarantee, blending can enhance the wine\'s complexity and bring out desirable characteristics hidden in individual varietals. In particular, blending can increase the acidity, tannin, color, and aroma profile of the wine to make it more balanced, flavorful, and pleasing to the palate. Additionally, blending can ensure consistency between batches and save vineyards from crops that do not meet their usual high standards. In conclusion, blending wine can indeed make it taste better, provided it\'s done thoughtfully and skillfully.'),(48196,3176,'_content_block_6_faq_4_faq_content','field_64d084c3a51fe'),(48197,3176,'content_block_6_faq_5_faq_heading','Why do you swirl wine before drinking?'),(48198,3176,'_content_block_6_faq_5_faq_heading','field_64d084b4a51fd'),(48199,3176,'content_block_6_faq_5_faq_content','When it comes to wine tasting, there are four main steps: swirling, smelling, sipping, and savoring. Swirling allows the wine to release aromas and flavors, while smelling helps identify those scents. The sip is where you taste the wine and evaluate its flavors and mouthfeel. Finally, savoring involves holding the wine in your mouth for a few seconds to fully appreciate it. Throughout the process, it\'s important to consider the wine\'s color, clarity, and aroma, as well as its taste and finish. Overall, wine evaluation is a truly sensory experience that requires attention to detail and an appreciation for the complexities of the drink.'),(48200,3176,'_content_block_6_faq_5_faq_content','field_64d084c3a51fe'),(48201,3176,'content_block_6_faq','6'),(48202,3176,'_content_block_6_faq','field_64d0849aa51fc'),(48203,3163,'_wp_attachment_image_alt','Blending wine at Meadowcroft'),(48204,3151,'content_block_5_faq_head','Frequently Asked Questions'),(48205,3151,'_content_block_5_faq_head','field_64d080fb1832c'),(48206,3151,'content_block_5_faq_0_faq_heading','How do you blend wine?'),(48207,3151,'_content_block_5_faq_0_faq_heading','field_64d084b4a51fd'),(48208,3151,'content_block_5_faq_0_faq_content','Wine blending is the process of mixing different wines together to create a final product that has a balanced, desirable flavor profile. You’ll blend different grape varieties from distinct vineyards to achieve the desired balance of acidity, tannins, and fruitiness. You’ll begin by smelling each potential component and then tasting through the wines to see which elements you prefer.  The key is to create a final wine that showcases the best qualities of each individual component. Your perfect blend will be defined by you according to your own unique preferences.  We look forward to teaching you the art of the blending process and look forward to seeing what you create. '),(48209,3151,'_content_block_5_faq_0_faq_content','field_64d084c3a51fe'),(48210,3151,'content_block_5_faq_1_faq_heading','Is it normal to blend wine varietals?'),(48211,3151,'_content_block_5_faq_1_faq_heading','field_64d084b4a51fd'),(48212,3151,'content_block_5_faq_1_faq_content','Blending wine is an option but not required.  Some wines are comprised of varying percentages of several varietals while others can be perfect as a single varietal.  This is the choice of the winemaker/blender and there are limitless possibilities of blending combinations. '),(48213,3151,'_content_block_5_faq_1_faq_content','field_64d084c3a51fe'),(48214,3151,'content_block_5_faq_2_faq_heading','What is the purpose of blending wines?'),(48215,3151,'_content_block_5_faq_2_faq_heading','field_64d084b4a51fd'),(48216,3151,'content_block_5_faq_2_faq_content','Wine blending is the process of combining different grape varieties or wines to create a single wine product that offers a balanced/round taste profile that a winemaker aims to achieve. This process is done to showcase the best characteristics of a varietal and perhaps minimize undesirable elements in another.  The blending process can also create a unique taste that\'s not possible to achieve with a single grape variety. The goal of winemakers is to produce a harmonious blend that has a consistent flavor and aroma from year to year. Different blending techniques such as trial and error and mathematical models are employed to achieve the desired wine blend.'),(48217,3151,'_content_block_5_faq_2_faq_content','field_64d084c3a51fe'),(48218,3151,'content_block_5_faq_3_faq_heading','What are some well known wine blends?'),(48219,3151,'_content_block_5_faq_3_faq_heading','field_64d084b4a51fd'),(48220,3151,'content_block_5_faq_3_faq_content','When it comes to famous wine blends, the possibilities are endless. One classic example is Bordeaux, which is a blend of Cabernet Sauvignon, Merlot, and sometimes Cabernet Franc, Petit Verdot, or Malbec. Another popular blend is Châteauneuf-du-Pape, a Rhône Valley blend of Grenache, Syrah, and Mourvèdre, and sometimes Cinsault, Counoise, or Muscardin. In Italy, Super Tuscans are highly sought-after blends that often include Sangiovese, Merlot, and Cabernet Sauvignon, while in Spain, Rioja blends feature Tempranillo, Grenache, and sometimes Graciano or Mazuelo. These famous wine blends showcase the complexity and depth that can be achieved through careful blending, and offer wine lovers a range of delicious and unique flavor profiles to explore.'),(48221,3151,'_content_block_5_faq_3_faq_content','field_64d084c3a51fe'),(48222,3151,'content_block_5_faq_4_faq_heading','Does blending wine make it better?'),(48223,3151,'_content_block_5_faq_4_faq_heading','field_64d084b4a51fd'),(48224,3151,'content_block_5_faq_4_faq_content','Well, blending wine has been a common practice for years to achieve specific flavors and aromas in the final product. Though it\'s not a guarantee, blending can enhance the wine\'s complexity and bring out desirable characteristics hidden in individual varietals. In particular, blending can increase the acidity, tannin, color, and aroma profile of the wine to make it more balanced, flavorful, and pleasing to the palate. Additionally, blending can ensure consistency between batches and save vineyards from crops that do not meet their usual high standards. In conclusion, blending wine can indeed make it taste better, provided it\'s done thoughtfully and skillfully.'),(48225,3151,'_content_block_5_faq_4_faq_content','field_64d084c3a51fe'),(48226,3151,'content_block_5_faq_5_faq_heading','Why do you swirl wine before drinking?'),(48227,3151,'_content_block_5_faq_5_faq_heading','field_64d084b4a51fd'),(48228,3151,'content_block_5_faq_5_faq_content','When it comes to wine tasting, there are four main steps: swirling, smelling, sipping, and savoring. Swirling allows the wine to release aromas and flavors, while smelling helps identify those scents. The sip is where you taste the wine and evaluate its flavors and mouthfeel. Finally, savoring involves holding the wine in your mouth for a few seconds to fully appreciate it. Throughout the process, it\'s important to consider the wine\'s color, clarity, and aroma, as well as its taste and finish. Overall, wine evaluation is a truly sensory experience that requires attention to detail and an appreciation for the complexities of the drink.'),(48229,3151,'_content_block_5_faq_5_faq_content','field_64d084c3a51fe'),(48230,3151,'content_block_5_faq','6'),(48231,3151,'_content_block_5_faq','field_64d0849aa51fc'),(48232,3151,'_thumbnail_id','3152'),(48233,3151,'_yoast_wpseo_focuskw','wine blending in Sonoma'),(48234,3151,'_yoast_wpseo_metadesc','Create your own classic red Bordeaux style blend using carefully aged wines from separate oak barrels. The best part? You\'ll get to label and hand-cork your own 750ml bottle of your custom blend to take home!'),(48235,3151,'_yoast_wpseo_linkdex','61'),(48236,3177,'content_block_0_layout_title','Balloon and Blending: Soaring Above Vineyards and Crafting Your Own Wine Blend'),(48237,3177,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(48238,3177,'content_block_0_custom_css_class','balloon-blending-banner'),(48239,3177,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(48240,3177,'content_block_0_banner_full_width','1'),(48241,3177,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(48242,3177,'content_block_0_banner_size','normal'),(48243,3177,'_content_block_0_banner_size','field_5bbe232929ec9'),(48244,3177,'content_block_0_add_parallax_effect','0'),(48245,3177,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(48246,3177,'content_block_0_add_veil_over_banner','1'),(48247,3177,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(48248,3177,'content_block_0_banner_content_position','centered'),(48249,3177,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(48250,3177,'content_block_0_banner_title','Meadowcroft Balloon and Blending Experience'),(48251,3177,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(48252,3177,'content_block_0_banner_subtitle',''),(48253,3177,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(48254,3177,'content_block_0_banner_button_link',''),(48255,3177,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(48256,3177,'content_block_0_banner_button_new_tab','1'),(48257,3177,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(48258,3177,'content_block_0_show_down_arrow','0'),(48259,3177,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(48260,3177,'content_block_0_banner_image_description','Sonoma Ballooning flying over vineyards in wine country'),(48261,3177,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(48262,3177,'content_block_0_banner_image','3166'),(48263,3177,'_content_block_0_banner_image','field_5bbe201718faf'),(48264,3177,'content_block_0_banner_image_position','center center'),(48265,3177,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(48266,3177,'content_block_0_banner_image_mobile','3166'),(48267,3177,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(48268,3177,'content_block_0_banner_image_mobile_position','center center'),(48269,3177,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(48270,3177,'content_block_1_layout_title','Top-Rated Hot air balloon'),(48271,3177,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(48272,3177,'content_block_1_text_block_columns','one'),(48273,3177,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(48274,3177,'content_block_1_narrow_text_block_content','0'),(48275,3177,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(48276,3177,'content_block_1_reverse_colors','0'),(48277,3177,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(48278,3177,'content_block_1_enable_background_image','0'),(48279,3177,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(48280,3177,'content_block_1_custom_css_class',''),(48281,3177,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(48282,3177,'content_block_1_text_block_content_col_one','<h2 role=\"heading\" aria-level=\"2\" data-uw-rm-heading=\"level\">Soar Above the Vineyards and Blend Your Own Wine</h2>\r\nEscape to Sonoma Valley for an unforgettable adventure that combines the thrill of a hot air balloon ride with the art of wine blending. We\'ve teamed up with Sonoma Ballooning to create a truly unique experience that will leave you with memories to cherish.\r\n\r\n<strong>Picture this:</strong> as the sun rises, you\'ll embark on a magical hot air balloon flight with Sonoma Ballooning. Enjoy breathtaking views of the vineyards and countryside as you float through the sky. After landing, it\'s time for a post-flight celebration with a champagne toast.\r\n\r\nBut the excitement doesn\'t end there. You\'ll then head to Meadowcroft Wines for a blending seminar like no other. Explore the beautiful Cornerstone Gardens and learn the secrets of wine blending from the experts. Create your own signature blend and even personalize and hand-cork your own 750ml bottle of the perfect blend that you created.\r\n\r\nThis exclusive package is perfect for wine enthusiasts and adventure seekers alike. It\'s a once-in-a-lifetime experience that you can share with your loved ones for years to come.\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"/tasting-room/#a-perfect-blend\">Book Now</a></p>'),(48283,3177,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(48284,3177,'content_block_2_layout_title','Wine blending experience video'),(48285,3177,'_content_block_2_layout_title','field_5bc11ca9a0d50-u'),(48286,3177,'content_block_2_video_width','regular'),(48287,3177,'_content_block_2_video_width','field_5bbe75793d323'),(48288,3177,'content_block_2_autoplay_video','0'),(48289,3177,'_content_block_2_autoplay_video','field_5bbe7f869a2a7'),(48290,3177,'content_block_2_add_a_muteunmute_button','1'),(48291,3177,'_content_block_2_add_a_muteunmute_button','field_5de6f2f5cc5c4m'),(48292,3177,'content_block_2_mobile_video','autoplay'),(48293,3177,'_content_block_2_mobile_video','field_5de7031a2009e'),(48294,3177,'content_block_2_video_source','Local'),(48295,3177,'_content_block_2_video_source','field_5bbe74973d31d'),(48296,3177,'content_block_2_local_video','3118'),(48297,3177,'_content_block_2_local_video','field_5bbe74c83d31e'),(48298,3177,'content_block_2_video_cover_image','3152'),(48299,3177,'_content_block_2_video_cover_image','field_5bbe75d33d326'),(48300,3177,'content_block_2_video_cover_image_mobile','3152'),(48301,3177,'_content_block_2_video_cover_image_mobile','field_5bbe765b3d327'),(48302,3177,'content_block_3_layout_title',''),(48303,3177,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(48304,3177,'content_block_3_text_block_columns','one'),(48305,3177,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(48306,3177,'content_block_3_narrow_text_block_content','0'),(48307,3177,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(48308,3177,'content_block_3_reverse_colors','0'),(48309,3177,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(48310,3177,'content_block_3_enable_background_image','0'),(48311,3177,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(48312,3177,'content_block_3_custom_css_class',''),(48313,3177,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(48314,3177,'content_block_3_text_block_content_col_one','&nbsp;'),(48315,3177,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(48316,3177,'content_block_4_layout_title',''),(48317,3177,'_content_block_4_layout_title','field_5bc11ca9a0d50-c'),(48318,3177,'content_block_4_custom_css_class',''),(48319,3177,'_content_block_4_custom_css_class','field_5bbf30b1a4de2-1'),(48320,3177,'content_block_4_banner_full_width','0'),(48321,3177,'_content_block_4_banner_full_width','field_5bbe19c8efa0a'),(48322,3177,'content_block_4_banner_size','normal'),(48323,3177,'_content_block_4_banner_size','field_5bbe232929ec9'),(48324,3177,'content_block_4_add_parallax_effect','0'),(48325,3177,'_content_block_4_add_parallax_effect','field_5bbe219ccb6a9'),(48326,3177,'content_block_4_add_veil_over_banner','0'),(48327,3177,'_content_block_4_add_veil_over_banner','field_5bbe333f39212'),(48328,3177,'content_block_4_banner_content_position','centered'),(48329,3177,'_content_block_4_banner_content_position','field_5bbe259b02b62'),(48330,3177,'content_block_4_banner_title',''),(48331,3177,'_content_block_4_banner_title','field_5bbe1b78efa0b'),(48332,3177,'content_block_4_banner_subtitle',''),(48333,3177,'_content_block_4_banner_subtitle','field_5bbe1b83efa0c'),(48334,3177,'content_block_4_banner_button_link',''),(48335,3177,'_content_block_4_banner_button_link','field_5bbe1b8cefa0d'),(48336,3177,'content_block_4_banner_button_new_tab','0'),(48337,3177,'_content_block_4_banner_button_new_tab','field_5bbe1e6d18fae'),(48338,3177,'content_block_4_show_down_arrow','0'),(48339,3177,'_content_block_4_show_down_arrow','field_5bbe24f721165'),(48340,3177,'content_block_4_banner_image_description',''),(48341,3177,'_content_block_4_banner_image_description','field_5bbf30b1a4de2-1a'),(48342,3177,'content_block_4_banner_image','3160'),(48343,3177,'_content_block_4_banner_image','field_5bbe201718faf'),(48344,3177,'content_block_4_banner_image_position','center center'),(48345,3177,'_content_block_4_banner_image_position','field_5bbe278f9fb97'),(48346,3177,'content_block_4_banner_image_mobile','3160'),(48347,3177,'_content_block_4_banner_image_mobile','field_5bbe202818fb0'),(48348,3177,'content_block_4_banner_image_mobile_position','center center'),(48349,3177,'_content_block_4_banner_image_mobile_position','field_5bbe279c9fb98'),(48350,3177,'content_block_5_layout_title',''),(48351,3177,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(48352,3177,'content_block_5_text_block_columns','one'),(48353,3177,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(48354,3177,'content_block_5_narrow_text_block_content','0'),(48355,3177,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(48356,3177,'content_block_5_reverse_colors','0'),(48357,3177,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(48358,3177,'content_block_5_enable_background_image','0'),(48359,3177,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(48360,3177,'content_block_5_custom_css_class',''),(48361,3177,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(48362,3177,'content_block_5_text_block_content_col_one','&nbsp;'),(48363,3177,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(48364,3177,'content_block_6_layout_title','Quote section'),(48365,3177,'_content_block_6_layout_title','field_5bc11ca9a0d50-s'),(48366,3177,'content_block_6_text_block_columns','one'),(48367,3177,'_content_block_6_text_block_columns','field_5bbe2f81a4de0'),(48368,3177,'content_block_6_narrow_text_block_content','0'),(48369,3177,'_content_block_6_narrow_text_block_content','field_5bbe342e08360'),(48370,3177,'content_block_6_reverse_colors','1'),(48371,3177,'_content_block_6_reverse_colors','field_5bbe3027a4de1'),(48372,3177,'content_block_6_enable_background_image','1'),(48373,3177,'_content_block_6_enable_background_image','field_5bbe30b1a4de2'),(48374,3177,'content_block_6_parallax_effect_on_image','0'),(48375,3177,'_content_block_6_parallax_effect_on_image','field_5bbe319b39211'),(48376,3177,'content_block_6_custom_css_class','quote_section'),(48377,3177,'_content_block_6_custom_css_class','field_5bbe30b1a4de2-1'),(48378,3177,'content_block_6_text_block_content_col_one','<h2 style=\"text-align: center;\">Make Memories in Wine Country</h2>\r\n<p style=\"text-align: center;\">“As the owner of Meadowcroft Wines, I invite you to come and take part in our unique Balloon and Blending experience. With over 20 years of expertise in the wine industry, we are thrilled to offer an unforgettable opportunity for wine enthusiasts and adventure-seekers alike. Our blending seminar takes place in our tasting room located in Cornerstone Marketplace, where you\'ll learn about the art of wine blending. Along with your newfound winemaking skills, you\'ll also be able to take home a 750ml bottle of your wine - labeled and hand-corked by you.</p>\r\n<p style=\"text-align: center;\">Combined with a magical sunrise balloon flight with Sonoma Ballooning, this is truly a once-in-a-lifetime experience that you don\'t want to miss out on. Join us for a day filled with breathtaking views, unforgettable memories, and exceptional wine. We hope to see you soon!” - Tom Meadowcroft</p>'),(48379,3177,'_content_block_6_text_block_content_col_one','field_5bbe313b3920d'),(48380,3177,'content_block_6_background_image','947'),(48381,3177,'_content_block_6_background_image','field_5bbe2eb1a4ddb'),(48382,3177,'content_block_6_background_image_position','center center'),(48383,3177,'_content_block_6_background_image_position','field_5bbe2eb1a4ddc'),(48384,3177,'content_block_6_background_image_mobile','947'),(48385,3177,'_content_block_6_background_image_mobile','field_5bbe3b5e5f6f8'),(48386,3177,'content_block_6_background_image_position_mobile','center center'),(48387,3177,'_content_block_6_background_image_position_mobile','field_5bbe3b695f6f9'),(48388,3177,'content_block_7_layout_title','Disclaimer'),(48389,3177,'_content_block_7_layout_title','field_5bc11ca9a0d50-s'),(48390,3177,'content_block_7_text_block_columns','one'),(48391,3177,'_content_block_7_text_block_columns','field_5bbe2f81a4de0'),(48392,3177,'content_block_7_narrow_text_block_content','0'),(48393,3177,'_content_block_7_narrow_text_block_content','field_5bbe342e08360'),(48394,3177,'content_block_7_reverse_colors','0'),(48395,3177,'_content_block_7_reverse_colors','field_5bbe3027a4de1'),(48396,3177,'content_block_7_enable_background_image','0'),(48397,3177,'_content_block_7_enable_background_image','field_5bbe30b1a4de2'),(48398,3177,'content_block_7_custom_css_class','disclaimer_section'),(48399,3177,'_content_block_7_custom_css_class','field_5bbe30b1a4de2-1'),(48400,3177,'content_block_7_text_block_content_col_one','<h2 style=\"text-align: center;\">Disclaimer</h2>\r\nBalloon and Blending experience is subject to availability due to weather conditions and the availability of appointments at Sonoma Ballooning. All participants must be 21 years of age or older.'),(48401,3177,'_content_block_7_text_block_content_col_one','field_5bbe313b3920d'),(48402,3177,'content_block_8_media_heading','Media'),(48403,3177,'_content_block_8_media_heading','field_64cce6e0be3a0'),(48404,3177,'content_block_8_media_image_section_0_gallery_images','3161'),(48405,3177,'_content_block_8_media_image_section_0_gallery_images','field_64ccd3ad4019f'),(48406,3177,'content_block_8_media_image_section_1_gallery_images','3168'),(48407,3177,'_content_block_8_media_image_section_1_gallery_images','field_64ccd3ad4019f'),(48408,3177,'content_block_8_media_image_section_2_gallery_images','3169'),(48409,3177,'_content_block_8_media_image_section_2_gallery_images','field_64ccd3ad4019f'),(48410,3177,'content_block_8_media_image_section_3_gallery_images','3164'),(48411,3177,'_content_block_8_media_image_section_3_gallery_images','field_64ccd3ad4019f'),(48412,3177,'content_block_8_media_image_section_4_gallery_images','3172'),(48413,3177,'_content_block_8_media_image_section_4_gallery_images','field_64ccd3ad4019f'),(48414,3177,'content_block_8_media_image_section_5_gallery_images','3167'),(48415,3177,'_content_block_8_media_image_section_5_gallery_images','field_64ccd3ad4019f'),(48416,3177,'content_block_8_media_image_section_6_gallery_images','3163'),(48417,3177,'_content_block_8_media_image_section_6_gallery_images','field_64ccd3ad4019f'),(48418,3177,'content_block_8_media_image_section_7_gallery_images','3165'),(48419,3177,'_content_block_8_media_image_section_7_gallery_images','field_64ccd3ad4019f'),(48420,3177,'content_block_8_media_image_section','8'),(48421,3177,'_content_block_8_media_image_section','field_64cccba4f180e'),(48422,3177,'content_block_8_media_video_section',''),(48423,3177,'_content_block_8_media_video_section','field_64ccd40f401a1'),(48424,3177,'content_block_9_faq_head',''),(48425,3177,'_content_block_9_faq_head','field_64d080fb1832c'),(48426,3177,'content_block_9_faq_0_faq_heading','What does the \"Balloon and Blending\" experience entail?'),(48427,3177,'_content_block_9_faq_0_faq_heading','field_64d084b4a51fd'),(48428,3177,'content_block_9_faq_0_faq_content','Meadowcroft’s Balloon and Blending experience begins with an adventurous balloon flight over wine country with Sonoma Ballooning.  Following the flight, guests are taken to the Meadowcroft tasting room located in the Cornerstone Sonoma Marketplace.   The blending portion begins with a tour of the breathtaking Cornerstone gardens (weather permitting) offering an opportunity to learn about viticulture and to awaken your senses.  After the tour, you’ll explore four of the noble Bordeaux red wine varietals and assemble your very own “Perfect Blend”.  When you’re finished, you will bottle and hand-cork your very own wine blend to share with family and friends at home. '),(48429,3177,'_content_block_9_faq_0_faq_content','field_64d084c3a51fe'),(48430,3177,'content_block_9_faq_1_faq_heading','Can I personalize my own wine blend during the seminar?'),(48431,3177,'_content_block_9_faq_1_faq_heading','field_64d084b4a51fd'),(48432,3177,'content_block_9_faq_1_faq_content','Yes, personalization is what this experience is all about.  You will add specific amounts of various wine varietal barrel samples to create a blend that is unique to you.  No two blends are alike and everyone is encouraged to experiment. '),(48433,3177,'_content_block_9_faq_1_faq_content','field_64d084c3a51fe'),(48434,3177,'content_block_9_faq_2_faq_heading','Is the \"Balloon and Blending\" adventure suitable for all ages? '),(48435,3177,'_content_block_9_faq_2_faq_heading','field_64d084b4a51fd'),(48436,3177,'content_block_9_faq_2_faq_content','While we absolutely welcome all levels of experience, unfortunately, we can only allow guests 21 years of age and older to participate in the wine blending. '),(48437,3177,'_content_block_9_faq_2_faq_content','field_64d084c3a51fe'),(48438,3177,'content_block_9_faq_3_faq_heading','Are advanced reservations necessary to participate in the experience?'),(48439,3177,'_content_block_9_faq_3_faq_heading','field_64d084b4a51fd'),(48440,3177,'content_block_9_faq_3_faq_content','Advance reservations are indeed required for the Balloon and Blending experience.  All reservations begin with scheduling a balloon flight with Sonoma Ballooning.  The blending is coordinated according to the flight schedule. '),(48441,3177,'_content_block_9_faq_3_faq_content','field_64d084c3a51fe'),(48442,3177,'content_block_9_faq_4_faq_heading','Can I gift this experience to a loved one for a special occasion?'),(48443,3177,'_content_block_9_faq_4_faq_heading','field_64d084b4a51fd'),(48444,3177,'content_block_9_faq_4_faq_content','Our Balloon and Blending experience would make an excellent gift.  Please contact us to help you arrange it. '),(48445,3177,'_content_block_9_faq_4_faq_content','field_64d084c3a51fe'),(48446,3177,'content_block_9_faq','5'),(48447,3177,'_content_block_9_faq','field_64d0849aa51fc'),(48448,3177,'content_block','a:10:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:5:\"video\";i:3;s:10:\"text_block\";i:4;s:6:\"banner\";i:5;s:10:\"text_block\";i:6;s:10:\"text_block\";i:7;s:10:\"text_block\";i:8;s:13:\"media_section\";i:9;s:11:\"faq_section\";}'),(48449,3177,'_content_block','field_5bbe19a7efa09'),(48778,3150,'_yoast_wpseo_metadesc','Experience the thrill of a hot air balloon ride over Sonoma Valley followed by a wine blending seminar at Meadowcroft Wines. Create your own signature blend and bottle it. Perfect for wine and adventure lovers. Book your unique experience now!'),(48779,3150,'content_block_3_layout_title',''),(48780,3150,'_content_block_3_layout_title','field_5bc11ca9a0d50-c'),(48781,3150,'content_block_3_custom_css_class','Balloon-img'),(48782,3150,'_content_block_3_custom_css_class','field_5bbf30b1a4de2-1'),(48783,3150,'content_block_3_banner_full_width','0'),(48784,3150,'_content_block_3_banner_full_width','field_5bbe19c8efa0a'),(48785,3150,'content_block_3_banner_size','normal'),(48786,3150,'_content_block_3_banner_size','field_5bbe232929ec9'),(48787,3150,'content_block_3_add_parallax_effect','0'),(48788,3150,'_content_block_3_add_parallax_effect','field_5bbe219ccb6a9'),(48789,3150,'content_block_3_add_veil_over_banner','0'),(48790,3150,'_content_block_3_add_veil_over_banner','field_5bbe333f39212'),(48791,3150,'content_block_3_banner_content_position','centered'),(48792,3150,'_content_block_3_banner_content_position','field_5bbe259b02b62'),(48793,3150,'content_block_3_banner_title',''),(48794,3150,'_content_block_3_banner_title','field_5bbe1b78efa0b'),(48795,3150,'content_block_3_banner_subtitle',''),(48796,3150,'_content_block_3_banner_subtitle','field_5bbe1b83efa0c'),(48797,3150,'content_block_3_banner_button_link',''),(48798,3150,'_content_block_3_banner_button_link','field_5bbe1b8cefa0d'),(48799,3150,'content_block_3_banner_button_new_tab','0'),(48800,3150,'_content_block_3_banner_button_new_tab','field_5bbe1e6d18fae'),(48801,3150,'content_block_3_show_down_arrow','0'),(48802,3150,'_content_block_3_show_down_arrow','field_5bbe24f721165'),(48803,3150,'content_block_3_banner_image_description',''),(48804,3150,'_content_block_3_banner_image_description','field_5bbf30b1a4de2-1a'),(48805,3150,'content_block_3_banner_image','3160'),(48806,3150,'_content_block_3_banner_image','field_5bbe201718faf'),(48807,3150,'content_block_3_banner_image_position','center center'),(48808,3150,'_content_block_3_banner_image_position','field_5bbe278f9fb97'),(48809,3150,'content_block_3_banner_image_mobile','3160'),(48810,3150,'_content_block_3_banner_image_mobile','field_5bbe202818fb0'),(48811,3150,'content_block_3_banner_image_mobile_position','center center'),(48812,3150,'_content_block_3_banner_image_mobile_position','field_5bbe279c9fb98'),(48813,3150,'content_block_4_layout_title','Quote section'),(48814,3150,'_content_block_4_layout_title','field_5bc11ca9a0d50-s'),(48815,3150,'content_block_4_text_block_columns','one'),(48816,3150,'_content_block_4_text_block_columns','field_5bbe2f81a4de0'),(48817,3150,'content_block_4_narrow_text_block_content','0'),(48818,3150,'_content_block_4_narrow_text_block_content','field_5bbe342e08360'),(48819,3150,'content_block_4_reverse_colors','1'),(48820,3150,'_content_block_4_reverse_colors','field_5bbe3027a4de1'),(48821,3150,'content_block_4_enable_background_image','1'),(48822,3150,'_content_block_4_enable_background_image','field_5bbe30b1a4de2'),(48823,3150,'content_block_4_parallax_effect_on_image','0'),(48824,3150,'_content_block_4_parallax_effect_on_image','field_5bbe319b39211'),(48825,3150,'content_block_4_custom_css_class','quote_section'),(48826,3150,'_content_block_4_custom_css_class','field_5bbe30b1a4de2-1'),(48827,3150,'content_block_4_text_block_content_col_one','<h2 style=\"text-align: center;\">Make Memories in Wine Country</h2>\r\n<p style=\"text-align: center;\">“As the owner of Meadowcroft Wines, I invite you to come and take part in our unique Balloon and Blending experience. With over 20 years of expertise in the wine industry, we are thrilled to offer an unforgettable opportunity for wine enthusiasts and adventure-seekers alike. Our blending seminar takes place in our tasting room located in Cornerstone Marketplace, where you\'ll learn about the art of wine blending. Along with your newfound winemaking skills, you\'ll also be able to take home a 750ml bottle of your wine - labeled and hand-corked by you.</p>\r\n<p style=\"text-align: center;\">Combined with a magical sunrise balloon flight with Sonoma Ballooning, this is truly a once-in-a-lifetime experience that you don\'t want to miss out on. Join us for a day filled with breathtaking views, unforgettable memories, and exceptional wine. We hope to see you soon!” - Tom Meadowcroft</p>'),(48828,3150,'_content_block_4_text_block_content_col_one','field_5bbe313b3920d'),(48829,3150,'content_block_4_background_image','947'),(48830,3150,'_content_block_4_background_image','field_5bbe2eb1a4ddb'),(48831,3150,'content_block_4_background_image_position','center center'),(48832,3150,'_content_block_4_background_image_position','field_5bbe2eb1a4ddc'),(48833,3150,'content_block_4_background_image_mobile','947'),(48834,3150,'_content_block_4_background_image_mobile','field_5bbe3b5e5f6f8'),(48835,3150,'content_block_4_background_image_position_mobile','center center'),(48836,3150,'_content_block_4_background_image_position_mobile','field_5bbe3b695f6f9'),(48837,3150,'content_block_6_media_heading','Media'),(48838,3150,'_content_block_6_media_heading','field_64cce6e0be3a0'),(48839,3150,'content_block_6_media_image_section_0_gallery_images','3161'),(48840,3150,'_content_block_6_media_image_section_0_gallery_images','field_64ccd3ad4019f'),(48841,3150,'content_block_6_media_image_section_1_gallery_images','3168'),(48842,3150,'_content_block_6_media_image_section_1_gallery_images','field_64ccd3ad4019f'),(48843,3150,'content_block_6_media_image_section_2_gallery_images','3169'),(48844,3150,'_content_block_6_media_image_section_2_gallery_images','field_64ccd3ad4019f'),(48845,3150,'content_block_6_media_image_section_3_gallery_images','3164'),(48846,3150,'_content_block_6_media_image_section_3_gallery_images','field_64ccd3ad4019f'),(48847,3150,'content_block_6_media_image_section_4_gallery_images','3172'),(48848,3150,'_content_block_6_media_image_section_4_gallery_images','field_64ccd3ad4019f'),(48849,3150,'content_block_6_media_image_section_5_gallery_images','3167'),(48850,3150,'_content_block_6_media_image_section_5_gallery_images','field_64ccd3ad4019f'),(48851,3150,'content_block_6_media_image_section_6_gallery_images','3163'),(48852,3150,'_content_block_6_media_image_section_6_gallery_images','field_64ccd3ad4019f'),(48853,3150,'content_block_6_media_image_section_7_gallery_images','3165'),(48854,3150,'_content_block_6_media_image_section_7_gallery_images','field_64ccd3ad4019f'),(48855,3150,'content_block_6_media_image_section','8'),(48856,3150,'_content_block_6_media_image_section','field_64cccba4f180e'),(48857,3150,'content_block_6_media_video_section',''),(48858,3150,'_content_block_6_media_video_section','field_64ccd40f401a1'),(48859,3150,'content_block_7_faq_head',''),(48860,3150,'_content_block_7_faq_head','field_64d080fb1832c'),(48861,3150,'content_block_7_faq_0_faq_heading','What does the \"Balloon and Blending\" experience entail?'),(48862,3150,'_content_block_7_faq_0_faq_heading','field_64d084b4a51fd'),(48863,3150,'content_block_7_faq_0_faq_content','Meadowcroft’s Balloon and Blending experience begins with an adventurous balloon flight over wine country with Sonoma Ballooning.  Following the flight, guests are taken to the Meadowcroft tasting room located in the Cornerstone Sonoma Marketplace.   The blending portion begins with a tour of the breathtaking Cornerstone gardens (weather permitting) offering an opportunity to learn about viticulture and to awaken your senses.  After the tour, you’ll explore four of the noble Bordeaux red wine varietals and assemble your very own “Perfect Blend”.  When you’re finished, you will bottle and hand-cork your very own wine blend to share with family and friends at home. '),(48864,3150,'_content_block_7_faq_0_faq_content','field_64d084c3a51fe'),(48865,3150,'content_block_7_faq_1_faq_heading','Can I personalize my own wine blend during the seminar?'),(48866,3150,'_content_block_7_faq_1_faq_heading','field_64d084b4a51fd'),(48867,3150,'content_block_7_faq_1_faq_content','Yes, personalization is what this experience is all about.  You will add specific amounts of various wine varietal barrel samples to create a blend that is unique to you.  No two blends are alike and everyone is encouraged to experiment. '),(48868,3150,'_content_block_7_faq_1_faq_content','field_64d084c3a51fe'),(48869,3150,'content_block_7_faq_2_faq_heading','Is the \"Balloon and Blending\" adventure suitable for all ages? '),(48870,3150,'_content_block_7_faq_2_faq_heading','field_64d084b4a51fd'),(48871,3150,'content_block_7_faq_2_faq_content','While we absolutely welcome all levels of experience, unfortunately, we can only allow guests 21 years of age and older to participate in the wine blending. '),(48872,3150,'_content_block_7_faq_2_faq_content','field_64d084c3a51fe'),(48873,3150,'content_block_7_faq_3_faq_heading','Are advanced reservations necessary to participate in the experience?'),(48874,3150,'_content_block_7_faq_3_faq_heading','field_64d084b4a51fd'),(48875,3150,'content_block_7_faq_3_faq_content','Advance reservations are indeed required for the Balloon and Blending experience.  All reservations begin with scheduling a balloon flight with Sonoma Ballooning.  The blending is coordinated according to the flight schedule. '),(48876,3150,'_content_block_7_faq_3_faq_content','field_64d084c3a51fe'),(48877,3150,'content_block_7_faq_4_faq_heading','Can I gift this experience to a loved one for a special occasion?'),(48878,3150,'_content_block_7_faq_4_faq_heading','field_64d084b4a51fd'),(48879,3150,'content_block_7_faq_4_faq_content','Our Balloon and Blending experience would make an excellent gift.  Please contact us to help you arrange it. '),(48880,3150,'_content_block_7_faq_4_faq_content','field_64d084c3a51fe'),(48881,3150,'content_block_7_faq','5'),(48882,3150,'_content_block_7_faq','field_64d0849aa51fc'),(48883,3178,'_menu_item_type','post_type'),(48884,3178,'_menu_item_menu_item_parent','920'),(48885,3178,'_menu_item_object_id','3151'),(48886,3178,'_menu_item_object','page'),(48887,3178,'_menu_item_target',''),(48888,3178,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(48889,3178,'_menu_item_xfn',''),(48890,3178,'_menu_item_url',''),(48892,3179,'_menu_item_type','post_type'),(48893,3179,'_menu_item_menu_item_parent','920'),(48894,3179,'_menu_item_object_id','3150'),(48895,3179,'_menu_item_object','page'),(48896,3179,'_menu_item_target',''),(48897,3179,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(48898,3179,'_menu_item_xfn',''),(48899,3179,'_menu_item_url',''),(48901,920,'_wp_old_date','2023-05-24'),(48902,456,'_wp_old_date','2023-05-24'),(48905,759,'_wp_old_date','2023-05-24'),(48906,2993,'_wp_old_date','2023-05-24'),(48907,2990,'_wp_old_date','2023-05-24'),(48908,2989,'_wp_old_date','2023-05-24'),(48909,2992,'_wp_old_date','2023-05-24'),(48910,2991,'_wp_old_date','2023-05-24'),(48912,3027,'_wp_old_date','2023-05-24'),(48913,1563,'_wp_old_date','2023-05-24'),(48914,948,'_wp_old_date','2023-05-24'),(48915,949,'_wp_old_date','2023-05-24'),(48916,950,'_wp_old_date','2023-05-24'),(48917,880,'_wp_old_date','2023-05-24'),(48918,1541,'_wp_old_date','2023-05-24'),(48919,3180,'_wp_attached_file','2023/09/DigitalGeneralBrochure.pdf'),(48920,3180,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:30:\"DigitalGeneralBrochure-pdf.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:3413;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:622798;}s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"DigitalGeneralBrochure-pdf-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49522;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"DigitalGeneralBrochure-pdf-576x1024.jpg\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119334;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"DigitalGeneralBrochure-pdf-84x150.jpg\";s:5:\"width\";i:84;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41609;}}s:8:\"filesize\";i:1843690;}'),(48922,3151,'content_block_0_show_this_content_block','1'),(48923,3151,'_content_block_0_show_this_content_block','field_643884e4df74banner'),(48924,3151,'content_block_1_show_this_content_block','1'),(48925,3151,'_content_block_1_show_this_content_block','field_643884e4df74c7textb'),(48926,3151,'content_block_2_show_this_content_block','1'),(48927,3151,'_content_block_2_show_this_content_block','field_643884e4df74c7vidleg'),(48928,3151,'content_block_2_custom_css_class',''),(48929,3151,'_content_block_2_custom_css_class','field_5bbe30b1ahalf-vidleg'),(48930,3151,'content_block_2_vimeo_video_id','862484226'),(48931,3151,'_content_block_2_vimeo_video_id','field_5bbe753d3d320'),(48932,3151,'content_block_3_show_this_content_block','1'),(48933,3151,'_content_block_3_show_this_content_block','field_643884e4df74c7textb'),(48934,3151,'content_block_4_show_this_content_block','1'),(48935,3151,'_content_block_4_show_this_content_block','field_643884e4df74c7textb'),(48937,3183,'web_id','91db700c-7855-4125-9236-9d44b838d850'),(48938,3183,'slug','chocolate-bar'),(48939,3183,'title','Chocolate Bar'),(48940,3183,'type','General Merchandise'),(48941,3183,'image',NULL),(48942,3183,'teaser',NULL),(48943,3183,'content',NULL),(48944,3183,'subtitle','2.6OZ'),(48945,3183,'price','700'),(48946,3183,'web_status','Not Available'),(48947,3183,'admin_status','Available'),(48948,3183,'vendor','Faire - Mast Chocolate'),(48949,3183,'collections','a:0:{}'),(48950,3183,'primary_collection',''),(48951,3184,'_wp_attached_file','2023/09/2022-PinotNoir-RussianRiver-FINAL.pdf'),(48952,3184,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:41:\"2022-PinotNoir-RussianRiver-FINAL-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141305;}s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"2022-PinotNoir-RussianRiver-FINAL-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12286;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"2022-PinotNoir-RussianRiver-FINAL-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77828;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"2022-PinotNoir-RussianRiver-FINAL-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5733;}}s:8:\"filesize\";i:196714;}'),(48981,443,'mec_location_id','0'),(48982,443,'mec_additional_location_ids','a:0:{}'),(48983,443,'mec_organizer_id','0'),(48984,443,'mec_additional_organizer_ids','a:0:{}'),(48985,3186,'web_id','7172dda8-7c8d-409e-9dad-70dfffe4d8d0'),(48986,3186,'slug','olive-oil-025l-'),(48987,3186,'title','Olive Oil'),(48988,3186,'type','General Merchandise'),(48989,3186,'image','https://images.commerce7.com/meadowcroft-wines/images/original/oil-1684088348707-1705197664353.jpg'),(48990,3186,'teaser','*****\"La Petita\", Extra Virgin Olive Oil\n&\n*** Olive Oil With Black Truffle\n&\n****Olive Oil With Thyme \n\n&\n***Olive Oil With Basil'),(48991,3186,'content',NULL),(48992,3186,'subtitle','0.25L Bottles'),(48993,3186,'price','1500'),(48994,3186,'web_status','Not Available'),(48995,3186,'admin_status','Available'),(48996,3186,'collections','a:0:{}'),(48997,3186,'primary_collection',''),(48998,3187,'web_id','fc94384c-3830-48b1-99d4-4869cbc48b25'),(48999,3187,'slug','chocolate-bar-duplicate'),(49000,3187,'title','Chocolate Bar Sampler Pack - MIA'),(49001,3187,'type','General Merchandise'),(49002,3187,'image',NULL),(49003,3187,'teaser',NULL),(49004,3187,'content',NULL),(49005,3187,'subtitle','5 BARS'),(49006,3187,'price','2000'),(49007,3187,'web_status','Not Available'),(49008,3187,'admin_status','Available'),(49009,3187,'vendor','Faire - Mast Chocolate'),(49010,3187,'collections','a:0:{}'),(49011,3187,'primary_collection',''),(49013,3189,'_wp_attached_file','2023/09/TechSheet-2020-Cab-StagsLeap-Final-2.pdf'),(49014,3189,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:44:\"TechSheet-2020-Cab-StagsLeap-Final-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:179909;}s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"TechSheet-2020-Cab-StagsLeap-Final-2-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14377;}s:5:\"large\";a:5:{s:4:\"file\";s:53:\"TechSheet-2020-Cab-StagsLeap-Final-2-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97075;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"TechSheet-2020-Cab-StagsLeap-Final-2-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6679;}}s:8:\"filesize\";i:194263;}'),(49015,3190,'_wp_attached_file','2023/09/TechSheet-2019-Cab-StagsLeap-Final-2.pdf'),(49016,3190,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:44:\"TechSheet-2019-Cab-StagsLeap-Final-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185307;}s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"TechSheet-2019-Cab-StagsLeap-Final-2-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14504;}s:5:\"large\";a:5:{s:4:\"file\";s:53:\"TechSheet-2019-Cab-StagsLeap-Final-2-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100263;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"TechSheet-2019-Cab-StagsLeap-Final-2-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6725;}}s:8:\"filesize\";i:194784;}'),(49017,3191,'web_id','ae5fcfe7-aaf3-493d-8a5e-ce78f97bd723'),(49018,3191,'slug','meadowcroft-2022-pinot-noir-vina-del-sol-vineyard'),(49019,3191,'title','Meadowcroft 2022 Pinot Noir Vina Del Sol Vineyard * Allocation'),(49020,3191,'type','Wine'),(49021,3191,'image',NULL),(49022,3191,'teaser',NULL),(49023,3191,'content',NULL),(49024,3191,'subtitle',NULL),(49025,3191,'price',NULL),(49026,3191,'web_status','Available'),(49027,3191,'admin_status','Available'),(49028,3191,'varietal',NULL),(49029,3191,'appellation','Sonoma Coast'),(49030,3191,'vintage',NULL),(49031,3191,'collections','a:0:{}'),(49032,3191,'primary_collection',''),(49033,3192,'_wp_attached_file','2023/09/19_Cab_NelsonRanch_Mendo_Techsheet-1.pdf'),(49034,3192,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:44:\"19_Cab_NelsonRanch_Mendo_Techsheet-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:276074;}s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"19_Cab_NelsonRanch_Mendo_Techsheet-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21750;}s:5:\"large\";a:5:{s:4:\"file\";s:53:\"19_Cab_NelsonRanch_Mendo_Techsheet-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:148121;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"19_Cab_NelsonRanch_Mendo_Techsheet-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9828;}}s:8:\"filesize\";i:586090;}'),(49035,3193,'_wp_attached_file','2023/09/2021-Wyldvin-Cabernet-Final.pdf'),(49036,3193,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:35:\"2021-Wyldvin-Cabernet-Final-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175992;}s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"2021-Wyldvin-Cabernet-Final-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14053;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"2021-Wyldvin-Cabernet-Final-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97738;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"2021-Wyldvin-Cabernet-Final-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6575;}}s:8:\"filesize\";i:255992;}'),(49037,3194,'_wp_attached_file','2023/09/2022-Pinot-Blanc-FINAL.pdf'),(49038,3194,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:30:\"2022-Pinot-Blanc-FINAL-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170827;}s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"2022-Pinot-Blanc-FINAL-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14263;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"2022-Pinot-Blanc-FINAL-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96079;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"2022-Pinot-Blanc-FINAL-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6624;}}s:8:\"filesize\";i:206262;}'),(49039,3195,'_wp_attached_file','2023/09/2022-Pinot-Gris-FINAL-1.pdf'),(49040,3195,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:31:\"2022-Pinot-Gris-FINAL-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171837;}s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"2022-Pinot-Gris-FINAL-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13994;}s:5:\"large\";a:5:{s:4:\"file\";s:40:\"2022-Pinot-Gris-FINAL-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95527;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"2022-Pinot-Gris-FINAL-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6494;}}s:8:\"filesize\";i:224538;}'),(49041,3196,'_wp_attached_file','2023/09/2022-Sauvignon-Blanc-FINAL.pdf'),(49042,3196,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:34:\"2022-Sauvignon-Blanc-FINAL-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170234;}s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"2022-Sauvignon-Blanc-FINAL-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13865;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"2022-Sauvignon-Blanc-FINAL-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94205;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"2022-Sauvignon-Blanc-FINAL-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6518;}}s:8:\"filesize\";i:225508;}'),(49043,3197,'_wp_attached_file','2023/09/MC_2020SangioveseSpeedyCreekKnightsValley_TECHSheet-3.pdf'),(49044,3197,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:61:\"MC_2020SangioveseSpeedyCreekKnightsValley_TECHSheet-3-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:288992;}s:6:\"medium\";a:5:{s:4:\"file\";s:69:\"MC_2020SangioveseSpeedyCreekKnightsValley_TECHSheet-3-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22162;}s:5:\"large\";a:5:{s:4:\"file\";s:70:\"MC_2020SangioveseSpeedyCreekKnightsValley_TECHSheet-3-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152170;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:69:\"MC_2020SangioveseSpeedyCreekKnightsValley_TECHSheet-3-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9936;}}s:8:\"filesize\";i:1210446;}'),(49045,3198,'_wp_attached_file','2023/09/Meadowcroft_2021_AV_Mendo_TECHSheet.pdf'),(49046,3198,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:43:\"Meadowcroft_2021_AV_Mendo_TECHSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:232332;}s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_2021_AV_Mendo_TECHSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18268;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"Meadowcroft_2021_AV_Mendo_TECHSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121911;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"Meadowcroft_2021_AV_Mendo_TECHSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8756;}}s:8:\"filesize\";i:950666;}'),(49047,3199,'_wp_attached_file','2023/09/Meadowcroft_2021_RussianRiverValley_Pinotnoir_TECHSheet-1.pdf'),(49048,3199,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:65:\"Meadowcroft_2021_RussianRiverValley_Pinotnoir_TECHSheet-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:284682;}s:6:\"medium\";a:5:{s:4:\"file\";s:73:\"Meadowcroft_2021_RussianRiverValley_Pinotnoir_TECHSheet-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19727;}s:5:\"large\";a:5:{s:4:\"file\";s:74:\"Meadowcroft_2021_RussianRiverValley_Pinotnoir_TECHSheet-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149520;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:73:\"Meadowcroft_2021_RussianRiverValley_Pinotnoir_TECHSheet-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7851;}}s:8:\"filesize\";i:2420625;}'),(49049,3200,'_wp_attached_file','2023/09/Meadowcroft_2021_Viognier_WYLDVIN_Tech_Sheet-1.pdf'),(49050,3200,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:54:\"Meadowcroft_2021_Viognier_WYLDVIN_Tech_Sheet-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:221085;}s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_2021_Viognier_WYLDVIN_Tech_Sheet-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49223;}s:5:\"large\";a:5:{s:4:\"file\";s:63:\"Meadowcroft_2021_Viognier_WYLDVIN_Tech_Sheet-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132423;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"Meadowcroft_2021_Viognier_WYLDVIN_Tech_Sheet-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41376;}}s:8:\"filesize\";i:452469;}'),(49051,3201,'_wp_attached_file','2023/09/TechSheet-2020-Cab-Oakville-Final-1.pdf'),(49052,3201,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:43:\"TechSheet-2020-Cab-Oakville-Final-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:189552;}s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"TechSheet-2020-Cab-Oakville-Final-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14717;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"TechSheet-2020-Cab-Oakville-Final-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103912;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"TechSheet-2020-Cab-Oakville-Final-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6719;}}s:8:\"filesize\";i:205515;}'),(49054,3203,'_wp_attached_file','2023/10/TechSheet-2021-Sangiovese.pdf'),(49055,3203,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:33:\"TechSheet-2021-Sangiovese-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:186357;}s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"TechSheet-2021-Sangiovese-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14660;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"TechSheet-2021-Sangiovese-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100998;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"TechSheet-2021-Sangiovese-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6844;}}s:8:\"filesize\";i:220238;}'),(49056,3204,'web_id','e95c3c6f-fc69-48a9-9fa2-affc9da97e60'),(49057,3204,'slug','wine-club-pick-up-party-fall-2023'),(49058,3204,'title','Wine Club Pick Up Party - CLUB MEMBERS'),(49059,3204,'type','Event Ticket'),(49060,3204,'image','https://images.commerce7.com/meadowcroft-wines/images/original/member-tix-1696435993607.jpg'),(49061,3204,'teaser','Meadowcroft Wine Pick Up Party, Saturday, October 28th.  Two complimentary tickets per club membership.'),(49062,3204,'content','<h2>Meadowcroft is throwing a party and we want to see you there!&nbsp;&nbsp;</h2>\n<p>Sonoma Crust will be driving out their vintage 1948 International Harvester truck that\'s been beautifully converted into an amazing mobile wood fired oven.&nbsp;&nbsp;</p>\n<p>We\'ll be pouring your favorite Meadowcroft wines including the brand new 2020 Rutherford Cabernet Sauvignon and the 2021 Sangiovese.&nbsp; That\'s not all - we\'ve put together some great prizes for our raffle.&nbsp; You don\'t want to miss out!</p>\n<p>Not picking up wine or not a club member?&nbsp; Not a problem- join us anyway!&nbsp; If you\'d like to attend our events, get a discount on your wines, and taste for free, ask us about becoming a wine club member.&nbsp;</p>\n<hr />\n<h3>When: Saturday, October 28th&nbsp; 4-7pm</h3>\n<h3>Where: Meadowcroft Tasting Room</h3>\n<h3>Tickets: Club Members $20 (2 at this price)&nbsp; |&nbsp; Non-Members $45 per person</h3>\n<p>&nbsp;</p>'),(49063,3204,'subtitle',NULL),(49064,3204,'price','2000'),(49065,3204,'web_status','Not Available'),(49066,3204,'admin_status','Available'),(49067,3204,'vendor','Meadowcroft Wines'),(49068,3204,'collections','a:0:{}'),(49069,3204,'primary_collection',''),(49070,3206,'_wp_attached_file','2023/07/party-square.jpg'),(49071,3206,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"file\";s:24:\"2023/07/party-square.jpg\";s:8:\"filesize\";i:381982;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"party-square-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25838;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"party-square-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149343;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"party-square-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9358;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"party-square-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99022;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:24:\"party-square-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25838;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:24:\"party-square-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54053;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:24:\"party-square-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33651;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:24:\"party-square-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24839;}s:8:\"tileview\";a:5:{s:4:\"file\";s:24:\"party-square-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32565;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:26:\"party-square-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:263516;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:26:\"party-square-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:189518;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(49072,3206,'_wp_attachment_image_alt','Meadowcroft Wine Pick Up Party'),(49073,3207,'_wp_attached_file','2023/07/Sonoma-Crust-Truck-1.jpg'),(49074,3207,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:577;s:4:\"file\";s:32:\"2023/07/Sonoma-Crust-Truck-1.jpg\";s:8:\"filesize\";i:512088;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Sonoma-Crust-Truck-1-300x135.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11953;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"Sonoma-Crust-Truck-1-1024x462.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:462;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98417;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Sonoma-Crust-Truck-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6697;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"Sonoma-Crust-Truck-1-768x346.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60647;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:32:\"Sonoma-Crust-Truck-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21333;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:32:\"Sonoma-Crust-Truck-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50370;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:32:\"Sonoma-Crust-Truck-1-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35834;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:32:\"Sonoma-Crust-Truck-1-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25280;}s:8:\"tileview\";a:5:{s:4:\"file\";s:32:\"Sonoma-Crust-Truck-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25025;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:33:\"Sonoma-Crust-Truck-1-1200x541.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:541;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130326;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(49082,3208,'_wp_attached_file','2023/10/Sonoma-Crust-Catering-Truck.jpg'),(49083,3208,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:645;s:4:\"file\";s:39:\"2023/10/Sonoma-Crust-Catering-Truck.jpg\";s:8:\"filesize\";i:435353;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Sonoma-Crust-Catering-Truck-300x215.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18027;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Sonoma-Crust-Catering-Truck-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7906;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"Sonoma-Crust-Catering-Truck-768x550.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74990;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:39:\"Sonoma-Crust-Catering-Truck-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23526;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:39:\"Sonoma-Crust-Catering-Truck-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51618;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:39:\"Sonoma-Crust-Catering-Truck-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35239;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:39:\"Sonoma-Crust-Catering-Truck-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25513;}s:8:\"tileview\";a:5:{s:4:\"file\";s:39:\"Sonoma-Crust-Catering-Truck-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30495;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(49084,3049,'_edit_lock','1712658961:5'),(49088,3049,'_edit_last','3'),(49089,3049,'enabled_filters','a:0:{}'),(49090,3049,'enabled_sorters','a:0:{}'),(49091,3049,'should_enable_search',''),(49092,3049,'additional_css_classes',''),(49093,3049,'template',''),(49094,3049,'allowed_customer_tag_titles','a:0:{}'),(49095,3049,'allowed_customer_club_titles','a:0:{}'),(49096,3049,'_yoast_wpseo_estimated-reading-time-minutes','0'),(49097,3049,'_yoast_wpseo_wordproof_timestamp',''),(49098,3209,'web_id','91861e70-f222-4600-bc41-502423f4b45a'),(49099,3209,'slug','wine-club-pick-up-party-fall-2023-duplicate'),(49100,3209,'title','Wine Club Pick Up Party - NON MEMBERS'),(49101,3209,'type','Event Ticket'),(49102,3209,'image','https://images.commerce7.com/meadowcroft-wines/images/original/guest-tix-1696435955490.jpg'),(49103,3209,'teaser','Meadowcroft Wine Pick Up Party, Saturday, October 28th.  Two complimentary tickets per club membership.'),(49104,3209,'content','<h2>Meadowcroft is throwing a party and we want to see you there!&nbsp;&nbsp;</h2>\n<p>Sonoma Crust will be driving out their vintage 1948 International Harvester truck that\'s been beautifully converted into an amazing mobile wood fired oven.&nbsp;&nbsp;</p>\n<p>We\'ll be pouring your favorite Meadowcroft wines including the brand new 2020 Rutherford Cabernet Sauvignon and the 2021 Sangiovese.&nbsp; That\'s not all - we\'ve put together some great prizes for our raffle.&nbsp; You don\'t want to miss out!</p>\n<p>Not picking up wine or not a club member?&nbsp; Not a problem- join us anyway!&nbsp; If you\'d like to attend our events, get a discount on your wines, and taste for free, ask us about becoming a wine club member.&nbsp;</p>\n<hr />\n<h3>When: Saturday, October 28th&nbsp; 4-7pm</h3>\n<h3>Where: Meadowcroft Tasting Room</h3>\n<h3>Tickets: Club Members $20 (2 at this price)&nbsp; |&nbsp; Non-Members $45 per person</h3>\n<p>&nbsp;</p>'),(49105,3209,'subtitle',NULL),(49106,3209,'price','4500'),(49107,3209,'web_status','Not Available'),(49108,3209,'admin_status','Available'),(49109,3209,'vendor','Meadowcroft Wines'),(49110,3209,'collections','a:0:{}'),(49111,3209,'primary_collection',''),(49112,3049,'_yoast_wpseo_focuskw','Winery Events'),(49113,3049,'_yoast_wpseo_metadesc','Meadowcroft hosts several fun and educational events throughout the year. We welcome large parties and corporate groups.'),(49114,3049,'_yoast_wpseo_linkdex','33'),(49115,726,'content_block_0_hide_this_content_block','1'),(49116,726,'_content_block_0_hide_this_content_block','field_643884e4df74banner'),(49117,726,'content_block_1_hide_this_content_block','1'),(49118,726,'_content_block_1_hide_this_content_block','field_643884e4df74c7textb'),(49119,726,'content_block_2_hide_this_content_block','1'),(49120,726,'_content_block_2_hide_this_content_block','field_643884e4df74c7textb'),(49121,726,'content_block_3_hide_this_content_block','1'),(49122,726,'_content_block_3_hide_this_content_block','field_643884e4df74c7textb'),(49124,3211,'web_id','f61a8d45-bce1-4169-a1fe-8c2f9515eecd'),(49125,3211,'slug','gift-box-chocolate-stemless-glasses-wine-not-included-'),(49126,3211,'title','Gift box- chocolate & stemless glasses'),(49127,3211,'type','General Merchandise'),(49128,3211,'image','https://images.commerce7.com/meadowcroft-wines/images/original/box-glasses-chocolate-1696617311047.jpg'),(49129,3211,'teaser','A classy black gift box with two stemless logo wine glasses and a package of dark chocolate to go with your favorite Meadowcroft wine.'),(49130,3211,'content',NULL),(49131,3211,'subtitle',NULL),(49132,3211,'price','5500'),(49133,3211,'web_status','Not Available'),(49134,3211,'admin_status','Available'),(49135,3211,'vendor','Sozo Gifts'),(49136,3211,'collections','a:0:{}'),(49137,3211,'primary_collection',''),(49138,3212,'web_id','3c4d810a-cd3c-4067-921c-13d45374dca4'),(49139,3212,'slug','cabernet-dark-chocolate-gift-box'),(49140,3212,'title','Cabernet Lover\'s Gift Box'),(49141,3212,'type','Bundle'),(49142,3212,'image','https://images.commerce7.com/meadowcroft-wines/images/original/box-glasses-chocolate-1696617747229.jpg'),(49143,3212,'teaser','A bottle of 2021 Napa Valley Cabernet Sauvignon, two stemless logo wine glasses, and a package of delicious dark chocolates all packaged in sleek black gift box.'),(49144,3212,'content','<p>The perfect gift for your a lover of Cabernet Sauvignon.&nbsp; A bottle of 2021 Napa Valley Cabernet Sauvignon, two stemless logo wine glasses, and a package of delicious dark chocolates all packaged in sleek black gift box. &nbsp;</p>'),(49145,3212,'subtitle',NULL),(49146,3212,'price','12000'),(49147,3212,'web_status','Retired'),(49148,3212,'admin_status','Not Available'),(49149,3212,'collections','a:0:{}'),(49150,3212,'primary_collection',''),(49151,3213,'web_id','fe8c5d72-2490-4cd9-8496-585f52aff467'),(49152,3213,'slug','gift-box-with-salami-cheese-crackers-preserves'),(49153,3213,'title','Gift Box with Salami, cheese, crackers & preserves (wine not incl)'),(49154,3213,'type','General Merchandise'),(49155,3213,'image','https://images.commerce7.com/meadowcroft-wines/images/original/box-wine-salami-1696621646775.jpg'),(49156,3213,'teaser',NULL),(49157,3213,'content',NULL),(49158,3213,'subtitle',NULL),(49159,3213,'price','7000'),(49160,3213,'web_status','Not Available'),(49161,3213,'admin_status','Available'),(49162,3213,'vendor','Sozo Gifts'),(49163,3213,'collections','a:0:{}'),(49164,3213,'primary_collection',''),(49165,3214,'web_id','c2550131-19b1-4f7b-a2cc-752ee0a0f0d6'),(49166,3214,'slug','foodies-gift-box'),(49167,3214,'title','Foodies Gift Box'),(49168,3214,'type','Bundle'),(49169,3214,'image','https://images.commerce7.com/meadowcroft-wines/images/original/box-wine-salami-1696619373798.jpg'),(49170,3214,'teaser','A handsome black gift box that contains a bottle of our 2020 Sangiovese plus salami, crackers, cheese and preserves.'),(49171,3214,'content','<p>A handsome black gift box that contains a bottle of our 2020 Sangiovese plus salami, crackers, cheese and preserves.&nbsp; &nbsp;&nbsp;</p>'),(49172,3214,'subtitle',NULL),(49173,3214,'price','12500'),(49174,3214,'web_status','Retired'),(49175,3214,'admin_status','Not Available'),(49176,3214,'collections','a:0:{}'),(49177,3214,'primary_collection',''),(49178,3215,'web_id','43ac9b45-6b7f-4ab6-9555-b3e47ce92914'),(49179,3215,'slug','zinfandel-glasses-gift-box'),(49180,3215,'title','Zinfandel & Stemless Glasses Gift Box'),(49181,3215,'type','Bundle'),(49182,3215,'image','https://images.commerce7.com/meadowcroft-wines/images/original/giftbox-zin-glasses-1696620735094.jpg'),(49183,3215,'teaser','Everyone loves a nice glass of Zinfandel in the Fall & winter seasons.  Give this gift to someone who could use a great excuse to kick their feet up and relax.'),(49184,3215,'content','<p>Everyone loves a nice glass of Zinfandel in the Fall &amp; winter seasons. &nbsp;Give this gift to someone who could use a great excuse to kick their feet up and relax.&nbsp; &nbsp;This gift box contains a bottle of 2020 Mae Vineyard Zinfandel and two beautiful stemless logo wine glasses.&nbsp;&nbsp;</p>'),(49185,3215,'subtitle',NULL),(49186,3215,'price','9000'),(49187,3215,'web_status','Retired'),(49188,3215,'admin_status','Not Available'),(49189,3215,'collections','a:0:{}'),(49190,3215,'primary_collection',''),(49191,3215,'_wp_old_slug','cabernet-lovers-gift-box-duplicate'),(49206,3217,'web_id','31cdf63c-5267-4db9-b67b-6b7b35400a63'),(49207,3217,'slug','gift-box-with-two-stemless-logo-wine-glasses'),(49208,3217,'title','Gift Box with two stemless logo wine glasses'),(49209,3217,'type','General Merchandise'),(49210,3217,'image','https://images.commerce7.com/meadowcroft-wines/images/original/giftbox-zin-glasses-1696622563362.jpg'),(49211,3217,'teaser',NULL),(49212,3217,'content',NULL),(49213,3217,'subtitle',NULL),(49214,3217,'price','4500'),(49215,3217,'web_status','Available'),(49216,3217,'admin_status','Available'),(49217,3217,'vendor','Sozo Gifts'),(49218,3217,'collections','a:0:{}'),(49219,3217,'primary_collection',''),(49221,412,'content_block_0_hide_this_content_block','1'),(49222,412,'_content_block_0_hide_this_content_block','field_643884e4df74banner'),(49223,412,'content_block_1_hide_this_content_block','1'),(49224,412,'_content_block_1_hide_this_content_block','field_643884e4df74c7textb'),(49225,412,'content_block_2_hide_this_content_block','1'),(49226,412,'_content_block_2_hide_this_content_block','field_643884e4df74c7textb'),(49227,412,'content_block_3_hide_this_content_block','1'),(49228,412,'_content_block_3_hide_this_content_block','field_643884e4df74c7textb'),(49229,412,'content_block_4_hide_this_content_block','1'),(49230,412,'_content_block_4_hide_this_content_block','field_643884e4df74c7textb'),(49231,412,'content_block_5_hide_this_content_block','1'),(49232,412,'_content_block_5_hide_this_content_block','field_643884e4df74c7textb'),(49244,3220,'_wp_attached_file','2023/10/cirque.jpg'),(49245,3220,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:792;s:6:\"height\";i:1121;s:4:\"file\";s:18:\"2023/10/cirque.jpg\";s:8:\"filesize\";i:183471;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"cirque-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26320;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"cirque-723x1024.jpg\";s:5:\"width\";i:723;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155276;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"cirque-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10720;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"cirque-768x1087.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1087;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170939;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:18:\"cirque-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29550;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:18:\"cirque-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61456;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:18:\"cirque-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34365;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:18:\"cirque-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24650;}s:8:\"tileview\";a:5:{s:4:\"file\";s:18:\"cirque-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41273;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(49246,3220,'_wp_attachment_image_alt','Cirque de Boheme'),(49327,445,'content_block_0_hide_this_content_block','1'),(49328,445,'_content_block_0_hide_this_content_block','field_643884e4df74banner'),(49329,445,'content_block_1_hide_this_content_block','1'),(49330,445,'_content_block_1_hide_this_content_block','field_643884e4df74c7textb'),(49331,445,'content_block_2_hide_this_content_block','1'),(49332,445,'_content_block_2_hide_this_content_block','field_643884e4df74banner'),(49333,445,'content_block_3_hide_this_content_block','1'),(49334,445,'_content_block_3_hide_this_content_block','field_643884e4df74c7textb'),(49335,445,'content_block_4_hide_this_content_block','1'),(49336,445,'_content_block_4_hide_this_content_block','field_643884e4df74c7textb'),(49337,445,'content_block_5_hide_this_content_block','1'),(49338,445,'_content_block_5_hide_this_content_block','field_643884e4df74c7textb'),(49339,445,'content_block_6_hide_this_content_block','1'),(49340,445,'_content_block_6_hide_this_content_block','field_643884e4df74c7textb'),(49341,445,'content_block_7_hide_this_content_block','1'),(49342,445,'_content_block_7_hide_this_content_block','field_643884e4df74c7textb'),(49343,445,'content_block_8_hide_this_content_block','1'),(49344,445,'_content_block_8_hide_this_content_block','field_643884e4df74c7textb'),(49345,445,'content_block_9_hide_this_content_block','1'),(49346,445,'_content_block_9_hide_this_content_block','field_643884e4df74c7textb'),(49347,445,'content_block_10_hide_this_content_block','1'),(49348,445,'_content_block_10_hide_this_content_block','field_643884e4df74c7textb'),(49351,3222,'web_id','e20973d8-b44d-4dcf-b628-6a9934e97958'),(49352,3222,'slug','box-4-bottle-wood-laydown'),(49353,3222,'title','Box- 4 bottle wood laydown'),(49354,3222,'type','General Merchandise'),(49355,3222,'image',NULL),(49356,3222,'teaser',NULL),(49357,3222,'content',NULL),(49358,3222,'subtitle',NULL),(49359,3222,'price','5000'),(49360,3222,'web_status','Not Available'),(49361,3222,'admin_status','Available'),(49362,3222,'collections','a:0:{}'),(49363,3222,'primary_collection',''),(49364,3223,'web_id','bfb3eb97-35a4-4065-ab83-96b87b1ab85c'),(49365,3223,'slug','wine-club-pick-up-party---club-members-duplicate'),(49366,3223,'title','Wine Club Pick Up Party - Children'),(49367,3223,'type','Event Ticket'),(49368,3223,'image','https://images.commerce7.com/meadowcroft-wines/images/original/member-tix-1696435993607.jpg'),(49369,3223,'teaser','Meadowcroft Wine Pick Up Party, Saturday, October 28th.  Two complimentary tickets per club membership.'),(49370,3223,'content','<h2>Meadowcroft is throwing a party and we want to see you there!&nbsp;&nbsp;</h2>\n<p>Sonoma Crust will be driving out their vintage 1948 International Harvester truck that\'s been beautifully converted into an amazing mobile wood fired oven.&nbsp;&nbsp;</p>\n<p>We\'ll be pouring your favorite Meadowcroft wines including the brand new 2020 Rutherford Cabernet Sauvignon and the 2021 Sangiovese.&nbsp; That\'s not all - we\'ve put together some great prizes for our raffle.&nbsp; You don\'t want to miss out!</p>\n<p>Not picking up wine or not a club member?&nbsp; Not a problem- join us anyway!&nbsp; If you\'d like to attend our events, get a discount on your wines, and taste for free, ask us about becoming a wine club member.&nbsp;</p>\n<hr />\n<h3>When: Saturday, October 28th&nbsp; 4-7pm</h3>\n<h3>Where: Meadowcroft Tasting Room</h3>\n<h3>Tickets: Club Members $20 (2 at this price)&nbsp; |&nbsp; Non-Members $45 per person</h3>\n<p>&nbsp;</p>'),(49371,3223,'subtitle',NULL),(49372,3223,'price','1000'),(49373,3223,'web_status','Not Available'),(49374,3223,'admin_status','Available'),(49375,3223,'vendor','Meadowcroft Wines'),(49376,3223,'collections','a:0:{}'),(49377,3223,'primary_collection',''),(49379,3026,'content_block_0_hide_this_content_block','1'),(49380,3026,'_content_block_0_hide_this_content_block','field_643884e4df74c7textb'),(49381,3026,'content_block_1_hide_this_content_block','1'),(49382,3026,'_content_block_1_hide_this_content_block','field_643884e4df74c7prodcol'),(49383,3026,'content_block_1_custom_css_class',''),(49384,3026,'_content_block_1_custom_css_class','field_5bc11ca9a0d50-cc'),(49385,3225,'web_id','d82afa64-dde0-408f-9f38-6d05a28ba0d3'),(49386,3225,'slug','napa-district-designate-cabernet-collector-s-box'),(49387,3225,'title','Napa District Designate Cabernet Collector\'s Box'),(49388,3225,'type','Bundle'),(49389,3225,'image',NULL),(49390,3225,'teaser','A custom made wooden wine box with one bottle each of our Napa Valley Cabernet Sauvignons from renowned AVA districts.'),(49391,3225,'content','<p>A custom made wooden wine box with one bottle each of our Napa Valley Cabernet Sauvignons from renowned AVA districts. &nbsp;</p>\n<p>The collector\'s box contains 1 bottle each:&nbsp;</p>\n<ul>\n<li>2020 Rutherford Cabernet Sauvignon</li>\n<li>2020 Oakville Cabernet Sauvignon</li>\n<li>2020 Stags Leap Cabernet Sauvignon</li>\n<li>2020 Mt. Veeder Cabernet Sauvignon</li>\n</ul>'),(49392,3225,'subtitle',NULL),(49393,3225,'price','55000'),(49394,3225,'web_status','Available'),(49395,3225,'admin_status','Available'),(49396,3225,'collections','a:0:{}'),(49397,3225,'primary_collection',''),(49398,2846,'primary_collection',''),(49399,2848,'primary_collection',''),(49400,2849,'primary_collection',''),(49401,2867,'primary_collection',''),(49402,3226,'web_id','c1657802-9608-4b9b-a47c-a4cca000dfb0'),(49403,3226,'slug','holiday-four-bottle-pack'),(49404,3226,'title','Holiday Four Bottle Pack'),(49405,3226,'type','Bundle'),(49406,3226,'image','https://images.commerce7.com/meadowcroft-wines/images/original/tg-4pk-c7-1698966182137.png'),(49407,3226,'teaser','A selection of four bottles of Meadowcroft wines that are perfect to complement any holiday meal or gathering.'),(49408,3226,'content','<p>A selection of four bottles of Meadowcroft wines that are perfect to complement any holiday dishes and to please a wide variety of wine tastes.&nbsp;</p>\n<p>This pack contains one bottle each:&nbsp;</p>\n<ul>\n<li>2022 Napa-Carneros Chardonnay</li>\n<li>2022 Russian River Pinot Noir</li>\n<li>2020 River Trace GSM</li>\n<li>2021 Napa Valley Cabernet Sauvignon</li>\n</ul>'),(49409,3226,'subtitle',NULL),(49410,3226,'price','19200'),(49411,3226,'web_status','Retired'),(49412,3226,'admin_status','Not Available'),(49413,3226,'collections','a:0:{}'),(49414,3226,'primary_collection',''),(49415,3227,'web_id','bf09baf9-0ea7-423d-a1a0-f9d3bca09001'),(49416,3227,'slug','holiday-sparkling-2-pack'),(49417,3227,'title','Holiday Sparkling 2 Pack'),(49418,3227,'type','Bundle'),(49419,3227,'image','https://images.commerce7.com/meadowcroft-wines/images/original/tg-sparkling-1699036087555.png'),(49420,3227,'teaser','You can never go wrong with bubbles - every day is worth celebrating!  This two bottle pack has everyone covered with Blanc de Blancs and Blanc de Noirs.  Cheers!'),(49421,3227,'content','<p>You can never go wrong with bubbles! &nbsp;This two bottle pack has everyone covered with Blanc de Blancs and Blanc de Noirs. &nbsp;Cheers!&nbsp;</p>\n<p>This two bottle pack contains 1 bottle of each:&nbsp;</p>\n<ul>\n<li>NV Blanc de Blancs</li>\n<li>NV Blanc de Noirs</li>\n</ul>'),(49422,3227,'subtitle',NULL),(49423,3227,'price','8400'),(49424,3227,'web_status','Retired'),(49425,3227,'admin_status','Not Available'),(49426,3227,'collections','a:0:{}'),(49427,3227,'primary_collection',''),(49428,3228,'web_id','2c5ddeef-9a38-4712-b7ea-5c34e74ebdee'),(49429,3228,'slug','holiday-four-bottle-pack-duplicate'),(49430,3228,'title','Holiday Six Bottle Pack'),(49431,3228,'type','Bundle'),(49432,3228,'image','https://images.commerce7.com/meadowcroft-wines/images/original/tg-6pk-c7-1699038009772.png'),(49433,3228,'teaser','A selection of six bottles of white and red Meadowcroft wines that are perfect to complement any holiday meal or gathering.'),(49434,3228,'content','<p>A selection of six bottles of Meadowcroft wines that are perfect to complement any holiday dishes and to please a wide variety of wine tastes.&nbsp;</p>\n<p>This pack contains one bottle each:&nbsp;</p>\n<ul>\n<li>2022 Napa-Carneros Chardonnay</li>\n<li>2022 Pinot Gris</li>\n<li>2022 Russian River Pinot Noir</li>\n<li>2020 Sangiovese</li>\n<li>2020 River Trace GSM</li>\n<li>2021 Napa Valley Cabernet Sauvignon</li>\n</ul>'),(49435,3228,'subtitle',NULL),(49436,3228,'price','27900'),(49437,3228,'web_status','Retired'),(49438,3228,'admin_status','Not Available'),(49439,3228,'collections','a:0:{}'),(49440,3228,'primary_collection',''),(49441,3229,'web_id','8fe877e8-005c-4fcb-8a49-c24ef6b5ab6c'),(49442,3229,'slug','cabernet-tasting-flight'),(49443,3229,'title','Cabernet Tasting Flight'),(49444,3229,'type','Tasting'),(49445,3229,'image',NULL),(49446,3229,'teaser',NULL),(49447,3229,'content',NULL),(49448,3229,'subtitle',NULL),(49449,3229,'price','2500'),(49450,3229,'web_status','Not Available'),(49451,3229,'admin_status','Available'),(49452,3229,'vendor','Meadowcroft Wines'),(49453,3229,'collections','a:0:{}'),(49454,3229,'primary_collection',''),(49467,3233,'_wp_attached_file','2023/11/Library-Cellar-Sale-1.pdf'),(49468,3233,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:29:\"Library-Cellar-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:169662;}s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Library-Cellar-Sale-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17740;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"Library-Cellar-Sale-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98474;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Library-Cellar-Sale-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7036;}}s:8:\"filesize\";i:101075;}'),(49469,2768,'primary_collection','wines, Wines'),(49470,2772,'primary_collection','wines, Wines'),(49471,2714,'primary_collection','wines, Wines'),(49472,2738,'primary_collection','wines, Wines'),(49474,3235,'web_id','5a195880-4dc8-4851-ac04-9f7034b53d4e'),(49475,3235,'slug','mystery-case-duplicate'),(49476,3235,'title','MYSTERY CASE - Mixed MC & TH'),(49477,3235,'type','General Merchandise'),(49478,3235,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1121-1660261079648.png'),(49479,3235,'teaser',NULL),(49480,3235,'content',NULL),(49481,3235,'subtitle',NULL),(49482,3235,'price','13000'),(49483,3235,'web_status','Not Available'),(49484,3235,'admin_status','Available'),(49485,3235,'meta_data_feature-text','<div>SOLD OUT<span style=\"-webkit-text-size-adjust: 100%;\"\">! &nbsp;</span><br></div>\"'),(49486,3235,'meta_data_wine-notes','$140.00'),(49487,3235,'collections','a:0:{}'),(49488,3235,'primary_collection',''),(49489,3236,'web_id','f4c89c9b-5bec-4f42-a701-5d2d9f2b07fd'),(49490,3236,'slug','port-and-chocolate-gift-pack'),(49491,3236,'title','Port and Chocolate Gift Pack'),(49492,3236,'type','Bundle'),(49493,3236,'image','https://images.commerce7.com/meadowcroft-wines/images/original/port-and-chocolate-gift-1701115457237.png'),(49494,3236,'teaser',NULL),(49495,3236,'content','<p>Who doesn\'t have a sweet tooth once in a while?&nbsp; Here\'s the perfect gift pack for the sweet lover on your list.&nbsp; &nbsp;This pack includes a bottle of our All She Wrote port-style wine and a gift box of MIA bean-to bar chocolate bars.&nbsp; The chocolate gift box contains a delicious selection of five Madagascar vegan chocolate bars to enjoy with the wine.&nbsp;</p>'),(49496,3236,'subtitle',NULL),(49497,3236,'price','6800'),(49498,3236,'web_status','Retired'),(49499,3236,'admin_status','Not Available'),(49500,3236,'collections','a:0:{}'),(49501,3236,'primary_collection',''),(49811,3239,'web_id','a5a4d38c-acb6-46cd-b575-54369c179bad'),(49812,3239,'slug','mystery-case---mixed-mc--th-duplicate'),(49813,3239,'title','MYSTERY CASE - Thomas Henry'),(49814,3239,'type','General Merchandise'),(49815,3239,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1121-1660261079648.png'),(49816,3239,'teaser',NULL),(49817,3239,'content',NULL),(49818,3239,'subtitle',NULL),(49819,3239,'price','10000'),(49820,3239,'web_status','Not Available'),(49821,3239,'admin_status','Available'),(49822,3239,'meta_data_feature-text','<div>SOLD OUT<span style=\"-webkit-text-size-adjust: 100%;\"\">! &nbsp;</span><br></div>\"'),(49823,3239,'meta_data_wine-notes','$140.00'),(49824,3239,'collections','a:0:{}'),(49825,3239,'primary_collection',''),(49827,3241,'web_id','f7b63db1-07c6-45bd-92d3-12e690d05b37'),(49828,3241,'slug','port-and-chocolate-gift-pack-duplicate'),(49829,3241,'title','Port and Chocolate Gift Pack duplicate'),(49830,3241,'type','Bundle'),(49831,3241,'image','https://images.commerce7.com/meadowcroft-wines/images/original/port-and-chocolate-gift-1701115457237.png'),(49832,3241,'teaser',NULL),(49833,3241,'content','<p>Who doesn\'t have a sweet tooth once in a while?&nbsp; Here\'s the perfect gift pack for the sweet lover on your list.&nbsp; &nbsp;This pack includes a bottle of our All She Wrote port-style wine and a gift box of MIA bean-to bar chocolate bars.&nbsp; The chocolate gift box contains a delicious selection of five Madagascar vegan chocolate bars to enjoy with the wine.&nbsp;</p>'),(49834,3241,'subtitle',NULL),(49835,3241,'price','6800'),(49836,3241,'web_status','Retired'),(49837,3241,'admin_status','Not Available'),(49838,3241,'collections','a:0:{}'),(49839,3241,'primary_collection',''),(49841,508,'allowed_customer_tag_titles','a:0:{}'),(49842,508,'allowed_customer_club_titles','a:0:{}'),(49843,508,'content_block_0_hide_this_content_block','1'),(49844,508,'_content_block_0_hide_this_content_block','field_643884e4df74c7textb'),(49845,508,'content_block_1_hide_this_content_block','1'),(49846,508,'_content_block_1_hide_this_content_block','field_643884e4df74c7textb'),(49847,508,'content_block_2_hide_this_content_block','1'),(49848,508,'_content_block_2_hide_this_content_block','field_643884e4df74c7textb'),(49849,508,'content_block_3_hide_this_content_block','1'),(49850,508,'_content_block_3_hide_this_content_block','field_643884e4df74c7textb'),(49851,508,'content_block_4_hide_this_content_block','1'),(49852,508,'_content_block_4_hide_this_content_block','field_643884e4df74c7textb'),(49853,508,'content_block_5_hide_this_content_block','1'),(49854,508,'_content_block_5_hide_this_content_block','field_643884e4df74c7textb'),(49855,508,'content_block_6_hide_this_content_block','1'),(49856,508,'_content_block_6_hide_this_content_block','field_643884e4df74c7textb'),(49857,508,'content_block_7_hide_this_content_block','1'),(49858,508,'_content_block_7_hide_this_content_block','field_643884e4df74c7textb'),(49859,508,'content_block_8_hide_this_content_block','1'),(49860,508,'_content_block_8_hide_this_content_block','field_643884e4df74c7textb'),(49861,508,'content_block_9_hide_this_content_block','1'),(49862,508,'_content_block_9_hide_this_content_block','field_643884e4df74c7textb'),(49863,508,'content_block_10_hide_this_content_block','1'),(49864,508,'_content_block_10_hide_this_content_block','field_643884e4df74c7textb'),(49865,508,'content_block_11_hide_this_content_block','1'),(49866,508,'_content_block_11_hide_this_content_block','field_643884e4df74c7textb'),(49867,3243,'web_id','81cbc9a7-d62d-4ae3-81d9-fdc7178db0f6'),(49868,3243,'slug','2023-pinot-gris-nelson-family-vineyard'),(49869,3243,'title','2023 Pinot Gris, Nelson Family Vineyard'),(49870,3243,'type','Wine'),(49871,3243,'image','https://images.commerce7.com/meadowcroft-wines/images/original/2023-pinotgris-1706057687310.png'),(49872,3243,'teaser',NULL),(49873,3243,'content','<div class=\"tatsu-section-pad clearfix\" data-padding=\"{&quot;d&quot;:&quot;90px 0px 90px 0px&quot;}\" data-padding-top=\"90px\">\n<div class=\"tatsu-row-wrap  tatsu-wrap tatsu-row-one-col tatsu-row-has-one-cols tatsu-medium-gutter tatsu-reg-cols  tatsu-clearfix tatsu-HJxPYjzn1q\">\n<div class=\"tatsu-row \">\n<div class=\"tatsu-column  tatsu-bg-overlay tatsu-one-col tatsu-column-image-none tatsu-column-effect-none  tatsu-rJDKoGnJq\" data-parallax-speed=\"0\">\n<div class=\"tatsu-column-inner \">\n<div class=\"tatsu-column-pad-wrap\">\n<div class=\"tatsu-column-pad\">\n<div id=\"\" class=\"tatsu-code tatsu-module tatsu-ByuNCz215   \">\n<div class=\"ecp-wrapper epub-locale-en\" data-ecp-wrapper=\"true\">\n<div class=\"ecp-component ecp_ProductDetail \">\n<div data-ecp-id=\"1210\">\n<div class=\"ecp-columns ecp-clearfix\">\n<div class=\"ecp-columns-right\">\n<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<p>We love Pinot Gris from Mendocino because of the spirited aromatics that are characteristic of grapes grown in that appellation. This wine opens with aromatics of fresh papaya, passionfruit and tropical notes. On the palate, flavors of ripe nectarine and passionfruit meld into a dry, yet fruity finish laced<br />with fresh kiwi fruit notes.</p>\n<p>&nbsp;</p>\n<p><strong>FOOD PAIRING:</strong></p>\n<p>This medium-bodied, complex varietal is delicious when served with grilled seafood and fresh vegetables. Simple meals, like fruit salads and smoked fish, are also a great accompaniment.</p>\n<p>&nbsp;</p>\n<p><strong>ACCOLADES</strong></p>\n<p><strong>93pts</strong> - Wine Enthusiast</p>\n<p>&nbsp;</p>\n<p><strong>TECHNICAL DATA</strong></p>\n<p>Appellation: Nelson Ranch, Mendocino County<br />Varietal: Pinot Gris<br />Bottled: December 2023<br />Production: 220 cases</p>\n<p><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/01/2023-Pinot-Gris.pdf\"><strong>Download PDF Wine Notes</strong></a></p>\n<p>&nbsp;</p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>'),(49874,3243,'subtitle','Mendocino County'),(49875,3243,'price','3400'),(49876,3243,'web_status','Available'),(49877,3243,'admin_status','Available'),(49878,3243,'varietal','Pinot Gris'),(49879,3243,'appellation','Mendocino'),(49880,3243,'vintage','2023'),(49881,3243,'meta_data_review-text','<div><strong>AWARDS AND REVIEWS</strong></div>\n<div>GOLD MEDAL&nbsp;</div>\n<div>2021 Pinot Gris, Mendocino County</div>\n<div><a href=\"https://enofileonline.com/awardsbybrandgoldplus.aspx?compid=2842\" target=\"_blank\" rel=\"noopener\">Sunset International Wine Competition</a></div>'),(49882,3243,'meta_data_feature-text','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>TASTING NOTES: &nbsp;We love Pinot Gris from Mendocino because of the spirited aromatics that are characteristic of grapes grown in that appellation. This wine opens with aromatics of granny smith apple, stone fruit, limes, and lemon tart. On the palate, flavors of white peach, almonds, and nougat dissolve into a dry, yet fruity finish laced with ruby-red grapefruit.<br /><br /></div>\n<div>FOOD PAIRINGS:&nbsp;This medium-bodied, complex varietal is delicious when served with grilled seafood and fresh vegetables. Simple meals, like fruit salad and smoked fish, are also a great accompaniment.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">&nbsp;</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\">&nbsp;</div>'),(49883,3243,'meta_data_wine-notes','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>TASTING NOTES: &nbsp;We love Pinot Gris from Mendocino because of the spirited aromatics that are characteristic of grapes grown in that appellation. This wine opens with aromatics of granny smith apple, stone fruit, limes, and lemon tart. On the palate, flavors of white peach, almonds, and nougat dissolve into a dry, yet fruity finish laced with ruby-red grapefruit.<br /><br /></div>\n<div>FOOD PAIRINGS:&nbsp;This medium-bodied, complex varietal is delicious when served with grilled seafood and fresh vegetables. Simple meals, like fruit salad and smoked fish, are also a great accompaniment.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">&nbsp;</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\">&nbsp;</div>'),(49884,3243,'meta_data_technical-notes','<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">Appellation:&nbsp; Nelson Ranch Vineyard, Mendocino County\n<div>Harvest Date:&nbsp; September 2021</div>\n<div>Bottling Date:&nbsp; February 2022</div>\n<div>Case Production:&nbsp;183 cases</div>\n<div>Alcohol:&nbsp; 14.10%</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/03/Meadowcroft_2021_Pinot_Gris_Mendocino_Tech_Sheet.pdf\">Download Complete Wine Tasting Notes</a></div>'),(49885,3243,'collections','a:0:{}'),(49886,3243,'primary_collection',''),(49887,3243,'_wp_old_slug','2022-pinot-gris-nelson-ranch-vineyard-duplicate'),(49888,3244,'web_id','7714b14a-4e3e-4970-96cb-2bf23271a2b5'),(49889,3244,'slug','2023-sauvignon-blanc-sonoma-coast'),(49890,3244,'title','2023 Sauvignon Blanc, Sonoma Coast'),(49891,3244,'type','Wine'),(49892,3244,'image','https://images.commerce7.com/meadowcroft-wines/images/original/2023-sauvignonblanc-1706061151843.png'),(49893,3244,'teaser',NULL),(49894,3244,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<p class=\"p1\">Bright, flinty and crisp, this nose leads with notes of fresh lime, jasmine, and floral notes. With a balanced palate that expresses flavors of grapefruit, key lime pie and gooseberry, this complex wine has a lengthy, lush and fruity finish.</p>\n<p class=\"p2\"><strong><span class=\"s1\">SUGGESTED FOOD PAIRING</span></strong></p>\n<p class=\"p1\">This wine is a great match for a variety of food pairings like ch&egrave;vre, oysters, and is beautifully matched with anything using fresh herbs like tarragon or mint. This refreshing sauvignon blanc is also delicious on its own as an ap&eacute;ritif &agrave; la maison (aperitif at home).</p>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">\n<div>Appellation:&nbsp; Sonoma Coast, Sonoma County</div>\n<div>Varietal: &nbsp;Sauvignon Blanc</div>\n<div>Bottle date: December 2023&nbsp;</div>\n<div>Production:&nbsp; 219 cases</div>\n<div>Alcohol: 14.2%</div>\n<div>pH: 3.25</div>\n<div>&nbsp;</div>\n<div><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/11/2023-SauvignonBlanc-FINAL.pdf\"><strong>Download PDF Wine Notes</strong></a></div>\n</div>\n</div>'),(49895,3244,'subtitle','Sonoma Coast'),(49896,3244,'price','3600'),(49897,3244,'web_status','Available'),(49898,3244,'admin_status','Available'),(49899,3244,'varietal','Sauvignon Blanc'),(49900,3244,'appellation','Sonoma Coast'),(49901,3244,'vintage','2023'),(49902,3244,'collections','a:0:{}'),(49903,3244,'primary_collection',''),(49904,3244,'_wp_old_slug','2022-sauvignon-blanc-sonoma-coast-duplicate'),(49905,3245,'web_id','b58ca6b8-4575-45d9-a0a8-0bf30e1c5023'),(49906,3245,'slug','2021-river-trace-gsm'),(49907,3245,'title','2021 River Trace GSM'),(49908,3245,'type','Wine'),(49909,3245,'image','https://images.commerce7.com/meadowcroft-wines/images/original/2021-rivertrace-gsm-1706062103727.png'),(49910,3245,'teaser',NULL),(49911,3245,'content','<p>\"The right River Trace guided its seekers to wonderful treasures. &nbsp;May this River Trace bring you to that same magical place.\" Tom Meadowcroft</p>\n<p>&nbsp;</p>\n<p><strong>TASTING NOTES:</strong></p>\n<p class=\"p1\">This Rhone-style blend leads with bold notes of vanilla, blueberries, and dark cherries. The palate is delectably smooth, with suggestions of sweet cherry cola, blackberry bramble and baked bread. The hungarian oak barrels used in the maturation process lend notes subtle smoke and sweet vanilla. This medium- bodied wine finishes elegantly, with lingering characters of Amarena cherry and roasted coffee beans that integrate nicely with the precise tannin structure.</p>\n<p>&nbsp;</p>\n<p><strong>FOOD PAIRING:</strong></p>\n<p>GSM blends call for full-flavored pairings, like dishes with fresh herbs like sage, rosemary, or crushed red pepper. Robust, fatty pairings like grilled ribeye or sausages are also a delicious choice.</p>\n<div>&nbsp;</div>\n<div><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/01/2021-GSM-techsheet.pdf\"><strong>Wine Notes</strong></a></div>\n<div>&nbsp;</div>\n<div><strong>ACCOLADES</strong></div>\n<div><strong>93 Points -&nbsp;</strong>International Wine Report</div>\n<div><strong>Silver Medal</strong> - <span class=\"s3\">Critics Challenge Intl Wine &amp; Spirits Competition</span></div>'),(49912,3245,'subtitle',NULL),(49913,3245,'price','5200'),(49914,3245,'web_status','Available'),(49915,3245,'admin_status','Available'),(49916,3245,'varietal','Blend'),(49917,3245,'appellation','Lodi'),(49918,3245,'vintage','2021'),(49919,3245,'meta_data_review-text','<div>93 pts GOLD&nbsp; |&nbsp; <a href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"Sunset Wine Competition\"\" target=\"\"\"\">Sunset International Wine Competition </a><span style=\"\"font-style: italic;\"\">(2017 vintage)</span></div><div>BEST OF CLASS |&nbsp; <a href=\"\"https://winejudging.com/\"\" title=\"\"SF Chronicle Wine Competition\"\" target=\"\"\"\">San Francisco Chronicle&nbsp;Wine Competition</a><br></div><div><span style=\"\"font-style: italic;\"\">A muscular and enduring take of the increasingly popular GSM style pulled off here with unusual panache and vibrancy.&nbsp; &nbsp;(2016 Vintage)<br>Unanimous Gold voted by a five-member judging panel.&nbsp;</span></div><div><br></div><div><span style=\"\"font-style: italic;\"\">**CLUB EXCLUSIVE WINE:&nbsp; This wine is <span style=\"\"text-decoration-line: underline;\"\">only</span> available to club members; thus, the wine is already priced with club discount.&nbsp; No additional club discount applies.</span></div>\"'),(49920,3245,'meta_data_wine-notes','$50.00'),(49921,3245,'meta_data_technical-notes','<div>Appellation:&nbsp; Lodi, Contra Costa &amp; Sonoma, California</div><div>Varietal: 48% Syrah, 12% Grenache, and 12% Mourvédre,&nbsp;4% Malbec, 24% Carignane</div><div>Harvest Date: September 2020</div><div>Bottling Date: April 2022</div><div>Production:&nbsp; 403 cases</div><div>Alcohol:&nbsp; 14%</div>'),(49922,3245,'collections','a:0:{}'),(49923,3245,'primary_collection',''),(49924,3245,'_wp_old_slug','2020-river-trace-gsm-duplicate'),(49925,3246,'web_id','74ba64ae-cca2-4657-9447-861280895f5d'),(49926,3246,'slug','2021-cabernet-sauvignon-napa-valley-large-format-'),(49927,3246,'title','2021 Cabernet Sauvignon, Napa Valley - Large Format - 1.5L'),(49928,3246,'type','Wine'),(49929,3246,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_napavalley_cabernetsauvignon-1688672927933.jpg'),(49930,3246,'teaser',NULL),(49931,3246,'content','<p><span style=\"font-weight: bold;\">TASTING NOTES:&nbsp;</span>A rich and compelling nose of blackberry<span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">, blueberries, sandalwood, and dried herbs is augmented by layers of plum and cherry, cocoa, and graphite. Bold and full-bodied, this wine is structured firmly around a solid core of rich fruit, licorice, and herbs. Supple, ripe tannins provide ample backbone. The mouth-feel is plush and unctuous while retaining stability and finesse. The finish is extended, with lingering flavors of caramel, sweet oak, and chocolate.&nbsp; &nbsp;Decant to open up the complexity; best now </span></p>\n<div>\n<div>FOOD PAIRING:&nbsp;&nbsp;A quintessential Cabernet, this bold and structured wine is an effortless match with well-marbled beef and long-braised stews and sauces. Dishes with fresh herbs will marry nicely with the earthy notes, while the bold fruit will complement hard cheeses like Parmesan or Asiago.</div>\n<div>&nbsp;</div>\n<div><strong>TECHNICAL DATA:</strong></div>\n<div>&nbsp;</div>\n<div><span id=\"page63R_mcid21\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Appelation:</span></span><span id=\"page63R_mcid22\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">Napa Valley</span></span><span id=\"page63R_mcid23\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Varietal:</span></span><span id=\"page63R_mcid24\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">Cabernet Sauvignon</span></span><span id=\"page63R_mcid25\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Harvested:</span></span><span id=\"page63R_mcid26\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">September 2021</span></span><span id=\"page63R_mcid27\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Bottled:</span></span><span id=\"page63R_mcid28\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">December 2023</span></span><span id=\"page63R_mcid29\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Production:</span></span><span id=\"page63R_mcid30\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">24 Bottles</span></span></div>\n<div>&nbsp;</div>\n<div>&nbsp;</div>\n</div>'),(49932,3246,'subtitle',NULL),(49933,3246,'price','14500'),(49934,3246,'web_status','Not Available'),(49935,3246,'admin_status','Available'),(49936,3246,'varietal','Cabernet Sauvignon'),(49937,3246,'appellation','Napa Valley'),(49938,3246,'vintage','2021'),(49939,3246,'meta_data_review-text','<div>90 pt |&nbsp; James Suckling&nbsp; |&nbsp; 2016 vintage</div>\n<div><span style=\"font-style: italic;\">A prototypical, modern Napa red that has the big cassis character of fully ripe cabernet sauvignon, moderate tannins that are already well integrated and nice freshness at the finish.&nbsp; Makes you want to order or cook some Osso Bucco.&nbsp; &nbsp;</span></div>\n<div>&nbsp;</div>\n<p>94 pts | &nbsp;Chris Sawyer, Certified Sommelier&nbsp; |&nbsp; 2014 vintage</p>\n<div><span>&nbsp;On the palate, the generous flavors of black raspberry, dark cherry, cassis, ripe currants, cinnamon, hickory spice and dark chocolate truffle are complemented with a harmonious mixture of smooth, silky texture, chewy tannins, firm structure, and a lingering finish. Overall, an extremely well-crafted wine that is not only approachable when young, but also worthy of cellaring for more 10-15 years.</span></div>\n<p>\"</p>'),(49940,3246,'meta_data_wine-notes','<p>$52.00</p>'),(49941,3246,'meta_data_technical-notes','<div>Appellation: &nbsp;Napa Valley<br />Varietal: &nbsp;Cabernet Sauvignon<br />Harvested:&nbsp; September 2020<br />Bottle Date:&nbsp; March 2022<br />Production: 578 cases</div>'),(49942,3246,'collections','a:0:{}'),(49943,3246,'primary_collection',''),(49944,3246,'_wp_old_slug','2021-cabernet-sauvignon-napa-valley-duplicate'),(49945,3247,'web_id','7678f026-ac71-4824-963a-8591035f6582'),(49946,3247,'slug','2021-cabernet-sauvignon-stags-leap-district-'),(49947,3247,'title','2021 Cabernet Sauvignon, Stags Leap District'),(49948,3247,'type','Wine'),(49949,3247,'image','https://images.commerce7.com/meadowcroft-wines/images/original/2021-stagsleap-cabernet-1706060571216.png'),(49950,3247,'teaser',NULL),(49951,3247,'content','<p class=\"p1\">Aromas of ripe black cherry and notes of black olive, peppercorn and subtle earthy tones fill the glass. Vibrant acidity on the palate adds to the balanced mouthfeel of the wine. Flavors of Amarena cherry, blackberry and blueberry are prominent. The lengthy finsh is lush and smooth.</p>\n<p class=\"p3\">&nbsp;</p>\n<p class=\"p4\"><span class=\"s1\">SUGGESTED FOOD PAIRING</span></p>\n<p class=\"p2\">The concentrated richness and notable acidity make this wine a remarkable partner with food. We recommend hearty dishes like grilled steaks, mushroom dishes or lamb with herbs. This wine will easily hold up to strong cheeses such as aged Gorganzola, aged sharp cheddar or Parmiagiano Reggiano.</p>\n<p><strong style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\"><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">TECHNICAL DATA:</span></span></strong></p>\n<p><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\"><span id=\"page62R_mcid18\" class=\"markedContent\">Appelation:</span><span id=\"page62R_mcid19\" class=\"markedContent\"> Stags Leap District, Napa Valley</span><span id=\"page62R_mcid20\" class=\"markedContent\"><br role=\"presentation\" />Varietal:</span><span id=\"page62R_mcid21\" class=\"markedContent\"> Cabernet Sauvignon</span><span id=\"page62R_mcid22\" class=\"markedContent\"><br role=\"presentation\" />Harvested:</span><span id=\"page62R_mcid23\" class=\"markedContent\"> September 2021</span><span id=\"page62R_mcid24\" class=\"markedContent\"><br role=\"presentation\" />Bottled:</span><span id=\"page62R_mcid25\" class=\"markedContent\"> December 2023</span><span id=\"page62R_mcid26\" class=\"markedContent\"><br role=\"presentation\" />Production:</span><span id=\"page62R_mcid27\" class=\"markedContent\"> 42 Cases</span></span></span></p>\n<p><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/01/2021-StagsLeapCab-techsheet.pdf\"><strong>Download Complete Wine Notes</strong></a></p>\n<p><strong>ACCOLADES</strong></p>\n<p><strong>95 Points -</strong> International Wine Report</p>\n<p>&nbsp;</p>'),(49952,3247,'subtitle','Napa Valley'),(49953,3247,'price','13500'),(49954,3247,'web_status','Not Available'),(49955,3247,'admin_status','Available'),(49956,3247,'varietal','Cabernet Sauvignon'),(49957,3247,'appellation','Stags Leap District'),(49958,3247,'vintage','2021'),(49959,3247,'collections','a:0:{}'),(49960,3247,'primary_collection',''),(49961,3247,'_wp_old_slug','2020-cabernet-sauvignon-stags-leap-district-duplicate'),(49962,3248,'web_id','5293b0ef-2c33-46e8-9dea-dae36baadb4f'),(49963,3248,'slug','2021-cabernet-sauvignon-oakville-'),(49964,3248,'title','2021 Cabernet Sauvignon, Oakville'),(49965,3248,'type','Wine'),(49966,3248,'image','https://images.commerce7.com/meadowcroft-wines/images/original/2021-oakville-cabernet-1706059116335.png'),(49967,3248,'teaser',NULL),(49968,3248,'content','<p class=\"p1\">From the famed Oakville District in the Napa Valley, this is powerful yet graceful. On the nose, this wine offers aromas of ripe red fruits like raspberry and blackberry. Notes of Kirsch, raspberry compote and cocoa follow. Flavors of mixed red and black fruits blend nicely with the vanilla tones from the oak barrels.</p>\n<p class=\"p2\"><strong><span class=\"s2\">SUGGESTED FOOD PAIRING</span></strong></p>\n<p class=\"p1\">Dishes like grilled rack of lamb, braised short ribs or recipes that feature portobello mushroom will all pair beautifully with this wine. Strong cheeses like triple cream blue cheese or aged sharp cheddar will complement the wine nicely.</p>\n<div>\n<div>\n<div><strong>TECHNICAL DATA:</strong></div>\n<div>&nbsp;</div>\n<div><span id=\"page64R_mcid18\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Appelation:</span></span><span id=\"page64R_mcid19\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">Oakville, Napa Valley</span></span><span id=\"page64R_mcid20\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Varietal:</span></span><span id=\"page64R_mcid21\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">Cabernet Sauvignon</span></span><span id=\"page64R_mcid22\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Harvested:</span></span><span id=\"page64R_mcid23\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">September, 2021</span></span><span id=\"page64R_mcid24\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Bottled:</span></span><span id=\"page64R_mcid25\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">December 2023</span></span><span id=\"page64R_mcid26\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Production:</span></span><span id=\"page64R_mcid27\" class=\"markedContent\"> 103<span dir=\"ltr\" role=\"presentation\">&nbsp;Cases</span></span></div>\n<div>&nbsp;</div>\n<div><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/01/2021-OakvilleCab-techsheet-web2.pdf\"><strong><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Download PDF Wine Notes</span></span></strong></a></div>\n<div>&nbsp;</div>\n<div><strong><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">ACCOLADES</span></span></strong></div>\n<div><strong><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">94 points -&nbsp;</span></span></strong><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">International Wine Report</span></span></div>\n</div>\n</div>'),(49969,3248,'subtitle','Napa Valley'),(49970,3248,'price','13500'),(49971,3248,'web_status','Available'),(49972,3248,'admin_status','Available'),(49973,3248,'varietal','Cabernet Sauvignon'),(49974,3248,'appellation','Oakville'),(49975,3248,'vintage','2021'),(49976,3248,'meta_data_review-text','<p style=\"font-weight: 400;\"><strong>AWARDS &amp; REVIEWS</strong></p>\n<p>91 points &nbsp;|&nbsp;&nbsp;<a href=\"https://www.jamessuckling.com/\">JamesSuckling.com</a>&nbsp;</p>\n<p><em>\"Crushed raspberries, ripe cherries, blackberries, dried thyme, lavender, and spice box on the nose. Medium-bodied with plush tannins. Round, creamy, and polished with pretty vanilla notes on the finish. Drink from 2023.\"&nbsp;<strong>James Suckling</strong></em></p>\n<p><em><strong>&nbsp;</strong></em></p>\n<p><span style=\"font-weight: 400;\">Silver |&nbsp;</span><a style=\"font-weight: 400;\" href=\"https://winejudging.com/medal-winners/2022-medal-winners/\">San Francisco International Wines Competition</a><span style=\"font-weight: 400;\">&nbsp;(2022)</span></p>'),(49977,3248,'meta_data_feature-text','<p>Oakville, Napa Valley</p>'),(49978,3248,'meta_data_wine-notes','<p>$125.00</p>'),(49979,3248,'meta_data_technical-notes','<p>Appellation: Oakville, Napa Valley</p>\n<div>Varietal:&nbsp;91% Cabernet Sauvignon, 9% Petite Verdot&nbsp;</div>\n<div>Harvested: September 2020</div>\n<div>Bottling Date: April 2022</div>\n<div>Production: 150 cases</div>\n<div>Alcohol: 14.84%</div>'),(49980,3248,'collections','a:0:{}'),(49981,3248,'primary_collection',''),(49982,3248,'_wp_old_slug','2020-cabernet-sauvignon-oakville-duplicate'),(49983,3249,'web_id','361d4061-223e-44fb-808b-7102dd9da182'),(49984,3249,'slug','2022-the-magi-'),(49985,3249,'title','2022 The Magi'),(49986,3249,'type','Wine'),(49987,3249,'image','https://images.commerce7.com/meadowcroft-wines/images/original/sonomabottle-meadowcroftwines_themagi_2021-2-1688589007953.png'),(49988,3249,'teaser',NULL),(49989,3249,'content','<p class=\"p1\">In the northern hemisphere, the spring equinox is celebrated around March 20-21st by many people and ancient cultures. This is when the days and nights are equal in length at the Tropic of Cancer and Capricorn. The Magi pays homage to the Magi - seers and travelers who aimed to unite diverse people in peace and understanding. This red wine is an intense blend of Sangiovese, Montepulciano, Dolcetto, and Barbera, symbolizing a journey to Italy and the harmonious blending of different winegrapes. Aromas of Amarena cherries, notes of rose petal and black tar are reminscient of the famous wines from Nothern Italy. Rich flavors of dark red and black fruits intermingle to form a long rewarding finish. Cellar recommendation: 2027-2035</p>\n<p class=\"p2\">&nbsp;</p>\n<p class=\"p1\"><strong>SUGGESTED FOOD PAIRING</strong></p>\n<p class=\"p1\">This complex and powerful Italian red blend pairs nicely with marbled roasted meats, hearty tomato sauces, mushroom dishes, and spicy dishes. The wine&rsquo;s acidity complements the flavors when paired with strong olive oils and butter. The strong fruit flavors of the inspired Italian varietals are beautifully accentuated by spicy dishes.</p>\n<p class=\"p1\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/01/2022-TheMagi-techsheet.pdf\"><strong>PDF Wine Notes</strong></a></p>\n<p class=\"p1\"><strong>ACCOLADES</strong></p>\n<p class=\"p1\"><strong>93 Points</strong> - International Wine Report</p>'),(49990,3249,'subtitle','Clements Hill'),(49991,3249,'price','6200'),(49992,3249,'web_status','Available'),(49993,3249,'admin_status','Available'),(49994,3249,'varietal','Blend'),(49995,3249,'appellation','Lodi'),(49996,3249,'vintage','2022'),(49997,3249,'collections','a:0:{}'),(49998,3249,'primary_collection',''),(49999,3249,'_wp_old_slug','2021-the-magi-duplicate'),(50000,3250,'_wp_attached_file','2023/12/PrivateLabelWine-catalog-2023.pdf'),(50001,3250,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:37:\"PrivateLabelWine-catalog-2023-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:215881;}s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"PrivateLabelWine-catalog-2023-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51819;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"PrivateLabelWine-catalog-2023-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131270;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"PrivateLabelWine-catalog-2023-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43205;}}s:8:\"filesize\";i:5758503;}'),(50002,444,'allowed_customer_tag_titles','a:0:{}'),(50003,444,'allowed_customer_club_titles','a:0:{}'),(50004,444,'content_block_0_hide_this_content_block','1'),(50005,444,'_content_block_0_hide_this_content_block','field_643884e4df74banner'),(50006,444,'content_block_1_hide_this_content_block','1'),(50007,444,'_content_block_1_hide_this_content_block','field_643884e4df74c7textb'),(50008,444,'content_block_2_hide_this_content_block','1'),(50009,444,'_content_block_2_hide_this_content_block','field_643884e4df74c7textb'),(50010,444,'content_block_3_hide_this_content_block','1'),(50011,444,'_content_block_3_hide_this_content_block','field_643884e4df74c7textb'),(50012,444,'content_block_4_hide_this_content_block','1'),(50013,444,'_content_block_4_hide_this_content_block','field_643884e4df74c7vidleg'),(50014,444,'content_block_4_custom_css_class',''),(50015,444,'_content_block_4_custom_css_class','field_5bbe30b1ahalf-vidleg'),(50016,444,'content_block_5_hide_this_content_block','1'),(50017,444,'_content_block_5_hide_this_content_block','field_643884e4df74c7textb'),(50018,444,'content_block_6_hide_this_content_block','1'),(50019,444,'_content_block_6_hide_this_content_block','field_643884e4df74c7team'),(50020,444,'content_block_7_hide_this_content_block','1'),(50021,444,'_content_block_7_hide_this_content_block','field_643884e4df74c7textb'),(50029,3252,'inline_featured_image','0'),(50030,3252,'_edit_lock','1728417848:2'),(50031,3252,'_edit_last','2'),(50032,3252,'_wp_page_template','default'),(50033,3252,'allowed_customer_tag_titles','a:0:{}'),(50034,3252,'allowed_customer_club_titles','a:0:{}'),(50051,3252,'content_block','a:6:{i:0;s:10:\"text_block\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";i:3;s:6:\"spacer\";i:4;s:10:\"text_block\";i:5;s:10:\"text_block\";}'),(50052,3252,'_content_block','field_5bbe19a7efa09'),(50053,3252,'_yoast_wpseo_content_score','90'),(50054,3252,'_yoast_wpseo_estimated-reading-time-minutes','3'),(50055,3252,'_yoast_wpseo_wordproof_timestamp',''),(50056,3253,'_wp_attached_file','2023/12/MiaRyan.png'),(50057,3253,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2023/12/MiaRyan.png\";s:8:\"filesize\";i:457443;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"MiaRyan-240x300.png\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40379;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"MiaRyan-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17310;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"MiaRyan-768x960.png\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:310404;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:19:\"MiaRyan-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54340;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:19:\"MiaRyan-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:134077;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:19:\"MiaRyan-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93676;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:19:\"MiaRyan-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:65268;}s:8:\"tileview\";a:5:{s:4:\"file\";s:19:\"MiaRyan-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:65438;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(50058,3253,'_wp_attachment_image_alt','Mia & Ryan custom wine bottle'),(50059,3254,'_wp_attached_file','2023/12/EmmaRyan.png'),(50060,3254,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:1000;s:4:\"file\";s:20:\"2023/12/EmmaRyan.png\";s:8:\"filesize\";i:448948;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"EmmaRyan-240x300.png\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45637;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"EmmaRyan-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18903;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"EmmaRyan-768x960.png\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:362307;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:20:\"EmmaRyan-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62224;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:20:\"EmmaRyan-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:154286;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:20:\"EmmaRyan-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:105765;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:20:\"EmmaRyan-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73396;}s:8:\"tileview\";a:5:{s:4:\"file\";s:20:\"EmmaRyan-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:74885;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(50061,3254,'_wp_attachment_image_alt',''),(50062,3255,'_wp_attached_file','2023/12/Be-You.png'),(50063,3255,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:1000;s:4:\"file\";s:18:\"2023/12/Be-You.png\";s:8:\"filesize\";i:433861;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"Be-You-240x300.png\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42775;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"Be-You-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17971;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"Be-You-768x960.png\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:338235;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:18:\"Be-You-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56963;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:18:\"Be-You-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:142200;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:18:\"Be-You-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90612;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:18:\"Be-You-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62578;}s:8:\"tileview\";a:5:{s:4:\"file\";s:18:\"Be-You-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69713;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(50064,3255,'_wp_attachment_image_alt','Be You custom wine bottle'),(50065,3252,'content_block_1_layout_title','Button + Contact'),(50066,3252,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(50067,3252,'content_block_1_hide_this_content_block','1'),(50068,3252,'_content_block_1_hide_this_content_block','field_643884e4df74c7textb'),(50069,3252,'content_block_1_custom_css_class','narrower-content'),(50070,3252,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(50071,3252,'content_block_1_text_block_columns','one'),(50072,3252,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(50073,3252,'content_block_1_column_size','equal'),(50074,3252,'_content_block_1_column_size','field_columnsize'),(50075,3252,'content_block_1_narrow_text_block_content','0'),(50076,3252,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(50077,3252,'content_block_1_reverse_colors','0'),(50078,3252,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(50079,3252,'content_block_1_enable_background_image','0'),(50080,3252,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(50081,3252,'content_block_1_text_block_content_col_one','<p style=\"text-align: center;\"><a class=\"button\" href=\"/wp-content/uploads/2023/12/PrivateLabelWine-catalog-2023.pdf\" aria-label=\"View private label wine catalog\">View Catalog</a></p>'),(50082,3252,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(50083,3252,'content_block_1_text_block_content_col_two','<img class=\"alignnone size-full wp-image-3254\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/12/EmmaRyan.png\" alt=\"Emma &amp; Ryan custom wine bottle\" width=\"800\" height=\"1000\" />'),(50084,3252,'_content_block_1_text_block_content_col_two','field_5bbe31593920e'),(50085,3252,'content_block_1_text_block_content_col_three','<img class=\"alignnone size-full wp-image-3255\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/12/Be-You.png\" alt=\"Be You custom wine bottle\" width=\"800\" height=\"1000\" />'),(50086,3252,'_content_block_1_text_block_content_col_three','field_5bbe31793920f'),(50151,3252,'content_block_4_layout_title','Past Project Title'),(50152,3252,'_content_block_4_layout_title','field_5bc11ca9a0d50-s'),(50153,3252,'content_block_4_hide_this_content_block','1'),(50154,3252,'_content_block_4_hide_this_content_block','field_643884e4df74c7textb'),(50155,3252,'content_block_4_custom_css_class','darker-section add-padding-top'),(50156,3252,'_content_block_4_custom_css_class','field_5bbe30b1a4de2-1'),(50157,3252,'content_block_4_text_block_columns','one'),(50158,3252,'_content_block_4_text_block_columns','field_5bbe2f81a4de0'),(50159,3252,'content_block_4_column_size','equal'),(50160,3252,'_content_block_4_column_size','field_columnsize'),(50161,3252,'content_block_4_narrow_text_block_content','0'),(50162,3252,'_content_block_4_narrow_text_block_content','field_5bbe342e08360'),(50163,3252,'content_block_4_reverse_colors','0'),(50164,3252,'_content_block_4_reverse_colors','field_5bbe3027a4de1'),(50165,3252,'content_block_4_enable_background_image','0'),(50166,3252,'_content_block_4_enable_background_image','field_5bbe30b1a4de2'),(50167,3252,'content_block_4_text_block_content_col_one','<h2 style=\"text-align: center;\">Inspiration</h2>\r\n<p style=\"text-align: center;\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/12/PrivateLabelWine-catalog-2023.pdf\">Check out our catalog</a> of available label design templates.</p>'),(50168,3252,'_content_block_4_text_block_content_col_one','field_5bbe313b3920d'),(50169,3252,'content_block_4_text_block_content_col_two','<img class=\"alignnone size-full wp-image-3254\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/12/EmmaRyan.png\" alt=\"Emma &amp; Ryan custom wine bottle\" width=\"800\" height=\"1000\" />'),(50170,3252,'_content_block_4_text_block_content_col_two','field_5bbe31593920e'),(50171,3252,'content_block_4_text_block_content_col_three','<img class=\"alignnone size-full wp-image-3255\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/12/Be-You.png\" alt=\"Be You custom wine bottle\" width=\"800\" height=\"1000\" />'),(50172,3252,'_content_block_4_text_block_content_col_three','field_5bbe31793920f'),(50225,3270,'_wp_attached_file','2023/12/Bee.png'),(50226,3270,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:15:\"2023/12/Bee.png\";s:8:\"filesize\";i:14359;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(50227,3270,'_wp_attachment_image_alt','Gold Bee logo'),(50228,3252,'content_block_0_layout_title','Intro'),(50229,3252,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(50230,3252,'content_block_0_hide_this_content_block','1'),(50231,3252,'_content_block_0_hide_this_content_block','field_643884e4df74c7textb'),(50232,3252,'content_block_0_custom_css_class','narrower-content'),(50233,3252,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(50234,3252,'content_block_0_text_block_columns','one'),(50235,3252,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(50236,3252,'content_block_0_narrow_text_block_content','0'),(50237,3252,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(50238,3252,'content_block_0_reverse_colors','0'),(50239,3252,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(50240,3252,'content_block_0_enable_background_image','0'),(50241,3252,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(50242,3252,'content_block_0_text_block_content_col_one','<h1><img class=\"alignnone size-full wp-image-3271 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/12/2-Color-Bee.png\" alt=\"Two Color bee icon\" width=\"200\" height=\"116\" /></h1>\r\n<h1 class=\"lowercase\" style=\"text-align: center;\"><span class=\"h2\">Wine that’s Uniquely Yours.</span></h1>\r\nTake your your wedding, event, or corporate gifts to the next level with Meadowcroft Private Label Wines. It’s a personalized gift everyone will be sure to remember. <em>(Pssst: way better than a fruit basket.)</em>\r\n\r\nPersonalize any label from our selection of proprietary designs or ask us about creating a completely custom label. It’s the perfect personal touch for any wedding reception, favors, employee rewards, corporate gifts and private parties.\r\n<p style=\"color: #ae9f65; margin-bottom: -12px;\"><strong><small>THE DETAILS</small></strong></p>\r\n\r\n<ul>\r\n 	<li>5 Case Minimum (60 bottles)</li>\r\n 	<li>White Wine: $40/bottle</li>\r\n 	<li>Red Wine: $50/bottle</li>\r\n 	<li>Prices include personalization, printing, and professional application of one of our wine label designs.</li>\r\n 	<li>Wine choices subject to availability</li>\r\n 	<li>Orders must be placed a minimum of 4 weeks in advance of your event.</li>\r\n</ul>\r\nSend inquiries to <a href=\"mailto:tastingroom@meadowcroftwines.com\">tastingroom@meadowcroftwines.com</a> or call us at 707.934.4090.\r\n<p style=\"color: #ae9f65;\"><em>Need something extra special? <a href=\"mailto:tastingroom@meadowcroftwines.com\">Contact us</a> to discuss fully customized designs.</em></p>'),(50243,3252,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(50270,3271,'_wp_attached_file','2023/12/2-Color-Bee.png'),(50271,3271,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:116;s:4:\"file\";s:23:\"2023/12/2-Color-Bee.png\";s:8:\"filesize\";i:26544;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"2-Color-Bee-150x116.png\";s:5:\"width\";i:150;s:6:\"height\";i:116;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22314;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(50272,3271,'_wp_attachment_image_alt','Two Color bee icon'),(50273,3272,'_menu_item_type','post_type'),(50274,3272,'_menu_item_menu_item_parent','3027'),(50275,3272,'_menu_item_object_id','3252'),(50276,3272,'_menu_item_object','page'),(50277,3272,'_menu_item_target',''),(50278,3272,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50279,3272,'_menu_item_xfn',''),(50280,3272,'_menu_item_url',''),(50282,920,'_wp_old_date','2023-09-05'),(50283,456,'_wp_old_date','2023-09-05'),(50286,3179,'_wp_old_date','2023-09-05'),(50287,3178,'_wp_old_date','2023-09-05'),(50288,759,'_wp_old_date','2023-09-05'),(50289,2993,'_wp_old_date','2023-09-05'),(50290,2990,'_wp_old_date','2023-09-05'),(50291,2989,'_wp_old_date','2023-09-05'),(50292,2992,'_wp_old_date','2023-09-05'),(50293,2991,'_wp_old_date','2023-09-05'),(50295,3027,'_wp_old_date','2023-09-05'),(50296,1563,'_wp_old_date','2023-09-05'),(50297,948,'_wp_old_date','2023-09-05'),(50298,949,'_wp_old_date','2023-09-05'),(50299,950,'_wp_old_date','2023-09-05'),(50300,880,'_wp_old_date','2023-09-05'),(50301,1541,'_wp_old_date','2023-09-05'),(50385,3275,'web_id','4fe7281e-3ccc-4b8d-911a-0e3cf2d377f4'),(50386,3275,'slug','cabernet-tasting-flight-with-tom-meadowcroft'),(50387,3275,'title','Cabernet Tasting Flight with Tom Meadowcroft'),(50388,3275,'type','Event Ticket'),(50389,3275,'image','https://images.commerce7.com/meadowcroft-wines/images/original/tom-glass-1703710081869.jpg'),(50390,3275,'teaser','A special wine tasting flight of Meadowcroft Cabernet Sauvignons hosted by Tom Meadowcroft.'),(50391,3275,'content','<p><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 400;\">Join us for a unique and personalized wine tasting experience hosted by Tom Meadowcroft! During this special event, Tom will guide you through a vertical vintage tasting flight, featuring our limited production Mount Veeder Cabernet Sauvignon. We will explore the concept of terroir, viticulture, aging wines, and more. The tasting will include past vintages from our wine library as well as some current releases.&nbsp; </span><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 400;\">Folktable restaurant will prepare delicious charcuterie and accompaniments to complement the wine selections.&nbsp;</span></p>\n<p><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 400;\">Only 14 seats available - don\'t miss out on this very special wine tasting event!&nbsp;</span></p>\n<p><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 400;\">Due to limited amount of seats - please call us at (707)934-4090 or <a href=\"mailto:tastingroom@meadowcroftwines.com\">send email</a> to reserve seats.&nbsp; Tickets will be sold on a first-come basis.&nbsp;</span></p>'),(50392,3275,'subtitle',NULL),(50393,3275,'price','4500'),(50394,3275,'web_status','Not Available'),(50395,3275,'admin_status','Available'),(50396,3275,'vendor','Meadowcroft Wines'),(50397,3275,'collections','a:1:{s:13:\"event-tickets\";s:13:\"Event Tickets\";}'),(50398,3275,'primary_collection','event-tickets, Event Tickets'),(50403,3049,'_wp_old_slug','event-tickets'),(50404,504,'allowed_customer_tag_titles','a:0:{}'),(50405,504,'allowed_customer_club_titles','a:0:{}'),(50406,504,'content_block_0_hide_this_content_block','1'),(50407,504,'_content_block_0_hide_this_content_block','field_643884e4df74c7textb'),(50408,504,'content_block_1_hide_this_content_block','1'),(50409,504,'_content_block_1_hide_this_content_block','field_643884e4df74c7prodcol'),(50410,506,'allowed_customer_tag_titles','a:0:{}'),(50411,506,'allowed_customer_club_titles','a:0:{}'),(50412,506,'content_block_0_hide_this_content_block','1'),(50413,506,'_content_block_0_hide_this_content_block','field_643884e4df74c7textb'),(50414,506,'content_block_1_hide_this_content_block','1'),(50415,506,'_content_block_1_hide_this_content_block','field_643884e4df74c7prodcol'),(50416,506,'content_block_1_custom_css_class',''),(50417,506,'_content_block_1_custom_css_class','field_5bc11ca9a0d50-cc'),(50637,3279,'_wp_attached_file','2023/12/Sunset.jpg'),(50638,3279,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:18:\"2023/12/Sunset.jpg\";s:8:\"filesize\";i:1402613;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"Sunset-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24078;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"Sunset-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:215083;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"Sunset-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11815;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"Sunset-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123081;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:18:\"Sunset-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34020;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:18:\"Sunset-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82153;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:18:\"Sunset-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53699;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:18:\"Sunset-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37430;}s:8:\"tileview\";a:5:{s:4:\"file\";s:18:\"Sunset-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42626;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"Sunset-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:474511;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"Sunset-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:290724;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(50639,3279,'_wp_attachment_image_alt','Sunset over Mt Veeder'),(50640,3280,'_wp_attached_file','2023/12/Sunset-Mobile.jpg'),(50641,3280,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:25:\"2023/12/Sunset-Mobile.jpg\";s:8:\"filesize\";i:816118;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Sunset-Mobile-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26201;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"Sunset-Mobile-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:244129;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Sunset-Mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11585;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"Sunset-Mobile-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:244129;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:25:\"Sunset-Mobile-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34046;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:25:\"Sunset-Mobile-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86251;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:25:\"Sunset-Mobile-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58638;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:25:\"Sunset-Mobile-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39871;}s:8:\"tileview\";a:5:{s:4:\"file\";s:25:\"Sunset-Mobile-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41757;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(50642,3280,'_wp_attachment_image_alt','Sunset over Mt Veeder'),(50643,3281,'web_id','1eea9d4c-6f03-45d2-9879-3df56ddcf071'),(50644,3281,'slug','2010-cabernet-sauvignon-mt-veeder-estate-'),(50645,3281,'title','2010 Cabernet Sauvignon, Mt. Veeder Estate'),(50646,3281,'type','Wine'),(50647,3281,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_526-1660261140964.png'),(50648,3281,'teaser','LIBRARY RELEASE'),(50649,3281,'content','<div>TASTING NOTES:&nbsp;&nbsp;Rich dark fruit such as black currant, blackberry and ripe plum delights the nose and the palate. Silky&nbsp;smooth with&nbsp;a long&nbsp;finish of&nbsp;moderate tannins coupled with&nbsp;just a hint of chocolate.&nbsp; A touch of the mountain forest also&nbsp;combines with both the aromatics and the flavors.</div>\n<div><br />\n<div>FOOD PAIRING: &nbsp;This wine pairs exceptionally well with grilled steaks and chops as well as anything with chocolate.</div>\n</div>'),(50650,3281,'subtitle',NULL),(50651,3281,'price','25000'),(50652,3281,'web_status','Not Available'),(50653,3281,'admin_status','Available'),(50654,3281,'varietal','Cabernet Sauvignon'),(50655,3281,'appellation','Mt. Veeder'),(50656,3281,'vintage','2010'),(50657,3281,'meta_data_review-text','<div><span style=\"font-weight: bold;\"\">AWARDS AND REVIEWS</span></div>94 pts | &nbsp;Wine Enthusiast &nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2005 Mt Veeder Cabernet Sauvignon</span><div>91 pts | &nbsp;Wine Enthusiast &nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2008 Mt Veeder Cabernet Sauvignon<br></span>91 pts | &nbsp;James Suckling &nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2013 Mt Veeder Cabernet Sauvignon</span></div>\"'),(50658,3281,'meta_data_feature-text','Mt. Veeder, Napa Valley'),(50659,3281,'meta_data_wine-notes','$125.00'),(50660,3281,'meta_data_technical-notes','Appellation: &nbsp;Mt. Veeder, Napa<br>Varietal: &nbsp;Cabernet Sauvignon<br>Harvested: &nbsp;September&nbsp;28, 2009<br>Barrel Aged: &nbsp;36 months<br>Bottle Date: &nbsp;November 2012<br>Production: 160 cases<br>'),(50661,3281,'collections','a:0:{}'),(50662,3281,'primary_collection',''),(50663,3281,'_wp_old_slug','2009-cabernet-sauvignon-mt-veeder-estate-duplicate'),(50664,3282,'web_id','c58a564e-9029-4e3c-82d0-131858c22e79'),(50665,3282,'slug','2013-cabernet-sauvignon-napa-valley-college-'),(50666,3282,'title','2013 Cabernet Sauvignon, Napa Valley College'),(50667,3282,'type','Wine'),(50668,3282,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_cabsauv_napacol_12-1663717498296.png'),(50669,3282,'teaser','A classic Napa Valley style cabernet sauvignon with delicate intensity showing black pepper, red currant, and bright black cherry.'),(50670,3282,'content','<p>TASTING NOTES: &nbsp;Our 2013 Napa Cabernet Sauvignon has a delicate intensity with black pepper, red currant, bright black cherry, and a whisper of violet on the nose. &nbsp;The smooth velvety tannins and balanced acid lend themselves to becoming a Meadowcroft classic! &nbsp;Drink now through 2025.&nbsp;</p>'),(50671,3282,'subtitle','Napa Valley'),(50672,3282,'price','16000'),(50673,3282,'web_status','Not Available'),(50674,3282,'admin_status','Available'),(50675,3282,'varietal','Cabernet Sauvignon'),(50676,3282,'appellation','Napa Valley'),(50677,3282,'vintage','2013'),(50678,3282,'collections','a:0:{}'),(50679,3282,'primary_collection',''),(50680,3282,'_wp_old_slug','2012-cabernet-sauvignon-napa-valley-college-duplicate'),(50681,3283,'web_id','a3770904-0361-4eda-877c-5cc4f1658798'),(50682,3283,'slug','2016-french-colombard-russian-river-valley'),(50683,3283,'title','2016 French Colombard, Russian River Valley'),(50684,3283,'type','Wine'),(50685,3283,'image','https://images.commerce7.com/meadowcroft-wines/images/original/mc_frenchcolombard2019_bottleshot-1664134885945.png'),(50686,3283,'teaser',NULL),(50687,3283,'content','<div>Fermented in 90% Stainless Steel and 10% new French oak, our 2016 French Colombard expresses bright fruit flavors and refreshing acidity. &nbsp;French Colombard is a white French grape variety that is the offspring of Gouasi blanc and Chenin Blanc. &nbsp;In France, French Colombard is among the permitted white grape varieties in Bordeaux.&nbsp;&nbsp;</div>\n<div>&nbsp;</div>\n<div>TASTING NOTES: &nbsp;Aromas of white nectarine and subtle citrus come together in this refreshing wine.&nbsp; The palate is round and luscious notes of grapefruit and tangerine.&nbsp; The wine finishes with satisfying acidity.<br /><br /></div>\n<div>FOOD PAIRINGS: &nbsp;This refreshing wine will complement lively ceviche or creamy seafood risotto.&nbsp; The acidity in the wine is also a great match for spicy Indian dishes.</div>'),(50688,3283,'subtitle','Sonoma County'),(50689,3283,'price','0'),(50690,3283,'web_status','Not Available'),(50691,3283,'admin_status','Not Available'),(50692,3283,'varietal',NULL),(50693,3283,'appellation',NULL),(50694,3283,'vintage','2016'),(50695,3283,'meta_data_wine-notes','<div>TASTING NOTES: &nbsp;Aromas of white nectarine and subtle citrus come together in this refreshing wine.&nbsp; The palate is round and luscious notes of grapefruit and tangerine.&nbsp; The wine finishes with satisfying acidity.<br /><br /></div>\n<div>FOOD PAIRINGS: &nbsp;This refreshing wine will complement lively ceviche or creamy seafood risotto.&nbsp; The acidity in the wine is also a great match for spicy Indian dishes.&nbsp;</div>'),(50696,3283,'meta_data_technical-notes','<p>Appellation:&nbsp; Cameron Vineyard, Russian River Valley</p>\n<div>Fermentation:&nbsp; 90% Stainless Steel; 10% New French Oak</div>\n<div>Harvest Date:&nbsp; September 2019</div>\n<div>Bottling Date:&nbsp; June 2020</div>\n<div>Case Production:&nbsp;84 cases</div>\n<div>Alcohol:&nbsp; 13.3%</div>'),(50697,3283,'collections','a:0:{}'),(50698,3283,'primary_collection',''),(50699,3283,'_wp_old_slug','2019-french-colombard-russian-river-valley-duplicate'),(50700,2692,'_wp_old_slug','2019-cabernet-sauvignon-wyldvin-vineyard'),(50701,3284,'web_id','c5a1d3cf-2807-47b2-9b57-e8aff8228028'),(50702,3284,'slug','2018-cabernet-sauvignon-louvau-vineyard-'),(50703,3284,'title','2018 Cabernet Sauvignon, Louvau Vineyard'),(50704,3284,'type','Wine'),(50705,3284,'image','https://images.commerce7.com/meadowcroft-wines/images/original/mc_2019_wyldvin_cabernet_bottleshot-1657751607274.png'),(50706,3284,'teaser',NULL),(50707,3284,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>TASTING NOTE:&nbsp; Reminiscent of an old-world style Cabernet, with an earthiness that complements the fruit. The nose features a pleasant dustiness that evolves into notes of leather and a dollop of black fruit. The palate exhibits a&nbsp; black fruit character with flavors of blackberries and plum. The finish lingers with a balanced tannic structure.&nbsp;. Drink now through 2028.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING: &nbsp;This rich and robust Cabernet is a great match with a filet or grilled t-bone.&nbsp; Not too heavy for pulled pork or&nbsp; Italian dishes,&nbsp; but full-bodied enough to serve with short ribs or a&nbsp; mushroom bacon burger.&nbsp; Umami flavors like&nbsp; Shitake mushrooms and roasted red peppers also pair nicely with this wine.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">Appellation: &nbsp;Dry Creek Valley, Sonoma County<br />Varietal:&nbsp; 72% Cabernet, 15% Mourvedre, 4% Cab Franc, 5 % Petite Sirah, 4 % Merlot<br /><br /><br />\n<div>&nbsp;</div>\n<div>&nbsp;</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://client-assets.ecellar1.com/meadowcroftwines/prod_pdf_1223.pdf\" target=\"_blank\" rel=\"noopener\">Download Complete Wine Tasting Notes</a></div>'),(50708,3284,'subtitle','Dry Creek Valley, Sonoma County'),(50709,3284,'price','5000'),(50710,3284,'web_status','Not Available'),(50711,3284,'admin_status','Available'),(50712,3284,'varietal','Cabernet Sauvignon'),(50713,3284,'appellation','Sonoma County'),(50714,3284,'vintage','2018'),(50715,3284,'collections','a:0:{}'),(50716,3284,'primary_collection',''),(50717,3284,'_wp_old_slug','2017-cabernet-sauvignon-louvau-vineyard-duplicate'),(50718,3285,'web_id','2f2ac685-5a93-4598-be0f-d918483c5718'),(50719,3285,'slug','2018-river-trace-grenache-syrah-mourvedre-'),(50720,3285,'title','2018 Syrah'),(50721,3285,'type','Wine'),(50722,3285,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft-river-trace-2019-1657735222251.png'),(50723,3285,'teaser','\"The right River Trace guided its seekers to wonderful treasures.  May this River Trace bring you to that same magical place,\" Tom Meadowcroft.'),(50724,3285,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>TASTING NOTE:&nbsp;&nbsp;This Rhone-style blend showcases stunning aromatics of boysenberries, candied-violets, and mountain blueberries.&nbsp; Exquisitely smooth on the palate, the flavors are fruit-rich with suggestions of plum, dried cherries, and black tea.&nbsp; The tannins are subtle, and the finish is well-balanced with a delicate spice note on the back palate.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp;&nbsp;This full-bodied, age-worthy wine is an excellent match for high-fat, flavorful dishes like grilled or barbecued red meats, aged cheeses, and earthy recipes that call for lentils, mushrooms, or olives. Because this wine is so lush, it\'s a great choice to serve by the glass on its own.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">\n<div>Appellation:&nbsp; Lodi, Contra Costa &amp; Sonoma, California</div>\n<div>Varietal: 30% Syrah, 26% Grenache, and 30% Mourv&eacute;dre,&nbsp;3% Petite Sirah, 11% Carignane</div>\n<div>Harvest Date: September 2019</div>\n<div>Bottling Date: January 2021&nbsp;</div>\n<div>Production:&nbsp; 235 cases</div>\n<div>Alcohol:&nbsp; 14.73%</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"review_notes\">\n<h3>AWARDS AND REVIEWS</h3>\n<div class=\"ecp-html-content\">\n<div>93 pts GOLD&nbsp; |&nbsp;&nbsp;<a title=\"Sunset Wine Competition\" href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\" target=\"\">Sunset International Wine Competition&nbsp;</a>(2017 vintage)</div>\n<div>BEST OF CLASS |&nbsp;&nbsp;<a title=\"SF Chronicle Wine Competition\" href=\"https://winejudging.com/\" target=\"\">San Francisco Chronicle&nbsp;Wine Competition</a></div>\n<div>A muscular and enduring take of the increasingly popular GSM style pulled off here with unusual panache and vibrancy.&nbsp; &nbsp;(2016 Vintage)<br />Unanimous Gold voted by a five-member judging panel.&nbsp;</div>\n<div>&nbsp;</div>\n<div>**CLUB EXCLUSIVE WINE:&nbsp; This wine is&nbsp;only&nbsp;available to club members; thus, the wine is already priced with club discount.&nbsp; No additional club discount applies.</div>\n<div>&nbsp;</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://client-assets.ecellar1.com/meadowcroftwines/prod_pdf_1089.pdf\" target=\"_blank\" rel=\"noopener\">Download Complete Wine Tasting Notes</a></div>'),(50725,3285,'subtitle','Lodi, Contra Costa & Sonoma, California'),(50726,3285,'price','5000'),(50727,3285,'web_status','Not Available'),(50728,3285,'admin_status','Available'),(50729,3285,'varietal','Syrah'),(50730,3285,'appellation',NULL),(50731,3285,'vintage','2018'),(50732,3285,'collections','a:0:{}'),(50733,3285,'primary_collection',''),(50734,3285,'_wp_old_slug','2019-river-trace-grenache-syrah-mourvedre-duplicate'),(50735,3286,'web_id','696fd691-eb03-4888-b06d-45f1675dc885'),(50736,3286,'slug','2018-pinot-noir-russian-river-valley-'),(50737,3286,'title','2018 Pinot Noir, Russian River Valley'),(50738,3286,'type','Wine'),(50739,3286,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1081-1660261694272.png'),(50740,3286,'teaser',NULL),(50741,3286,'content','<p><span style=\"font-weight: bold;\">TASTING NOTE:&nbsp; </span>This wine is complex from the start<span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">, with layers of cranberry, cherry, raspberry, and a subtle forest floor. Secondary notes and flavors of cola, tea, and a touch of spice. This is an intensely elegant wine with a fine backbone of bright acidity that helps to provide further texture and strength towards the mid-palate, leading to a persistent and juicy finish of sun-ripened strawberries.</span></p>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp;&nbsp;With its bright cola and cherry notes, our 2019 Russian River Pinot Noir pairs beautifully with duck and is a great match for sweeter sauces and exotic spice blends like Chinese five-spice or sumac. Try it also with mushrooms, or heartier fish like tuna or wild salmon.</div>'),(50742,3286,'subtitle',NULL),(50743,3286,'price','4200'),(50744,3286,'web_status','Not Available'),(50745,3286,'admin_status','Not Available'),(50746,3286,'varietal','Pinot Noir'),(50747,3286,'appellation','Russian River Valley'),(50748,3286,'vintage','2018'),(50749,3286,'meta_data_review-text','<div><span style=\"font-weight: bold;\"\">AWARDS AND REVIEWS</span><br><div><div>GOLD MEDAL |&nbsp; <span style=\"\"font-style: italic;\"\">2018 Russian River Valley Pinot Noir</span><br></div><span style=\"\"font-style: italic;\"\">San Francisco Chronicle Wine Competition</span><span style=\"\"font-style: italic;\"\"><br></span></div><div><span style=\"\"font-style: italic;\"\"><br></span></div><span style=\"\"font-weight: bold;\"\"></span></div><div>James Suckling&nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2015 Russian River Valley Pinot Noir</span><br></div><div><span style=\"\"font-style: italic;\"\">Lots of ripe cherries with some jam character. &nbsp;Full body, light tannins.</span></div><div><span style=\"\"font-style: italic;\"\"><br></span></div>\"'),(50750,3286,'meta_data_feature-text','Russian River Valley<br>'),(50751,3286,'meta_data_wine-notes','$33.60'),(50752,3286,'meta_data_technical-notes','Appellations: &nbsp;Russian River Valley, Sonoma County<div>Varietal: &nbsp;Pinot Noir</div><div>Harvested: &nbsp;September 2019</div><div>Bottle Date:&nbsp; October 2020<br>Production:&nbsp; 130 cases</div>'),(50753,3286,'collections','a:0:{}'),(50754,3286,'primary_collection',''),(50755,3286,'_wp_old_slug','2019-pinot-noir-russian-river-valley-duplicate'),(50772,3288,'web_id','45d939d3-1e6e-445d-8ce0-3eb478368d0a'),(50773,3288,'slug','2013-cabernet-sauvignon-mt-veeder-estate-375ml'),(50774,3288,'title','2013 Cabernet Sauvignon, Mt. Veeder Estate 375ml'),(50775,3288,'type','Wine'),(50776,3288,'image','https://images.commerce7.com/meadowcroft-wines/images/original/mc2013_cs_mv_bottleshot-1663717705728.png'),(50777,3288,'teaser','LIBRARY RELEASE'),(50778,3288,'content','<div>TASTING NOTES: &nbsp;The 2013 vintage was a complex and cool growing year. Warm days and cool evenings contributed markedly to the dark ripe fruit flavors of blackberry and crushed blueberries with bold, integrated tannins. &nbsp;A hint of mountain forest and toasty expressive oak.</div>\n<div><br />\n<div>FOOD PAIRING: &nbsp;One classic deserves another, pair our Estate Cabernet with a medium-rare mignon for a symphony of incredible flavor.<br />\n<div>&nbsp;</div>\n</div>\n</div>'),(50779,3288,'subtitle','Napa Valley'),(50780,3288,'price','8500'),(50781,3288,'web_status','Not Available'),(50782,3288,'admin_status','Available'),(50783,3288,'varietal','Cabernet Sauvignon'),(50784,3288,'appellation','Mt. Veeder'),(50785,3288,'vintage','2013'),(50786,3288,'collections','a:0:{}'),(50787,3288,'primary_collection',''),(50788,3288,'_wp_old_slug','2013-cabernet-sauvignon-mt-veeder-estate-duplicate'),(50789,3289,'web_id','aca3870d-2a13-4805-9030-62fff33d3109'),(50790,3289,'slug','2019-viognier-louvau-vineyard-'),(50791,3289,'title','2019 Viognier, Louvau Vineyard'),(50792,3289,'type','Wine'),(50793,3289,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1102-1660261074498.png'),(50794,3289,'teaser',NULL),(50795,3289,'content','<p><span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">Morning fog from the Pacific Ocean tempers warm summer days, the Louvau Vineyard has a great balance of maritime and inland climates. &nbsp;The 2019 Louvau Vineyard Viognier is a classically fine-formed white that is aromatic and expressive.</span></p>\n<p><span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">TASTING NOTE:&nbsp; </span><span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\"><span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">This elegant and delicate wine features aromas of sweet stone fruit</span></span><span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">, jasmine, and citrus flowers, with a touch of butterscotch and vanilla bean. The finish has flavors of pear and tropical papaya, framed by subtle acidity.</span></p>\n<div>FOOD PAIRING:&nbsp;&nbsp;Viognier is excellent with grilled seafood or ceviche. Asian fare, like Thai or Vietnamese food, are also good choices, as this wine\'s delicate acidity and floral aromas balance out spicy foods and exotic flavors.</div>\n<p><br /><br /></p>'),(50796,3289,'subtitle','Dry Creek Valley, Sonoma County'),(50797,3289,'price','2200'),(50798,3289,'web_status','Not Available'),(50799,3289,'admin_status','Available'),(50800,3289,'varietal','Viognier'),(50801,3289,'appellation','Dry Creek Valley'),(50802,3289,'vintage','2019'),(50803,3289,'meta_data_review-text','<div><span style=\"font-weight: bold;\"\">AWARDS &amp; REVIEWS</span></div>92 points &nbsp;| &nbsp;Wine Enthusiast Magazine | &nbsp;2014 Louvau Vineyard Viognier<div><span style=\"\"font-style: italic;\"\">This 100% varietal wine makes the case for Viognier in this appellation, expressing Golden Delicious apple and pear around a fresh, medium build of viscous texture, lemon and wild honey. &nbsp;Pretty and aromatic, it\'s a classically fine-formed white, made in small quantities.</span></div><div><span style=\"\"font-style: italic;\"\"><br></span></div><span style=\"\"font-style: italic;\"\">**CLUB EXCLUSIVE WINE:&nbsp; This wine is&nbsp;</span><span style=\"\"font-style: italic; text-decoration-line: underline;\"\">only</span><span style=\"\"font-style: italic;\"\">&nbsp;available to club members; thus, the wine is already priced with club discount.&nbsp; No additional club discount applies.</span>\"'),(50804,3289,'meta_data_feature-text','Dry Creek Valley'),(50805,3289,'meta_data_wine-notes','$34.00'),(50806,3289,'meta_data_technical-notes','<div>Appellation: &nbsp;Dry Creek Valley, Sonoma County</div><div>Varietal: Viognier</div><div>Fermentation:&nbsp; Barrel fermented in French oak barrels</div><div>Harvest Date: September 2020</div><div>Bottling Date: May 2020<br></div><div>Production:&nbsp; &nbsp;76cases</div><div>Alcohol: 14.32%<br>pH:&nbsp; 3.38</div>'),(50807,3289,'collections','a:0:{}'),(50808,3289,'primary_collection',''),(50809,3289,'_wp_old_slug','2020-viognier-louvau-vineyard-duplicate'),(50815,3293,'_wp_attached_file','2024/01/party-web.jpg'),(50816,3293,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:427;s:6:\"height\";i:427;s:4:\"file\";s:21:\"2024/01/party-web.jpg\";s:8:\"filesize\";i:67190;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"party-web-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35521;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"party-web-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11791;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:21:\"party-web-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35521;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:21:\"party-web-427x324.jpg\";s:5:\"width\";i:427;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51951;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:21:\"party-web-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36243;}s:8:\"tileview\";a:5:{s:4:\"file\";s:21:\"party-web-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42632;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(50817,3293,'_wp_attachment_image_alt','Meadowcroft Speakeasy & Casino Night Party'),(50818,3294,'web_id','e2ecff9a-8a74-44af-ab92-00b4ea535410'),(50819,3294,'slug','speakeasy-and-casino-night-party'),(50820,3294,'title','Speakeasy and Casino Night Party'),(50821,3294,'type','Event Ticket'),(50822,3294,'image','https://images.commerce7.com/meadowcroft-wines/images/original/party-web-1705084417289.jpg'),(50823,3294,'teaser','Speakeasy & Casino Night Party February 10th'),(50824,3294,'content','<div>Channel your inner Gatsby and get ready for an evening of fun and high stakes with Meadowcroft wines\' super exciting speakeasy party and casino night! Take your pick from blackjack, craps, and roulette to try your luck and win some amazing prizes! That\'s not all - we\'ve also got a special chocolate \"cigar\" bar to finish the night on a sweet note.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Put on your best speakeasy outfit win a prize for best costume!&nbsp;</div>\n<div>&nbsp;</div>\n<div>The location? Well, that\'s a secret we can only disclose to those who RSVP. So, secure your spot now and let\'s have a roaring good time together!</div>'),(50825,3294,'subtitle',NULL),(50826,3294,'price','7000'),(50827,3294,'web_status','Not Available'),(50828,3294,'admin_status','Available'),(50829,3294,'collections','a:1:{s:16:\"event-tickets-2-\";s:13:\"Event Tickets\";}'),(50830,3294,'primary_collection','event-tickets-2-, Event Tickets'),(50831,3294,'vendor','Meadowcroft Wines'),(50911,2820,'varietal',NULL),(50912,2820,'appellation',NULL),(50913,2820,'vintage',NULL),(50914,3186,'_wp_old_slug','olive-oil-with-thyme-duplicate1'),(50916,3296,'_wp_attached_file','2024/01/speakeasy-social.jpg'),(50917,3296,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:821;s:4:\"file\";s:28:\"2024/01/speakeasy-social.jpg\";s:8:\"filesize\";i:115883;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"speakeasy-social-300x205.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15427;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"speakeasy-social-1024x701.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:701;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80140;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"speakeasy-social-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7578;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"speakeasy-social-768x525.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54732;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:28:\"speakeasy-social-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18697;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:28:\"speakeasy-social-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37042;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:28:\"speakeasy-social-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28068;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:28:\"speakeasy-social-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21800;}s:8:\"tileview\";a:5:{s:4:\"file\";s:28:\"speakeasy-social-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21322;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(50918,3297,'web_id','86c1983b-e0df-4f3c-8951-19bbd5dd602e'),(50919,3297,'slug','olive-oil-o-all-flavors-'),(50920,3297,'title','Olive Oil - \"O\" (all flavors)'),(50921,3297,'type','General Merchandise'),(50922,3297,'image','https://images.commerce7.com/meadowcroft-wines/images/original/o-olive-oil-1705618177682.jpg'),(50923,3297,'teaser',NULL),(50924,3297,'content',NULL),(50925,3297,'subtitle',NULL),(50926,3297,'price','1399'),(50927,3297,'web_status','Not Available'),(50928,3297,'admin_status','Available'),(50929,3297,'vendor','Faire-O Olive Oil'),(50930,3297,'collections','a:0:{}'),(50931,3297,'primary_collection',''),(50932,3298,'web_id','1b87cb0b-fa9b-48d0-953a-8ebc4de318f6'),(50933,3298,'slug','olive-oil---o-all-flavors-duplicate'),(50934,3298,'title','White Balsamic Vinegar - O'),(50935,3298,'type','General Merchandise'),(50936,3298,'image','https://images.commerce7.com/meadowcroft-wines/images/original/vinegar-1705618305905.jpeg'),(50937,3298,'teaser',NULL),(50938,3298,'content',NULL),(50939,3298,'subtitle',NULL),(50940,3298,'price','1399'),(50941,3298,'web_status','Not Available'),(50942,3298,'admin_status','Available'),(50943,3298,'vendor','Faire-O Olive Oil'),(50944,3298,'collections','a:0:{}'),(50945,3298,'primary_collection',''),(50946,3299,'web_id','830df19f-8d5b-4b4e-8564-1e2c247fedd6'),(50947,3299,'slug','mixer-mimosa-w-tangerine'),(50948,3299,'title','Mocktail Mixer (Various Flavors)'),(50949,3299,'type','General Merchandise'),(50950,3299,'image','https://images.commerce7.com/meadowcroft-wines/images/original/mimosa-1705707127862.jpg'),(50951,3299,'teaser',NULL),(50952,3299,'content',NULL),(50953,3299,'subtitle',NULL),(50954,3299,'price','1600'),(50955,3299,'web_status','Not Available'),(50956,3299,'admin_status','Available'),(50957,3299,'vendor','Faire- Wood Stove Kitchen'),(50958,3299,'collections','a:0:{}'),(50959,3299,'primary_collection',''),(50960,3300,'web_id','5e0f386e-3dbd-448a-b9e6-5db3af74087b'),(50961,3300,'slug','mixer--mimosa-w-tangerine-duplicate'),(50962,3300,'title','Mixer- Sangria'),(50963,3300,'type','General Merchandise'),(50964,3300,'image','https://images.commerce7.com/meadowcroft-wines/images/original/sangria-1705707099480.jpg'),(50965,3300,'teaser',NULL),(50966,3300,'content',NULL),(50967,3300,'subtitle',NULL),(50968,3300,'price','1600'),(50969,3300,'web_status','Retired'),(50970,3300,'admin_status','Not Available'),(50971,3300,'vendor','Faire- Wood Stove Kitchen'),(50972,3300,'collections','a:0:{}'),(50973,3300,'primary_collection',''),(50975,3302,'inline_featured_image','0'),(50976,3302,'_edit_lock','1710760650:5'),(50977,3302,'_edit_last','5'),(50978,3303,'_wp_attached_file','2024/01/2022-Pinot-Noir-Son-Coast-Tech-Sheet-DRAFT.pdf'),(50979,3303,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:50:\"2022-Pinot-Noir-Son-Coast-Tech-Sheet-DRAFT-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177643;}s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"2022-Pinot-Noir-Son-Coast-Tech-Sheet-DRAFT-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14029;}s:5:\"large\";a:5:{s:4:\"file\";s:59:\"2022-Pinot-Noir-Son-Coast-Tech-Sheet-DRAFT-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98469;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"2022-Pinot-Noir-Son-Coast-Tech-Sheet-DRAFT-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6561;}}s:8:\"filesize\";i:200782;}'),(50980,3110,'vendor','Meadowcroft Wines'),(50982,3305,'_wp_attached_file','2024/01/NV-AnivCuvee20YR-TechSheet.pdf'),(50983,3305,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:34:\"NV-AnivCuvee20YR-TechSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:207139;}s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"NV-AnivCuvee20YR-TechSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15012;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"NV-AnivCuvee20YR-TechSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112057;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"NV-AnivCuvee20YR-TechSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6728;}}s:8:\"filesize\";i:221313;}'),(50986,3307,'_wp_attached_file','2024/01/2022-TheMagi-techsheet.pdf'),(50987,3307,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:30:\"2022-TheMagi-techsheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:251758;}s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"2022-TheMagi-techsheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16607;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"2022-TheMagi-techsheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133636;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"2022-TheMagi-techsheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7147;}}s:8:\"filesize\";i:370782;}'),(50988,3308,'_wp_attached_file','2024/01/2023-Pinot-Gris.pdf'),(50989,3308,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:23:\"2023-Pinot-Gris-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:168739;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"2023-Pinot-Gris-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13913;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"2023-Pinot-Gris-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93983;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"2023-Pinot-Gris-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6380;}}s:8:\"filesize\";i:214214;}'),(51022,3325,'_wp_attached_file','2024/01/2021-OakvilleCab-techsheet-web2.pdf'),(51023,3325,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:39:\"2021-OakvilleCab-techsheet-web2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198113;}s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"2021-OakvilleCab-techsheet-web2-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15031;}s:5:\"large\";a:5:{s:4:\"file\";s:48:\"2021-OakvilleCab-techsheet-web2-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108448;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"2021-OakvilleCab-techsheet-web2-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6857;}}s:8:\"filesize\";i:236088;}'),(51024,3326,'_wp_attached_file','2024/01/2021-StagsLeapCab-techsheet.pdf'),(51025,3326,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:35:\"2021-StagsLeapCab-techsheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:200273;}s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"2021-StagsLeapCab-techsheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15224;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"2021-StagsLeapCab-techsheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110591;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"2021-StagsLeapCab-techsheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6919;}}s:8:\"filesize\";i:242376;}'),(51026,3327,'_wp_attached_file','2024/01/2023-SauvBlanc-TechSheet.pdf'),(51027,3327,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:32:\"2023-SauvBlanc-TechSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165335;}s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"2023-SauvBlanc-TechSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13133;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"2023-SauvBlanc-TechSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89719;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"2023-SauvBlanc-TechSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6301;}}s:8:\"filesize\";i:190665;}'),(51028,3328,'_wp_attached_file','2024/01/2021-GSM-techsheet.pdf'),(51029,3328,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:26:\"2021-GSM-techsheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196954;}s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"2021-GSM-techsheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14781;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"2021-GSM-techsheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106887;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"2021-GSM-techsheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6741;}}s:8:\"filesize\";i:207299;}'),(51052,3336,'_wp_attached_file','2024/02/2021-PinotNoir-Carneros-sell-sheet.pdf'),(51053,3336,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:42:\"2021-PinotNoir-Carneros-sell-sheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185606;}s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"2021-PinotNoir-Carneros-sell-sheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17930;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"2021-PinotNoir-Carneros-sell-sheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103762;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"2021-PinotNoir-Carneros-sell-sheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9618;}}s:8:\"filesize\";i:178206;}'),(51054,3337,'_wp_attached_file','2024/02/2021-PinotNoir-NapaCarn.pdf'),(51055,3337,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:31:\"2021-PinotNoir-NapaCarn-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133062;}s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"2021-PinotNoir-NapaCarn-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11003;}s:5:\"large\";a:5:{s:4:\"file\";s:40:\"2021-PinotNoir-NapaCarn-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73702;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"2021-PinotNoir-NapaCarn-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5390;}}s:8:\"filesize\";i:81798;}'),(51056,3338,'_wp_attached_file','2024/02/2021-PinotNoir-NapaCarn-1.pdf'),(51057,3338,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:33:\"2021-PinotNoir-NapaCarn-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133062;}s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"2021-PinotNoir-NapaCarn-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11003;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"2021-PinotNoir-NapaCarn-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73702;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"2021-PinotNoir-NapaCarn-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5390;}}s:8:\"filesize\";i:81798;}'),(51058,3339,'_wp_attached_file','2024/02/2021-PinotNoir-NapaCarn-2.pdf'),(51059,3339,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:33:\"2021-PinotNoir-NapaCarn-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133062;}s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"2021-PinotNoir-NapaCarn-2-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11003;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"2021-PinotNoir-NapaCarn-2-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73702;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"2021-PinotNoir-NapaCarn-2-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5390;}}s:8:\"filesize\";i:81798;}'),(51060,3340,'_wp_attached_file','2024/02/2021-PinotNoir-NapaCarn-correct.pdf'),(51061,3340,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:39:\"2021-PinotNoir-NapaCarn-correct-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122858;}s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"2021-PinotNoir-NapaCarn-correct-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10527;}s:5:\"large\";a:5:{s:4:\"file\";s:48:\"2021-PinotNoir-NapaCarn-correct-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68036;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"2021-PinotNoir-NapaCarn-correct-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5299;}}s:8:\"filesize\";i:79995;}'),(51062,3341,'_wp_attached_file','2024/02/2020-Cab-Oakville.pdf'),(51063,3341,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:25:\"2020-Cab-Oakville-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:189552;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"2020-Cab-Oakville-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14717;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"2020-Cab-Oakville-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103912;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"2020-Cab-Oakville-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6719;}}s:8:\"filesize\";i:205515;}'),(51064,3342,'_wp_attached_file','2024/02/2020Cab-RedHills.pdf'),(51065,3342,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:24:\"2020Cab-RedHills-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:269179;}s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"2020Cab-RedHills-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19469;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"2020Cab-RedHills-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143004;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"2020Cab-RedHills-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7698;}}s:8:\"filesize\";i:2253451;}'),(51066,3343,'_wp_attached_file','2024/02/2021-Cab-NapaValley.pdf'),(51067,3343,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:27:\"2021-Cab-NapaValley-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175804;}s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"2021-Cab-NapaValley-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14004;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"2021-Cab-NapaValley-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98832;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"2021-Cab-NapaValley-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6541;}}s:8:\"filesize\";i:157520;}'),(51068,3344,'_wp_attached_file','2024/02/2021-Cab-NelsonRanch.pdf'),(51069,3344,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:28:\"2021-Cab-NelsonRanch-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:180653;}s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"2021-Cab-NelsonRanch-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14133;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"2021-Cab-NelsonRanch-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97547;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"2021-Cab-NelsonRanch-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6573;}}s:8:\"filesize\";i:184811;}'),(51070,3345,'_wp_attached_file','2024/02/2021-Cab-Oakville.pdf'),(51071,3345,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:25:\"2021-Cab-Oakville-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198113;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"2021-Cab-Oakville-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15031;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"2021-Cab-Oakville-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108448;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"2021-Cab-Oakville-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6857;}}s:8:\"filesize\";i:236088;}'),(51072,3346,'_wp_attached_file','2024/02/2021-GSM-techsheet.pdf'),(51073,3346,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:26:\"2021-GSM-techsheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196954;}s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"2021-GSM-techsheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14781;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"2021-GSM-techsheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106887;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"2021-GSM-techsheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6741;}}s:8:\"filesize\";i:207299;}'),(51074,3347,'_wp_attached_file','2024/02/2021-PinotNoir-NapaCarn-3.pdf'),(51075,3347,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:33:\"2021-PinotNoir-NapaCarn-3-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122858;}s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"2021-PinotNoir-NapaCarn-3-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10527;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"2021-PinotNoir-NapaCarn-3-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68036;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"2021-PinotNoir-NapaCarn-3-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5299;}}s:8:\"filesize\";i:79995;}'),(51076,3348,'_wp_attached_file','2024/02/2022-PinotNoir-VinaDelSol.pdf'),(51077,3348,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:33:\"2022-PinotNoir-VinaDelSol-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:172013;}s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"2022-PinotNoir-VinaDelSol-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13853;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"2022-PinotNoir-VinaDelSol-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95517;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"2022-PinotNoir-VinaDelSol-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6419;}}s:8:\"filesize\";i:172214;}'),(51078,3349,'_wp_attached_file','2024/02/2022-Chard-NapaCarn.pdf'),(51079,3349,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:27:\"2022-Chard-NapaCarn-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162510;}s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"2022-Chard-NapaCarn-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13957;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"2022-Chard-NapaCarn-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89420;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"2022-Chard-NapaCarn-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6636;}}s:8:\"filesize\";i:381331;}'),(51080,3350,'_wp_attached_file','2024/02/2022-French-Colombard.pdf'),(51081,3350,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:29:\"2022-French-Colombard-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:173974;}s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"2022-French-Colombard-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13889;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"2022-French-Colombard-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95233;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"2022-French-Colombard-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6551;}}s:8:\"filesize\";i:279204;}'),(51082,3351,'_wp_attached_file','2024/02/2022-PinotBlanc.pdf'),(51083,3351,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:23:\"2022-PinotBlanc-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170827;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"2022-PinotBlanc-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14263;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"2022-PinotBlanc-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96079;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"2022-PinotBlanc-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6624;}}s:8:\"filesize\";i:206262;}'),(51084,3352,'_wp_attached_file','2024/02/2022-PinotNoir-SonCoast.pdf'),(51085,3352,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:31:\"2022-PinotNoir-SonCoast-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177643;}s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"2022-PinotNoir-SonCoast-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14029;}s:5:\"large\";a:5:{s:4:\"file\";s:40:\"2022-PinotNoir-SonCoast-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98469;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"2022-PinotNoir-SonCoast-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6561;}}s:8:\"filesize\";i:200782;}'),(51086,3353,'_wp_attached_file','2024/02/2022-PinotNoir-RussianRiver.pdf'),(51087,3353,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:35:\"2022-PinotNoir-RussianRiver-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126696;}s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"2022-PinotNoir-RussianRiver-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10943;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"2022-PinotNoir-RussianRiver-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69057;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"2022-PinotNoir-RussianRiver-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5356;}}s:8:\"filesize\";i:196714;}'),(51088,3354,'_wp_attached_file','2024/02/2022-RosePinotNoir.pdf'),(51089,3354,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:26:\"2022-RosePinotNoir-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185378;}s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"2022-RosePinotNoir-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14762;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"2022-RosePinotNoir-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103430;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"2022-RosePinotNoir-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6709;}}s:8:\"filesize\";i:201736;}'),(51090,3355,'_wp_attached_file','2024/02/2022-Roussanne.pdf'),(51091,3355,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:22:\"2022-Roussanne-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:174844;}s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"2022-Roussanne-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14353;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"2022-Roussanne-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97292;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"2022-Roussanne-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6634;}}s:8:\"filesize\";i:194744;}'),(51092,3356,'_wp_attached_file','2024/02/2022-Viognier.pdf'),(51093,3356,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:21:\"2022-Viognier-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170975;}s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"2022-Viognier-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14141;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"2022-Viognier-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95801;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"2022-Viognier-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6584;}}s:8:\"filesize\";i:243901;}'),(51094,3357,'_wp_attached_file','2024/02/2023-Pinot-Gris.pdf'),(51095,3357,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:23:\"2023-Pinot-Gris-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:168739;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"2023-Pinot-Gris-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13913;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"2023-Pinot-Gris-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93983;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"2023-Pinot-Gris-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6380;}}s:8:\"filesize\";i:214214;}'),(51096,3358,'_wp_attached_file','2024/02/2023-SauvBlanc.pdf'),(51097,3358,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:22:\"2023-SauvBlanc-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165335;}s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"2023-SauvBlanc-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13133;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"2023-SauvBlanc-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89719;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"2023-SauvBlanc-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6301;}}s:8:\"filesize\";i:190665;}'),(51098,3359,'_wp_attached_file','2024/02/NV-AnivCuvee20YR-TechSheet.pdf'),(51099,3359,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:34:\"NV-AnivCuvee20YR-TechSheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:207139;}s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"NV-AnivCuvee20YR-TechSheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15012;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"NV-AnivCuvee20YR-TechSheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112057;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"NV-AnivCuvee20YR-TechSheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6728;}}s:8:\"filesize\";i:221313;}'),(51100,3360,'_wp_attached_file','2024/02/SellSheet-2021-PinotNoir-Carneros.pdf'),(51101,3360,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:41:\"SellSheet-2021-PinotNoir-Carneros-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185606;}s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"SellSheet-2021-PinotNoir-Carneros-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17930;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"SellSheet-2021-PinotNoir-Carneros-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103762;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"SellSheet-2021-PinotNoir-Carneros-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9618;}}s:8:\"filesize\";i:178206;}'),(51102,3361,'_wp_attached_file','2024/02/2021-Cab-NapaValley-scaled.jpg'),(51103,3361,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:680;s:6:\"height\";i:2560;s:4:\"file\";s:38:\"2024/02/2021-Cab-NapaValley-scaled.jpg\";s:8:\"filesize\";i:179499;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"2021-Cab-NapaValley-80x300.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14240;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"2021-Cab-NapaValley-272x1024.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42577;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"2021-Cab-NapaValley-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13095;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"2021-Cab-NapaValley-768x2893.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2893;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:220718;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:31:\"2021-Cab-NapaValley-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22660;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:31:\"2021-Cab-NapaValley-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45099;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:31:\"2021-Cab-NapaValley-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36137;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:31:\"2021-Cab-NapaValley-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27619;}s:8:\"tileview\";a:5:{s:4:\"file\";s:31:\"2021-Cab-NapaValley-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27409;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"2021-Cab-NapaValley-408x1536.jpg\";s:5:\"width\";i:408;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76889;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:32:\"2021-Cab-NapaValley-544x2048.jpg\";s:5:\"width\";i:544;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122059;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:33:\"2021-Cab-NapaValley-1200x4521.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:4521;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:475932;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:9:\"Copyright\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"2021-Cab-NapaValley.jpg\";}'),(51104,3362,'_wp_attached_file','2024/02/2021-Cab-NelsonRanch-scaled.jpg'),(51105,3362,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:733;s:6:\"height\";i:2560;s:4:\"file\";s:39:\"2024/02/2021-Cab-NelsonRanch-scaled.jpg\";s:8:\"filesize\";i:191635;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"2021-Cab-NelsonRanch-86x300.jpg\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15519;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"2021-Cab-NelsonRanch-293x1024.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47082;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"2021-Cab-NelsonRanch-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15319;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"2021-Cab-NelsonRanch-768x2684.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:207097;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:32:\"2021-Cab-NelsonRanch-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26711;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:32:\"2021-Cab-NelsonRanch-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51374;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:32:\"2021-Cab-NelsonRanch-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36918;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:32:\"2021-Cab-NelsonRanch-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28417;}s:8:\"tileview\";a:5:{s:4:\"file\";s:32:\"2021-Cab-NelsonRanch-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30286;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"2021-Cab-NelsonRanch-440x1536.jpg\";s:5:\"width\";i:440;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83443;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:33:\"2021-Cab-NelsonRanch-586x2048.jpg\";s:5:\"width\";i:586;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131072;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:34:\"2021-Cab-NelsonRanch-1200x4194.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:4194;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:441468;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:9:\"Copyright\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"2021-Cab-NelsonRanch.jpg\";}'),(51106,3363,'_wp_attached_file','2024/02/2021-Cab-Oakville-scaled.jpg'),(51107,3363,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:704;s:6:\"height\";i:2560;s:4:\"file\";s:36:\"2024/02/2021-Cab-Oakville-scaled.jpg\";s:8:\"filesize\";i:199189;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"2021-Cab-Oakville-83x300.jpg\";s:5:\"width\";i:83;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17545;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"2021-Cab-Oakville-282x1024.jpg\";s:5:\"width\";i:282;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55741;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"2021-Cab-Oakville-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15892;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"2021-Cab-Oakville-768x2792.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2792;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:225967;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:29:\"2021-Cab-Oakville-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25753;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:29:\"2021-Cab-Oakville-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43680;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:29:\"2021-Cab-Oakville-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33875;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:29:\"2021-Cab-Oakville-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28575;}s:8:\"tileview\";a:5:{s:4:\"file\";s:29:\"2021-Cab-Oakville-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30047;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"2021-Cab-Oakville-422x1536.jpg\";s:5:\"width\";i:422;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95109;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:30:\"2021-Cab-Oakville-563x2048.jpg\";s:5:\"width\";i:563;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143443;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:31:\"2021-Cab-Oakville-1200x4363.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:4363;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:446056;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:9:\"Copyright\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:21:\"2021-Cab-Oakville.jpg\";}'),(51108,3364,'_wp_attached_file','2024/02/2021-GSM-Screen-scaled.jpg'),(51109,3364,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:764;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2024/02/2021-GSM-Screen-scaled.jpg\";s:8:\"filesize\";i:179623;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"2021-GSM-Screen-90x300.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16510;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"2021-GSM-Screen-306x1024.jpg\";s:5:\"width\";i:306;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50646;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"2021-GSM-Screen-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13993;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"2021-GSM-Screen-768x2572.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2572;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:180300;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:27:\"2021-GSM-Screen-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19747;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:27:\"2021-GSM-Screen-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29542;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:27:\"2021-GSM-Screen-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18909;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:27:\"2021-GSM-Screen-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16648;}s:8:\"tileview\";a:5:{s:4:\"file\";s:27:\"2021-GSM-Screen-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23138;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"2021-GSM-Screen-459x1536.jpg\";s:5:\"width\";i:459;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85617;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:28:\"2021-GSM-Screen-612x2048.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129190;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:29:\"2021-GSM-Screen-1200x4019.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:4019;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:351940;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:9:\"Copyright\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"2021-GSM-Screen.jpg\";}'),(51110,3365,'_wp_attached_file','2024/02/2022-Chard-Carneros-scaled.jpg'),(51111,3365,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:766;s:6:\"height\";i:2560;s:4:\"file\";s:38:\"2024/02/2022-Chard-Carneros-scaled.jpg\";s:8:\"filesize\";i:165692;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"2022-Chard-Carneros-90x300.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16101;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"2022-Chard-Carneros-306x1024.jpg\";s:5:\"width\";i:306;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47444;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"2022-Chard-Carneros-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13608;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"2022-Chard-Carneros-768x2567.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2567;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166913;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:31:\"2022-Chard-Carneros-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19331;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:31:\"2022-Chard-Carneros-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29537;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:31:\"2022-Chard-Carneros-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21660;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:31:\"2022-Chard-Carneros-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18592;}s:8:\"tileview\";a:5:{s:4:\"file\";s:31:\"2022-Chard-Carneros-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23967;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"2022-Chard-Carneros-460x1536.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80276;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:32:\"2022-Chard-Carneros-613x2048.jpg\";s:5:\"width\";i:613;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119564;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:33:\"2022-Chard-Carneros-1200x4010.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:4010;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:324782;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:9:\"Copyright\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"2022-Chard-Carneros.jpg\";}'),(51112,3366,'_wp_attached_file','2024/02/2022-Chard-SonCoast-scaled.jpg'),(51113,3366,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:764;s:6:\"height\";i:2560;s:4:\"file\";s:38:\"2024/02/2022-Chard-SonCoast-scaled.jpg\";s:8:\"filesize\";i:168283;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"2022-Chard-SonCoast-90x300.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15601;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"2022-Chard-SonCoast-306x1024.jpg\";s:5:\"width\";i:306;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45858;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"2022-Chard-SonCoast-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13747;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"2022-Chard-SonCoast-768x2572.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2572;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:168952;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:31:\"2022-Chard-SonCoast-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19450;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:31:\"2022-Chard-SonCoast-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29541;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:31:\"2022-Chard-SonCoast-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20962;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:31:\"2022-Chard-SonCoast-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18170;}s:8:\"tileview\";a:5:{s:4:\"file\";s:31:\"2022-Chard-SonCoast-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24395;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"2022-Chard-SonCoast-459x1536.jpg\";s:5:\"width\";i:459;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78452;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:32:\"2022-Chard-SonCoast-612x2048.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117905;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:33:\"2022-Chard-SonCoast-1200x4019.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:4019;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:350523;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:9:\"Copyright\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"2022-Chard-SonCoast.jpg\";}'),(51114,3367,'_wp_attached_file','2024/02/2022-FrenchColombard-scaled.jpg'),(51115,3367,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:710;s:6:\"height\";i:2560;s:4:\"file\";s:39:\"2024/02/2022-FrenchColombard-scaled.jpg\";s:8:\"filesize\";i:201883;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"2022-FrenchColombard-83x300.jpg\";s:5:\"width\";i:83;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16064;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"2022-FrenchColombard-284x1024.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52506;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"2022-FrenchColombard-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14779;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"2022-FrenchColombard-768x2770.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2770;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:228131;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:32:\"2022-FrenchColombard-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23814;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:32:\"2022-FrenchColombard-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41316;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:32:\"2022-FrenchColombard-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30150;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:32:\"2022-FrenchColombard-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24910;}s:8:\"tileview\";a:5:{s:4:\"file\";s:32:\"2022-FrenchColombard-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27495;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"2022-FrenchColombard-426x1536.jpg\";s:5:\"width\";i:426;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92740;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:33:\"2022-FrenchColombard-568x2048.jpg\";s:5:\"width\";i:568;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141468;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:34:\"2022-FrenchColombard-1200x4328.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:4328;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:469188;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:9:\"Copyright\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"2022-FrenchColombard.jpg\";}'),(51116,3368,'_wp_attached_file','2024/02/2022-PinotBlanc-scaled.jpg'),(51117,3368,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:729;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2024/02/2022-PinotBlanc-scaled.jpg\";s:8:\"filesize\";i:178712;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"2022-PinotBlanc-85x300.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16289;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"2022-PinotBlanc-292x1024.jpg\";s:5:\"width\";i:292;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49995;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"2022-PinotBlanc-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13787;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"2022-PinotBlanc-768x2695.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2695;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193961;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:27:\"2022-PinotBlanc-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20118;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:27:\"2022-PinotBlanc-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30684;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:27:\"2022-PinotBlanc-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22056;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:27:\"2022-PinotBlanc-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18848;}s:8:\"tileview\";a:5:{s:4:\"file\";s:27:\"2022-PinotBlanc-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23629;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"2022-PinotBlanc-438x1536.jpg\";s:5:\"width\";i:438;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85612;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:28:\"2022-PinotBlanc-584x2048.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128450;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:29:\"2022-PinotBlanc-1200x4211.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:4211;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:386746;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:9:\"Copyright\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"2022-PinotBlanc.jpg\";}'),(51118,3369,'_wp_attached_file','2024/02/2022-PinotGris-scaled.jpg'),(51119,3369,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:673;s:6:\"height\";i:2560;s:4:\"file\";s:33:\"2024/02/2022-PinotGris-scaled.jpg\";s:8:\"filesize\";i:173774;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"2022-PinotGris-79x300.jpg\";s:5:\"width\";i:79;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15307;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"2022-PinotGris-269x1024.jpg\";s:5:\"width\";i:269;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45918;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"2022-PinotGris-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13974;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"2022-PinotGris-768x2922.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2922;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:213172;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:26:\"2022-PinotGris-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22730;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:26:\"2022-PinotGris-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39925;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:26:\"2022-PinotGris-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29230;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:26:\"2022-PinotGris-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23411;}s:8:\"tileview\";a:5:{s:4:\"file\";s:26:\"2022-PinotGris-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24973;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"2022-PinotGris-404x1536.jpg\";s:5:\"width\";i:404;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80381;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:27:\"2022-PinotGris-538x2048.jpg\";s:5:\"width\";i:538;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122432;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:28:\"2022-PinotGris-1200x4565.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:4565;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:437818;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:9:\"Copyright\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:18:\"2022-PinotGris.jpg\";}'),(51120,3370,'_wp_attached_file','2024/02/2022-PinotNoir_VinaDelSol-scaled.jpg'),(51121,3370,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:737;s:6:\"height\";i:2560;s:4:\"file\";s:44:\"2024/02/2022-PinotNoir_VinaDelSol-scaled.jpg\";s:8:\"filesize\";i:159622;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"2022-PinotNoir_VinaDelSol-86x300.jpg\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14089;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"2022-PinotNoir_VinaDelSol-295x1024.jpg\";s:5:\"width\";i:295;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41454;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"2022-PinotNoir_VinaDelSol-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11831;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"2022-PinotNoir_VinaDelSol-768x2667.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:169900;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:37:\"2022-PinotNoir_VinaDelSol-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15661;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:37:\"2022-PinotNoir_VinaDelSol-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22380;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:37:\"2022-PinotNoir_VinaDelSol-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15919;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:37:\"2022-PinotNoir_VinaDelSol-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14361;}s:8:\"tileview\";a:5:{s:4:\"file\";s:37:\"2022-PinotNoir_VinaDelSol-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20319;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:38:\"2022-PinotNoir_VinaDelSol-442x1536.jpg\";s:5:\"width\";i:442;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71933;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:38:\"2022-PinotNoir_VinaDelSol-590x2048.jpg\";s:5:\"width\";i:590;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112134;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:39:\"2022-PinotNoir_VinaDelSol-1200x4167.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:4167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:346906;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:9:\"Copyright\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:29:\"2022-PinotNoir_VinaDelSol.jpg\";}'),(51122,3371,'_wp_attached_file','2024/02/2022-Roussanne-scaled.jpg'),(51123,3371,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:766;s:6:\"height\";i:2560;s:4:\"file\";s:33:\"2024/02/2022-Roussanne-scaled.jpg\";s:8:\"filesize\";i:166565;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"2022-Roussanne-90x300.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15992;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"2022-Roussanne-306x1024.jpg\";s:5:\"width\";i:306;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47895;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"2022-Roussanne-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13549;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"2022-Roussanne-768x2567.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2567;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166846;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:26:\"2022-Roussanne-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19061;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:26:\"2022-Roussanne-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29253;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:26:\"2022-Roussanne-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21254;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:26:\"2022-Roussanne-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18294;}s:8:\"tileview\";a:5:{s:4:\"file\";s:26:\"2022-Roussanne-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23680;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"2022-Roussanne-460x1536.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81010;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:27:\"2022-Roussanne-613x2048.jpg\";s:5:\"width\";i:613;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119300;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:28:\"2022-Roussanne-1200x4010.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:4010;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:324661;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:9:\"Copyright\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:18:\"2022-Roussanne.jpg\";}'),(51124,3372,'_wp_attached_file','2024/02/2022-Viognier-scaled.jpg'),(51125,3372,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:766;s:6:\"height\";i:2560;s:4:\"file\";s:32:\"2024/02/2022-Viognier-scaled.jpg\";s:8:\"filesize\";i:166752;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"2022-Viognier-90x300.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16222;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"2022-Viognier-306x1024.jpg\";s:5:\"width\";i:306;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48376;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"2022-Viognier-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13727;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"2022-Viognier-768x2567.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2567;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166984;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:25:\"2022-Viognier-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19349;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:25:\"2022-Viognier-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29880;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:25:\"2022-Viognier-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21701;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:25:\"2022-Viognier-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18710;}s:8:\"tileview\";a:5:{s:4:\"file\";s:25:\"2022-Viognier-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24049;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:26:\"2022-Viognier-460x1536.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81199;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:26:\"2022-Viognier-613x2048.jpg\";s:5:\"width\";i:613;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120747;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:27:\"2022-Viognier-1200x4010.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:4010;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:325159;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:9:\"Copyright\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:17:\"2022-Viognier.jpg\";}'),(51126,3373,'_wp_attached_file','2024/02/2022PinotNoirRose-scaled.jpg'),(51127,3373,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:710;s:6:\"height\";i:2560;s:4:\"file\";s:36:\"2024/02/2022PinotNoirRose-scaled.jpg\";s:8:\"filesize\";i:197625;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"2022PinotNoirRose-83x300.jpg\";s:5:\"width\";i:83;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16709;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"2022PinotNoirRose-284x1024.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52307;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"2022PinotNoirRose-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15166;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"2022PinotNoirRose-768x2770.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2770;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:222340;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:29:\"2022PinotNoirRose-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24445;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:29:\"2022PinotNoirRose-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42640;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:29:\"2022PinotNoirRose-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31249;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:29:\"2022PinotNoirRose-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25471;}s:8:\"tileview\";a:5:{s:4:\"file\";s:29:\"2022PinotNoirRose-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27613;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"2022PinotNoirRose-426x1536.jpg\";s:5:\"width\";i:426;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90043;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:30:\"2022PinotNoirRose-568x2048.jpg\";s:5:\"width\";i:568;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138719;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:31:\"2022PinotNoirRose-1200x4328.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:4328;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:460091;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:9:\"Copyright\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:21:\"2022PinotNoirRose.jpg\";}'),(51128,3374,'_wp_attached_file','2024/02/2022RivertraceRose-scaled.jpg'),(51129,3374,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:710;s:6:\"height\";i:2560;s:4:\"file\";s:37:\"2024/02/2022RivertraceRose-scaled.jpg\";s:8:\"filesize\";i:196080;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"2022RivertraceRose-83x300.jpg\";s:5:\"width\";i:83;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16592;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"2022RivertraceRose-284x1024.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51497;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"2022RivertraceRose-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15045;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"2022RivertraceRose-768x2770.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2770;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:222883;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:30:\"2022RivertraceRose-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24355;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:30:\"2022RivertraceRose-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42460;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:30:\"2022RivertraceRose-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31500;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:30:\"2022RivertraceRose-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25826;}s:8:\"tileview\";a:5:{s:4:\"file\";s:30:\"2022RivertraceRose-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27035;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:31:\"2022RivertraceRose-426x1536.jpg\";s:5:\"width\";i:426;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90038;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:31:\"2022RivertraceRose-568x2048.jpg\";s:5:\"width\";i:568;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137499;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:32:\"2022RivertraceRose-1200x4328.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:4328;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:461585;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:9:\"Copyright\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:22:\"2022RivertraceRose.jpg\";}'),(51130,3375,'_wp_attached_file','2024/02/2023-SauvignonBlanc-scaled.jpg'),(51131,3375,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:673;s:6:\"height\";i:2560;s:4:\"file\";s:38:\"2024/02/2023-SauvignonBlanc-scaled.jpg\";s:8:\"filesize\";i:170534;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"2023-SauvignonBlanc-79x300.jpg\";s:5:\"width\";i:79;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15115;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"2023-SauvignonBlanc-269x1024.jpg\";s:5:\"width\";i:269;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45306;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"2023-SauvignonBlanc-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14003;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"2023-SauvignonBlanc-768x2922.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2922;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:211124;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:31:\"2023-SauvignonBlanc-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22865;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:31:\"2023-SauvignonBlanc-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40556;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:31:\"2023-SauvignonBlanc-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29009;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:31:\"2023-SauvignonBlanc-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23532;}s:8:\"tileview\";a:5:{s:4:\"file\";s:31:\"2023-SauvignonBlanc-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25356;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"2023-SauvignonBlanc-404x1536.jpg\";s:5:\"width\";i:404;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79509;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:32:\"2023-SauvignonBlanc-538x2048.jpg\";s:5:\"width\";i:538;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120932;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:33:\"2023-SauvignonBlanc-1200x4565.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:4565;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:434718;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:9:\"Copyright\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"2023-SauvignonBlanc.jpg\";}'),(51132,3376,'_wp_attached_file','2024/02/NV-AnnivCuvee-20yr-label-scaled.jpg'),(51133,3376,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:733;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2024/02/NV-AnnivCuvee-20yr-label-scaled.jpg\";s:8:\"filesize\";i:192685;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"NV-AnnivCuvee-20yr-label-86x300.jpg\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15461;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"NV-AnnivCuvee-20yr-label-293x1024.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47735;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"NV-AnnivCuvee-20yr-label-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15732;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"NV-AnnivCuvee-20yr-label-768x2684.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:208935;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:36:\"NV-AnnivCuvee-20yr-label-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28940;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:36:\"NV-AnnivCuvee-20yr-label-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55982;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:36:\"NV-AnnivCuvee-20yr-label-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41902;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:36:\"NV-AnnivCuvee-20yr-label-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32122;}s:8:\"tileview\";a:5:{s:4:\"file\";s:36:\"NV-AnnivCuvee-20yr-label-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33214;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"NV-AnnivCuvee-20yr-label-440x1536.jpg\";s:5:\"width\";i:440;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84880;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"NV-AnnivCuvee-20yr-label-586x2048.jpg\";s:5:\"width\";i:586;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133260;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:38:\"NV-AnnivCuvee-20yr-label-1200x4194.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:4194;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:438241;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:9:\"Copyright\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:28:\"NV-AnnivCuvee-20yr-label.jpg\";}'),(51134,3377,'_wp_attached_file','2024/02/NV-AnnivCuvee20yr-scaled.jpg'),(51135,3377,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:704;s:6:\"height\";i:2560;s:4:\"file\";s:36:\"2024/02/NV-AnnivCuvee20yr-scaled.jpg\";s:8:\"filesize\";i:161165;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"NV-AnnivCuvee20yr-83x300.jpg\";s:5:\"width\";i:83;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16006;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"NV-AnnivCuvee20yr-282x1024.jpg\";s:5:\"width\";i:282;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47201;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"NV-AnnivCuvee20yr-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15629;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"NV-AnnivCuvee20yr-768x2792.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2792;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:183346;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:29:\"NV-AnnivCuvee20yr-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26527;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:29:\"NV-AnnivCuvee20yr-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45549;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:29:\"NV-AnnivCuvee20yr-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36480;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:29:\"NV-AnnivCuvee20yr-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29336;}s:8:\"tileview\";a:5:{s:4:\"file\";s:29:\"NV-AnnivCuvee20yr-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31955;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"NV-AnnivCuvee20yr-422x1536.jpg\";s:5:\"width\";i:422;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79948;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:30:\"NV-AnnivCuvee20yr-563x2048.jpg\";s:5:\"width\";i:563;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116394;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:31:\"NV-AnnivCuvee20yr-1200x4363.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:4363;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:364881;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:9:\"Copyright\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:21:\"NV-AnnivCuvee20yr.jpg\";}'),(51136,3378,'_wp_attached_file','2024/02/RR-PinotNoir-NoVintage.jpg'),(51137,3378,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:630;s:6:\"height\";i:2048;s:4:\"file\";s:34:\"2024/02/RR-PinotNoir-NoVintage.jpg\";s:8:\"filesize\";i:143208;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"RR-PinotNoir-NoVintage-92x300.jpg\";s:5:\"width\";i:92;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6303;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"RR-PinotNoir-NoVintage-315x1024.jpg\";s:5:\"width\";i:315;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36003;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"RR-PinotNoir-NoVintage-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3826;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:34:\"RR-PinotNoir-NoVintage-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8526;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:34:\"RR-PinotNoir-NoVintage-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17742;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:34:\"RR-PinotNoir-NoVintage-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10425;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:34:\"RR-PinotNoir-NoVintage-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7664;}s:8:\"tileview\";a:5:{s:4:\"file\";s:34:\"RR-PinotNoir-NoVintage-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11424;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"RR-PinotNoir-NoVintage-473x1536.jpg\";s:5:\"width\";i:473;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73901;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51138,3380,'content_block_0_layout_title','Intro'),(51139,3380,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(51140,3380,'content_block_0_hide_this_content_block','1'),(51141,3380,'_content_block_0_hide_this_content_block','field_643884e4df74c7textb'),(51142,3380,'content_block_0_custom_css_class',''),(51143,3380,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(51144,3380,'content_block_0_text_block_columns','one'),(51145,3380,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(51146,3380,'content_block_0_narrow_text_block_content','0'),(51147,3380,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(51148,3380,'content_block_0_reverse_colors','0'),(51149,3380,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(51150,3380,'content_block_0_enable_background_image','0'),(51151,3380,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(51152,3380,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">MEADOWCROFT TRADE AND MEDIA</h1>\r\n<p style=\"text-align: center;\">Download trade and media materials for Meadowcroft such as logos, bottle shots, and tech sheets.\r\nIf you don’t see what you need, feel free to <a href=\"mailto:tastingroom@meadowcroftwines.com\">email us</a>.</p>'),(51153,3380,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(51154,3380,'content_block_1_layout_title','Assets Row 1'),(51155,3380,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(51156,3380,'content_block_1_hide_this_content_block','1'),(51157,3380,'_content_block_1_hide_this_content_block','field_643884e4df74c7textb'),(51158,3380,'content_block_1_custom_css_class','wide-content white-boxes'),(51159,3380,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(51160,3380,'content_block_1_text_block_columns','four'),(51161,3380,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(51162,3380,'content_block_1_narrow_text_block_content','0'),(51163,3380,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(51164,3380,'content_block_1_reverse_colors','0'),(51165,3380,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(51166,3380,'content_block_1_enable_background_image','0'),(51167,3380,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(51168,3380,'content_block_1_text_block_content_col_one','<img class=\"wp-image-1500 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/12/mc-logo.png\" alt=\"Meadowcroft Logo\" width=\"300\" height=\"250\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">BRAND &amp; LOGO</span></h2>\r\n<p style=\"text-align: center;\"><a href=\"/wp-content/uploads/2022/11/Meadowcroft-Logo-Horizontal-Bee-Lighter3-2.png\">Download Logo</a></p>'),(51169,3380,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(51170,3380,'content_block_1_text_block_content_col_two','<h2><img class=\"wp-image-1498 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/12/100.png\" alt=\"Top 100 wineries award logo\" width=\"150\" height=\"250\" /></h2>\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">ACCOLADES</span></h2>\r\n<p style=\"text-align: center;\"><a href=\"/awards-and-news/\">Awards &amp; Ratings</a></p>'),(51171,3380,'_content_block_1_text_block_content_col_two','field_5bbe31593920e'),(51172,3380,'content_block_1_text_block_content_col_three','<img class=\"wp-image-1072 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2011-Bottle-Shot-500-1.jpg\" alt=\"Meadowcroft 2011 Mt Veeder Cabernet\" width=\"150\" height=\"250\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">MOUNT VEEDER | NAPA VALLEY CABERNET SAUVIGNON</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/13CSNVEG_1.png\">2013</a> | <a href=\"/wp-content/uploads/2023/02/14CSNVEG_1.png\">2014</a> | <a href=\"/wp-content/uploads/2023/02/15CSNVEG_1.png\">2015</a>| <a href=\"/wp-content/uploads/2023/02/16CSNVEG_1.png\">2016</a> | <a href=\"/wp-content/uploads/2022/11/MC2017_CS_MV_BottleShot-scaled-1.jpeg\">2017</a> | <a href=\"/wp-content/uploads/2023/02/MC_Veeeder_2018_Bottleshot_png.png\">2018</a> | <a href=\"/wp-content/uploads/2023/02/MC_Veeder_2019_Bottleshot_png-2.png\">2019</a>\r\nTech Sheet: 2013 | 2014 | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2015CabernetSauvignon_MountVeederNapaValley_TECHSheet.pdf\">2015</a>| <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2016CabernetSauvignon_MountVeederNapaValley_TECHSheet.pdf\">2016</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2017CabernetSauvignon_MountVeederNapaValley_TECHSheet.pdf\">2017</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018CabernetSauvignon_MountVeederNapaValley_TECHSheet.pdf\">2018</a> | 2019 | <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/08/TechSheet-2020-Cab-MtVeeder-Final-1.pdf\">2020</a></p>'),(51173,3380,'_content_block_1_text_block_content_col_three','field_5bbe31793920f'),(51174,3380,'content_block_1_text_block_content_col_four','<img class=\"wp-image-1071 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-2019_Cabernet_Oakville_Bottleshot-77x300-1.jpg\" alt=\"Meadowcroft 2019 Cabernet Napa\" width=\"150\" height=\"250\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">OAKVILLE | NAPA VALLEY CABERNET SAUVIGNON</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft-2019_Cabernet_Oakville_Bottleshot.png\">2019</a>\r\nTech Sheet: <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-2019_Cabernet_Oakville_Techsheet.pdf\">2019</a></p>'),(51175,3380,'_content_block_1_text_block_content_col_four','field_5bbe317939444'),(51176,3380,'content_block_2_layout_title','Assets Row 2'),(51177,3380,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(51178,3380,'content_block_2_hide_this_content_block','1'),(51179,3380,'_content_block_2_hide_this_content_block','field_643884e4df74c7textb'),(51180,3380,'content_block_2_custom_css_class','wide-content white-boxes'),(51181,3380,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(51182,3380,'content_block_2_text_block_columns','four'),(51183,3380,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(51184,3380,'content_block_2_narrow_text_block_content','0'),(51185,3380,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(51186,3380,'content_block_2_reverse_colors','0'),(51187,3380,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(51188,3380,'content_block_2_enable_background_image','0'),(51189,3380,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(51190,3380,'content_block_2_text_block_content_col_one','<img class=\"wp-image-985 aligncenter\" src=\"/wp-content/uploads/2023/02/Meadowcroft-2018_Cabernet_SM_Bottleshot-1.png\" alt=\"2018 Spring Mountain District Napa Valley Cabernet Sauvignon Bottle\" width=\"70\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">SPRING MT. DISTRICT | NAPA VALLEY CABERNET SAUVIGNON</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft-2018_Cabernet_SpringMT_BottleShot.png\">2018</a>\r\nTech Sheet: <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018CabernetSauvignonSpringMT_TECHSheet.pdf\">2018</a></p>'),(51191,3380,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(51192,3380,'content_block_2_text_block_content_col_two','<img class=\"wp-image-986 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2012-Napa-College-Vineyard-Cab-Sauv.png\" alt=\"Napa Valley Cabernet Sauvignon Bottle\" width=\"70\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">NAPA VALLEY CABERNET SAUVIGNON</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft-2014-Napa-Valley-Cab-BottleShot.png\">2014</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft-2015-Napa-Valley-Cab-BottleShot-copy.png\">2015</a> | <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/16CSNVNC_1.png\">2016</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_2017_NapaValley_CabernetSauvignon.png\">2017</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_NapaValley_CabernetSauvignon_2018_small.png\">2018</a> | 2019 | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_NapaValley_CabernetSauvignon_2020_Bottleshot.png\">2020</a>\r\nTech Sheet: 2014 | <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2015CabernetSauvignonNapaValley_TECHSheet.pdf\">2015</a> | <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2016CabernetSauvignonNapaValley_TECHSheet.pdf\">2016</a> | <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017CabernetSauvignonNapaValley_TECHSheet.pdf\">2017</a> | <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018CabernetSauvignonNapaValley_TECHSheet.pdf\">2018</a> | <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2019CabernetSauvignonNapaValley_TECHSheet.pdf\">2019</a> | <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2020CabernetSauvignonNapaValley_TECHSheet.pdf\">2020</a></p>'),(51193,3380,'_content_block_2_text_block_content_col_two','field_5bbe31593920e'),(51194,3380,'content_block_2_text_block_content_col_three','<img class=\"wp-image-1088 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2015-Louveau-Cab.png\" alt=\"Meadowcroft 2015 Louveau Cab\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">DRY CREEK VALLEY | LOUVAU / WYLDVIN VINEYARD CAB SAUV</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/15CSSCLV_1.png\">2015</a> | <a href=\"/wp-content/uploads/2023/02/16CSNVNC_1-1.png\">2016</a> |<a href=\"/wp-content/uploads/2023/02/MC_2017_CABSAUV_LOUVAU.png\"> 2017</a> | <a href=\"/wp-content/uploads/2023/02/MC_2018_CABSAUV_LOUVAU.png\">2018</a> | <a href=\"/wp-content/uploads/2022/11/MC_2019_WYLDVIN_CABERNET_Bottleshot.png\">2019</a> | <a href=\"/wp-content/uploads/2022/11/MC_2020_WYLDVIN_CABERNET_Bottleshot.png\">2020</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2015CabernetSauvignonDCV_TECHSheet.pdf\">2015</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2016CabernetSauvignonDCV_TECHSheet.pdf\">2016</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2017CabernetSauvignonDCV_TECHSheet-1.pdf\">2017</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018CabernetSauvignonDCV_TECHSheet.pdf\">2018</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft-MC_DRYCREEKZIN_19_Techsheet.pdf\">2019</a> | <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-MC_DRYCREEKZIN_20_Techsheet.pdf\">2020</a></p>'),(51195,3380,'_content_block_2_text_block_content_col_three','field_5bbe31793920f'),(51196,3380,'content_block_2_text_block_content_col_four','<img class=\"wp-image-1101 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Nelson-Cab.png\" alt=\"Meadowcroft 2015 Nelson Ranch Cab\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">NELSON RANCH VINEYARD | MENDOCINO CABERNET SAUVIGNON</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft_2015_CabSauv_Mendo.png\">2015</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_2016_CabSauv_Mendo.png\">2016</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_2017CabSauv_Mendocino_NelsonRanch.png\">2017</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_2018CabSauv_Mendocino_NelsonRanch.png\">2018</a> | <a href=\"/wp-content/uploads/2023/02/19_Cab_NelsonRanch_Mendo_Bottleshot.png\">2019</a>\r\nTech Sheet: 2015 | 2016 | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2017CabernetSauvignonMendoCo_TECHSheet.pdf\">2017</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018CabernetSauvignonMendoCo_TECHSheet.pdf\">2018</a> | <a href=\"/wp-content/uploads/2022/11/19_Cab_NelsonRanch_Mendo_Techsheet.pdf\">2019</a></p>'),(51197,3380,'_content_block_2_text_block_content_col_four','field_5bbe317939444'),(51198,3380,'content_block_3_layout_title','Assets Row 3'),(51199,3380,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(51200,3380,'content_block_3_hide_this_content_block','1'),(51201,3380,'_content_block_3_hide_this_content_block','field_643884e4df74c7textb'),(51202,3380,'content_block_3_custom_css_class','wide-content white-boxes'),(51203,3380,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(51204,3380,'content_block_3_text_block_columns','four'),(51205,3380,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(51206,3380,'content_block_3_narrow_text_block_content','0'),(51207,3380,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(51208,3380,'content_block_3_reverse_colors','0'),(51209,3380,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(51210,3380,'content_block_3_enable_background_image','0'),(51211,3380,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(51212,3380,'content_block_3_text_block_content_col_one','<img class=\"wp-image-1110 aligncenter\" src=\"/wp-content/uploads/2023/02/Meadowcroft-Red-Hills-2020-CabSauv-376x1024-1-1.png\" alt=\"Meadowcroft Red Hills Cabernet Sauvignon\" width=\"100\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">RED HILLS | LAKE COUNTY CABERNET SAUVIGNON</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/MC_2020_WYLDVIN_CABERNET_Bottleshot-1.png\">2020</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2020CabernetSauvignonRedHills_TECHSheet.pdf\">2020</a></p>'),(51213,3380,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(51214,3380,'content_block_3_text_block_content_col_two','<img class=\"wp-image-1114 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/GSM.png\" alt=\"Meadowcroft 2016 River Trace GSM\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">RIVER TRACE GRENACHE SYRAH MOURVEDRE</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft-River-Trace-2016.png\">2016</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft-River-Trace-2017.png\">2017</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft-River-Trace-2019.png\">2019</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft-River-Trace-2020_Bottleshot.png\">2021</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2016_River-Trace_ChalkHill_GSM_TECHSheet.pdf\">2016</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2017_River-Trace_ChalkHill_GSM_TECHSheet.pdf\">2017</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2019_River-Trace_ChalkHill_GSM_TECHSheet.pdf\">2019</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2020_River-Trace_CA_GSM_TECHSheet.pdf\">2020</a></p>'),(51215,3380,'_content_block_3_text_block_content_col_two','field_5bbe31593920e'),(51216,3380,'content_block_3_text_block_content_col_three','<img class=\"wp-image-1123 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Anniversary-Blend.png\" alt=\"Meadowcroft Anniversary Blend\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">ANNIVERSARY CUVEE | NV, NAPA VALLEY</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/NV-AnnivCuvee20yr-scaled.jpg\">Non-Vintage</a>\r\nTech Sheet: <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/NV-AnivCuvee20YR-TechSheet.pdf\">Non-Vintage</a></p>'),(51217,3380,'_content_block_3_text_block_content_col_three','field_5bbe31793920f'),(51218,3380,'content_block_3_text_block_content_col_four','<img class=\"wp-image-1126 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Panorama.png\" alt=\"Meadowcroft The Panorama\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">NAPA VALLEY | THE PANORAMA RED BLEND</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/2017_ThePanorama_StagsLeapDistrict_Napa_RedBlend.png\">2017 Stags Leap District</a> | <a href=\"/wp-content/uploads/2023/02/17ThePanorama_1.png\">2017 Napa Valley</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/2017_StagsLeapDistrcit_ThePanorama_MC_v1.pdf\">2017 Stags Leap District</a> | <a href=\"/wp-content/uploads/2022/11/2017_Panorama_NV_CabSauvBlend_v1.pdf\">2017 Napa Valley</a></p>'),(51219,3380,'_content_block_3_text_block_content_col_four','field_5bbe317939444'),(51220,3380,'content_block_4_layout_title','Assets Row 4'),(51221,3380,'_content_block_4_layout_title','field_5bc11ca9a0d50-s'),(51222,3380,'content_block_4_hide_this_content_block','1'),(51223,3380,'_content_block_4_hide_this_content_block','field_643884e4df74c7textb'),(51224,3380,'content_block_4_custom_css_class','wide-content white-boxes'),(51225,3380,'_content_block_4_custom_css_class','field_5bbe30b1a4de2-1'),(51226,3380,'content_block_4_text_block_columns','four'),(51227,3380,'_content_block_4_text_block_columns','field_5bbe2f81a4de0'),(51228,3380,'content_block_4_narrow_text_block_content','0'),(51229,3380,'_content_block_4_narrow_text_block_content','field_5bbe342e08360'),(51230,3380,'content_block_4_reverse_colors','0'),(51231,3380,'_content_block_4_reverse_colors','field_5bbe3027a4de1'),(51232,3380,'content_block_4_enable_background_image','0'),(51233,3380,'_content_block_4_enable_background_image','field_5bbe30b1a4de2'),(51234,3380,'content_block_4_text_block_content_col_one','<img class=\"wp-image-1146 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Speedy-Creek-Zin.png\" alt=\"Speedy Creek Zinfandel\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">SPEEDY CREEK ZINFANDEL</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/2010_MC_Zinfandel-lg.png\">2010</a> | <a href=\"/wp-content/uploads/2023/02/2011_MC_KnightsValley_Zinfandel.png\">2011</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_Zin_Speedy_12-scaled-1.png\">2012</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_Zin_Speedy_13.png\">2013</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_Zinfandel_2014_SpeedyCreek.png\">2014</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_Zinfandel_2018_SpeedyCreek.png\">2018</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_Zinfandel_2019_SpeedyCreek-1.png\">2019</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/TastingSheet-2011-Meadowcroft-Zinfandel.pdf\">2010</a> | <a href=\"/wp-content/uploads/2022/11/TastingSheet-2010-Meadowcroft-Son-Zinfandel.pdf\">2011</a> | <a href=\"/wp-content/uploads/2022/11/2012_Speedy-Creek-Zin_Tasting-Notes.pdf\">2012</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2013SpeedyCreekZin_TECHSheet.pdf\">2013</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2014_SpeedyCreek_Zin_TECHSheet.pdf\">2014</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018_SpeedyCreek_Zin_TECHSheet-1.pdf\">2018</a> | 2019</p>'),(51235,3380,'_content_block_4_text_block_content_col_one','field_5bbe313b3920d'),(51236,3380,'content_block_4_text_block_content_col_two','<img class=\"wp-image-1149 aligncenter\" src=\"/wp-content/uploads/2023/02/Meadowcroft-MC_DRYCREEKZIN_20-1000x2722-1-scaled.webp\" alt=\"Meadowcroft Mae Vineyard Zinfandel\" width=\"101\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">MAE VINEYARD | DRY CREEK VALLEY ZINFANDEL</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft-MC_DRYCREEKZIN_20.png\">Non-Vintage</a>\r\nTech Sheet:<a href=\"/wp-content/uploads/2022/11/Meadowcroft-MC_DRYCREEKZIN_20_Techsheet-1.pdf\">Non-Vintage</a></p>'),(51237,3380,'_content_block_4_text_block_content_col_two','field_5bbe31593920e'),(51238,3380,'content_block_4_text_block_content_col_three','<img class=\"wp-image-1154 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Old-Vine.png\" alt=\"Meadowcroft 2016 Old Vine Zindandel\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">OLD VINE | AMADOR COUNTY ZINFANDEL</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2022/11/2013-Speedy-Creek.jpeg\">2016</a> | <a href=\"/wp-content/uploads/2023/02/18ZNOLDVINE_1-1.png\">2018</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2016Zinfandel_Amador_TECHSheet_v1.pdf\">2016</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018Zinfandel_Amador_TECHSheet.pdf\">2018</a></p>'),(51239,3380,'_content_block_4_text_block_content_col_three','field_5bbe31793920f'),(51240,3380,'content_block_4_text_block_content_col_four','<img class=\"wp-image-1166 aligncenter\" src=\"/wp-content/uploads/2023/02/20_Malbec_Clements_Hill_Bottleshot-376x1024-11.png\" alt=\"Meadowcroft Cru de la Ruche Malbec\" width=\"100\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">CRU DE LA RUCHE | MALBEC</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2022/11/2014-Malbec.jpeg\">2014</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_2016_Malbec_BottleShot.jpg.png\">2016</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_2017_Malbec_BottleShot_v2.png\">2017</a> | 2018 | <a href=\"/wp-content/uploads/2023/02/MC_2019_Malbec_Clements_Hill_Bottleshot.png\">2019</a> | 2020\r\nTech Sheet: 2014 | 2016 | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2017CruDeLaRucheMalbec_TECHSheet_Awards.pdf\">2017</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018CruDeLaRucheMalbec_TECHSheet_Awards.pdf\">2018</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2019CruDeLaRucheMalbec_TECHSheet.pdf\">2019</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2020CruDeLaRucheMalbec_TECHSheet-1.pdf\">2020</a></p>'),(51241,3380,'_content_block_4_text_block_content_col_four','field_5bbe317939444'),(51242,3380,'content_block_5_layout_title','Assets Row 5'),(51243,3380,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(51244,3380,'content_block_5_hide_this_content_block','1'),(51245,3380,'_content_block_5_hide_this_content_block','field_643884e4df74c7textb'),(51246,3380,'content_block_5_custom_css_class','wide-content white-boxes'),(51247,3380,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(51248,3380,'content_block_5_text_block_columns','four'),(51249,3380,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(51250,3380,'content_block_5_narrow_text_block_content','0'),(51251,3380,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(51252,3380,'content_block_5_reverse_colors','0'),(51253,3380,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(51254,3380,'content_block_5_enable_background_image','0'),(51255,3380,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(51256,3380,'content_block_5_text_block_content_col_one','<img class=\"wp-image-1167 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2014-Syrah.jpeg\" alt=\"Meadowcroft 2014 Syrah\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">CALIFORNIA SYRAH</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft_Syrah_2014_BottleShot-1-scaled-1.png\">2014</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_Syrah_California_2018.png\">2018</a>\r\nTech Sheet: 2014 | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018_SyrahCalifornia_TECHSheet.pdf\">2018</a></p>'),(51257,3380,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(51258,3380,'content_block_5_text_block_content_col_two','<img class=\"wp-image-1180 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2015-Cornerstone-Vineyard-Pinot-Noir.jpeg\" alt=\"Meadowcroft 2015 Cornerstone Pinot Noir\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">CORNERSTONE VINEYARD PINOT NOIR</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft_2015_PinotNoir_Cornerstone_BottleShot-scaled-1.png\">2015</a> | 2016 | 2017 | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_PinotNoir_Cornerstone_LosCarneros_2018.png\">2018</a> | <a href=\"/wp-content/uploads/2023/02/19_PinotNoir_Cornerstone.png\">2019</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_2020_Cornerstone_Pinotnoir_Bottleshotpng.png\">2020</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2015_PinotNoir_Cornerstone_TECHSheet.pdf\">2015</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2016CornerstoneVineyard_PinotNoir_TECHSheet.pdf\">2016</a> | 2017 | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018_CornerstoneVineyard_Pinotnoir_TECHSheet.pdf\">2018</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2019_CornerstoneVineyard_Pinotnoir_TECHSheet.pdf\">2019</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2020_Cornerstone_Pinotnoir_TECHSheet.pdf\">2020</a></p>'),(51259,3380,'_content_block_5_text_block_content_col_two','field_5bbe31593920e'),(51260,3380,'content_block_5_text_block_content_col_three','<img class=\"alignnone wp-image-1192 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_PinotNoir_SonomaCoast_15_BottleShot-scaled.jpeg\" alt=\"Meadowcroft 2015 Sonoma Coast Pinot Noir\" width=\"80\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\"> SONOMA COAST PINOT NOIR</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"&quot;/wp-content/uploads/2023/02/Meadowcroft_PinotNoir_SonomaCoast_15_BottleShot-scaled-1.jpg\">2015</a> | <a href=\"/wp-content/uploads/2023/02/16PNSCSO_1.png\">2016</a> | <a href=\"/wp-content/uploads/2023/02/17PNSCSC_1.png\">2017</a> | <a href=\"/wp-content/uploads/2023/02/MC_SONOMACOASTPINOT_2018.png\">2018</a> | <a href=\"/wp-content/uploads/2023/02/MC_SONOMACOASTPINOT_2019-1.png\">2019</a> | <a href=\"/wp-content/uploads/2023/02/2021-Meadowcroft-Sonoma-Coast-Pinot_Bottleshot.png\">2021</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2015SonomaCoastPinot_TECHSheet.pdf\">2015</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2016SonomaCoastPinotNoir_TECHSheet.pdf\">2016</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2017SonomaCoastPinotNoir_TECHSheet.pdf\">2017</a> | <a href=\"/wp-content/uploads/2022/11/2018-Meadowcroft-Sonoma-Coast-Pinot-noir.pdf\">2018</a> | <a href=\"/wp-content/uploads/2022/11/2019-Meadowcroft-Sonoma-Coast-Pinot-noir-1.pdf\">2019</a> | <a href=\"/wp-content/uploads/2022/11/2021-Meadowcroft-Sonoma-Coast-Pinot-noir.pdf\">2021</a></p>'),(51261,3380,'_content_block_5_text_block_content_col_three','field_5bbe31793920f'),(51262,3380,'content_block_5_text_block_content_col_four','<img class=\"wp-image-1208 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2015-Russian-River-Pinot.jpeg\" alt=\"Meadowcroft 2015 RRV Pinot Noir\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">RUSSIAN RIVER VALLEY PINOT NOIR</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot : <a href=\"/wp-content/uploads/2023/02/Meadowcroft_PinotNoir_RRV15_BotteShot-scaled-1.jpg\">2015</a> | 2016 | <a href=\"/wp-content/uploads/2023/02/17PNSCRR_1.png\">2017</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_PinotNoir_RRV18_BotteShot.png\">2018</a> | <a href=\"/wp-content/uploads/2023/02/19PIINOTNOIR_RRValley_Screwcap.png\">2019</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_2020_PinotNoir_RussianriverValley_Bottleshot.png\">2020</a> | <a href=\"/wp-content/uploads/2023/02/21_Pinot_RRV_bottleshot.png\">2021</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_Pinot_Noir_RRV_15_TECHSHEET.pdf\">2015</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2016RussianRiverPinotNoir_TECHSheet.pdf\">2016</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2017_RussianRiverValley_Pinotnoir_TECHSheet.pdf\">2017</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018_RussianRiverValley_Pinotnoir_TECHSheet-1.pdf\">2018</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2019_RussianRiverValley_Pinotnoir_TECHSheet.pdf\">2019</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2020_RussianRiverValley_Pinotnoir_TECHSheet.pdf\">2020</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2021_RussianRiverValley_Pinotnoir_TECHSheet.pdf\">2021</a></p>'),(51263,3380,'_content_block_5_text_block_content_col_four','field_5bbe317939444'),(51264,3380,'content_block_6_layout_title','Assets Row 6'),(51265,3380,'_content_block_6_layout_title','field_5bc11ca9a0d50-s'),(51266,3380,'content_block_6_hide_this_content_block','1'),(51267,3380,'_content_block_6_hide_this_content_block','field_643884e4df74c7textb'),(51268,3380,'content_block_6_custom_css_class','wide-content white-boxes'),(51269,3380,'_content_block_6_custom_css_class','field_5bbe30b1a4de2-1'),(51270,3380,'content_block_6_text_block_columns','four'),(51271,3380,'_content_block_6_text_block_columns','field_5bbe2f81a4de0'),(51272,3380,'content_block_6_narrow_text_block_content','0'),(51273,3380,'_content_block_6_narrow_text_block_content','field_5bbe342e08360'),(51274,3380,'content_block_6_reverse_colors','0'),(51275,3380,'_content_block_6_reverse_colors','field_5bbe3027a4de1'),(51276,3380,'content_block_6_enable_background_image','0'),(51277,3380,'_content_block_6_enable_background_image','field_5bbe30b1a4de2'),(51278,3380,'content_block_6_text_block_content_col_one','<img class=\"wp-image-1209 aligncenter\" src=\"/wp-content/uploads/2023/02/Meadowcroft-_21_Pinot_Noir_AndersonValley-1.png\" alt=\"Meadowcroft 2021 Anderson Valley Pinot Noir\" width=\"97\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">ANDERSON VALLEY PINOT NOIR</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft_Pinot_Noir_Anderson-Valley_15_bottleshot.png\">2015</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_Pinot_Noir_Anderson-Valley_16_bottleshot.png\">2016</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_PiontNoir_AndersonValley_2018.png\">2018</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_PinotNoir_AndersonValley_2019.png\">2019</a> | <a href=\"/wp-content/uploads/2023/02/MC_AndersonPinot2020.png\">2020</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft-_21_Pinot_Noir_AndersonValley.png\">2021</a>\r\nTech Sheet: 2015 | 2016 | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018_PinotAnderson_TECHSheet.pdf\">2018</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2019PinotAnderson_TECHSheet.pdf\">2019</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2019PinotAnderson_TECHSheet-1.pdf\">2020</a> | <a href=\"/wp-content/uploads/2022/11/MC_2021_AndersonValley_PinotNoir_TECHSheet.pdf\">2021</a></p>'),(51279,3380,'_content_block_6_text_block_content_col_one','field_5bbe313b3920d'),(51280,3380,'content_block_6_text_block_content_col_two','<img class=\"wp-image-1229 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Carneros-15.png\" alt=\"Meadowcroft 2015 Carneros Pinot Noir\" width=\"163\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">LOS CARNEROS | NAPA PINOT NOIR</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft_Pinot_Noir_CarnerosNapa_15_bottleshot-1.png\">2015</a> | <a href=\"/wp-content/uploads/2023/02/16PNNVLCv2_1.png\">2016</a> | <a href=\"/wp-content/uploads/2023/02/2017_Cornerstone_CarnerosSonoma_PinotNoir.png\">2017</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_PinotNoir_Carneros_Napa_2021.png\">2021</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2015NapaPinotnoir_TECHSheet.pdf\">2015</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2016NapaPinotnoir_TECHSheet.pdf\">2016</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2017_CornerstoneVineyard_Pinotnoir_TECHSheet.pdf\">2017</a> | <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-PinotNoir-NapaCarn-correct.pdf\">2021</a></p>'),(51281,3380,'_content_block_6_text_block_content_col_two','field_5bbe31593920e'),(51282,3380,'content_block_6_text_block_content_col_three','<img class=\"wp-image-1230 aligncenter\" src=\"/wp-content/uploads/2023/02/Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024-2.png\" alt=\"Meadowcroft 2018 Cabernet Franc\" width=\"100\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">CABERNET FRANC RIVINO VINEYARD</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018.png\">2018</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018CabernetFrancRivinoMendo_TECHSheet.pdf\">2018</a></p>'),(51283,3380,'_content_block_6_text_block_content_col_three','field_5bbe31793920f'),(51284,3380,'content_block_6_text_block_content_col_four','<img class=\"aligncenter wp-image-1234\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/chard.png\" alt=\"Meadowcroft 2015 Sonoma Coast Chardonnay\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">SONOMA COAST CHARDONNAY</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/MC2015_CH_SC_BottleShot.png\">2015</a> | <a href=\"/wp-content/uploads/2023/02/20_Chard_TaylorsCrown_Bottleshot.png\">2020</a> | <a href=\"/wp-content/uploads/2023/02/21_Chard_Vinodelsol_SonomaCoast_bottleshot.png\">2021</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2015SonomaCoastChard_TECHSheet.pdf\">2015</a> | <a href=\"/wp-content/uploads/2022/11/20_Chard_Sonoma_TaylorsCrown_TechSheet.pdf\">2020</a> | <a href=\"/wp-content/uploads/2022/11/21_Chard_Sonoma_VinoDelSol_TechSheet.pdf\">2021</a></p>'),(51285,3380,'_content_block_6_text_block_content_col_four','field_5bbe317939444'),(51286,3380,'content_block_7_layout_title','Assets Row 7'),(51287,3380,'_content_block_7_layout_title','field_5bc11ca9a0d50-s'),(51288,3380,'content_block_7_hide_this_content_block','1'),(51289,3380,'_content_block_7_hide_this_content_block','field_643884e4df74c7textb'),(51290,3380,'content_block_7_custom_css_class','wide-content white-boxes'),(51291,3380,'_content_block_7_custom_css_class','field_5bbe30b1a4de2-1'),(51292,3380,'content_block_7_text_block_columns','four'),(51293,3380,'_content_block_7_text_block_columns','field_5bbe2f81a4de0'),(51294,3380,'content_block_7_narrow_text_block_content','0'),(51295,3380,'_content_block_7_narrow_text_block_content','field_5bbe342e08360'),(51296,3380,'content_block_7_reverse_colors','0'),(51297,3380,'_content_block_7_reverse_colors','field_5bbe3027a4de1'),(51298,3380,'content_block_7_enable_background_image','0'),(51299,3380,'_content_block_7_enable_background_image','field_5bbe30b1a4de2'),(51300,3380,'content_block_7_text_block_content_col_one','<img class=\"wp-image-1241 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/carneros-chard.png\" alt=\"Meadowcroft 2019 Carneros Chardonnay\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\"> NAPA VALLEY | CARNEROS CHARDONNAY</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft_Chardonnay_NapaValley_Carneros_2019.png\">2019</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_20_Chard_Napa_Carneros_BottleShot-.png\">2020</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_21_Chard_Napa_Carneros_BottleShot-.png\">2021</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2019LosCarneros_NapaChard_TECHSheet.pdf\">2019</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2020LosCarneros_NapaChard_TECHSheet.pdf\">2020</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2021LosCarneros_NapaChard_TECHSheet.pdf\">2021</a></p>'),(51301,3380,'_content_block_7_text_block_content_col_one','field_5bbe313b3920d'),(51302,3380,'content_block_7_text_block_content_col_two','<img class=\"alignnone wp-image-1248 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2015-Chardonnay.jpeg\" alt=\"Meadowcroft 2015 Carneros Chardonnay\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">CARNEROS | SONOMA COUNTY CHARDONNAY</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: 2015 | <a href=\"/wp-content/uploads/2023/02/MC2016_CH_SCTY_BottleShot-1.png\">2016</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_2018_LosCarneros_Chardonnay-1.png\">2018</a> | 2019\r\nTech Sheet: 2015 | 2016 | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018LosCarneros_SonomaChard_TECHSheet.pdf\">2018</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2019LosCarneros_SonomaChard_TECHSheet.pdf\">2019</a></p>'),(51303,3380,'_content_block_7_text_block_content_col_two','field_5bbe31593920e'),(51304,3380,'content_block_7_text_block_content_col_three','<img class=\"wp-image-1254 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/rrv-chard.png\" alt=\"Meadowcroft 2015 RRV Chardonnay\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">CHARDONNAY | RUSSIAN RIVER VALLEY</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft2016RRVChardonnayBottleShot.png\">2016</a>\r\nTech Sheet: 2016</p>'),(51305,3380,'_content_block_7_text_block_content_col_three','field_5bbe31793920f'),(51306,3380,'content_block_7_text_block_content_col_four','<img class=\"wp-image-1258 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/anderson-chard.png\" alt=\"Meadowcroft 2021 Anderson Chardonnay\" width=\"163\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">CHARDONNAY | ANDERSON VALLEY</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft_21_Chard_AV_MENDOCINO_BottleShot_-1.png\">2021</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2021_AV_Mendo_TECHSheet-1.pdf\">2021</a></p>'),(51307,3380,'_content_block_7_text_block_content_col_four','field_5bbe317939444'),(51308,3380,'content_block_8_layout_title','Assets Row 8'),(51309,3380,'_content_block_8_layout_title','field_5bc11ca9a0d50-s'),(51310,3380,'content_block_8_hide_this_content_block','1'),(51311,3380,'_content_block_8_hide_this_content_block','field_643884e4df74c7textb'),(51312,3380,'content_block_8_custom_css_class','wide-content white-boxes'),(51313,3380,'_content_block_8_custom_css_class','field_5bbe30b1a4de2-1'),(51314,3380,'content_block_8_text_block_columns','four'),(51315,3380,'_content_block_8_text_block_columns','field_5bbe2f81a4de0'),(51316,3380,'content_block_8_narrow_text_block_content','0'),(51317,3380,'_content_block_8_narrow_text_block_content','field_5bbe342e08360'),(51318,3380,'content_block_8_reverse_colors','0'),(51319,3380,'_content_block_8_reverse_colors','field_5bbe3027a4de1'),(51320,3380,'content_block_8_enable_background_image','0'),(51321,3380,'_content_block_8_enable_background_image','field_5bbe30b1a4de2'),(51322,3380,'content_block_8_text_block_content_col_one','<img class=\" wp-image-1259 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/vio.png\" alt=\"Meadowcroft 2015 Viognier\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">VIOGNIER | DRY CREEK VALLEY</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft_Viognier_15_Bottleshot.png\">2015</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_Viognier_16_Bottleshot.png\">2016</a> | <a href=\"/wp-content/uploads/2023/02/MC_VIOGNIER_2017.png\">2017</a> | <a href=\"/wp-content/uploads/2023/02/MC_2018_Viognier_Louvau_DryCreekValley.png\">2018</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_2019_LouvauVineyard_DryCreekValley_Viognier.png\">2019</a> | 2020 | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_2021_Viognier_WYLDVIN_BottleShot.png\">2021</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2015Viognier_TECHSheet.pdf\">2015</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2017_DryValleuCreek_LouvauVineyard_Viognier_TECHSheet.pdf\">2016</a> | 2017 | 2018 | <a href=\"/wp-content/uploads/2022/11/MC_2018_DryValleyCreek_LouvauVineyard_Viognier_TECHSheet.pdf\">2019</a> | <a href=\"/wp-content/uploads/2022/11/MC_2020_DryValleyCreek_LouvauVineyard_Viognier_TECHSheet.pdf\">2020</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2021_Viognier_WYLDVIN_Tech_Sheet-1.pdf\">2021</a></p>'),(51323,3380,'_content_block_8_text_block_content_col_one','field_5bbe313b3920d'),(51324,3380,'content_block_8_text_block_content_col_two','<img class=\"wp-image-1273 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/pinot-blanc.png\" alt=\"Meadowcroft 2020 Pinot Blanc\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">PINOT BLANC | NELSON RANCH VINEYARD | MENDOCINO</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/2020_Pinot_Blanc_Bottleshot-1.png\">2020</a> | <a href=\"/wp-content/uploads/2023/02/2021_Pinot_Blanc_Bottleshot-1.png\">2021</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/MC_2020_Pinot-Blanc_RivinoVNYD_Mendocino_TECHSheet-1.pdf\">2020</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2021_Pinot_Blanc_Mendocino_Tech_Sheet-1.pdf\">2021</a></p>'),(51325,3380,'_content_block_8_text_block_content_col_two','field_5bbe31593920e'),(51326,3380,'content_block_8_text_block_content_col_three','<img class=\"wp-image-1278 aligncenter\" src=\"/wp-content/uploads/2023/02/MC_Roussanne_2016_BottleShot-329x1024-1-1.png\" alt=\"Meadowcroft 2015 Roussanne\" width=\"88\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">ROUSSANNE | DRY CREEK VALLEY</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/MC_15_Roussanne_BottleShot.png\">2015</a> | <a href=\"/wp-content/uploads/2023/02/MC_Roussanne_2016_BottleShot-329x1024-1-1.png\">2016</a> | <a href=\"/wp-content/uploads/2023/02/MC_ROUSSANNE_2017.png\">2017</a> | <a href=\"/wp-content/uploads/2023/02/MC_Roussanne_Louvau_DryCreekValley.png\">2018</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_Roussanne_DCV_LouvauVineyard_2019.png\">2019</a> | <a href=\"/wp-content/uploads/2023/02/MC_Roussanne_2020_Bottleshot_png.png\">2020</a> | <a href=\"/wp-content/uploads/2023/02/MC_Roussanne_2021_Bottleshot.png\">2021</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Rousanne_Tech.pdf\">2015</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2016DryVCreekRoussanne_TECHSheet.pdf\">2016</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2017DryVCreekRoussanne_TECHSheet.pdf\">2017</a> | <a href=\"/wp-content/uploads/2022/11/MC_2018_Roussanne_Louvau_DryCreekValley_TECHSheet-update.pdf\">2018</a> | <a href=\"/wp-content/uploads/2022/11/MC_2019_Roussanne_Louvau_DryCreekValley_TECHSheet.pdf\">2019</a> | <a href=\"/wp-content/uploads/2022/11/MC_2020_Roussanne_Louvau_DryCreekValley_TECHSheet.pdf\">2020</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2021_Roussanne_Mendocino_Tech_Sheet.pdf\">2021</a></p>'),(51327,3380,'_content_block_8_text_block_content_col_three','field_5bbe31793920f'),(51328,3380,'content_block_8_text_block_content_col_four','<img class=\"wp-image-1294 aligncenter\" src=\"/wp-content/uploads/2023/02/sauvignon-blanc-1.png\" alt=\"Meadowcroft 2016 Sauvignon Blanc\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\"> SONOMA COAST SAUVIGNON BLANC</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft_SauvBlanc_2016_BottleShot-1.png\">2016</a> | 2017 | 2018 | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_SauvBlanc_SonomaCoast_2019.png\">2019</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_SauvBlanc_SonomaCoast_2020.png\">2020</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_SauvBlanc_SonomaCoast_2021.png\">2021</a>\r\nTech Sheet: 2016 | 2017 | 2018 | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2019SonomaCoastSauvBlanc_TECHSheet.pdf\">2019</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2020SonomaCoastSauvBlanc_TECHSheet.pdf\">2020</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2021SonomaCoastSauvBlanc_TECHSheet.pdf\">2021</a></p>'),(51329,3380,'_content_block_8_text_block_content_col_four','field_5bbe317939444'),(51330,3380,'content_block_9_layout_title','Assets Row 9'),(51331,3380,'_content_block_9_layout_title','field_5bc11ca9a0d50-s'),(51332,3380,'content_block_9_hide_this_content_block','1'),(51333,3380,'_content_block_9_hide_this_content_block','field_643884e4df74c7textb'),(51334,3380,'content_block_9_custom_css_class','wide-content white-boxes'),(51335,3380,'_content_block_9_custom_css_class','field_5bbe30b1a4de2-1'),(51336,3380,'content_block_9_text_block_columns','four'),(51337,3380,'_content_block_9_text_block_columns','field_5bbe2f81a4de0'),(51338,3380,'content_block_9_narrow_text_block_content','0'),(51339,3380,'_content_block_9_narrow_text_block_content','field_5bbe342e08360'),(51340,3380,'content_block_9_reverse_colors','0'),(51341,3380,'_content_block_9_reverse_colors','field_5bbe3027a4de1'),(51342,3380,'content_block_9_enable_background_image','0'),(51343,3380,'_content_block_9_enable_background_image','field_5bbe30b1a4de2'),(51344,3380,'content_block_9_text_block_content_col_one','<img class=\"wp-image-1303 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2015-Riesling.jpeg\" alt=\"Meadowcroft 2015 Riseling\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">NELSON RANCH VINEYARD | MENDOCINO RIESLING</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/MC15_Riesling_BottleShot-scaled-1.jpg\">2015</a> | <a href=\"/wp-content/uploads/2023/02/16RIMDNV_1.png\">2016</a> | <a href=\"/wp-content/uploads/2023/02/MC17_Riesling_BottleShot_warm_dh.png\">2017</a> | <a href=\"/wp-content/uploads/2023/02/MC18_Riesling_BottleShot.png\">2018</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/15Riesling_Tech-1.pdf\">2015</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2016Riesling_TECHSheet.pdf\">2016</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2017Riesling_TECHSheet.pdf\">2017</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018Riesling_TECHSheet.pdf\">2018</a></p>'),(51345,3380,'_content_block_9_text_block_content_col_one','field_5bbe313b3920d'),(51346,3380,'content_block_9_text_block_content_col_two','<img class=\"wp-image-1313 aligncenter\" src=\"/wp-content/uploads/2023/02/MC_FrenchColombard2021_Bottleshot-281x1024-2.png\" alt=\"Meadowcroft 2021 French Colombard\" width=\"75\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">FRENCH COLOMBARD | RUSSIAN RIVER VALLEY</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/MC_FrenchColombard_2016_bottleshot.png\">2016</a> | <a href=\"/wp-content/uploads/2023/02/MC_FRENCHCOLUMBARD_2017.png\">2017</a> | <a href=\"/wp-content/uploads/2023/02/MC_2018_FrenchColombard_BottleShot.png\">2018</a> | <a href=\"/wp-content/uploads/2023/02/MC_FrenchColombard2019_Bottleshot.png\">2019</a> | <a href=\"/wp-content/uploads/2023/02/MC_FrenchColombard2021_Bottleshot.png\">2021</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Sunset_FrenchColombard16_Roussanne16_BestofClass-1.pdf\">2016</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2017RussianRiverFrenchColombard_TECHSheet.pdf\">2017</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018RussianRiverFrenchColombard_TECHSheet.pdf\">2018</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2019RussianRiverFrenchColombard_TECHSheet.pdf\">2019</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2021RussianRiverFrenchColombard_TECHSheet.pdf\">2021</a></p>'),(51347,3380,'_content_block_9_text_block_content_col_two','field_5bbe31593920e'),(51348,3380,'content_block_9_text_block_content_col_three','<img class=\"wp-image-1324 aligncenter\" src=\"/wp-content/uploads/2023/02/MC_21_PinotGris_BottleShot-1.png\" alt=\"Meadowcroft 2021 Pinot Gris\" width=\"75\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">PINOT GRIS | NELSON RANCH | MENDOCINO</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2022/11/MC_21_PinotGris_BottleShot.png\">2021 </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-PinotGris-scaled.jpg\">2023</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2021_Pinot_Gris_Mendocino_Tech_Sheet.pdf\">2021 </a>| <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2023-Pinot-Gris.pdf\">2023</a></p>'),(51349,3380,'_content_block_9_text_block_content_col_three','field_5bbe31793920f'),(51350,3380,'content_block_9_text_block_content_col_four','<img class=\"wp-image-1329 aligncenter\" src=\"/wp-content/uploads/2023/02/Meadowcroft-Sparkling-Bottle-shot-1-1.png\" alt=\"Meadowcroft Blanc de Blanc\" width=\"85\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">BLANC DE BLANCS | NAPA VALLEY</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/Meadowcroft-Sparkling-Bottle-shot-1-1.png\">Non-Vintage</a>\r\nTech Sheet: <a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/03/NV-Blanc-de-Noir-final.pdf\">Non-Vintage</a></p>'),(51351,3380,'_content_block_9_text_block_content_col_four','field_5bbe317939444'),(51352,3380,'content_block_10_layout_title','Assets Row 10'),(51353,3380,'_content_block_10_layout_title','field_5bc11ca9a0d50-s'),(51354,3380,'content_block_10_hide_this_content_block','1'),(51355,3380,'_content_block_10_hide_this_content_block','field_643884e4df74c7textb'),(51356,3380,'content_block_10_custom_css_class','wide-content white-boxes'),(51357,3380,'_content_block_10_custom_css_class','field_5bbe30b1a4de2-1'),(51358,3380,'content_block_10_text_block_columns','four'),(51359,3380,'_content_block_10_text_block_columns','field_5bbe2f81a4de0'),(51360,3380,'content_block_10_narrow_text_block_content','0'),(51361,3380,'_content_block_10_narrow_text_block_content','field_5bbe342e08360'),(51362,3380,'content_block_10_reverse_colors','0'),(51363,3380,'_content_block_10_reverse_colors','field_5bbe3027a4de1'),(51364,3380,'content_block_10_enable_background_image','0'),(51365,3380,'_content_block_10_enable_background_image','field_5bbe30b1a4de2'),(51366,3380,'content_block_10_text_block_content_col_one','<img class=\"wp-image-1330 aligncenter\" src=\"/wp-content/uploads/2023/02/rose-of-malbec-1.png\" alt=\"Meadowcroft 2016 Rosé of Malbec\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">ROSÉ OF MALBEC | CLEMENTS HILLS</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/MC_Rose_2016_BottleShot.png\">2016</a> | <a href=\"/wp-content/uploads/2023/02/MC_ROSE_17.png\">2017</a> | <a href=\"/wp-content/uploads/2023/02/MC_ROSE_18.png\">2018</a> | <a href=\"/wp-content/uploads/2023/02/MC_Malbec_Rose_2020_BottleShot.png\">2020</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2016Rose_TECHSheet.pdf\">2016</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2017Rose_TECHSheet.pdf\">2017</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2018Rose_TECHSheet.pdf\">2018</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2020Rose_TECHSheet.pdf\">2020</a></p>'),(51367,3380,'_content_block_10_text_block_content_col_one','field_5bbe313b3920d'),(51368,3380,'content_block_10_text_block_content_col_two','<img class=\"wp-image-1344 aligncenter\" src=\"/wp-content/uploads/2023/02/rose-of-malbec-1.png\" alt=\"Meadowcroft 2020 Rosé of Pinot Noir\" width=\"164\" height=\"273\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">ROSÉ OF PINOT NOIR | SONOMA COAST</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: 2019 | <a href=\"/wp-content/uploads/2023/02/MC_Pinot_Rose_2020_BottleShot.png\">2020</a> | <a href=\"/wp-content/uploads/2023/02/Meadowcroft_2021_Rose_Sonoma-Coast_BottleShot.png\">2021</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2019RoseSC_TECHSheet.pdf\">2019</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2020RoseSC_TECHSheet.pdf\">2020</a> | <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2021_Rose_Somoma-Coast_TechSheet.pdf\">2021</a></p>'),(51369,3380,'_content_block_10_text_block_content_col_two','field_5bbe31593920e'),(51370,3380,'content_block_10_text_block_content_col_three','<span class=\"h6\"><img class=\"wp-image-1503 aligncenter\" src=\"/wp-content/uploads/2023/02/gsm.jpg\" alt=\"Meadowcroft GSM Rosé\" width=\"164\" height=\"273\" /></span>\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">RIVER TRACE ROSÉ | GSM</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/MC_GSM_Rose_2021_BottleShot-1.png\">2021</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/Meadowcroft_2021RoseGSM_TECHSheet-1.pdf\">2021</a></p>'),(51371,3380,'_content_block_10_text_block_content_col_three','field_5bbe31793920f'),(51372,3380,'content_block_10_text_block_content_col_four','<img class=\"wp-image-1502 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/12/port.png\" alt=\"Meadowcroft All She Wrote Port\" width=\"150\" height=\"250\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">ALL SHE WROTE PORT</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/All-She-Wrote-Wax.png\">Non-Vintage</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/ALL-SHE-WROTE_tastingnotes_Website.pdf\">Non-Vintage</a></p>'),(51373,3380,'_content_block_10_text_block_content_col_four','field_5bbe317939444'),(51374,3380,'content_block_11_layout_title','Assets Row 10'),(51375,3380,'_content_block_11_layout_title','field_5bc11ca9a0d50-s'),(51376,3380,'content_block_11_hide_this_content_block','1'),(51377,3380,'_content_block_11_hide_this_content_block','field_643884e4df74c7textb'),(51378,3380,'content_block_11_custom_css_class','wide-content white-boxes'),(51379,3380,'_content_block_11_custom_css_class','field_5bbe30b1a4de2-1'),(51380,3380,'content_block_11_text_block_columns','four'),(51381,3380,'_content_block_11_text_block_columns','field_5bbe2f81a4de0'),(51382,3380,'content_block_11_narrow_text_block_content','0'),(51383,3380,'_content_block_11_narrow_text_block_content','field_5bbe342e08360'),(51384,3380,'content_block_11_reverse_colors','0'),(51385,3380,'_content_block_11_reverse_colors','field_5bbe3027a4de1'),(51386,3380,'content_block_11_enable_background_image','0'),(51387,3380,'_content_block_11_enable_background_image','field_5bbe30b1a4de2'),(51388,3380,'content_block_11_text_block_content_col_one','<img class=\"wp-image-1501 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/12/bee.png\" alt=\"Meadowcroft Let it Bee\" width=\"150\" height=\"250\" />\r\n<h2 style=\"text-align: center;\"><span class=\"h6\">LET IT BEE</span></h2>\r\n<p style=\"text-align: center;\">Bottle Shot: <a href=\"/wp-content/uploads/2023/02/NV-Let_It_Bee_Bottleshot-1.png\">Non-Vintage</a>\r\nTech Sheet: <a href=\"/wp-content/uploads/2022/11/NV_Let-It-Bee-White-Port_-TechSheet.pdf\">Non-Vintage</a></p>'),(51389,3380,'_content_block_11_text_block_content_col_one','field_5bbe313b3920d'),(51390,3380,'content_block_11_text_block_content_col_two','&amp;nbsp;'),(51391,3380,'_content_block_11_text_block_content_col_two','field_5bbe31593920e'),(51392,3380,'content_block_11_text_block_content_col_three','&amp;nbsp;'),(51393,3380,'_content_block_11_text_block_content_col_three','field_5bbe31793920f'),(51394,3380,'content_block_11_text_block_content_col_four','&amp;nbsp;'),(51395,3380,'_content_block_11_text_block_content_col_four','field_5bbe317939444'),(51396,3380,'content_block','a:12:{i:0;s:10:\"text_block\";i:1;s:10:\"text_block\";i:2;s:10:\"text_block\";i:3;s:10:\"text_block\";i:4;s:10:\"text_block\";i:5;s:10:\"text_block\";i:6;s:10:\"text_block\";i:7;s:10:\"text_block\";i:8;s:10:\"text_block\";i:9;s:10:\"text_block\";i:10;s:10:\"text_block\";i:11;s:10:\"text_block\";}'),(51397,3380,'_content_block','field_5bbe19a7efa09'),(51398,3381,'_wp_attached_file','2024/02/SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-scaled.jpg'),(51399,3381,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:740;s:6:\"height\";i:2560;s:4:\"file\";s:74:\"2024/02/SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-scaled.jpg\";s:8:\"filesize\";i:231346;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:66:\"SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-87x300.jpg\";s:5:\"width\";i:87;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17503;}s:5:\"large\";a:5:{s:4:\"file\";s:68:\"SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-296x1024.jpg\";s:5:\"width\";i:296;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60403;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:67:\"SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15188;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:68:\"SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-768x2657.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2657;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:245373;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:67:\"SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23374;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:67:\"SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38589;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:67:\"SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24040;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:67:\"SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20425;}s:8:\"tileview\";a:5:{s:4:\"file\";s:67:\"SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27673;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:68:\"SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-444x1536.jpg\";s:5:\"width\";i:444;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107013;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:68:\"SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-592x2048.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163848;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:69:\"SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-1200x4151.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:4151;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:493500;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:9:\"Copyright\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:59:\"SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1.jpg\";}'),(51400,3382,'_wp_attached_file','2024/02/SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-1-scaled.jpg'),(51401,3382,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:740;s:6:\"height\";i:2560;s:4:\"file\";s:76:\"2024/02/SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-1-scaled.jpg\";s:8:\"filesize\";i:231346;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:68:\"SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-1-87x300.jpg\";s:5:\"width\";i:87;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17503;}s:5:\"large\";a:5:{s:4:\"file\";s:70:\"SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-1-296x1024.jpg\";s:5:\"width\";i:296;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60403;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:69:\"SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15188;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:70:\"SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-1-768x2657.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2657;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:245373;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:69:\"SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23374;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:69:\"SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38589;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:69:\"SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-1-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24040;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:69:\"SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-1-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20425;}s:8:\"tileview\";a:5:{s:4:\"file\";s:69:\"SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27673;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:70:\"SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-1-444x1536.jpg\";s:5:\"width\";i:444;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107013;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:70:\"SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-1-592x2048.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163848;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:71:\"SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-1-1200x4151.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:4151;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:493500;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:9:\"Copyright\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:61:\"SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-1.jpg\";}'),(51402,3383,'_wp_attached_file','2024/02/NV-BlancdeNoirs-scaled.jpg'),(51403,3383,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:740;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2024/02/NV-BlancdeNoirs-scaled.jpg\";s:8:\"filesize\";i:231346;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"NV-BlancdeNoirs-87x300.jpg\";s:5:\"width\";i:87;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17503;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"NV-BlancdeNoirs-296x1024.jpg\";s:5:\"width\";i:296;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60403;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"NV-BlancdeNoirs-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15188;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"NV-BlancdeNoirs-768x2657.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2657;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:245373;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:27:\"NV-BlancdeNoirs-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23374;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:27:\"NV-BlancdeNoirs-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38589;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:27:\"NV-BlancdeNoirs-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24040;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:27:\"NV-BlancdeNoirs-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20425;}s:8:\"tileview\";a:5:{s:4:\"file\";s:27:\"NV-BlancdeNoirs-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27673;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"NV-BlancdeNoirs-444x1536.jpg\";s:5:\"width\";i:444;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107013;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:28:\"NV-BlancdeNoirs-592x2048.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163848;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:29:\"NV-BlancdeNoirs-1200x4151.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:4151;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:493500;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:9:\"Copyright\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"NV-BlancdeNoirs.jpg\";}'),(51404,3384,'_wp_attached_file','2024/02/NV-BlancdeNoirs-1-scaled.jpg'),(51405,3384,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:740;s:6:\"height\";i:2560;s:4:\"file\";s:36:\"2024/02/NV-BlancdeNoirs-1-scaled.jpg\";s:8:\"filesize\";i:231346;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"NV-BlancdeNoirs-1-87x300.jpg\";s:5:\"width\";i:87;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17503;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"NV-BlancdeNoirs-1-296x1024.jpg\";s:5:\"width\";i:296;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60403;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"NV-BlancdeNoirs-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15188;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"NV-BlancdeNoirs-1-768x2657.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2657;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:245373;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:29:\"NV-BlancdeNoirs-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23374;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:29:\"NV-BlancdeNoirs-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38589;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:29:\"NV-BlancdeNoirs-1-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24040;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:29:\"NV-BlancdeNoirs-1-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20425;}s:8:\"tileview\";a:5:{s:4:\"file\";s:29:\"NV-BlancdeNoirs-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27673;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"NV-BlancdeNoirs-1-444x1536.jpg\";s:5:\"width\";i:444;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107013;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:30:\"NV-BlancdeNoirs-1-592x2048.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163848;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:31:\"NV-BlancdeNoirs-1-1200x4151.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:4151;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:493500;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:9:\"Copyright\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:21:\"NV-BlancdeNoirs-1.jpg\";}'),(51406,3385,'_wp_attached_file','2024/02/NV-Blanc-de-Noir-final-3.pdf'),(51407,3385,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:32:\"NV-Blanc-de-Noir-final-3-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:199582;}s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"NV-Blanc-de-Noir-final-3-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15076;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"NV-Blanc-de-Noir-final-3-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106165;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"NV-Blanc-de-Noir-final-3-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6845;}}s:8:\"filesize\";i:337201;}'),(51408,3386,'_wp_attached_file','2024/02/2021-StagsLeapCab-techsheet.pdf'),(51409,3386,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:35:\"2021-StagsLeapCab-techsheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:200273;}s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"2021-StagsLeapCab-techsheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15224;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"2021-StagsLeapCab-techsheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110591;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"2021-StagsLeapCab-techsheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6919;}}s:8:\"filesize\";i:242376;}'),(51410,3387,'_wp_attached_file','2024/02/SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2021-scaled.jpg'),(51411,3387,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:704;s:6:\"height\";i:2560;s:4:\"file\";s:81:\"2024/02/SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2021-scaled.jpg\";s:8:\"filesize\";i:201459;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:73:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2021-83x300.jpg\";s:5:\"width\";i:83;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17634;}s:5:\"large\";a:5:{s:4:\"file\";s:75:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2021-282x1024.jpg\";s:5:\"width\";i:282;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56347;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:74:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2021-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15924;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:75:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2021-768x2792.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2792;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:228957;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:74:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2021-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25816;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:74:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2021-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44100;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:74:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2021-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33900;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:74:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2021-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28600;}s:8:\"tileview\";a:5:{s:4:\"file\";s:74:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2021-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30846;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:75:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2021-422x1536.jpg\";s:5:\"width\";i:422;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96489;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:75:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2021-563x2048.jpg\";s:5:\"width\";i:563;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145973;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:76:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2021-1200x4363.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:4363;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:451828;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:9:\"Copyright\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:66:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2021.jpg\";}'),(51412,508,'_yoast_wpseo_focuskw','Meadowcroft wine information - for the trade and media'),(51413,508,'_yoast_wpseo_linkdex','56'),(51414,3388,'_wp_attached_file','2024/02/TechSheet-2019-Cab-StagsLeap-Final-3.pdf'),(51415,3388,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:44:\"TechSheet-2019-Cab-StagsLeap-Final-3-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185307;}s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"TechSheet-2019-Cab-StagsLeap-Final-3-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14504;}s:5:\"large\";a:5:{s:4:\"file\";s:53:\"TechSheet-2019-Cab-StagsLeap-Final-3-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100263;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"TechSheet-2019-Cab-StagsLeap-Final-3-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6725;}}s:8:\"filesize\";i:194784;}'),(51416,3389,'_wp_attached_file','2024/02/SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2020-2-scaled.jpg'),(51417,3389,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:722;s:6:\"height\";i:2560;s:4:\"file\";s:83:\"2024/02/SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2020-2-scaled.jpg\";s:8:\"filesize\";i:193978;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:75:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2020-2-85x300.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17321;}s:5:\"large\";a:5:{s:4:\"file\";s:77:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2020-2-289x1024.jpg\";s:5:\"width\";i:289;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55126;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:76:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2020-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15817;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:77:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2020-2-768x2724.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2724;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:210196;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:76:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2020-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25444;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:76:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2020-2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42339;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:76:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2020-2-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33119;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:76:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2020-2-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27663;}s:8:\"tileview\";a:5:{s:4:\"file\";s:76:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2020-2-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30315;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:77:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2020-2-433x1536.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93725;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:77:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2020-2-577x2048.jpg\";s:5:\"width\";i:577;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140147;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:78:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2020-2-1200x4256.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:4256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:406496;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:9:\"Copyright\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:68:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2020-2.jpg\";}'),(51418,3390,'_wp_attached_file','2024/02/SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2019-scaled.jpg'),(51419,3390,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:722;s:6:\"height\";i:2560;s:4:\"file\";s:81:\"2024/02/SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2019-scaled.jpg\";s:8:\"filesize\";i:193244;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:73:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2019-85x300.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17302;}s:5:\"large\";a:5:{s:4:\"file\";s:75:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2019-289x1024.jpg\";s:5:\"width\";i:289;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54873;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:74:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2019-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15809;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:75:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2019-768x2724.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2724;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:209338;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:74:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2019-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25495;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:74:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2019-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42395;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:74:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2019-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33100;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:74:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2019-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27525;}s:8:\"tileview\";a:5:{s:4:\"file\";s:74:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2019-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30307;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:75:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2019-433x1536.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93139;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:75:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2019-577x2048.jpg\";s:5:\"width\";i:577;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139504;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:76:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2019-1200x4256.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:4256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:407105;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:9:\"Copyright\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:66:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2019.jpg\";}'),(51420,3391,'_wp_attached_file','2024/02/TechSheet-2019-Cab-StagsLeap-Final-3-1.pdf'),(51421,3391,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:46:\"TechSheet-2019-Cab-StagsLeap-Final-3-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185307;}s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"TechSheet-2019-Cab-StagsLeap-Final-3-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14504;}s:5:\"large\";a:5:{s:4:\"file\";s:55:\"TechSheet-2019-Cab-StagsLeap-Final-3-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100263;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"TechSheet-2019-Cab-StagsLeap-Final-3-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6725;}}s:8:\"filesize\";i:194784;}'),(51422,3392,'_wp_attached_file','2024/02/TechSheet-2020-Cab-StagsLeap-Final-4.pdf'),(51423,3392,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:44:\"TechSheet-2020-Cab-StagsLeap-Final-4-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:179909;}s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"TechSheet-2020-Cab-StagsLeap-Final-4-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14377;}s:5:\"large\";a:5:{s:4:\"file\";s:53:\"TechSheet-2020-Cab-StagsLeap-Final-4-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97075;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"TechSheet-2020-Cab-StagsLeap-Final-4-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6679;}}s:8:\"filesize\";i:194263;}'),(51425,3394,'_wp_attached_file','2024/02/2022-Napa-Carneros-Chardonnay-final.pdf'),(51426,3394,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:43:\"2022-Napa-Carneros-Chardonnay-final-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162510;}s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"2022-Napa-Carneros-Chardonnay-final-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13957;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"2022-Napa-Carneros-Chardonnay-final-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89420;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"2022-Napa-Carneros-Chardonnay-final-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6636;}}s:8:\"filesize\";i:381331;}'),(51427,3395,'_wp_attached_file','2024/02/2022-RiverTrace-Rose.pdf'),(51428,3395,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:28:\"2022-RiverTrace-Rose-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:183390;}s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"2022-RiverTrace-Rose-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14254;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"2022-RiverTrace-Rose-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99564;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"2022-RiverTrace-Rose-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6619;}}s:8:\"filesize\";i:230208;}'),(51429,3396,'_wp_attached_file','2024/02/2021-CabernetFranc-Rivino.pdf'),(51430,3396,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:33:\"2021-CabernetFranc-Rivino-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194473;}s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"2021-CabernetFranc-Rivino-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14386;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"2021-CabernetFranc-Rivino-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103611;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"2021-CabernetFranc-Rivino-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6534;}}s:8:\"filesize\";i:208411;}'),(51431,3397,'_wp_attached_file','2024/02/2021_CabFranc_RivinoVineyard-1.png'),(51432,3397,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1575;s:6:\"height\";i:5504;s:4:\"file\";s:42:\"2024/02/2021_CabFranc_RivinoVineyard-1.png\";s:8:\"filesize\";i:7862277;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"2021_CabFranc_RivinoVineyard-1-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21073;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"2021_CabFranc_RivinoVineyard-1-293x1024.png\";s:5:\"width\";i:293;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:207021;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"2021_CabFranc_RivinoVineyard-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24659;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"2021_CabFranc_RivinoVineyard-1-768x2684.png\";s:5:\"width\";i:768;s:6:\"height\";i:2684;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1434854;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:42:\"2021_CabFranc_RivinoVineyard-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:98530;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:42:\"2021_CabFranc_RivinoVineyard-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:279760;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:42:\"2021_CabFranc_RivinoVineyard-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:189117;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:42:\"2021_CabFranc_RivinoVineyard-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:124551;}s:8:\"tileview\";a:5:{s:4:\"file\";s:42:\"2021_CabFranc_RivinoVineyard-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:123161;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"2021_CabFranc_RivinoVineyard-1-440x1536.png\";s:5:\"width\";i:440;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:468649;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:43:\"2021_CabFranc_RivinoVineyard-1-586x2048.png\";s:5:\"width\";i:586;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:834636;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:44:\"2021_CabFranc_RivinoVineyard-1-1200x4194.png\";s:5:\"width\";i:1200;s:6:\"height\";i:4194;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3397585;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51434,3399,'inline_featured_image','0'),(51435,3399,'_edit_lock','1712255374:2'),(51436,3399,'_edit_last','2'),(51437,3399,'allowed_customer_tag_titles','a:0:{}'),(51438,3399,'allowed_customer_club_titles','a:0:{}'),(51439,3399,'logo','1053'),(51440,3399,'_logo','field_59ee2c4e8eca6'),(51441,3399,'use_logo_for_landing_page_image','1'),(51442,3399,'_use_logo_for_landing_page_image','field_59ee2c6c8eca7'),(51443,3399,'tagline',''),(51444,3399,'_tagline','field_59ee356609a79'),(51445,3399,'website_url',''),(51446,3399,'_website_url','field_59ee2ce08ecae'),(51447,3399,'brand_assets','<h1 style=\"text-align: center;\">Wine Assets</h1>'),(51448,3399,'_brand_assets','field_59ee2ced8ecaf'),(51449,3399,'_yoast_wpseo_primary_category',''),(51450,3399,'_yoast_wpseo_estimated-reading-time-minutes','1'),(51451,3399,'_yoast_wpseo_wordproof_timestamp',''),(51452,3400,'inline_featured_image','0'),(51453,3400,'_edit_lock','1715814880:3'),(51454,3400,'_edit_last','3'),(51455,3400,'allowed_customer_tag_titles','a:0:{}'),(51456,3400,'allowed_customer_club_titles','a:0:{}'),(51457,3400,'linked_brand','3399'),(51458,3400,'_linked_brand','field_59ee2d92496e9'),(51459,3400,'main_image','3403'),(51460,3400,'_main_image','field_59ee319d02900'),(51461,3400,'assets_0_text','Bottle Shot'),(51462,3400,'_assets_0_text','field_59ee31cc02902'),(51463,3400,'assets_0_file_or_url','url'),(51464,3400,'_assets_0_file_or_url','field_59ee31da02903'),(51465,3400,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-2019_Cabernet_Oakville_Bottleshot.png'),(51466,3400,'_assets_0_url','field_59ee320b02906'),(51467,3400,'assets_1_text','Tech Sheet'),(51468,3400,'_assets_1_text','field_59ee31cc02902'),(51469,3400,'assets_1_file_or_url','url'),(51470,3400,'_assets_1_file_or_url','field_59ee31da02903'),(51471,3400,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-2019_Cabernet_Oakville_Techsheet.pdf'),(51472,3400,'_assets_1_url','field_59ee320b02906'),(51473,3400,'assets','2'),(51474,3400,'_assets','field_59ee31bc02901'),(51475,3400,'varietal','Cabernet Sauvignon'),(51476,3400,'_varietal','field_59ee660ece2e7'),(51477,3400,'sub_brand',''),(51478,3400,'_sub_brand','field_59ee6623ce2e8'),(51479,3400,'vintage','2019'),(51480,3400,'_vintage','field_59ee6eba9a39a'),(51481,3400,'_yoast_wpseo_estimated-reading-time-minutes','1'),(51482,3400,'_yoast_wpseo_wordproof_timestamp',''),(51483,3401,'inline_featured_image','0'),(51484,3401,'_edit_lock','1715814716:3'),(51485,3401,'_edit_last','3'),(51486,1784,'_wp_attachment_image_alt','Spring Mountain District Cabernet Sauvignon'),(51487,3401,'allowed_customer_tag_titles','a:0:{}'),(51488,3401,'allowed_customer_club_titles','a:0:{}'),(51489,3401,'linked_brand','3399'),(51490,3401,'_linked_brand','field_59ee2d92496e9'),(51491,3401,'main_image','1784'),(51492,3401,'_main_image','field_59ee319d02900'),(51493,3401,'assets_0_text','Bottle Shot'),(51494,3401,'_assets_0_text','field_59ee31cc02902'),(51495,3401,'assets_0_file_or_url','url'),(51496,3401,'_assets_0_file_or_url','field_59ee31da02903'),(51497,3401,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-2018_Cabernet_SpringMT_BottleShot.png'),(51498,3401,'_assets_0_url','field_59ee320b02906'),(51499,3401,'assets_1_text','Tech Sheet'),(51500,3401,'_assets_1_text','field_59ee31cc02902'),(51501,3401,'assets_1_file_or_url','url'),(51502,3401,'_assets_1_file_or_url','field_59ee31da02903'),(51503,3401,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018CabernetSauvignonSpringMT_TECHSheet.pdf'),(51504,3401,'_assets_1_url','field_59ee320b02906'),(51505,3401,'assets','2'),(51506,3401,'_assets','field_59ee31bc02901'),(51507,3401,'varietal','Cabernet Sauvignon'),(51508,3401,'_varietal','field_59ee660ece2e7'),(51509,3401,'sub_brand',''),(51510,3401,'_sub_brand','field_59ee6623ce2e8'),(51511,3401,'vintage','2018'),(51512,3401,'_vintage','field_59ee6eba9a39a'),(51513,3401,'_yoast_wpseo_estimated-reading-time-minutes','1'),(51514,3401,'_yoast_wpseo_wordproof_timestamp',''),(51516,3300,'_edit_lock','1707756057:2'),(51517,3402,'web_id','93a128b5-d04f-40f6-a2fd-30f0fe3786cf'),(51518,3402,'slug','gold-medal-6-pack-sf-chronicle-competition'),(51519,3402,'title','Gold Medal 6 Pack SF Chronicle Competition'),(51520,3402,'type','Bundle'),(51521,3402,'image','https://images.commerce7.com/meadowcroft-wines/images/original/chronicle-6pk-1707768229323.jpg'),(51522,3402,'teaser',NULL),(51523,3402,'content','<p>Meadowcroft Wines has just received some incredible awards at the San Francisco Chronicle Wine Competition. The Gold Medal Six Pack includes one bottle each of the following wines:&nbsp;</p>\n<p>Check out these outstanding accolades:</p>\n<ul>\n<li style=\"font-style: italic;\"><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 600; font-style: normal;\">Best of Class: 2022 Roussanne</span></li>\n<li style=\"line-height: 175%; font-style: italic;\"><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 600; font-style: normal;\">Double Gold: 2020 Cabernet Sauvignon, Stag&rsquo;s Leap</span></li>\n<li style=\"line-height: 175%; font-style: italic;\"><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 600; font-style: normal;\">Double Gold: Blanc de Noirs Sparkling Ros&eacute;&nbsp;</span></li>\n<li style=\"line-height: 175%; font-style: italic;\"><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 600; font-style: normal;\">Gold: 2022 Chardonnay, Napa Valley, Carneros</span></li>\n<li style=\"line-height: 175%; font-style: italic;\"><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 600; font-style: normal;\">Gold: 2022 Pinot Noir, Russian River Valley</span></li>\n<li style=\"line-height: 175%; font-style: italic;\"><span style=\"font-family: \'Crimson Text\', TimesNewRoman, \'Times New Roman\', Times, Baskerville, Georgia, serif; font-weight: 600; font-style: normal;\">Gold: 2021 Sangiovese, Speedy Creek Vineyard</span></li>\n</ul>'),(51524,3402,'subtitle',NULL),(51525,3402,'price','33900'),(51526,3402,'web_status','Retired'),(51527,3402,'admin_status','Not Available'),(51528,3402,'collections','a:0:{}'),(51529,3402,'primary_collection',''),(51530,3403,'_wp_attached_file','2024/02/Meadowcroft-2019_Cabernet_Oakville_Bottleshot.png'),(51531,3403,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:170;s:6:\"height\";i:300;s:4:\"file\";s:57:\"2024/02/Meadowcroft-2019_Cabernet_Oakville_Bottleshot.png\";s:8:\"filesize\";i:39106;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-2019_Cabernet_Oakville_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14515;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-2019_Cabernet_Oakville_Bottleshot-170x260.png\";s:5:\"width\";i:170;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29563;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51532,3403,'_wp_attachment_image_alt','Oakville Cabernet'),(51570,1574,'content_block_0_hide_this_content_block','1'),(51571,1574,'_content_block_0_hide_this_content_block','field_643884e4df74c7textb'),(51572,1574,'content_block_1_hide_this_content_block','1'),(51573,1574,'_content_block_1_hide_this_content_block','field_643884e4df74c7prodcol'),(51574,1574,'content_block_1_custom_css_class',''),(51575,1574,'_content_block_1_custom_css_class','field_5bc11ca9a0d50-cc'),(51588,1574,'content_block_2_layout_title',''),(51589,1574,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(51590,1574,'content_block_2_hide_this_content_block','1'),(51591,1574,'_content_block_2_hide_this_content_block','field_643884e4df74c7textb'),(51592,1574,'content_block_2_custom_css_class','text-block-heading'),(51593,1574,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(51594,1574,'content_block_2_text_block_columns','one'),(51595,1574,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(51596,1574,'content_block_2_narrow_text_block_content','0'),(51597,1574,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(51598,1574,'content_block_2_reverse_colors','0'),(51599,1574,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(51600,1574,'content_block_2_enable_background_image','0'),(51601,1574,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(51602,1574,'content_block_2_text_block_content_col_one','<h2>Frequently Asked Questions</h2>'),(51603,1574,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(51604,1574,'content_block_3_layout_title',''),(51605,1574,'_content_block_3_layout_title','field_5bc11ca9a0d50-faq'),(51606,1574,'content_block_3_hide_this_content_block','1'),(51607,1574,'_content_block_3_hide_this_content_block','field_643884e4df74c7faqs'),(51608,1574,'content_block_3_custom_css_class','faq-content'),(51609,1574,'_content_block_3_custom_css_class','field_5bbe30b1aquad-faq'),(51610,1574,'content_block_3_faqs_0_question','What is the difference between sparkling wine and Champagne?'),(51611,1574,'_content_block_3_faqs_0_question','field_5bc61bda23bcc'),(51612,1574,'content_block_3_faqs_0_answer','The main difference lies in their geographical origins. Champagne comes from the Champagne region in France and is made with specific grapes and under strict regulations. All Champagnes are sparkling wines, but not all sparkling wines are Champagnes. Sparkling wine is a broader term that refers to any effervescent wine produced worldwide using various methods and grapes.'),(51613,1574,'_content_block_3_faqs_0_answer','field_5bc61ac123bcb'),(51614,1574,'content_block_3_faqs','3'),(51615,1574,'_content_block_3_faqs','field_5bc61a6523bcafaq'),(51616,1574,'content_block_3_faqs_1_question','How is sparkling wine made?'),(51617,1574,'_content_block_3_faqs_1_question','field_5bc61bda23bcc'),(51618,1574,'content_block_3_faqs_1_answer','There are several methods, but the traditional method is used for many high-quality sparkling wines. This method involves a secondary fermentation in the bottle, which creates the bubbles we love. First, wine is produced as usual. Then, additional yeast and sugar are added to the base wine, and it undergoes fermentation again in a sealed bottle, creating carbon dioxide and fizz.\r\n'),(51619,1574,'_content_block_3_faqs_1_answer','field_5bc61ac123bcb'),(51620,1574,'content_block_3_faqs_2_question','Are sparkling wines high in sugar?'),(51621,1574,'_content_block_3_faqs_2_question','field_5bc61bda23bcc'),(51622,1574,'content_block_3_faqs_2_answer','The sweetness of sparkling wine can vary widely, depending on the production method and the winemaker\'s preference. Sparkling wines are commonly classified by sweetness levels, including brut, extra dry, sec, and demi-sec. Brut is the driest, with very little residual sugar, while demi-sec contains more sugar and tastes sweeter. It\'s essential to check the label for an indication of sweetness to choose a sparkling wine that suits your taste.\r\n'),(51623,1574,'_content_block_3_faqs_2_answer','field_5bc61ac123bcb'),(51624,506,'content_block_2_layout_title',''),(51625,506,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(51626,506,'content_block_2_hide_this_content_block','1'),(51627,506,'_content_block_2_hide_this_content_block','field_643884e4df74c7textb'),(51628,506,'content_block_2_custom_css_class','text-block-heading'),(51629,506,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(51630,506,'content_block_2_text_block_columns','one'),(51631,506,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(51632,506,'content_block_2_narrow_text_block_content','0'),(51633,506,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(51634,506,'content_block_2_reverse_colors','0'),(51635,506,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(51636,506,'content_block_2_enable_background_image','0'),(51637,506,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(51638,506,'content_block_2_text_block_content_col_one','<h2>Frequently Asked Questions</h2>'),(51639,506,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(51640,506,'content_block_3_layout_title',''),(51641,506,'_content_block_3_layout_title','field_5bc11ca9a0d50-faq'),(51642,506,'content_block_3_hide_this_content_block','1'),(51643,506,'_content_block_3_hide_this_content_block','field_643884e4df74c7faqs'),(51644,506,'content_block_3_custom_css_class','faq-content'),(51645,506,'_content_block_3_custom_css_class','field_5bbe30b1aquad-faq'),(51646,506,'content_block_3_faqs_0_question','Which white wine varietals are considered among the best?'),(51647,506,'_content_block_3_faqs_0_question','field_5bc61bda23bcc'),(51648,506,'content_block_3_faqs_0_answer','Chardonnay, Riesling, Sauvignon Blanc, and Pinot Grigio often top the lists of popular white wine varietals. However, this is quite subjective. White Bordeaux and Viognier are also highly regarded among many wine connoisseurs.'),(51649,506,'_content_block_3_faqs_0_answer','field_5bc61ac123bcb'),(51650,506,'content_block_3_faqs_1_question','Which type of white wine is the smoothest?'),(51651,506,'_content_block_3_faqs_1_question','field_5bc61bda23bcc'),(51652,506,'content_block_3_faqs_1_answer','While smoothness is a characteristic that depends on individual preference, many people find Chardonnay to be the smoothest white wine. Chardonnays are often described as rich and velvety on the palate with a relatively mild acidity that can contribute to a smoother drinking experience.'),(51653,506,'_content_block_3_faqs_1_answer','field_5bc61ac123bcb'),(51654,506,'content_block_3_faqs_2_question','What are the flavor differences between Pinot Grigio and Sauvignon Blanc?'),(51655,506,'_content_block_3_faqs_2_question','field_5bc61bda23bcc'),(51656,506,'content_block_3_faqs_2_answer','Pinot Grigio is generally lighter and crisper with a more neutral flavor profile, featuring hints of citrus and pear. Sauvignon Blanc tends to be zesty, with prominent notes of green apple, grass, and sometimes tropical fruits. The acidity in Sauvignon Blanc is also typically higher, giving it a more tart taste compared to Pinot Grigio.\r\n'),(51657,506,'_content_block_3_faqs_2_answer','field_5bc61ac123bcb'),(51658,506,'content_block_3_faqs','3'),(51659,506,'_content_block_3_faqs','field_5bc61a6523bcafaq'),(51660,504,'content_block_2_layout_title',''),(51661,504,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(51662,504,'content_block_2_hide_this_content_block','1'),(51663,504,'_content_block_2_hide_this_content_block','field_643884e4df74c7textb'),(51664,504,'content_block_2_custom_css_class','text-block-heading'),(51665,504,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(51666,504,'content_block_2_text_block_columns','one'),(51667,504,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(51668,504,'content_block_2_narrow_text_block_content','0'),(51669,504,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(51670,504,'content_block_2_reverse_colors','0'),(51671,504,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(51672,504,'content_block_2_enable_background_image','0'),(51673,504,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(51674,504,'content_block_2_text_block_content_col_one','<h2>Frequently Asked Questions</h2>'),(51675,504,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(51676,504,'content_block_3_layout_title',''),(51677,504,'_content_block_3_layout_title','field_5bc11ca9a0d50-faq'),(51678,504,'content_block_3_hide_this_content_block','1'),(51679,504,'_content_block_3_hide_this_content_block','field_643884e4df74c7faqs'),(51680,504,'content_block_3_custom_css_class','faq-content'),(51681,504,'_content_block_3_custom_css_class','field_5bbe30b1aquad-faq'),(51682,504,'content_block_3_faqs_0_question','What are some of the best red wine varietals?'),(51683,504,'_content_block_3_faqs_0_question','field_5bc61bda23bcc'),(51684,504,'content_block_3_faqs_0_answer','For an accessible yet quality red choice, try Merlot, known for its smooth, easy-to-drink character. If you prefer robustness, consider Cabernet Sauvignon with its bold structure, or the earthiness of a Pinot Noir, a great option for those seeking a nuanced taste.'),(51685,504,'_content_block_3_faqs_0_answer','field_5bc61ac123bcb'),(51686,504,'content_block_3_faqs_1_question','Which red wine is the smoothest to drink?'),(51687,504,'_content_block_3_faqs_1_question','field_5bc61bda23bcc'),(51688,504,'content_block_3_faqs_1_answer','Malbec is one of the smoothest red wines, offering a rich, velvety taste with a fruit-forward profile. Another contender is Zinfandel, which often presents a smooth texture, low tannins, and a berry-flavored palate.'),(51689,504,'_content_block_3_faqs_1_answer','field_5bc61ac123bcb'),(51690,504,'content_block_3_faqs_2_question','What are some red wines that are not bitter?'),(51691,504,'_content_block_3_faqs_2_question','field_5bc61bda23bcc'),(51692,504,'content_block_3_faqs_2_answer','If bitterness in wine is a concern, go for a Beaujolais Nouveau which has a light, fruity taste with minimal bitterness. Alternatively, a Dolcetto offers a slightly sweet profile, making it an ideal choice for those averse to bitter flavors.'),(51693,504,'_content_block_3_faqs_2_answer','field_5bc61ac123bcb'),(51694,504,'content_block_3_faqs_3_question','How do you choose a good red wine?'),(51695,504,'_content_block_3_faqs_3_question','field_5bc61bda23bcc'),(51696,504,'content_block_3_faqs_3_answer','When choosing a red wine, consider your meal pairing, your budget, and your personal preference for sweetness, acidity, and complexity. Look for labels describing the wine\'s flavors, origin, and vintage. As you become more experienced, you\'ll learn which vineyards and wine types you favor.'),(51697,504,'_content_block_3_faqs_3_answer','field_5bc61ac123bcb'),(51698,504,'content_block_3_faqs','4'),(51699,504,'_content_block_3_faqs','field_5bc61a6523bcafaq'),(51700,1576,'allowed_customer_tag_titles','a:0:{}'),(51701,1576,'allowed_customer_club_titles','a:0:{}'),(51702,1576,'content_block_0_hide_this_content_block','1'),(51703,1576,'_content_block_0_hide_this_content_block','field_643884e4df74c7textb'),(51704,1576,'content_block_1_hide_this_content_block','1'),(51705,1576,'_content_block_1_hide_this_content_block','field_643884e4df74c7prodcol'),(51706,1576,'content_block_1_custom_css_class',''),(51707,1576,'_content_block_1_custom_css_class','field_5bc11ca9a0d50-cc'),(51708,1576,'content_block_2_layout_title',''),(51709,1576,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(51710,1576,'content_block_2_hide_this_content_block','1'),(51711,1576,'_content_block_2_hide_this_content_block','field_643884e4df74c7textb'),(51712,1576,'content_block_2_custom_css_class','text-block-heading'),(51713,1576,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(51714,1576,'content_block_2_text_block_columns','one');
INSERT INTO `wp_postmeta` VALUES (51715,1576,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(51716,1576,'content_block_2_narrow_text_block_content','0'),(51717,1576,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(51718,1576,'content_block_2_reverse_colors','0'),(51719,1576,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(51720,1576,'content_block_2_enable_background_image','0'),(51721,1576,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(51722,1576,'content_block_2_text_block_content_col_one','<h2>Frequently Asked Questions</h2>'),(51723,1576,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(51724,1576,'content_block_3_layout_title',''),(51725,1576,'_content_block_3_layout_title','field_5bc11ca9a0d50-faq'),(51726,1576,'content_block_3_hide_this_content_block','1'),(51727,1576,'_content_block_3_hide_this_content_block','field_643884e4df74c7faqs'),(51728,1576,'content_block_3_custom_css_class','faq-content'),(51729,1576,'_content_block_3_custom_css_class','field_5bbe30b1aquad-faq'),(51730,1576,'content_block_3_faqs_0_question','What is the flavor profile of rose wines?'),(51731,1576,'_content_block_3_faqs_0_question','field_5bc61bda23bcc'),(51732,1576,'content_block_3_faqs_0_answer','Rose wines can vary widely in flavor. They can be dry, with a tangy or crisp strawberry flavor, as well as more subtle notes of watermelon, hibiscus, and citrus. Sweeter rosés often have a more pronounced taste of red fruits like cherry and raspberry. It’s important to note that sweetness levels can differ from one rose to another based on the region and the winemaking process.'),(51733,1576,'_content_block_3_faqs_0_answer','field_5bc61ac123bcb'),(51734,1576,'content_block_3_faqs_1_question','Are rose wines sweet or dry?'),(51735,1576,'_content_block_3_faqs_1_question','field_5bc61bda23bcc'),(51736,1576,'content_block_3_faqs_1_answer','Rose wines can be either sweet or dry, and the spectrum in between! The style of a rose depends on the type of grape, where it’s grown, and how it’s made. For a truly dry experience, look for \"Brut\" or \"Sec\" on the label. If you prefer a touch of sweetness, options include White Zinfandel or Rosé d’Anjou.'),(51737,1576,'_content_block_3_faqs_1_answer','field_5bc61ac123bcb'),(51738,1576,'content_block_3_faqs_2_question','What are some of the most popular rose wine varietals?'),(51739,1576,'_content_block_3_faqs_2_question','field_5bc61bda23bcc'),(51740,1576,'content_block_3_faqs_2_answer','<ul>\r\n<li><b>Grenache/Garnacha Rosé:</b> Originating in Spain, it offers a fresh strawberry and watermelon aroma.</li>\r\n<li><b>Pinot Noir Rosé:</b> Known for its red fruit aromas and sometimes a more substantial body than traditional rose wines.\r\n</li>\r\n<li><b>Syrah/Shiraz Rosé:</b> Offers a darker color and can have the attributes and body similar to red wine.\r\n</li>\r\n<li><b>Mourvèdre/Monastrell Rosé:</b> Often considered a more complex rose, with spicier notes than other varietals.\r\n</li>\r\n</ul>'),(51741,1576,'_content_block_3_faqs_2_answer','field_5bc61ac123bcb'),(51742,1576,'content_block_3_faqs_3_question','When should I drink a rose wine?'),(51743,1576,'_content_block_3_faqs_3_question','field_5bc61bda23bcc'),(51744,1576,'content_block_3_faqs_3_answer','Rose wine is known for being versatile and is great for a variety of occasions. It\'s perfect for a picnic or a summer barbecue, as well as an excellent pairing with light meals such as salads and seafood. It can also serve as a refreshing aperitif or sip by the pool.'),(51745,1576,'_content_block_3_faqs_3_answer','field_5bc61ac123bcb'),(51746,1576,'content_block_3_faqs_4_question','What\'s special about rose wine?'),(51747,1576,'_content_block_3_faqs_4_question','field_5bc61bda23bcc'),(51748,1576,'content_block_3_faqs_4_answer','Rose wine is special because it’s the result of a unique process that’s a mix of red and white wine making. The term \"rose\" comes from the French word for pink, and these wines can range from pale salmon to full-on ruby in color. They typically have the refreshing qualities of a white wine with some of the fruit flavors and a body akin to a light red, making them an ideal choice for those who are looking for a wine that’s more complex than white, but not as heavy as red.'),(51749,1576,'_content_block_3_faqs_4_answer','field_5bc61ac123bcb'),(51750,1576,'content_block_3_faqs','5'),(51751,1576,'_content_block_3_faqs','field_5bc61a6523bcafaq'),(51760,3412,'_wp_attached_file','2024/02/NV-Blanc-de-Blanc-Tech-Sheet-Revised.pdf'),(51761,3412,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:44:\"NV-Blanc-de-Blanc-Tech-Sheet-Revised-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:197119;}s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"NV-Blanc-de-Blanc-Tech-Sheet-Revised-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15245;}s:5:\"large\";a:5:{s:4:\"file\";s:53:\"NV-Blanc-de-Blanc-Tech-Sheet-Revised-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106018;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"NV-Blanc-de-Blanc-Tech-Sheet-Revised-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6938;}}s:8:\"filesize\";i:272952;}'),(51762,3413,'web_id','bebba989-c825-4e97-9ce0-7193b6fd9aca'),(51763,3413,'slug','fresh-pasta-making-demo-lunch'),(51764,3413,'title','Fresh Pasta Making Demo & Lunch'),(51765,3413,'type','Event Ticket'),(51766,3413,'image','https://images.commerce7.com/meadowcroft-wines/images/original/joshf-web-1708727064629.jpg'),(51767,3413,'teaser','Learn to make fresh homemade pasta with Chef Josh Felciano from Bayview Pasta.'),(51768,3413,'content','<p class=\"text-body font-regular text-gray-800 leading-[24px] pt-[9px] pb-[2px]\" dir=\"ltr\">Step into the world of pasta artistry with Meadowcroft Wines for a cozy culinary event that\'s sure to amp up your pasta game. We\'re thrilled to have Chef Josh Felciano, the man behind Bayview Pasta, guide a pasta making demo you\'ll absolutely adore. Discover the secrets to crafting perfect, from scratch pasta, then sit down to a delightful Italian style lunch featuring his hand-milled wheat pasta. And, we\'ll uncork our new 2022 Magi and 2021 Sangiovese wines for the perfect pairings.&nbsp;</p>\n<p class=\"text-body font-regular text-gray-800 leading-[24px] pt-[9px] pb-[2px]\" dir=\"ltr\"><span style=\"font-weight: bold;\">But wait, there\'s more!</span> Every guest will leave with a box of Bayview\'s artisanal hand-milled wheat pasta, adding a touch of gourmet to your home cooking.</p>\n<p class=\"text-body font-regular text-gray-800 leading-[24px] pt-[9px] pb-[2px]\" dir=\"ltr\"><strong><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/02/Fresh-Pasta-Making-Demo.pdf\">Click here to see lunch menu</a></strong></p>\n<div><span style=\"font-weight: bold;\">WHEN:&nbsp;</span> Sunday, March 24th, 11:30am - 2:00pm</div>\n<div>&nbsp;</div>\n<div><span style=\"font-weight: bold;\">WHERE:</span>&nbsp; Meadowcroft Wines, Cornerstone Sonoma</div>\n<div>&nbsp;</div>\n<div><span style=\"font-weight: bold;\">COST:</span>&nbsp; &nbsp;$150 | Club Members $125 <em>(two tickets at this price per club membership)&nbsp;</em></div>\n<hr />\n<div><span style=\"font-style: italic;\"><span style=\"font-weight: bold;\">Limited to 12 guests.&nbsp;</span> Tickets must be purchased by March 18th, 2024.&nbsp; All attendees must be at least 21 years of age.&nbsp;</span></div>'),(51769,3413,'subtitle',NULL),(51770,3413,'price','15000'),(51771,3413,'web_status','Not Available'),(51772,3413,'admin_status','Not Available'),(51773,3413,'vendor','Meadowcroft Wines'),(51774,3413,'collections','a:1:{s:15:\"event-tickets-2\";s:13:\"Event Tickets\";}'),(51775,3413,'primary_collection','event-tickets-2, Event Tickets'),(51779,3415,'_wp_attached_file','2024/02/JoshF-web.jpg'),(51780,3415,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"file\";s:21:\"2024/02/JoshF-web.jpg\";s:8:\"filesize\";i:473717;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"JoshF-web-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21385;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"JoshF-web-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137601;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"JoshF-web-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8070;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"JoshF-web-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87259;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:21:\"JoshF-web-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21385;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:21:\"JoshF-web-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45521;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:21:\"JoshF-web-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30456;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:21:\"JoshF-web-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22507;}s:8:\"tileview\";a:5:{s:4:\"file\";s:21:\"JoshF-web-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25333;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"JoshF-web-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:268316;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:23:\"JoshF-web-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:178797;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51879,3416,'_wp_attached_file','2024/02/Fresh-Pasta-Making-Demo.pdf'),(51880,3416,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:31:\"Fresh-Pasta-Making-Demo-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63050;}s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Fresh-Pasta-Making-Demo-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8093;}s:5:\"large\";a:5:{s:4:\"file\";s:40:\"Fresh-Pasta-Making-Demo-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40088;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Fresh-Pasta-Making-Demo-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4809;}}s:8:\"filesize\";i:82499;}'),(51881,3417,'web_id','08801fe8-baa3-4e59-9c2d-cfcfee9ec259'),(51882,3417,'slug','2023-pinot-noir-anderson-valley'),(51883,3417,'title','2023 Pinot Noir, Anderson Valley'),(51884,3417,'type','Wine'),(51885,3417,'image','https://images.commerce7.com/meadowcroft-wines/images/original/23-andvalley-pinotnoir-1712013804407.png'),(51886,3417,'teaser',NULL),(51887,3417,'content','<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<div class=\"ecp-html-content tech-notes\">\n<p class=\"p2\"><strong>TASTING NOTES</strong></p>\n<p class=\"p3\">Anderson Valley is famous for its beautifully aromatic Pinot Noirs, and our 2023 vintage Pinot does not disappoint. Aromas of cherry cordial, vanilla, Amarena cherry and notes of rose petal flow from the glass. Layered complex lavors of sweet cranberry, tart cherry and wild strawberry. This wine exhibits a vibrant acidity and a silky mouthfeel. Drinking Window: 1-6 years</p>\n<p class=\"p4\"><strong>SUGGESTED FOOD PAIRING</strong></p>\n<p class=\"p3\">The concentrated richness and exceptional acidity make thiswine exceptionally food friendly. Mushroom dishes are a natural match. Other favorites include cedar plank grilled salmon, roast lamb or duck. Our cheese recommendations would include smooth triple creme cheeses or aged and salty cheeses like Gouda or sharp cheddar.</p>\n<p class=\"p5\"><strong><span class=\"s2\">APPELLATION: </span></strong>Anderson Valley</p>\n<p class=\"p5\"><strong><span class=\"s2\">VARIETAL: </span></strong>Pinot Noir</p>\n<p class=\"p5\"><span class=\"s2\"><strong>HARVESTED:</strong>&nbsp; </span>September 2023</p>\n<p class=\"p5\"><strong><span class=\"s2\">BOTTLED: </span></strong>March 2024</p>\n<p class=\"p2\"><strong>PRODUCTION:</strong> <span class=\"s3\">687 cases </span></p>\n<p class=\"p2\"><strong>ALCOHOL:</strong> <span class=\"s3\">13.5 </span></p>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"review_notes\">\n<div class=\"ecp-html-content\">&nbsp;</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><strong><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/04/2023-PinotNoir-AndValley-FINAL.pdf\">PDF Tech Sheet</a></strong></div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\">&nbsp;</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><strong>ACCOLADES</strong></div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><strong>Gold Medal - </strong><span class=\"s3\">Critics Challenge Intl Wine &amp; Spirits Competition</span></div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><span class=\"s3\"><strong>94pts </strong>- Wine Enthusiast</span></div>'),(51888,3417,'subtitle',NULL),(51889,3417,'price','4200'),(51890,3417,'web_status','Available'),(51891,3417,'admin_status','Available'),(51892,3417,'varietal','Pinot Noir'),(51893,3417,'appellation','Anderson Valley'),(51894,3417,'vintage','2023'),(51895,3417,'collections','a:0:{}'),(51896,3417,'primary_collection',''),(51897,3417,'_wp_old_slug','2022-pinot-noir-anderson-valley-duplicate'),(51898,3418,'web_id','46eff6aa-40f9-40a5-a392-bfcea072eff0'),(51899,3418,'slug','2023-pinot-noir-russian-river-valley'),(51900,3418,'title','2023 Pinot Noir, Russian River Valley'),(51901,3418,'type','Wine'),(51902,3418,'image','https://images.commerce7.com/meadowcroft-wines/images/original/23-rr-pinotnoir-1712013208313.png'),(51903,3418,'teaser',NULL),(51904,3418,'content','<p class=\"p1\">&nbsp;</p>\n<p class=\"p2\"><strong>TASTING NOTES</strong></p>\n<p class=\"p3\">Densely concentrated, with inviting aromatics of cranberry, pomegranate, black cherry, and and subtle herbal notes along hints of citrus. The mouthfeel is vibrant from the notable acidity. Layered flavors of cherry cola, notes of black licorice, and ripe fresh cherries. This sumptuous wine is a delightful expression of cool-climate Pinot Noir. Drinking Window: 1-7 years</p>\n<p class=\"p4\"><strong>SUGGESTED FOOD PAIRING</strong></p>\n<p class=\"p5\">This bright and balanced wine boasts both bright acidity and deep vibrant fruit character which makes it an easy match for wood-fired pizza or dishes that feature mushrooms. Truffled risotto with aged pecorino would pair beautifully with this wine.</p>\n<p class=\"p5\">&nbsp;</p>\n<p class=\"p5\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/04/2023-PinotNoir-RussianRiver-FINAL.pdf\" target=\"_blank\" rel=\"noopener\"><strong>PDF Tech Sheet</strong></a></p>\n<p class=\"p5\">&nbsp;</p>\n<p class=\"p5\"><strong>ACCOLADES</strong></p>\n<p class=\"p5\"><strong>91 pts</strong> - Wine Enthusiast</p>\n<p class=\"p1\">&nbsp;</p>\n<p class=\"p2\"><strong><span class=\"s2\">APPELLATION: </span></strong>Russian River Valley</p>\n<p class=\"p2\"><strong><span class=\"s2\">VARIETAL: </span></strong>Pinot Noir</p>\n<p class=\"p2\"><strong><span class=\"s2\">HARVESTED: </span></strong>September 2023</p>\n<p class=\"p2\"><strong><span class=\"s2\">BOTTLED: </span></strong>March 2024</p>\n<p class=\"p3\"><strong>PRODUCTION:</strong> <span class=\"s3\">756 cases </span></p>\n<p class=\"p4\"><strong>ALCOHOL:</strong> <span class=\"s3\">13.5 </span></p>'),(51905,3418,'subtitle','Russian River Valley, Sonoma County'),(51906,3418,'price','4200'),(51907,3418,'web_status','Available'),(51908,3418,'admin_status','Available'),(51909,3418,'varietal','Pinot Noir'),(51910,3418,'appellation','Russian River Valley'),(51911,3418,'vintage','2023'),(51912,3418,'meta_data_review-text','<div><span style=\"font-weight: bold;\"\">AWARDS AND REVIEWS</span><br><div><div>GOLD MEDAL |&nbsp; <span style=\"\"font-style: italic;\"\">2018 Russian River Valley Pinot Noir</span><br></div><span style=\"\"font-style: italic;\"\">San Francisco Chronicle Wine Competition</span><span style=\"\"font-style: italic;\"\"><br></span></div><div><span style=\"\"font-style: italic;\"\"><br></span></div><span style=\"\"font-weight: bold;\"\"></span></div><div>James Suckling&nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2015 Russian River Valley Pinot Noir</span><br></div><div><span style=\"\"font-style: italic;\"\">Lots of ripe cherries with some jam character. &nbsp;Full body, light tannins.</span></div><div><span style=\"\"font-style: italic;\"\"><br></span></div>\"'),(51913,3418,'meta_data_feature-text','Sonoma County<br>'),(51914,3418,'meta_data_wine-notes','$33.60'),(51915,3418,'meta_data_technical-notes','Appellations: &nbsp;Russian River Valley, Sonoma County<div>Varietal: &nbsp;Pinot Noir</div><div>Harvested: &nbsp;September 2021</div><div>Bottle Date:&nbsp; April 2022<br>Production:&nbsp; 160 cases</div>'),(51916,3418,'collections','a:0:{}'),(51917,3418,'primary_collection',''),(51918,3418,'_wp_old_slug','2022-pinot-noir-russian-river-valley-duplicate'),(51919,3419,'web_id','90fa6e1a-a20c-42c8-a1ae-90e106dc9664'),(51920,3419,'slug','2023-pinot-noir-russian-river-valley-375ml'),(51921,3419,'title','2023 Pinot Noir, Russian River Valley 375ML'),(51922,3419,'type','Wine'),(51923,3419,'image',NULL),(51924,3419,'teaser',NULL),(51925,3419,'content','<p><span style=\"font-weight: bold;\">TASTING NOTE: &nbsp;</span>Aromas of boysenberry, sweet cherry and cola leap from the glass followed by subtle floral notes. The palate offers layers of ripe dark cherries, fresh raspberry and strawberry. Soft integrated tannins and balanced acidity lend to a smooth lengthy finish.</p>\n<div>&nbsp;</div>\n<div><strong>FOOD PAIRING:</strong>&nbsp;&nbsp;The concentrated richness and exceptional acidity that are indicative of a Russian River Valley Pinot Noir make this intense wine a remarkable partner with food. We recommend anything with mushrooms, cedar plank grilled salmon, or lamb and duck. Our cheese recommendations would include something aged and salty, like Gouda or aged cheddar cheese.</div>\n<div>&nbsp;</div>\n<div><strong>2022 ACCOLADES:</strong></div>\n<div>Gold Medal - San Francisco Chronicle Wine Competition</div>'),(51926,3419,'subtitle','Sonoma County'),(51927,3419,'price','2200'),(51928,3419,'web_status','Not Available'),(51929,3419,'admin_status','Available'),(51930,3419,'varietal','Pinot Noir'),(51931,3419,'appellation','Sonoma County'),(51932,3419,'vintage','2023'),(51933,3419,'meta_data_review-text','<div><span style=\"font-weight: bold;\"\">AWARDS AND REVIEWS</span><br><div><div>GOLD MEDAL |&nbsp; <span style=\"\"font-style: italic;\"\">2018 Russian River Valley Pinot Noir</span><br></div><span style=\"\"font-style: italic;\"\">San Francisco Chronicle Wine Competition</span><span style=\"\"font-style: italic;\"\"><br></span></div><div><span style=\"\"font-style: italic;\"\"><br></span></div><span style=\"\"font-weight: bold;\"\"></span></div><div>James Suckling&nbsp;| &nbsp;<span style=\"\"font-style: italic;\"\">2015 Russian River Valley Pinot Noir</span><br></div><div><span style=\"\"font-style: italic;\"\">Lots of ripe cherries with some jam character. &nbsp;Full body, light tannins.</span></div><div><span style=\"\"font-style: italic;\"\"><br></span></div>\"'),(51934,3419,'meta_data_feature-text','Sonoma County<br>'),(51935,3419,'meta_data_wine-notes','$33.60'),(51936,3419,'meta_data_technical-notes','Appellations: &nbsp;Russian River Valley, Sonoma County<div>Varietal: &nbsp;Pinot Noir</div><div>Harvested: &nbsp;September 2021</div><div>Bottle Date:&nbsp; April 2022<br>Production:&nbsp; 160 cases</div>'),(51937,3419,'collections','a:0:{}'),(51938,3419,'primary_collection',''),(51939,3419,'_wp_old_slug','2023-pinot-noir-russian-river-valley-duplicate'),(51940,3420,'web_id','2c8a4cce-205f-453a-b148-7b6ba19721ed'),(51941,3420,'slug','2022-cabernet-sauvignon-wyldvin-vineyard'),(51942,3420,'title','2022 Cabernet Sauvignon, Wyldvin Vineyard'),(51943,3420,'type','Wine'),(51944,3420,'image','https://images.commerce7.com/meadowcroft-wines/images/original/2022-wyldvin-cabsauv-1712017813355.png'),(51945,3420,'teaser',NULL),(51946,3420,'content','<p class=\"p2\"><strong>TASTING NOTES</strong></p>\n<p class=\"p3\">Fruity, juicy, and smooth - this bold and rich Cabernet opens with aromas of black raspberry, cocoa nib, cracked black pepper, and herbal notes. A velvety coating mouthfeel with nicely integrated tannins are matched with by flavors of brambly raspberry, chocolate, and blueberry. Drink now through 2030. Decant or cellar to fully reveal this wine&rsquo;s complex nature.</p>\n<p class=\"p3\">&nbsp;</p>\n<p class=\"p3\"><strong><span class=\"s2\">SUGGESTED FOOD PAIRING </span></strong></p>\n<p class=\"p3\">Traditional pairings like a burger with grilled mushrooms and melted cheese, beef stew or pot roast make a wonderful match. The hint of smoke on the palate would pair deliciously with Jamon Reserva &amp; dried fruits.</p>\n<p class=\"p1\">&nbsp;</p>\n<p class=\"p2\"><strong><span class=\"s2\">APPELLATION: </span></strong>Wyldvin Vineyard, Dry Creek Valley <span class=\"s2\">VARIETAL: </span>Cabernet Sauvignon</p>\n<p class=\"p2\"><strong><span class=\"s2\">HARVESTED: </span></strong>September 2022</p>\n<p class=\"p2\"><strong><span class=\"s2\">BOTTLED: </span></strong>March 2024</p>\n<p class=\"p3\"><strong>PRODUCTION:</strong> <span class=\"s3\">219 cases </span></p>\n<p class=\"p3\"><strong>ALCOHOL:</strong> <span class=\"s3\">14.5 </span></p>\n<p class=\"p4\"><strong>pH:</strong> <span class=\"s3\">3.60</span></p>\n<p class=\"p4\"><strong><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/04/2022-CabernetSauv-DryCreek-Wyldvin-FINAL.pdf\"><span class=\"s3\">PDF Tech Sheet</span></a></strong></p>'),(51947,3420,'subtitle','Dry Creek Valley, Sonoma County'),(51948,3420,'price','5800'),(51949,3420,'web_status','Available'),(51950,3420,'admin_status','Available'),(51951,3420,'varietal','Cabernet Sauvignon'),(51952,3420,'appellation','Dry Creek Valley'),(51953,3420,'vintage','2022'),(51954,3420,'meta_data_feature-text','Dry Creek Valley, Sonoma County'),(51955,3420,'meta_data_wine-notes','$40.00'),(51956,3420,'meta_data_technical-notes','Appellation: &nbsp;Dry Creek Valley, Sonoma County<br>Varietal:&nbsp;75% Cabernet Sauvignon 10% Mourvedre 10% Petite Sirah, 5% Malbec&nbsp;<br>Harvest Date: &nbsp;September 2020<br>Bottled Date:&nbsp; April 2022<br>Alcohol: &nbsp;14.5%<br>Production: 222 cases<div></div><div><br></div>'),(51957,3420,'collections','a:0:{}'),(51958,3420,'primary_collection',''),(51959,3420,'_wp_old_slug','2021-cabernet-sauvignon-wyldvin-vineyard-duplicate'),(51960,3421,'web_id','80bd7288-7e17-4a9b-bcf8-c1a6f3725bd6'),(51961,3421,'slug','2022-cabernet-sauvignon-napa-valley'),(51962,3421,'title','2022 Cabernet Sauvignon, Napa Valley'),(51963,3421,'type','Wine'),(51964,3421,'image','https://images.commerce7.com/meadowcroft-wines/images/original/2022-napavalley-cabsauv-1712016641439.png'),(51965,3421,'teaser',NULL),(51966,3421,'content','<p class=\"p2\">Tom Meadowcroft says that the key to a quality Cabernet Sauvignon begins in the vineyard with careful and patient farming. He calls this type of viticulture &ldquo;four wheel drive farming&rdquo; as opposed to a more lax &ldquo;two wheel drive&rdquo; approaches. The 2022 vintage saw longer fruit hang times/extra maturity and fruit development. The meticulous attention and experience is evident in this exemplary bottle of wine.</p>\n<p class=\"p2\"><strong><span class=\"s2\">TASTING NOTES </span></strong></p>\n<p class=\"p2\">This wine has a rich and compelling nose of blackberry, black cherry, vanilla, and and subtle notes of pine. This wine is structured firmly around deep flavors of brambly black fruits, blueberry and minerality. Supple, ripe tannins provide ample backbone. The finish is lengthy and layered. Decant to reveal the wine&rsquo;s full complexity.</p>\n<p class=\"p2\">&nbsp;</p>\n<p class=\"p2\"><strong><span class=\"s2\">SUGGESTED FOOD PAIRING </span></strong></p>\n<p class=\"p4\">The concentrated richness and marked acidity make this wine a remarkable partner for bold foods. We recommend hearty dishes like grilled steaks, mushroom dishes, or lamb with herbs. This wine will nicely hold up to strong cheeses such as aged gorgonzola, aged sharp cheddar or parmiagiano reggiano.</p>\n<p class=\"p4\">&nbsp;</p>\n<p class=\"p1\"><strong>ACCOLADES</strong></p>\n<p class=\"p1\"><strong>92 pts</strong> - Wine Enthusiast:&nbsp; <em>\"Brooding and generous, this wine offers aromas of dried blossoms and </em><em>herbs followed by flavors of mushroom reduction and a hint of </em><em>meatiness. Char and pencil shavings emerge from a lengthy, </em><em>full-bodied finish. &mdash;E.C.B.</em></p>\n<p class=\"p2\">&nbsp;</p>\n<p class=\"p2\"><strong><span class=\"s2\">APPELLATION: </span></strong>Napa Valley</p>\n<p class=\"p2\"><strong><span class=\"s2\">VARIETAL: </span></strong>Cabernet Sauvignon</p>\n<p class=\"p2\"><strong><span class=\"s2\">HARVESTED: </span></strong>September 2022</p>\n<p class=\"p2\"><strong><span class=\"s2\">BOTTLED: </span></strong>March 2024</p>\n<p class=\"p2\"><strong><span class=\"s2\">PRODUCTION: </span></strong>1,950 cases</p>\n<p class=\"p3\"><strong>ALCOHOL:</strong> <span class=\"s3\">14.5 </span></p>\n<p class=\"p4\"><strong>pH:</strong> <span class=\"s3\">3.66</span></p>\n<p class=\"p4\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/04/2022-CabernetSauv-NapaValley-FINAL.pdf\"><strong><span class=\"s3\">PDF Tech Sheet</span></strong></a></p>'),(51967,3421,'subtitle',NULL),(51968,3421,'price','6800'),(51969,3421,'web_status','Available'),(51970,3421,'admin_status','Available'),(51971,3421,'varietal','Cabernet Sauvignon'),(51972,3421,'appellation','Napa Valley'),(51973,3421,'vintage','2022'),(51974,3421,'meta_data_review-text','<div>90 pt |&nbsp; James Suckling&nbsp; |&nbsp; 2016 vintage</div>\n<div><span style=\"font-style: italic;\">A prototypical, modern Napa red that has the big cassis character of fully ripe cabernet sauvignon, moderate tannins that are already well integrated and nice freshness at the finish.&nbsp; Makes you want to order or cook some Osso Bucco.&nbsp; &nbsp;</span></div>\n<div>&nbsp;</div>\n<p>94 pts | &nbsp;Chris Sawyer, Certified Sommelier&nbsp; |&nbsp; 2014 vintage</p>\n<div><span>&nbsp;On the palate, the generous flavors of black raspberry, dark cherry, cassis, ripe currants, cinnamon, hickory spice and dark chocolate truffle are complemented with a harmonious mixture of smooth, silky texture, chewy tannins, firm structure, and a lingering finish. Overall, an extremely well-crafted wine that is not only approachable when young, but also worthy of cellaring for more 10-15 years.</span></div>\n<p>\"</p>'),(51975,3421,'meta_data_wine-notes','<p>$52.00</p>'),(51976,3421,'meta_data_technical-notes','<div>Appellation: &nbsp;Napa Valley<br />Varietal: &nbsp;Cabernet Sauvignon<br />Harvested:&nbsp; September 2020<br />Bottle Date:&nbsp; March 2022<br />Production: 578 cases</div>'),(51977,3421,'collections','a:0:{}'),(51978,3421,'primary_collection',''),(51979,3421,'_wp_old_slug','2021-cabernet-sauvignon-napa-valley-duplicate'),(51980,3422,'web_id','dade5a2c-a723-4b57-a3c0-1f1724d683e2'),(51981,3422,'slug','2023-pinot-noir-anderson-valley-private-label'),(51982,3422,'title','2023 Pinot Noir, Anderson Valley (Shiner)'),(51983,3422,'type','Wine'),(51984,3422,'image',NULL),(51985,3422,'teaser',NULL),(51986,3422,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">&nbsp;</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">\n<div>Appellation: Anderson Valley, Mendocino County</div>\n<div>Varietal: &nbsp;Pinot Noir</div>\n<div>Harvested: &nbsp;September 2023</div>\n<div>Bottle Date: February 2024</div>\n<div>Production: &nbsp;26 cases</div>\n<div>pH: 3.70</div>\n<div>&nbsp;</div>\n<div>\n<h3>2022 ACCOLADES</h3>\n<p><strong>96 points and Double Gold Medal </strong>- Sunset International Wine Competition</p>\n<p><strong>90 points</strong> - International Wine Report</p>\n</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"review_notes\">\n<div class=\"ecp-html-content\">&nbsp;</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\">&nbsp;</div>'),(51987,3422,'subtitle','PRIVATE LABEL'),(51988,3422,'price','0'),(51989,3422,'web_status','Not Available'),(51990,3422,'admin_status','Available'),(51991,3422,'varietal','Pinot Noir'),(51992,3422,'appellation','Anderson Valley'),(51993,3422,'vintage','2023'),(51994,3422,'collections','a:0:{}'),(51995,3422,'primary_collection',''),(51996,3422,'_wp_old_slug','2023-pinot-noir-anderson-valley-duplicate'),(52013,3424,'web_id','d1d010ea-3055-48fa-b040-4e81d564daa4'),(52014,3424,'slug','2023-rose-of-grenache-westfall-vineyard'),(52015,3424,'title','2023 Rosé of Grenache, Westfall Vineyard'),(52016,3424,'type','Wine'),(52017,3424,'image','https://images.commerce7.com/meadowcroft-wines/images/original/sonomabottle_meadowcroft_roseofgrenache_westfallvineyard_2023-1714409204632.png'),(52018,3424,'teaser',NULL),(52019,3424,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<p class=\"p2\"><strong>TASTING NOTES</strong></p>\n<p class=\"p3\">Our newest rose wine is from the family owned Westfall Vineyard located in the Sonoma Valley. A very refreshing and crisp wine, this rose fills the glass with aromas of fresh grapefruit, pineapple and notes of jasmine blossom. The mouthfeel is clean and bright from its natural acidity. Flavors of strawberries and cream, lemon marmalade, lemon curd and hints of caramel on the palate.</p>\n<p class=\"p2\"><strong>SUGGESTED FOOD PAIRING</strong></p>\n<p class=\"p4\">Ros&eacute; is an exceptionally versatile wine, pairing with anything from poultry to seafood. This wine&rsquo;s crisp and focused style is ideal for serving with charcuterie, olives, and vegetables like grilled asparagus and roasted cauliflower. Try it with cracked crab and sourdough, quiche and fruit salad, or roast turkey.</p>\n<p class=\"p1\">&nbsp;</p>\n<p class=\"p2\"><strong><span class=\"s2\">APPELLATION: </span></strong>Sonoma County</p>\n<p class=\"p3\"><strong>VARIETAL:</strong> <span class=\"s3\">Grenache </span></p>\n<p class=\"p3\"><strong>HARVESTED:</strong> <span class=\"s3\">2023 </span></p>\n<p class=\"p2\"><strong><span class=\"s2\">BOTTLED: </span></strong>February 2023</p>\n<p class=\"p3\"><strong>PRODUCTION:</strong> <span class=\"s3\">56 cases </span></p>\n<p class=\"p3\"><strong>ALCOHOL:</strong> <span class=\"s3\">12.9% </span></p>\n<p class=\"p4\"><strong>pH:</strong> <span class=\"s3\">3.18</span></p>\n<p class=\"p4\">&nbsp;</p>\n<p class=\"p4\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/04/2023-PinotNoir-RussianRiver-FINAL.pdf\"><strong><span class=\"s3\">PDF TECH SHEET</span></strong></a></p>\n</div>'),(52020,3424,'subtitle','Sonoma Valley'),(52021,3424,'price','3400'),(52022,3424,'web_status','Not Available'),(52023,3424,'admin_status','Available'),(52024,3424,'varietal','Rose'),(52025,3424,'appellation','Sonoma Valley'),(52026,3424,'vintage','2023'),(52027,3424,'collections','a:0:{}'),(52028,3424,'primary_collection',''),(52029,3424,'_wp_old_slug','2022-ros-of-pinot-noir-sonoma-coast-duplicate'),(52030,3425,'web_id','73ec9616-faea-4be4-9ad2-e625a213fada'),(52031,3425,'slug','2023-botanica-consecrata-pinot-gris-nelson-family-vineyard-mendocino-county'),(52032,3425,'title','2023 Botanica Consecrata Pinot Gris - Orange Wine'),(52033,3425,'type','Wine'),(52034,3425,'image','https://images.commerce7.com/meadowcroft-wines/images/original/botanica-consecrata-pinotgris-1712014781343.png'),(52035,3425,'teaser',NULL),(52036,3425,'content','<div class=\"tatsu-section-pad clearfix\" data-padding=\"{&quot;d&quot;:&quot;90px 0px 90px 0px&quot;}\" data-padding-top=\"90px\">\n<div class=\"tatsu-row-wrap  tatsu-wrap tatsu-row-one-col tatsu-row-has-one-cols tatsu-medium-gutter tatsu-reg-cols  tatsu-clearfix tatsu-HJxPYjzn1q\">\n<div class=\"tatsu-row \">\n<div class=\"tatsu-column  tatsu-bg-overlay tatsu-one-col tatsu-column-image-none tatsu-column-effect-none  tatsu-rJDKoGnJq\" data-parallax-speed=\"0\">\n<div class=\"tatsu-column-inner \">\n<div class=\"tatsu-column-pad-wrap\">\n<div class=\"tatsu-column-pad\">\n<div id=\"\" class=\"tatsu-code tatsu-module tatsu-ByuNCz215   \">\n<div class=\"ecp-wrapper epub-locale-en\" data-ecp-wrapper=\"true\">\n<div class=\"ecp-component ecp_ProductDetail \">\n<div data-ecp-id=\"1210\">\n<div class=\"ecp-columns ecp-clearfix\">\n<div class=\"ecp-columns-right\">\n<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<p class=\"p3\"><strong>TASTING NOTES</strong></p>\n<p class=\"p4\">Our 2023 Botanica Consecrata Orange Wine is made from Pinot Gris fruit from the Nelson Ranch in Mendocino County. Despite its name, orange wine is not made from oranges. Rather, the stunning color is created by allowing white grapes to macerate longer than usual and by resisting the use of preservatives. This allows natural yeasts &amp; flora to exist in the wine. Careful avoidance of spoilage organisms is imperative. This wonderfully interesting wine is full of aromatics including rhubarb, grilled pineapple, pink peppercorn and herbal notes. On the palate is shows flavors of pomegranate, rose hips, lemongrass and hints of freshly cut herbs.</p>\n<p class=\"p3\"><strong>SUGGESTED FOOD PAIRING</strong></p>\n<p class=\"p5\">This wine will pair nicely with dishes featuring fresh pesto, fresh pasta with butter or cream sauces, Oysters Rockefeller or vegetarian dishes like palak paneer. Try it with a variety of cheeses and charcuterie to expose the layered flavors in the wine.</p>\n<p class=\"p5\">&nbsp;</p>\n<p class=\"p2\"><strong><span class=\"s2\">APPELLATION: </span></strong>Nelson Ranch, Mendocino County</p>\n<p class=\"p2\"><strong><span class=\"s2\">VARIETAL: </span></strong>Pinot Gris</p>\n<p class=\"p3\"><strong>HARVESTED:</strong> <span class=\"s3\">2023 </span></p>\n<p class=\"p2\"><strong><span class=\"s2\">BOTTLED: </span></strong>March 2023</p>\n<p class=\"p3\"><strong>PRODUCTION:</strong> <span class=\"s3\">45 cases </span></p>\n<p class=\"p3\"><strong>ALCOHOL:</strong> <span class=\"s3\">14.5% </span></p>\n<p class=\"p4\"><strong>pH:</strong> <span class=\"s3\">3.33</span></p>\n<p>&nbsp;</p>\n<p><strong><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/04/2023-Botanica-Consecrata-PinotGris-FINAL.pdf\">PDF Tech Sheet</a></strong></p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>'),(52037,3425,'subtitle','Nelson Vineyard, Mendocino County'),(52038,3425,'price','4800'),(52039,3425,'web_status','Not Available'),(52040,3425,'admin_status','Available'),(52041,3425,'varietal','Pinot Gris'),(52042,3425,'appellation','Mendocino'),(52043,3425,'vintage','2023'),(52044,3425,'meta_data_review-text','<div><strong>AWARDS AND REVIEWS</strong></div>\n<div>GOLD MEDAL&nbsp;</div>\n<div>2021 Pinot Gris, Mendocino County</div>\n<div><a href=\"https://enofileonline.com/awardsbybrandgoldplus.aspx?compid=2842\" target=\"_blank\" rel=\"noopener\">Sunset International Wine Competition</a></div>'),(52045,3425,'meta_data_feature-text','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>TASTING NOTES: &nbsp;We love Pinot Gris from Mendocino because of the spirited aromatics that are characteristic of grapes grown in that appellation. This wine opens with aromatics of granny smith apple, stone fruit, limes, and lemon tart. On the palate, flavors of white peach, almonds, and nougat dissolve into a dry, yet fruity finish laced with ruby-red grapefruit.<br /><br /></div>\n<div>FOOD PAIRINGS:&nbsp;This medium-bodied, complex varietal is delicious when served with grilled seafood and fresh vegetables. Simple meals, like fruit salad and smoked fish, are also a great accompaniment.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">&nbsp;</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\">&nbsp;</div>'),(52046,3425,'meta_data_wine-notes','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>TASTING NOTES: &nbsp;We love Pinot Gris from Mendocino because of the spirited aromatics that are characteristic of grapes grown in that appellation. This wine opens with aromatics of granny smith apple, stone fruit, limes, and lemon tart. On the palate, flavors of white peach, almonds, and nougat dissolve into a dry, yet fruity finish laced with ruby-red grapefruit.<br /><br /></div>\n<div>FOOD PAIRINGS:&nbsp;This medium-bodied, complex varietal is delicious when served with grilled seafood and fresh vegetables. Simple meals, like fruit salad and smoked fish, are also a great accompaniment.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">&nbsp;</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\">&nbsp;</div>'),(52047,3425,'meta_data_technical-notes','<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">Appellation:&nbsp; Nelson Ranch Vineyard, Mendocino County\n<div>Harvest Date:&nbsp; September 2021</div>\n<div>Bottling Date:&nbsp; February 2022</div>\n<div>Case Production:&nbsp;183 cases</div>\n<div>Alcohol:&nbsp; 14.10%</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/03/Meadowcroft_2021_Pinot_Gris_Mendocino_Tech_Sheet.pdf\">Download Complete Wine Tasting Notes</a></div>'),(52048,3425,'collections','a:0:{}'),(52049,3425,'primary_collection',''),(52050,3425,'_wp_old_slug','2022-pinot-gris-nelson-ranch-vineyard-duplicate'),(52051,3426,'web_id','e8acb749-5c6c-4f0a-9224-ce8af3800a3f'),(52052,3426,'slug','meadowcroft-2023-albarino-paradise-vineyard-sonoma-coast'),(52053,3426,'title','Meadowcroft 2023 Albarino, Paradise Vineyard Sonoma Coast'),(52054,3426,'type','Wine'),(52055,3426,'image',NULL),(52056,3426,'teaser',NULL),(52057,3426,'content',NULL),(52058,3426,'subtitle',NULL),(52059,3426,'price',NULL),(52060,3426,'web_status','Available'),(52061,3426,'admin_status','Available'),(52062,3426,'varietal',NULL),(52063,3426,'appellation','Sonoma Coast'),(52064,3426,'vintage',NULL),(52065,3426,'collections','a:0:{}'),(52066,3426,'primary_collection',''),(52067,3427,'web_id','c59b0f8b-f9f4-4a86-91a6-c44865a9a223'),(52068,3427,'slug','2023-albarino-paradise-vineyard'),(52069,3427,'title','2023 Albarino, Paradise Vineyard'),(52070,3427,'type','Wine'),(52071,3427,'image','https://images.commerce7.com/meadowcroft-wines/images/original/2023-albarino-1712016278220.png'),(52072,3427,'teaser',NULL),(52073,3427,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<p class=\"p1\"><strong>TASTING NOTES </strong></p>\n<p class=\"p1\">Our 2023 Albarino is sourced from a vineyard in Sonoma Coast AVA owned by Lisa Brayton and Al Correnti on which they focus on uncommon grape varietals. &nbsp;This wine offers tempting aromas of white peach, grapefruit blossom, gooseberry and fresh citrus notes. &nbsp; Flavors bright citrus, lemon verbena, and orange peel. &nbsp;Round mouthfeel with long satisfying finish. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</p>\n<p class=\"p1\"><strong>SUGGESTED FOOD PAIRING </strong></p>\n<p class=\"p1\">This wine is exceptionally food friendly. &nbsp;We recommend enjoying this wine with dungeness crab cakes, pastas with creamy sauces or primavera style. &nbsp;This wine will cetainly shine alongside fresh ceviche, oysters or soft creamy cheeses. &nbsp;</p>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">\n<div>\n<p class=\"p2\"><strong><span class=\"s2\">APPELLATION: </span></strong>Sonoma Coast</p>\n<p class=\"p3\"><strong>VARIETAL:</strong> <span class=\"s3\">Albarino </span></p>\n<p class=\"p3\"><strong>HARVESTED:</strong> <span class=\"s3\">2023 </span></p>\n<p class=\"p2\"><strong><span class=\"s2\">BOTTLED: </span></strong>February 2023</p>\n<p class=\"p3\"><strong>PRODUCTION:</strong> <span class=\"s3\">62 cases </span></p>\n<p class=\"p3\"><strong>ALCOHOL:</strong> <span class=\"s3\">13.1% </span></p>\n<p class=\"p4\"><strong>pH:</strong> <span class=\"s3\">3.35</span></p>\n</div>\n<div><strong><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/04/2023-Albarino-Final2.pdf\">PDF Tech Sheet</a></strong></div>\n</div>\n</div>'),(52074,3427,'subtitle','Sonoma Coast'),(52075,3427,'price','4000'),(52076,3427,'web_status','Not Available'),(52077,3427,'admin_status','Available'),(52078,3427,'varietal','Albarino'),(52079,3427,'appellation','Sonoma Coast'),(52080,3427,'vintage','2023'),(52081,3427,'collections','a:0:{}'),(52082,3427,'primary_collection',''),(52083,3427,'_wp_old_slug','2023-sauvignon-blanc-sonoma-coast-duplicate'),(52120,3420,'_edit_lock','1709161264:2'),(52121,3432,'_wp_attached_file','2024/02/NV-Blanc-de-Blanc-Tech-Sheet-Revised2.pdf'),(52122,3432,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:45:\"NV-Blanc-de-Blanc-Tech-Sheet-Revised2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196584;}s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"NV-Blanc-de-Blanc-Tech-Sheet-Revised2-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15214;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"NV-Blanc-de-Blanc-Tech-Sheet-Revised2-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105757;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"NV-Blanc-de-Blanc-Tech-Sheet-Revised2-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6925;}}s:8:\"filesize\";i:272966;}'),(52123,3433,'_wp_attached_file','2024/02/2021-NapaValley-Cabernet-Final-2.pdf'),(52124,3433,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:40:\"2021-NapaValley-Cabernet-Final-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175804;}s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"2021-NapaValley-Cabernet-Final-2-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14004;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"2021-NapaValley-Cabernet-Final-2-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98832;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"2021-NapaValley-Cabernet-Final-2-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6541;}}s:8:\"filesize\";i:157520;}'),(52126,3085,'_wp_attachment_image_alt','Meadowcroft Winery in Sonoma County'),(52130,3436,'web_id','081abdb6-9ba7-47d8-aa78-2ff5964bc688'),(52131,3436,'slug','mixed-spiced-nuts'),(52132,3436,'title','Mixed spiced nuts'),(52133,3436,'type','General Merchandise'),(52134,3436,'image','https://images.commerce7.com/meadowcroft-wines/images/original/siena-nuts-1710351781620.webp'),(52135,3436,'teaser',NULL),(52136,3436,'content',NULL),(52137,3436,'subtitle',NULL),(52138,3436,'price','750'),(52139,3436,'web_status','Not Available'),(52140,3436,'admin_status','Available'),(52141,3436,'vendor','Faire - Olives et Al'),(52142,3436,'collections','a:0:{}'),(52143,3436,'primary_collection',''),(52144,3437,'web_id','5e72bbd7-cc87-42c2-b578-f69556ed2c95'),(52145,3437,'slug','ticket-paella-wine-party-2024'),(52146,3437,'title','Ticket - Paella & Wine Party 2024 - SOLD OUT'),(52147,3437,'type','Event Ticket'),(52148,3437,'image','https://images.commerce7.com/meadowcroft-wines/images/original/paella-web-square-1710533807890.jpg'),(52149,3437,'teaser','Paella & Wine Party at Meadowcroft. One of our most popular parties is back this Spring!'),(52150,3437,'content','<div><span style=\"font-weight: bold;\">One of our most popular parties is back this Spring!&nbsp; </span></div>\n<div>&nbsp;</div>\n<div>We\'re welcoming back <a href=\"https://www.gerardspaella.com/\">Gerard\'s Paella</a> who will be serving up their delicious selections of tapas and chicken &amp; chorizo paella (vegetarian options available) while we pour some of our favorite wines and new releases, including our newest 2023 Albarino! This lovely Spring evening will be accompanied by sultry sounds of Spanish guitar. You don\'t want to miss this event!&nbsp; <span style=\"font-weight: bold;\">Tickets on sale until April 10th.</span></div>\n<p><strong>When:</strong> Saturday, April 13th,&nbsp; 4:00 pm - 7:00 pm<br /><strong>Where:</strong>&nbsp;Check in at the Meadowcroft Tasting Room<br /><strong>Cost:</strong>&nbsp;$40 | $25 Wine Club Members&nbsp;(2 tickets at this price per membership)<br /><strong>RSVP:</strong>&nbsp;&nbsp;Tickets are limited and ticket sales will end on April 10th.&nbsp;</p>'),(52151,3437,'subtitle',NULL),(52152,3437,'price','4000'),(52153,3437,'web_status','Retired'),(52154,3437,'admin_status','Not Available'),(52155,3437,'collections','a:1:{s:15:\"event-tickets-2\";s:13:\"Event Tickets\";}'),(52156,3437,'primary_collection','event-tickets-2, Event Tickets'),(52157,3437,'vendor','Meadowcroft Wines'),(52161,3440,'inline_featured_image','0'),(52162,3440,'_edit_lock','1710782098:5'),(52163,3440,'_edit_last','5'),(52165,3440,'allowed_customer_tag_titles','a:0:{}'),(52166,3440,'allowed_customer_club_titles','a:0:{}'),(52167,3440,'hide_post_title','0'),(52168,3440,'_hide_post_title','field_5bbe18c8efa0ac'),(52169,3440,'custom_title',''),(52170,3440,'_custom_title','field_5bbe1b83pfa0c'),(52171,3440,'the_teaser','Nestled in the heart of Northern California, Sonoma County is a viticultural haven renowned for its rolling vineyards and world-class wines. But what truly defines the soul of Sonoma\'s wine scene? In a deep exploration of this iconic region, we uncover the rich heritage, unique terroir, innovative winemaking, and the undying spirit of community that combine to form the essence of Sonoma County\'s viticultural story. Join us on a sensory voyage as we go beyond the tasting rooms to reveal the intricate layers of Sonoma\'s wine culture.'),(52172,3440,'_the_teaser','field_5c1d78f88e54c'),(52173,3440,'hero_image',''),(52174,3440,'_hero_image','field_5d138e7f31334'),(52175,3440,'enable_banner','0'),(52176,3440,'_enable_banner','field_5bbe19c8efa0acb'),(52177,3440,'banner_full_width','0'),(52178,3440,'_banner_full_width','field_5bbe19c8efa0ac'),(52179,3440,'banner_size','normal'),(52180,3440,'_banner_size','field_5bbe232929ec9c'),(52181,3440,'add_parallax_effect','0'),(52182,3440,'_add_parallax_effect','field_5bbe219ccb6a9'),(52183,3440,'add_veil_over_banner','0'),(52184,3440,'_add_veil_over_banner','field_5bbe333f39212'),(52185,3440,'banner_content_position','centered'),(52186,3440,'_banner_content_position','field_5bbe259b02b62'),(52187,3440,'banner_title',''),(52188,3440,'_banner_title','field_5bbe1b78efa0b'),(52189,3440,'banner_subtitle',''),(52190,3440,'_banner_subtitle','field_5bbe1b83efa0c'),(52191,3440,'banner_button_link',''),(52192,3440,'_banner_button_link','field_5bbe1b8cefa0d'),(52193,3440,'banner_button_new_tab','0'),(52194,3440,'_banner_button_new_tab','field_5bbe1e6d18fae'),(52195,3440,'show_down_arrow','0'),(52196,3440,'_show_down_arrow','field_5bbe24f721165'),(52197,3440,'banner_image',''),(52198,3440,'_banner_image','field_5bbe201718fafa'),(52199,3440,'banner_image_position','center center'),(52200,3440,'_banner_image_position','field_5bbe278f9fb97'),(52201,3440,'banner_image_mobile',''),(52202,3440,'_banner_image_mobile','field_5bbe202818fb0b'),(52203,3440,'banner_image_mobile_position','center center'),(52204,3440,'_banner_image_mobile_position','field_5bbe279c9fb98'),(52205,3440,'content_block',''),(52206,3440,'_content_block','field_5bbe19a7efa09'),(52207,3440,'_yoast_wpseo_primary_category',''),(52208,3440,'_yoast_wpseo_content_score','60'),(52209,3440,'_yoast_wpseo_estimated-reading-time-minutes','5'),(52210,3440,'_yoast_wpseo_wordproof_timestamp',''),(52211,3442,'web_id','583011a2-796a-49b9-bc4a-ac900e486c82'),(52212,3442,'slug','2020-zinfandel-speedy-creek-vineyard-duplicate'),(52213,3442,'title','2020 Zinfandel, Speedy Creek Vineyard'),(52214,3442,'type','Wine'),(52215,3442,'image','https://images.commerce7.com/meadowcroft-wines/images/original/2020-speedy-zin-c7-1727469829473.png'),(52216,3442,'teaser',NULL),(52217,3442,'content','<p><span style=\"font-weight: bold;\">TASTING NOTE:&nbsp;&nbsp;</span>Spirited aromas of white cherry<span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">, plums, and caramel lead to complex layers of cherry cobbler and black licorice. The palate is polished and smooth, with a finish intertwined with toasted vanilla. Best now through 2030.</span></p>\n<p><strong>FOOD PAIRINGS:&nbsp;&nbsp;</strong>Fire up your grill and serve this flavorful Zinfandel with grilled pork chops or ribs prepared with stone fruit salsa or spicy BBQ sauce. This wine will play nicely with bold flavors that have spice as well as a touch of sweetness.</p>\n<p><strong>TECHNICAL DATA:</strong></p>\n<p><span id=\"page61R_mcid21\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Appelation: Speedy Creek Vineyard,&nbsp;<span id=\"page61R_mcid28\" class=\"markedContent\">Knights Valley</span></span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Varietal: <span id=\"page61R_mcid28\" class=\"markedContent\">Zinfandel</span></span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Harvested: <span id=\"page61R_mcid28\" class=\"markedContent\">September 2022</span></span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Bottled: March<span id=\"page61R_mcid28\" class=\"markedContent\"> 2024</span></span><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Production: <span id=\"page61R_mcid28\" class=\"markedContent\">146 Cases</span></span><br role=\"presentation\" /></span><span id=\"page61R_mcid28\" class=\"markedContent\"><br /></span></p>\n<p>&nbsp;</p>'),(52218,3442,'subtitle','Knight\'s Valley'),(52219,3442,'price','4500'),(52220,3442,'web_status','Available'),(52221,3442,'admin_status','Available'),(52222,3442,'varietal','Zinfandel'),(52223,3442,'appellation','Knights Valley'),(52224,3442,'vintage','2020'),(52225,3442,'meta_data_feature-text','<p>Knights Valley, Sonoma County</p>'),(52226,3442,'meta_data_wine-notes','<p>$36.00</p>'),(52227,3442,'meta_data_technical-notes','<div>Appellation: &nbsp;Knights Valley, Sonoma County<br />\n<div>Varietal: &nbsp;Zinfandel</div>\n<div>Harvested: &nbsp;September 2019</div>\n<div>Bottle Date: &nbsp;April 2022</div>\n<div>Production: &nbsp;184 Cases</div>\n</div>'),(52228,3442,'collections','a:0:{}'),(52229,3442,'primary_collection',''),(52230,3442,'_wp_old_slug','2019-zinfandel-speedy-creek-vineyard-duplicate'),(52231,3443,'web_id','c15d0835-7732-47f7-82a9-8487c2013fbc'),(52232,3443,'slug','2022-cabernet-sauvignon-napa-valley-private-label'),(52233,3443,'title','2022 Cabernet Sauvignon, Napa Valley *SHINER for Private Label*'),(52234,3443,'type','Wine'),(52235,3443,'image',NULL),(52236,3443,'teaser',NULL),(52237,3443,'content','<p><strong>TASTING NOTES:</strong>&nbsp;A rich and compelling nose of blackberry, blueberries, sandalwood, and dried herbs is augmented by layers of plum and cherry, cocoa, and graphite. Bold and full-bodied, this wine is structured firmly around a solid core of rich fruit, licorice, and herbs. Supple, ripe tannins provide ample backbone. The mouth-feel is plush and unctuous while retaining stability and finesse. The finish is extended, with lingering flavors of caramel, sweet oak, and chocolate.&nbsp;</p>\n<div><strong>FOOD PAIRING:</strong> &nbsp;A quintessential Cabernet, this bold and structured wine is an effortless match with well-marbled beef and long-braised stews and sauces. Dishes with fresh herbs will marry nicely with the earthy notes, while the bold fruit will complement hard cheeses like Parmesan or Asiago.</div>\n<div>\n<div>&nbsp;</div>\n<div><strong>TECHNICAL DATA:</strong></div>\n<div>&nbsp;</div>\n<div><span id=\"page63R_mcid21\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Appellation:</span></span><span id=\"page63R_mcid22\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">Napa Valley</span></span><span id=\"page63R_mcid23\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Varietal:</span></span><span id=\"page63R_mcid24\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">Cabernet Sauvignon</span></span><span id=\"page63R_mcid25\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Harvested:</span></span><span id=\"page63R_mcid26\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">September 2022</span></span><span id=\"page63R_mcid27\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Bottled:</span></span><span id=\"page63R_mcid28\" class=\"markedContent\"> February<span dir=\"ltr\" role=\"presentation\">&nbsp;2024</span></span><span id=\"page63R_mcid29\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Production:</span></span><span id=\"page63R_mcid30\" class=\"markedContent\"> <span dir=\"ltr\" role=\"presentation\">478 cases</span></span></div>\n<div>&nbsp;</div>\n<div>&nbsp;</div>\n</div>'),(52238,3443,'subtitle','Private Label'),(52239,3443,'price','6500'),(52240,3443,'web_status','Not Available'),(52241,3443,'admin_status','Available'),(52242,3443,'varietal','Cabernet Sauvignon'),(52243,3443,'appellation','Napa Valley'),(52244,3443,'vintage','2022'),(52245,3443,'meta_data_review-text','<div>90 pt |&nbsp; James Suckling&nbsp; |&nbsp; 2016 vintage</div>\n<div><span style=\"font-style: italic;\">A prototypical, modern Napa red that has the big cassis character of fully ripe cabernet sauvignon, moderate tannins that are already well integrated and nice freshness at the finish.&nbsp; Makes you want to order or cook some Osso Bucco.&nbsp; &nbsp;</span></div>\n<div>&nbsp;</div>\n<p>94 pts | &nbsp;Chris Sawyer, Certified Sommelier&nbsp; |&nbsp; 2014 vintage</p>\n<div><span>&nbsp;On the palate, the generous flavors of black raspberry, dark cherry, cassis, ripe currants, cinnamon, hickory spice and dark chocolate truffle are complemented with a harmonious mixture of smooth, silky texture, chewy tannins, firm structure, and a lingering finish. Overall, an extremely well-crafted wine that is not only approachable when young, but also worthy of cellaring for more 10-15 years.</span></div>\n<p>\"</p>'),(52246,3443,'meta_data_wine-notes','<p>$52.00</p>'),(52247,3443,'meta_data_technical-notes','<div>Appellation: &nbsp;Napa Valley<br />Varietal: &nbsp;Cabernet Sauvignon<br />Harvested:&nbsp; September 2020<br />Bottle Date:&nbsp; March 2022<br />Production: 578 cases</div>'),(52248,3443,'collections','a:0:{}'),(52249,3443,'primary_collection',''),(52250,3443,'_wp_old_slug','2022-cabernet-sauvignon-napa-valley-duplicate'),(52253,3445,'inline_featured_image','0'),(52254,3445,'_edit_lock','1715814499:3'),(52255,3445,'_edit_last','3'),(52263,3449,'_wp_attached_file','2024/03/Meadowcroft-Mount-Veeder-Napa-Valley-Cabernet-Sauvignon-Bottleshot.png'),(52264,3449,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:78:\"2024/03/Meadowcroft-Mount-Veeder-Napa-Valley-Cabernet-Sauvignon-Bottleshot.png\";s:8:\"filesize\";i:99522;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:78:\"Meadowcroft-Mount-Veeder-Napa-Valley-Cabernet-Sauvignon-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28887;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:78:\"Meadowcroft-Mount-Veeder-Napa-Valley-Cabernet-Sauvignon-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20963;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:78:\"Meadowcroft-Mount-Veeder-Napa-Valley-Cabernet-Sauvignon-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49972;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:78:\"Meadowcroft-Mount-Veeder-Napa-Valley-Cabernet-Sauvignon-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:86355;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:78:\"Meadowcroft-Mount-Veeder-Napa-Valley-Cabernet-Sauvignon-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52925;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:78:\"Meadowcroft-Mount-Veeder-Napa-Valley-Cabernet-Sauvignon-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45549;}s:8:\"tileview\";a:5:{s:4:\"file\";s:78:\"Meadowcroft-Mount-Veeder-Napa-Valley-Cabernet-Sauvignon-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66373;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(52265,3449,'_wp_attachment_image_alt','Meadowcroft Mount Veeder Napa Valley Cabernet Sauvignon'),(52266,3445,'allowed_customer_tag_titles','a:0:{}'),(52267,3445,'allowed_customer_club_titles','a:0:{}'),(52268,3445,'linked_brand','3399'),(52269,3445,'_linked_brand','field_59ee2d92496e9'),(52270,3445,'main_image','3449'),(52271,3445,'_main_image','field_59ee319d02900'),(52272,3445,'assets_0_text','Bottle Shot'),(52273,3445,'_assets_0_text','field_59ee31cc02902'),(52274,3445,'assets_0_file_or_url','url'),(52275,3445,'_assets_0_file_or_url','field_59ee31da02903'),(52276,3445,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/13CSNVEG_1.png'),(52277,3445,'_assets_0_url','field_59ee320b02906'),(52278,3445,'assets','1'),(52279,3445,'_assets','field_59ee31bc02901'),(52280,3445,'varietal','Cabernet Sauvignon'),(52281,3445,'_varietal','field_59ee660ece2e7'),(52282,3445,'sub_brand',''),(52283,3445,'_sub_brand','field_59ee6623ce2e8'),(52284,3445,'vintage','2013'),(52285,3445,'_vintage','field_59ee6eba9a39a'),(52286,3445,'_yoast_wpseo_estimated-reading-time-minutes','1'),(52287,3445,'_yoast_wpseo_wordproof_timestamp',''),(52289,3451,'inline_featured_image','0'),(52290,3451,'_edit_lock','1715814487:3'),(52291,3451,'_edit_last','3'),(52292,3451,'allowed_customer_tag_titles','a:0:{}'),(52293,3451,'allowed_customer_club_titles','a:0:{}'),(52294,3451,'linked_brand','3399'),(52295,3451,'_linked_brand','field_59ee2d92496e9'),(52296,3451,'main_image','3449'),(52297,3451,'_main_image','field_59ee319d02900'),(52298,3451,'assets_0_text','Bottle Shot'),(52299,3451,'_assets_0_text','field_59ee31cc02902'),(52300,3451,'assets_0_file_or_url','url'),(52301,3451,'_assets_0_file_or_url','field_59ee31da02903'),(52302,3451,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/14CSNVEG_1.png'),(52303,3451,'_assets_0_url','field_59ee320b02906'),(52304,3451,'assets','1'),(52305,3451,'_assets','field_59ee31bc02901'),(52306,3451,'varietal','Cabernet Sauvignon'),(52307,3451,'_varietal','field_59ee660ece2e7'),(52308,3451,'sub_brand',''),(52309,3451,'_sub_brand','field_59ee6623ce2e8'),(52310,3451,'vintage','2014'),(52311,3451,'_vintage','field_59ee6eba9a39a'),(52312,3451,'_yoast_wpseo_estimated-reading-time-minutes','1'),(52313,3451,'_yoast_wpseo_wordproof_timestamp',''),(52314,3452,'inline_featured_image','0'),(52315,3452,'_edit_lock','1715814469:3'),(52316,3452,'_edit_last','3'),(52317,3452,'allowed_customer_tag_titles','a:0:{}'),(52318,3452,'allowed_customer_club_titles','a:0:{}'),(52319,3452,'linked_brand','3399'),(52320,3452,'_linked_brand','field_59ee2d92496e9'),(52321,3452,'main_image','3449'),(52322,3452,'_main_image','field_59ee319d02900'),(52323,3452,'assets_0_text','Bottle Shot'),(52324,3452,'_assets_0_text','field_59ee31cc02902'),(52325,3452,'assets_0_file_or_url','url'),(52326,3452,'_assets_0_file_or_url','field_59ee31da02903'),(52327,3452,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/15CSNVEG_1.png'),(52328,3452,'_assets_0_url','field_59ee320b02906'),(52329,3452,'assets_1_text','Tech Sheet'),(52330,3452,'_assets_1_text','field_59ee31cc02902'),(52331,3452,'assets_1_file_or_url','url'),(52332,3452,'_assets_1_file_or_url','field_59ee31da02903'),(52333,3452,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2015CabernetSauvignon_MountVeederNapaValley_TECHSheet.pdf'),(52334,3452,'_assets_1_url','field_59ee320b02906'),(52335,3452,'assets','2'),(52336,3452,'_assets','field_59ee31bc02901'),(52337,3452,'varietal','Cabernet Sauvignon'),(52338,3452,'_varietal','field_59ee660ece2e7'),(52339,3452,'sub_brand',''),(52340,3452,'_sub_brand','field_59ee6623ce2e8'),(52341,3452,'vintage','2015'),(52342,3452,'_vintage','field_59ee6eba9a39a'),(52343,3452,'_yoast_wpseo_estimated-reading-time-minutes','1'),(52344,3452,'_yoast_wpseo_wordproof_timestamp',''),(52345,3453,'inline_featured_image','0'),(52346,3453,'_edit_lock','1715814458:3'),(52347,3453,'_edit_last','3'),(52348,3453,'allowed_customer_tag_titles','a:0:{}'),(52349,3453,'allowed_customer_club_titles','a:0:{}'),(52350,3453,'linked_brand','3399'),(52351,3453,'_linked_brand','field_59ee2d92496e9'),(52352,3453,'main_image','3449'),(52353,3453,'_main_image','field_59ee319d02900'),(52354,3453,'assets_0_text','Bottle Shot'),(52355,3453,'_assets_0_text','field_59ee31cc02902'),(52356,3453,'assets_0_file_or_url','url'),(52357,3453,'_assets_0_file_or_url','field_59ee31da02903'),(52358,3453,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/16CSNVEG_1.png'),(52359,3453,'_assets_0_url','field_59ee320b02906'),(52360,3453,'assets_1_text','Tech Sheet'),(52361,3453,'_assets_1_text','field_59ee31cc02902'),(52362,3453,'assets_1_file_or_url','url'),(52363,3453,'_assets_1_file_or_url','field_59ee31da02903'),(52364,3453,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2016CabernetSauvignon_MountVeederNapaValley_TECHSheet.pdf'),(52365,3453,'_assets_1_url','field_59ee320b02906'),(52366,3453,'assets','2'),(52367,3453,'_assets','field_59ee31bc02901'),(52368,3453,'varietal','Cabernet Sauvignon'),(52369,3453,'_varietal','field_59ee660ece2e7'),(52370,3453,'sub_brand',''),(52371,3453,'_sub_brand','field_59ee6623ce2e8'),(52372,3453,'vintage','2016'),(52373,3453,'_vintage','field_59ee6eba9a39a'),(52374,3453,'_yoast_wpseo_estimated-reading-time-minutes','1'),(52375,3453,'_yoast_wpseo_wordproof_timestamp',''),(52376,3454,'inline_featured_image','0'),(52377,3454,'_edit_lock','1715814446:3'),(52378,3454,'_edit_last','3'),(52379,3454,'allowed_customer_tag_titles','a:0:{}'),(52380,3454,'allowed_customer_club_titles','a:0:{}'),(52381,3454,'linked_brand','3399'),(52382,3454,'_linked_brand','field_59ee2d92496e9'),(52383,3454,'main_image','3449'),(52384,3454,'_main_image','field_59ee319d02900'),(52385,3454,'assets_0_text','Bottle Shot'),(52386,3454,'_assets_0_text','field_59ee31cc02902'),(52387,3454,'assets_0_file_or_url','url'),(52388,3454,'_assets_0_file_or_url','field_59ee31da02903'),(52389,3454,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC2017_CS_MV_BottleShot-scaled-1.jpeg'),(52390,3454,'_assets_0_url','field_59ee320b02906'),(52391,3454,'assets_1_text','Tech Sheet'),(52392,3454,'_assets_1_text','field_59ee31cc02902'),(52393,3454,'assets_1_file_or_url','url'),(52394,3454,'_assets_1_file_or_url','field_59ee31da02903'),(52395,3454,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017CabernetSauvignon_MountVeederNapaValley_TECHSheet.pdf'),(52396,3454,'_assets_1_url','field_59ee320b02906'),(52397,3454,'assets','2'),(52398,3454,'_assets','field_59ee31bc02901'),(52399,3454,'varietal','Cabernet Sauvignon'),(52400,3454,'_varietal','field_59ee660ece2e7'),(52401,3454,'sub_brand',''),(52402,3454,'_sub_brand','field_59ee6623ce2e8'),(52403,3454,'vintage','2017'),(52404,3454,'_vintage','field_59ee6eba9a39a'),(52405,3454,'_yoast_wpseo_estimated-reading-time-minutes','1'),(52406,3454,'_yoast_wpseo_wordproof_timestamp',''),(52408,3456,'inline_featured_image','0'),(52409,3456,'_edit_lock','1715814387:3'),(52410,3456,'_edit_last','3'),(52411,3456,'allowed_customer_tag_titles','a:0:{}'),(52412,3456,'allowed_customer_club_titles','a:0:{}'),(52413,3456,'linked_brand','3399'),(52414,3456,'_linked_brand','field_59ee2d92496e9'),(52415,3456,'main_image','3449'),(52416,3456,'_main_image','field_59ee319d02900'),(52417,3456,'assets_0_text','Bottle Shot'),(52418,3456,'_assets_0_text','field_59ee31cc02902'),(52419,3456,'assets_0_file_or_url','url'),(52420,3456,'_assets_0_file_or_url','field_59ee31da02903'),(52421,3456,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_Veeeder_2018_Bottleshot_png.png'),(52422,3456,'_assets_0_url','field_59ee320b02906'),(52423,3456,'assets_1_text','Tech Sheet'),(52424,3456,'_assets_1_text','field_59ee31cc02902'),(52425,3456,'assets_1_file_or_url','url'),(52426,3456,'_assets_1_file_or_url','field_59ee31da02903'),(52427,3456,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018CabernetSauvignon_MountVeederNapaValley_TECHSheet.pdf'),(52428,3456,'_assets_1_url','field_59ee320b02906'),(52429,3456,'assets','2'),(52430,3456,'_assets','field_59ee31bc02901'),(52431,3456,'varietal','Cabernet Sauvignon'),(52432,3456,'_varietal','field_59ee660ece2e7'),(52433,3456,'sub_brand',''),(52434,3456,'_sub_brand','field_59ee6623ce2e8'),(52435,3456,'vintage','2018'),(52436,3456,'_vintage','field_59ee6eba9a39a'),(52437,3456,'_yoast_wpseo_estimated-reading-time-minutes','1'),(52438,3456,'_yoast_wpseo_wordproof_timestamp',''),(52439,3457,'inline_featured_image','0'),(52440,3457,'_edit_lock','1715814362:3'),(52441,3457,'_edit_last','3'),(52442,3457,'allowed_customer_tag_titles','a:0:{}'),(52443,3457,'allowed_customer_club_titles','a:0:{}'),(52444,3457,'linked_brand','3399'),(52445,3457,'_linked_brand','field_59ee2d92496e9'),(52446,3457,'main_image','3449'),(52447,3457,'_main_image','field_59ee319d02900'),(52448,3457,'assets_0_text','Bottle Shot'),(52449,3457,'_assets_0_text','field_59ee31cc02902'),(52450,3457,'assets_0_file_or_url','url'),(52451,3457,'_assets_0_file_or_url','field_59ee31da02903'),(52452,3457,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_Veeder_2019_Bottleshot_png-2.png'),(52453,3457,'_assets_0_url','field_59ee320b02906'),(52454,3457,'assets','1'),(52455,3457,'_assets','field_59ee31bc02901'),(52456,3457,'varietal','Cabernet Sauvignon'),(52457,3457,'_varietal','field_59ee660ece2e7'),(52458,3457,'sub_brand',''),(52459,3457,'_sub_brand','field_59ee6623ce2e8'),(52460,3457,'vintage','2019'),(52461,3457,'_vintage','field_59ee6eba9a39a'),(52462,3457,'_yoast_wpseo_estimated-reading-time-minutes','1'),(52463,3457,'_yoast_wpseo_wordproof_timestamp',''),(52464,3458,'inline_featured_image','0'),(52465,3458,'_edit_lock','1715814350:3'),(52466,3458,'_edit_last','3'),(52467,3458,'allowed_customer_tag_titles','a:0:{}'),(52468,3458,'allowed_customer_club_titles','a:0:{}'),(52469,3458,'linked_brand','3399'),(52470,3458,'_linked_brand','field_59ee2d92496e9'),(52471,3458,'main_image','3449'),(52472,3458,'_main_image','field_59ee319d02900'),(52473,3458,'assets_0_text','Tech Sheet'),(52474,3458,'_assets_0_text','field_59ee31cc02902'),(52475,3458,'assets_0_file_or_url','url'),(52476,3458,'_assets_0_file_or_url','field_59ee31da02903'),(52477,3458,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/08/TechSheet-2020-Cab-MtVeeder-Final-1.pdf'),(52478,3458,'_assets_0_url','field_59ee320b02906'),(52479,3458,'assets','1'),(52480,3458,'_assets','field_59ee31bc02901'),(52481,3458,'varietal','Cabernet Sauvignon'),(52482,3458,'_varietal','field_59ee660ece2e7'),(52483,3458,'sub_brand',''),(52484,3458,'_sub_brand','field_59ee6623ce2e8'),(52485,3458,'vintage','2020'),(52486,3458,'_vintage','field_59ee6eba9a39a'),(52487,3458,'_yoast_wpseo_estimated-reading-time-minutes','1'),(52488,3458,'_yoast_wpseo_wordproof_timestamp',''),(52490,3460,'inline_featured_image','0'),(52491,3460,'_edit_lock','1715814105:3'),(52492,3460,'_edit_last','3'),(52493,3461,'_wp_attached_file','2024/03/Meadowcroft-Napa-Valley-Cabernet-Sauvignon-Bottleshot.png'),(52494,3461,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:65:\"2024/03/Meadowcroft-Napa-Valley-Cabernet-Sauvignon-Bottleshot.png\";s:8:\"filesize\";i:107848;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:65:\"Meadowcroft-Napa-Valley-Cabernet-Sauvignon-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26074;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:65:\"Meadowcroft-Napa-Valley-Cabernet-Sauvignon-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23756;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:65:\"Meadowcroft-Napa-Valley-Cabernet-Sauvignon-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66272;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:65:\"Meadowcroft-Napa-Valley-Cabernet-Sauvignon-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93204;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:65:\"Meadowcroft-Napa-Valley-Cabernet-Sauvignon-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70685;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:65:\"Meadowcroft-Napa-Valley-Cabernet-Sauvignon-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57931;}s:8:\"tileview\";a:5:{s:4:\"file\";s:65:\"Meadowcroft-Napa-Valley-Cabernet-Sauvignon-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82460;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(52495,3461,'_wp_attachment_image_alt','Meadowcroft Napa Valley Cabernet Sauvignon'),(52496,3460,'allowed_customer_tag_titles','a:0:{}'),(52497,3460,'allowed_customer_club_titles','a:0:{}'),(52498,3460,'linked_brand','3399'),(52499,3460,'_linked_brand','field_59ee2d92496e9'),(52500,3460,'main_image','3461'),(52501,3460,'_main_image','field_59ee319d02900'),(52502,3460,'assets_0_text','Bottle Shot'),(52503,3460,'_assets_0_text','field_59ee31cc02902'),(52504,3460,'assets_0_file_or_url','url'),(52505,3460,'_assets_0_file_or_url','field_59ee31da02903'),(52506,3460,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/16CSNVNC_1.png'),(52507,3460,'_assets_0_url','field_59ee320b02906'),(52508,3460,'assets_1_text','Tech Sheet'),(52509,3460,'_assets_1_text','field_59ee31cc02902'),(52510,3460,'assets_1_file_or_url','url'),(52511,3460,'_assets_1_file_or_url','field_59ee31da02903'),(52512,3460,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2016CabernetSauvignonNapaValley_TECHSheet.pdf'),(52513,3460,'_assets_1_url','field_59ee320b02906'),(52514,3460,'assets','2'),(52515,3460,'_assets','field_59ee31bc02901'),(52516,3460,'varietal','Cabernet Sauvignon'),(52517,3460,'_varietal','field_59ee660ece2e7'),(52518,3460,'sub_brand',''),(52519,3460,'_sub_brand','field_59ee6623ce2e8'),(52520,3460,'vintage','2016'),(52521,3460,'_vintage','field_59ee6eba9a39a'),(52522,3460,'_yoast_wpseo_estimated-reading-time-minutes','1'),(52523,3460,'_yoast_wpseo_wordproof_timestamp',''),(52526,3464,'inline_featured_image','0'),(52527,3464,'_edit_lock','1715814090:3'),(52528,3464,'_edit_last','3'),(52529,3464,'allowed_customer_tag_titles','a:0:{}'),(52530,3464,'allowed_customer_club_titles','a:0:{}'),(52531,3464,'linked_brand','3399'),(52532,3464,'_linked_brand','field_59ee2d92496e9'),(52533,3464,'main_image','3461'),(52534,3464,'_main_image','field_59ee319d02900'),(52535,3464,'assets_0_text','Bottle Shot'),(52536,3464,'_assets_0_text','field_59ee31cc02902'),(52537,3464,'assets_0_file_or_url','url'),(52538,3464,'_assets_0_file_or_url','field_59ee31da02903'),(52539,3464,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_2017_NapaValley_CabernetSauvignon.png'),(52540,3464,'_assets_0_url','field_59ee320b02906'),(52541,3464,'assets_1_text','Tech Sheet'),(52542,3464,'_assets_1_text','field_59ee31cc02902'),(52543,3464,'assets_1_file_or_url','url'),(52544,3464,'_assets_1_file_or_url','field_59ee31da02903'),(52545,3464,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017CabernetSauvignonNapaValley_TECHSheet.pdf'),(52546,3464,'_assets_1_url','field_59ee320b02906'),(52547,3464,'assets','2'),(52548,3464,'_assets','field_59ee31bc02901'),(52549,3464,'varietal','Cabernet Sauvignon'),(52550,3464,'_varietal','field_59ee660ece2e7'),(52551,3464,'sub_brand',''),(52552,3464,'_sub_brand','field_59ee6623ce2e8'),(52553,3464,'vintage','2017'),(52554,3464,'_vintage','field_59ee6eba9a39a'),(52555,3464,'_yoast_wpseo_estimated-reading-time-minutes','1'),(52556,3464,'_yoast_wpseo_wordproof_timestamp',''),(52557,3465,'inline_featured_image','0'),(52558,3465,'_edit_lock','1715814077:3'),(52559,3465,'_edit_last','3'),(52560,3465,'allowed_customer_tag_titles','a:0:{}'),(52561,3465,'allowed_customer_club_titles','a:0:{}'),(52562,3465,'linked_brand','3399'),(52563,3465,'_linked_brand','field_59ee2d92496e9'),(52564,3465,'main_image','3461'),(52565,3465,'_main_image','field_59ee319d02900'),(52566,3465,'assets_0_text','Bottle Shot'),(52567,3465,'_assets_0_text','field_59ee31cc02902'),(52568,3465,'assets_0_file_or_url','url'),(52569,3465,'_assets_0_file_or_url','field_59ee31da02903'),(52570,3465,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_NapaValley_CabernetSauvignon_2018_small.png'),(52571,3465,'_assets_0_url','field_59ee320b02906'),(52572,3465,'assets_1_text','Tech Sheet'),(52573,3465,'_assets_1_text','field_59ee31cc02902'),(52574,3465,'assets_1_file_or_url','url'),(52575,3465,'_assets_1_file_or_url','field_59ee31da02903'),(52576,3465,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018CabernetSauvignonNapaValley_TECHSheet.pdf'),(52577,3465,'_assets_1_url','field_59ee320b02906'),(52578,3465,'assets','2'),(52579,3465,'_assets','field_59ee31bc02901'),(52580,3465,'varietal','Cabernet Sauvignon'),(52581,3465,'_varietal','field_59ee660ece2e7'),(52582,3465,'sub_brand',''),(52583,3465,'_sub_brand','field_59ee6623ce2e8'),(52584,3465,'vintage','2018'),(52585,3465,'_vintage','field_59ee6eba9a39a'),(52586,3465,'_yoast_wpseo_estimated-reading-time-minutes','1'),(52587,3465,'_yoast_wpseo_wordproof_timestamp',''),(52588,3466,'inline_featured_image','0'),(52589,3466,'_edit_lock','1715814060:3'),(52590,3466,'_edit_last','3'),(52591,3466,'allowed_customer_tag_titles','a:0:{}'),(52592,3466,'allowed_customer_club_titles','a:0:{}'),(52593,3466,'linked_brand','3399'),(52594,3466,'_linked_brand','field_59ee2d92496e9'),(52595,3466,'main_image','3461'),(52596,3466,'_main_image','field_59ee319d02900'),(52597,3466,'assets_0_text','Tech Sheet'),(52598,3466,'_assets_0_text','field_59ee31cc02902'),(52599,3466,'assets_0_file_or_url','url'),(52600,3466,'_assets_0_file_or_url','field_59ee31da02903'),(52601,3466,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2019CabernetSauvignonNapaValley_TECHSheet.pdf'),(52602,3466,'_assets_0_url','field_59ee320b02906'),(52603,3466,'assets','1'),(52604,3466,'_assets','field_59ee31bc02901'),(52605,3466,'varietal','Cabernet Sauvignon'),(52606,3466,'_varietal','field_59ee660ece2e7'),(52607,3466,'sub_brand',''),(52608,3466,'_sub_brand','field_59ee6623ce2e8'),(52609,3466,'vintage','2019'),(52610,3466,'_vintage','field_59ee6eba9a39a'),(52611,3466,'_yoast_wpseo_estimated-reading-time-minutes','1'),(52612,3466,'_yoast_wpseo_wordproof_timestamp',''),(52613,3467,'inline_featured_image','0'),(52614,3467,'_edit_lock','1715814038:3'),(52615,3467,'_edit_last','3'),(52616,3467,'allowed_customer_tag_titles','a:0:{}'),(52617,3467,'allowed_customer_club_titles','a:0:{}'),(52618,3467,'linked_brand','3399'),(52619,3467,'_linked_brand','field_59ee2d92496e9'),(52620,3467,'main_image','3461'),(52621,3467,'_main_image','field_59ee319d02900'),(52622,3467,'assets_0_text','Bottle Shot'),(52623,3467,'_assets_0_text','field_59ee31cc02902'),(52624,3467,'assets_0_file_or_url','url'),(52625,3467,'_assets_0_file_or_url','field_59ee31da02903'),(52626,3467,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_NapaValley_CabernetSauvignon_2020_Bottleshot.png'),(52627,3467,'_assets_0_url','field_59ee320b02906'),(52628,3467,'assets_1_text','Tech Sheet'),(52629,3467,'_assets_1_text','field_59ee31cc02902'),(52630,3467,'assets_1_file_or_url','url'),(52631,3467,'_assets_1_file_or_url','field_59ee31da02903'),(52632,3467,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2020CabernetSauvignonNapaValley_TECHSheet.pdf'),(52633,3467,'_assets_1_url','field_59ee320b02906'),(52634,3467,'assets','2'),(52635,3467,'_assets','field_59ee31bc02901'),(52636,3467,'varietal','Cabernet Sauvignon'),(52637,3467,'_varietal','field_59ee660ece2e7'),(52638,3467,'sub_brand',''),(52639,3467,'_sub_brand','field_59ee6623ce2e8'),(52640,3467,'vintage','2020'),(52641,3467,'_vintage','field_59ee6eba9a39a'),(52642,3467,'_yoast_wpseo_estimated-reading-time-minutes','1'),(52643,3467,'_yoast_wpseo_wordproof_timestamp',''),(52644,3468,'inline_featured_image','0'),(52645,3468,'_edit_lock','1715814026:3'),(52646,3468,'_edit_last','3'),(52647,3468,'allowed_customer_tag_titles','a:0:{}'),(52648,3468,'allowed_customer_club_titles','a:0:{}'),(52649,3468,'linked_brand','3399'),(52650,3468,'_linked_brand','field_59ee2d92496e9'),(52651,3468,'main_image','3461'),(52652,3468,'_main_image','field_59ee319d02900'),(52653,3468,'assets_0_text','Bottle Shot'),(52654,3468,'_assets_0_text','field_59ee31cc02902'),(52655,3468,'assets_0_file_or_url','url'),(52656,3468,'_assets_0_file_or_url','field_59ee31da02903'),(52657,3468,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-Cab-NapaValley-scaled.jpg'),(52658,3468,'_assets_0_url','field_59ee320b02906'),(52659,3468,'assets_1_text','Tech Sheet'),(52660,3468,'_assets_1_text','field_59ee31cc02902'),(52661,3468,'assets_1_file_or_url','url'),(52662,3468,'_assets_1_file_or_url','field_59ee31da02903'),(52663,3468,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-Cab-NapaValley.pdf'),(52664,3468,'_assets_1_url','field_59ee320b02906'),(52665,3468,'assets','2'),(52666,3468,'_assets','field_59ee31bc02901'),(52667,3468,'varietal','Cabernet Sauvignon'),(52668,3468,'_varietal','field_59ee660ece2e7'),(52669,3468,'sub_brand',''),(52670,3468,'_sub_brand','field_59ee6623ce2e8'),(52671,3468,'vintage','2021'),(52672,3468,'_vintage','field_59ee6eba9a39a'),(52673,3468,'_yoast_wpseo_estimated-reading-time-minutes','1'),(52674,3468,'_yoast_wpseo_wordproof_timestamp',''),(52675,3469,'inline_featured_image','0'),(52676,3469,'_edit_lock','1715813988:3'),(52677,3469,'_edit_last','3'),(52681,3471,'_wp_attached_file','2024/03/Meadowcroft-Dry-Creek-Valley-LouvauWyldvin-Vineyard-Cab-Sauv-Bottleshot.png'),(52682,3471,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:83:\"2024/03/Meadowcroft-Dry-Creek-Valley-LouvauWyldvin-Vineyard-Cab-Sauv-Bottleshot.png\";s:8:\"filesize\";i:102803;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:83:\"Meadowcroft-Dry-Creek-Valley-LouvauWyldvin-Vineyard-Cab-Sauv-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26566;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:83:\"Meadowcroft-Dry-Creek-Valley-LouvauWyldvin-Vineyard-Cab-Sauv-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22935;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:83:\"Meadowcroft-Dry-Creek-Valley-LouvauWyldvin-Vineyard-Cab-Sauv-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64235;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:83:\"Meadowcroft-Dry-Creek-Valley-LouvauWyldvin-Vineyard-Cab-Sauv-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:88558;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:83:\"Meadowcroft-Dry-Creek-Valley-LouvauWyldvin-Vineyard-Cab-Sauv-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68170;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:83:\"Meadowcroft-Dry-Creek-Valley-LouvauWyldvin-Vineyard-Cab-Sauv-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55968;}s:8:\"tileview\";a:5:{s:4:\"file\";s:83:\"Meadowcroft-Dry-Creek-Valley-LouvauWyldvin-Vineyard-Cab-Sauv-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79048;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(52683,3471,'_wp_attachment_image_alt','Meadowcroft Dry Creek Valley Louvau/Wyldvin Vineyard Cab Sauv'),(52684,3469,'allowed_customer_tag_titles','a:0:{}'),(52685,3469,'allowed_customer_club_titles','a:0:{}'),(52686,3469,'linked_brand','3399'),(52687,3469,'_linked_brand','field_59ee2d92496e9'),(52688,3469,'main_image','3471'),(52689,3469,'_main_image','field_59ee319d02900'),(52690,3469,'assets_0_text','Bottle Shot'),(52691,3469,'_assets_0_text','field_59ee31cc02902'),(52692,3469,'assets_0_file_or_url','url'),(52693,3469,'_assets_0_file_or_url','field_59ee31da02903'),(52694,3469,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/15CSSCLV_1.png'),(52695,3469,'_assets_0_url','field_59ee320b02906'),(52696,3469,'assets_1_text','Tech Sheet'),(52697,3469,'_assets_1_text','field_59ee31cc02902'),(52698,3469,'assets_1_file_or_url','url'),(52699,3469,'_assets_1_file_or_url','field_59ee31da02903'),(52700,3469,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2015CabernetSauvignonDCV_TECHSheet.pdf'),(52701,3469,'_assets_1_url','field_59ee320b02906'),(52702,3469,'assets','2'),(52703,3469,'_assets','field_59ee31bc02901'),(52704,3469,'varietal','Cabernet Sauvignon'),(52705,3469,'_varietal','field_59ee660ece2e7'),(52706,3469,'sub_brand',''),(52707,3469,'_sub_brand','field_59ee6623ce2e8'),(52708,3469,'vintage','2015'),(52709,3469,'_vintage','field_59ee6eba9a39a'),(52710,3469,'_yoast_wpseo_estimated-reading-time-minutes','1'),(52711,3469,'_yoast_wpseo_wordproof_timestamp',''),(52712,3472,'inline_featured_image','0'),(52713,3472,'_edit_lock','1715813975:3'),(52714,3472,'_edit_last','3'),(52715,3472,'allowed_customer_tag_titles','a:0:{}'),(52716,3472,'allowed_customer_club_titles','a:0:{}'),(52717,3472,'linked_brand','3399'),(52718,3472,'_linked_brand','field_59ee2d92496e9'),(52719,3472,'main_image','3471'),(52720,3472,'_main_image','field_59ee319d02900'),(52721,3472,'assets_0_text','Bottle Shot'),(52722,3472,'_assets_0_text','field_59ee31cc02902'),(52723,3472,'assets_0_file_or_url','url'),(52724,3472,'_assets_0_file_or_url','field_59ee31da02903'),(52725,3472,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/16CSNVNC_1-1.png'),(52726,3472,'_assets_0_url','field_59ee320b02906'),(52727,3472,'assets_1_text','Tech Sheet'),(52728,3472,'_assets_1_text','field_59ee31cc02902'),(52729,3472,'assets_1_file_or_url','url'),(52730,3472,'_assets_1_file_or_url','field_59ee31da02903'),(52731,3472,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2016CabernetSauvignonDCV_TECHSheet.pdf'),(52732,3472,'_assets_1_url','field_59ee320b02906'),(52733,3472,'assets','2'),(52734,3472,'_assets','field_59ee31bc02901'),(52735,3472,'varietal','Cabernet Sauvignon'),(52736,3472,'_varietal','field_59ee660ece2e7'),(52737,3472,'sub_brand',''),(52738,3472,'_sub_brand','field_59ee6623ce2e8'),(52739,3472,'vintage','2016'),(52740,3472,'_vintage','field_59ee6eba9a39a'),(52741,3472,'_yoast_wpseo_estimated-reading-time-minutes','1'),(52742,3472,'_yoast_wpseo_wordproof_timestamp',''),(52743,3473,'inline_featured_image','0'),(52744,3473,'_edit_lock','1715813954:3'),(52745,3473,'_edit_last','3'),(52746,3473,'allowed_customer_tag_titles','a:0:{}'),(52747,3473,'allowed_customer_club_titles','a:0:{}'),(52748,3473,'linked_brand','3399'),(52749,3473,'_linked_brand','field_59ee2d92496e9'),(52750,3473,'main_image','3471'),(52751,3473,'_main_image','field_59ee319d02900'),(52752,3473,'assets_0_text','Bottle Shot'),(52753,3473,'_assets_0_text','field_59ee31cc02902'),(52754,3473,'assets_0_file_or_url','url'),(52755,3473,'_assets_0_file_or_url','field_59ee31da02903'),(52756,3473,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_2017_CABSAUV_LOUVAU.png'),(52757,3473,'_assets_0_url','field_59ee320b02906'),(52758,3473,'assets_1_text','Tech Sheet'),(52759,3473,'_assets_1_text','field_59ee31cc02902'),(52760,3473,'assets_1_file_or_url','url'),(52761,3473,'_assets_1_file_or_url','field_59ee31da02903'),(52762,3473,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017CabernetSauvignonDCV_TECHSheet-1.pdf'),(52763,3473,'_assets_1_url','field_59ee320b02906'),(52764,3473,'assets','2'),(52765,3473,'_assets','field_59ee31bc02901'),(52766,3473,'varietal','Cabernet Sauvignon'),(52767,3473,'_varietal','field_59ee660ece2e7'),(52768,3473,'sub_brand',''),(52769,3473,'_sub_brand','field_59ee6623ce2e8'),(52770,3473,'vintage','2017'),(52771,3473,'_vintage','field_59ee6eba9a39a'),(52772,3473,'_yoast_wpseo_estimated-reading-time-minutes','1'),(52773,3473,'_yoast_wpseo_wordproof_timestamp',''),(52774,3474,'inline_featured_image','0'),(52775,3474,'_edit_lock','1715813943:3'),(52776,3474,'_edit_last','3'),(52777,3474,'allowed_customer_tag_titles','a:0:{}'),(52778,3474,'allowed_customer_club_titles','a:0:{}'),(52779,3474,'linked_brand','3399'),(52780,3474,'_linked_brand','field_59ee2d92496e9'),(52781,3474,'main_image','3471'),(52782,3474,'_main_image','field_59ee319d02900'),(52783,3474,'assets_0_text','Bottle Shot'),(52784,3474,'_assets_0_text','field_59ee31cc02902'),(52785,3474,'assets_0_file_or_url','url'),(52786,3474,'_assets_0_file_or_url','field_59ee31da02903'),(52787,3474,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_2018_CABSAUV_LOUVAU.png'),(52788,3474,'_assets_0_url','field_59ee320b02906'),(52789,3474,'assets_1_text','Tech Sheet'),(52790,3474,'_assets_1_text','field_59ee31cc02902'),(52791,3474,'assets_1_file_or_url','url'),(52792,3474,'_assets_1_file_or_url','field_59ee31da02903'),(52793,3474,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018CabernetSauvignonDCV_TECHSheet.pdf'),(52794,3474,'_assets_1_url','field_59ee320b02906'),(52795,3474,'assets','2'),(52796,3474,'_assets','field_59ee31bc02901'),(52797,3474,'varietal','Cabernet Sauvignon'),(52798,3474,'_varietal','field_59ee660ece2e7'),(52799,3474,'sub_brand',''),(52800,3474,'_sub_brand','field_59ee6623ce2e8'),(52801,3474,'vintage','2018'),(52802,3474,'_vintage','field_59ee6eba9a39a'),(52803,3474,'_yoast_wpseo_estimated-reading-time-minutes','1'),(52804,3474,'_yoast_wpseo_wordproof_timestamp',''),(52805,3475,'inline_featured_image','0'),(52806,3475,'_edit_lock','1715813931:3'),(52807,3475,'_edit_last','3'),(52808,3475,'allowed_customer_tag_titles','a:0:{}'),(52809,3475,'allowed_customer_club_titles','a:0:{}'),(52810,3475,'linked_brand','3399'),(52811,3475,'_linked_brand','field_59ee2d92496e9'),(52812,3475,'main_image','3471'),(52813,3475,'_main_image','field_59ee319d02900'),(52814,3475,'assets_0_text','Bottle Shot'),(52815,3475,'_assets_0_text','field_59ee31cc02902'),(52816,3475,'assets_0_file_or_url','url'),(52817,3475,'_assets_0_file_or_url','field_59ee31da02903'),(52818,3475,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_2019_WYLDVIN_CABERNET_Bottleshot.png'),(52819,3475,'_assets_0_url','field_59ee320b02906'),(52820,3475,'assets_1_text','Tech Sheet'),(52821,3475,'_assets_1_text','field_59ee31cc02902'),(52822,3475,'assets_1_file_or_url','url'),(52823,3475,'_assets_1_file_or_url','field_59ee31da02903'),(52824,3475,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-MC_DRYCREEKZIN_19_Techsheet.pdf'),(52825,3475,'_assets_1_url','field_59ee320b02906'),(52826,3475,'assets','2'),(52827,3475,'_assets','field_59ee31bc02901'),(52828,3475,'varietal','Cabernet Sauvignon'),(52829,3475,'_varietal','field_59ee660ece2e7'),(52830,3475,'sub_brand',''),(52831,3475,'_sub_brand','field_59ee6623ce2e8'),(52832,3475,'vintage','2019'),(52833,3475,'_vintage','field_59ee6eba9a39a'),(52834,3475,'_yoast_wpseo_estimated-reading-time-minutes','1'),(52835,3475,'_yoast_wpseo_wordproof_timestamp',''),(52836,3476,'inline_featured_image','0'),(52837,3476,'_edit_lock','1715813918:3'),(52838,3476,'_edit_last','3'),(52839,3476,'allowed_customer_tag_titles','a:0:{}'),(52840,3476,'allowed_customer_club_titles','a:0:{}'),(52841,3476,'linked_brand','3399'),(52842,3476,'_linked_brand','field_59ee2d92496e9'),(52843,3476,'main_image','3471'),(52844,3476,'_main_image','field_59ee319d02900'),(52845,3476,'assets_0_text','Bottle Shot'),(52846,3476,'_assets_0_text','field_59ee31cc02902'),(52847,3476,'assets_0_file_or_url','url'),(52848,3476,'_assets_0_file_or_url','field_59ee31da02903'),(52849,3476,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_2020_WYLDVIN_CABERNET_Bottleshot.png'),(52850,3476,'_assets_0_url','field_59ee320b02906'),(52851,3476,'assets_1_text','Tech Sheet'),(52852,3476,'_assets_1_text','field_59ee31cc02902'),(52853,3476,'assets_1_file_or_url','url'),(52854,3476,'_assets_1_file_or_url','field_59ee31da02903'),(52855,3476,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-MC_DRYCREEKZIN_20_Techsheet.pdf'),(52856,3476,'_assets_1_url','field_59ee320b02906'),(52857,3476,'assets','2'),(52858,3476,'_assets','field_59ee31bc02901'),(52859,3476,'varietal','Cabernet Sauvignon'),(52860,3476,'_varietal','field_59ee660ece2e7'),(52861,3476,'sub_brand',''),(52862,3476,'_sub_brand','field_59ee6623ce2e8'),(52863,3476,'vintage','2020'),(52864,3476,'_vintage','field_59ee6eba9a39a'),(52865,3476,'_yoast_wpseo_estimated-reading-time-minutes','1'),(52866,3476,'_yoast_wpseo_wordproof_timestamp',''),(52867,3477,'inline_featured_image','0'),(52868,3477,'_edit_lock','1715813859:3'),(52869,3477,'_edit_last','3'),(52870,3478,'_wp_attached_file','2024/03/Meadowcroft-Cab-Sauv-Nelson-Ranch-Mendocino-County-Bottleshot.png'),(52871,3478,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:73:\"2024/03/Meadowcroft-Cab-Sauv-Nelson-Ranch-Mendocino-County-Bottleshot.png\";s:8:\"filesize\";i:92557;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:73:\"Meadowcroft-Cab-Sauv-Nelson-Ranch-Mendocino-County-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23637;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:73:\"Meadowcroft-Cab-Sauv-Nelson-Ranch-Mendocino-County-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20721;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:73:\"Meadowcroft-Cab-Sauv-Nelson-Ranch-Mendocino-County-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58428;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:73:\"Meadowcroft-Cab-Sauv-Nelson-Ranch-Mendocino-County-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:81253;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:73:\"Meadowcroft-Cab-Sauv-Nelson-Ranch-Mendocino-County-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62110;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:73:\"Meadowcroft-Cab-Sauv-Nelson-Ranch-Mendocino-County-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51192;}s:8:\"tileview\";a:5:{s:4:\"file\";s:73:\"Meadowcroft-Cab-Sauv-Nelson-Ranch-Mendocino-County-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72251;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(52872,3478,'_wp_attachment_image_alt','Meadowcroft Cabernet Sauvignon Nelson Ranch Mendocino County'),(52873,3477,'allowed_customer_tag_titles','a:0:{}'),(52874,3477,'allowed_customer_club_titles','a:0:{}'),(52875,3477,'linked_brand','3399'),(52876,3477,'_linked_brand','field_59ee2d92496e9'),(52877,3477,'main_image','3478'),(52878,3477,'_main_image','field_59ee319d02900'),(52879,3477,'assets_0_text','Bottle Shot'),(52880,3477,'_assets_0_text','field_59ee31cc02902'),(52881,3477,'assets_0_file_or_url','url'),(52882,3477,'_assets_0_file_or_url','field_59ee31da02903'),(52883,3477,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_2015_CabSauv_Mendo.png'),(52884,3477,'_assets_0_url','field_59ee320b02906'),(52885,3477,'assets','1'),(52886,3477,'_assets','field_59ee31bc02901'),(52887,3477,'varietal','Cabernet Sauvignon'),(52888,3477,'_varietal','field_59ee660ece2e7'),(52889,3477,'sub_brand',''),(52890,3477,'_sub_brand','field_59ee6623ce2e8'),(52891,3477,'vintage','2015'),(52892,3477,'_vintage','field_59ee6eba9a39a'),(52893,3477,'_yoast_wpseo_estimated-reading-time-minutes','1'),(52894,3477,'_yoast_wpseo_wordproof_timestamp',''),(52895,3479,'inline_featured_image','0'),(52896,3479,'_edit_lock','1715813845:3'),(52897,3479,'_edit_last','3'),(52898,3479,'allowed_customer_tag_titles','a:0:{}'),(52899,3479,'allowed_customer_club_titles','a:0:{}'),(52900,3479,'linked_brand','3399'),(52901,3479,'_linked_brand','field_59ee2d92496e9'),(52902,3479,'main_image','3478'),(52903,3479,'_main_image','field_59ee319d02900'),(52904,3479,'assets_0_text','Bottle Shot'),(52905,3479,'_assets_0_text','field_59ee31cc02902'),(52906,3479,'assets_0_file_or_url','url'),(52907,3479,'_assets_0_file_or_url','field_59ee31da02903'),(52908,3479,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_2016_CabSauv_Mendo.png'),(52909,3479,'_assets_0_url','field_59ee320b02906'),(52910,3479,'assets','1'),(52911,3479,'_assets','field_59ee31bc02901'),(52912,3479,'varietal','Cabernet Sauvignon'),(52913,3479,'_varietal','field_59ee660ece2e7'),(52914,3479,'sub_brand',''),(52915,3479,'_sub_brand','field_59ee6623ce2e8'),(52916,3479,'vintage','2016'),(52917,3479,'_vintage','field_59ee6eba9a39a'),(52918,3479,'_yoast_wpseo_estimated-reading-time-minutes','1'),(52919,3479,'_yoast_wpseo_wordproof_timestamp',''),(52920,3480,'inline_featured_image','0'),(52921,3480,'_edit_lock','1715813832:3'),(52922,3480,'_edit_last','3'),(52923,3480,'allowed_customer_tag_titles','a:0:{}'),(52924,3480,'allowed_customer_club_titles','a:0:{}'),(52925,3480,'linked_brand','3399'),(52926,3480,'_linked_brand','field_59ee2d92496e9'),(52927,3480,'main_image','3478'),(52928,3480,'_main_image','field_59ee319d02900'),(52929,3480,'assets_0_text','Bottle Shot'),(52930,3480,'_assets_0_text','field_59ee31cc02902'),(52931,3480,'assets_0_file_or_url','url'),(52932,3480,'_assets_0_file_or_url','field_59ee31da02903'),(52933,3480,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_2017CabSauv_Mendocino_NelsonRanch.png'),(52934,3480,'_assets_0_url','field_59ee320b02906'),(52935,3480,'assets_1_text','Tech Sheet'),(52936,3480,'_assets_1_text','field_59ee31cc02902'),(52937,3480,'assets_1_file_or_url','url'),(52938,3480,'_assets_1_file_or_url','field_59ee31da02903'),(52939,3480,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017CabernetSauvignonMendoCo_TECHSheet.pdf'),(52940,3480,'_assets_1_url','field_59ee320b02906'),(52941,3480,'assets','2'),(52942,3480,'_assets','field_59ee31bc02901'),(52943,3480,'varietal','Cabernet Sauvignon'),(52944,3480,'_varietal','field_59ee660ece2e7'),(52945,3480,'sub_brand',''),(52946,3480,'_sub_brand','field_59ee6623ce2e8'),(52947,3480,'vintage','2017'),(52948,3480,'_vintage','field_59ee6eba9a39a'),(52949,3480,'_yoast_wpseo_estimated-reading-time-minutes','1'),(52950,3480,'_yoast_wpseo_wordproof_timestamp',''),(52951,3481,'inline_featured_image','0'),(52952,3481,'_edit_lock','1715813820:3'),(52953,3481,'_edit_last','3'),(52954,3481,'allowed_customer_tag_titles','a:0:{}'),(52955,3481,'allowed_customer_club_titles','a:0:{}'),(52956,3481,'linked_brand','3399'),(52957,3481,'_linked_brand','field_59ee2d92496e9'),(52958,3481,'main_image','3478'),(52959,3481,'_main_image','field_59ee319d02900'),(52960,3481,'assets_0_text','Bottle Shot'),(52961,3481,'_assets_0_text','field_59ee31cc02902'),(52962,3481,'assets_0_file_or_url','url'),(52963,3481,'_assets_0_file_or_url','field_59ee31da02903'),(52964,3481,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_2018CabSauv_Mendocino_NelsonRanch.png'),(52965,3481,'_assets_0_url','field_59ee320b02906'),(52966,3481,'assets_1_text','Tech Sheet'),(52967,3481,'_assets_1_text','field_59ee31cc02902'),(52968,3481,'assets_1_file_or_url','url'),(52969,3481,'_assets_1_file_or_url','field_59ee31da02903'),(52970,3481,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018CabernetSauvignonMendoCo_TECHSheet.pdf'),(52971,3481,'_assets_1_url','field_59ee320b02906'),(52972,3481,'assets','2'),(52973,3481,'_assets','field_59ee31bc02901'),(52974,3481,'varietal','Cabernet Sauvignon'),(52975,3481,'_varietal','field_59ee660ece2e7'),(52976,3481,'sub_brand',''),(52977,3481,'_sub_brand','field_59ee6623ce2e8'),(52978,3481,'vintage','2018'),(52979,3481,'_vintage','field_59ee6eba9a39a'),(52980,3481,'_yoast_wpseo_estimated-reading-time-minutes','1'),(52981,3481,'_yoast_wpseo_wordproof_timestamp',''),(52982,3482,'inline_featured_image','0'),(52983,3482,'_edit_lock','1715813808:3'),(52984,3482,'_edit_last','3'),(52985,3482,'allowed_customer_tag_titles','a:0:{}'),(52986,3482,'allowed_customer_club_titles','a:0:{}'),(52987,3482,'linked_brand','3399'),(52988,3482,'_linked_brand','field_59ee2d92496e9'),(52989,3482,'main_image','3478'),(52990,3482,'_main_image','field_59ee319d02900'),(52991,3482,'assets_0_text','Bottle Shot'),(52992,3482,'_assets_0_text','field_59ee31cc02902'),(52993,3482,'assets_0_file_or_url','url'),(52994,3482,'_assets_0_file_or_url','field_59ee31da02903'),(52995,3482,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/19_Cab_NelsonRanch_Mendo_Bottleshot.png'),(52996,3482,'_assets_0_url','field_59ee320b02906'),(52997,3482,'assets_1_text','Tech Sheet'),(52998,3482,'_assets_1_text','field_59ee31cc02902'),(52999,3482,'assets_1_file_or_url','url'),(53000,3482,'_assets_1_file_or_url','field_59ee31da02903'),(53001,3482,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/19_Cab_NelsonRanch_Mendo_Techsheet.pdf'),(53002,3482,'_assets_1_url','field_59ee320b02906'),(53003,3482,'assets','2'),(53004,3482,'_assets','field_59ee31bc02901'),(53005,3482,'varietal','Cabernet Sauvignon'),(53006,3482,'_varietal','field_59ee660ece2e7'),(53007,3482,'sub_brand',''),(53008,3482,'_sub_brand','field_59ee6623ce2e8'),(53009,3482,'vintage','2019'),(53010,3482,'_vintage','field_59ee6eba9a39a'),(53011,3482,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53012,3482,'_yoast_wpseo_wordproof_timestamp',''),(53032,3484,'inline_featured_image','0'),(53033,3484,'_edit_lock','1715813792:3'),(53034,3484,'_edit_last','3'),(53035,3484,'allowed_customer_tag_titles','a:0:{}'),(53036,3484,'allowed_customer_club_titles','a:0:{}'),(53037,3484,'linked_brand','3399'),(53038,3484,'_linked_brand','field_59ee2d92496e9'),(53039,3484,'main_image','3478'),(53040,3484,'_main_image','field_59ee319d02900'),(53041,3484,'assets_0_text','Bottle Shot'),(53042,3484,'_assets_0_text','field_59ee31cc02902'),(53043,3484,'assets_0_file_or_url','url'),(53044,3484,'_assets_0_file_or_url','field_59ee31da02903'),(53045,3484,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-Cab-NelsonRanch-scaled.jpg'),(53046,3484,'_assets_0_url','field_59ee320b02906'),(53047,3484,'assets_1_text','Tech Sheet'),(53048,3484,'_assets_1_text','field_59ee31cc02902'),(53049,3484,'assets_1_file_or_url','url'),(53050,3484,'_assets_1_file_or_url','field_59ee31da02903'),(53051,3484,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-Cab-NelsonRanch.pdf'),(53052,3484,'_assets_1_url','field_59ee320b02906'),(53053,3484,'assets','2'),(53054,3484,'_assets','field_59ee31bc02901'),(53055,3484,'varietal','Cabernet Sauvignon'),(53056,3484,'_varietal','field_59ee660ece2e7'),(53057,3484,'sub_brand',''),(53058,3484,'_sub_brand','field_59ee6623ce2e8'),(53059,3484,'vintage','2021'),(53060,3484,'_vintage','field_59ee6eba9a39a'),(53061,3484,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53062,3484,'_yoast_wpseo_wordproof_timestamp',''),(53063,3485,'inline_featured_image','0'),(53064,3485,'_edit_lock','1715813610:3'),(53065,3485,'_edit_last','3'),(53068,3487,'_wp_attached_file','2024/03/Meadowcroft-Red-Hills-Lake-County-Cabernet-Sauvignon-Bottleshot.png'),(53069,3487,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:75:\"2024/03/Meadowcroft-Red-Hills-Lake-County-Cabernet-Sauvignon-Bottleshot.png\";s:8:\"filesize\";i:94550;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:75:\"Meadowcroft-Red-Hills-Lake-County-Cabernet-Sauvignon-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24360;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:75:\"Meadowcroft-Red-Hills-Lake-County-Cabernet-Sauvignon-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21144;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:75:\"Meadowcroft-Red-Hills-Lake-County-Cabernet-Sauvignon-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59213;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:75:\"Meadowcroft-Red-Hills-Lake-County-Cabernet-Sauvignon-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82440;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:75:\"Meadowcroft-Red-Hills-Lake-County-Cabernet-Sauvignon-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63015;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:75:\"Meadowcroft-Red-Hills-Lake-County-Cabernet-Sauvignon-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52151;}s:8:\"tileview\";a:5:{s:4:\"file\";s:75:\"Meadowcroft-Red-Hills-Lake-County-Cabernet-Sauvignon-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73563;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(53070,3487,'_wp_attachment_image_alt','Meadowcroft Red Hills Lake County Cabernet Sauvignon'),(53071,3485,'allowed_customer_tag_titles','a:0:{}'),(53072,3485,'allowed_customer_club_titles','a:0:{}'),(53073,3485,'linked_brand','3399'),(53074,3485,'_linked_brand','field_59ee2d92496e9'),(53075,3485,'main_image','3487'),(53076,3485,'_main_image','field_59ee319d02900'),(53077,3485,'assets_0_text','Bottle Shot'),(53078,3485,'_assets_0_text','field_59ee31cc02902'),(53079,3485,'assets_0_file_or_url','url'),(53080,3485,'_assets_0_file_or_url','field_59ee31da02903'),(53081,3485,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_2020_WYLDVIN_CABERNET_Bottleshot-1.png'),(53082,3485,'_assets_0_url','field_59ee320b02906'),(53083,3485,'assets_1_text','Tech Sheet'),(53084,3485,'_assets_1_text','field_59ee31cc02902'),(53085,3485,'assets_1_file_or_url','url'),(53086,3485,'_assets_1_file_or_url','field_59ee31da02903'),(53087,3485,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2020CabernetSauvignonRedHills_TECHSheet.pdf'),(53088,3485,'_assets_1_url','field_59ee320b02906'),(53089,3485,'assets','2'),(53090,3485,'_assets','field_59ee31bc02901'),(53091,3485,'varietal','Cabernet Sauvignon'),(53092,3485,'_varietal','field_59ee660ece2e7'),(53093,3485,'sub_brand',''),(53094,3485,'_sub_brand','field_59ee6623ce2e8'),(53095,3485,'vintage','2020'),(53096,3485,'_vintage','field_59ee6eba9a39a'),(53097,3485,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53098,3485,'_yoast_wpseo_wordproof_timestamp',''),(53099,3488,'inline_featured_image','0'),(53100,3488,'_edit_lock','1715813681:3'),(53101,3488,'_edit_last','3'),(53102,3489,'_wp_attached_file','2024/03/Meadowcroft-River-Trace-Grenache-Syrah-Mourvedre-Bottleshot.png'),(53103,3489,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:71:\"2024/03/Meadowcroft-River-Trace-Grenache-Syrah-Mourvedre-Bottleshot.png\";s:8:\"filesize\";i:93665;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:71:\"Meadowcroft-River-Trace-Grenache-Syrah-Mourvedre-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25326;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:71:\"Meadowcroft-River-Trace-Grenache-Syrah-Mourvedre-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15193;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:71:\"Meadowcroft-River-Trace-Grenache-Syrah-Mourvedre-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46088;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:71:\"Meadowcroft-River-Trace-Grenache-Syrah-Mourvedre-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82292;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:71:\"Meadowcroft-River-Trace-Grenache-Syrah-Mourvedre-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49854;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:71:\"Meadowcroft-River-Trace-Grenache-Syrah-Mourvedre-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38783;}s:8:\"tileview\";a:5:{s:4:\"file\";s:71:\"Meadowcroft-River-Trace-Grenache-Syrah-Mourvedre-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64589;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(53104,3489,'_wp_attachment_image_alt','Meadowcroft River Trace Grenache Syrah Mourvedre'),(53105,3488,'allowed_customer_tag_titles','a:0:{}'),(53106,3488,'allowed_customer_club_titles','a:0:{}'),(53107,3488,'linked_brand','3399'),(53108,3488,'_linked_brand','field_59ee2d92496e9'),(53109,3488,'main_image','3489'),(53110,3488,'_main_image','field_59ee319d02900'),(53111,3488,'assets_0_text','Bottle Shot'),(53112,3488,'_assets_0_text','field_59ee31cc02902'),(53113,3488,'assets_0_file_or_url','url'),(53114,3488,'_assets_0_file_or_url','field_59ee31da02903'),(53115,3488,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-River-Trace-2016.png'),(53116,3488,'_assets_0_url','field_59ee320b02906'),(53117,3488,'assets_1_text','Tech Sheet'),(53118,3488,'_assets_1_text','field_59ee31cc02902'),(53119,3488,'assets_1_file_or_url','url'),(53120,3488,'_assets_1_file_or_url','field_59ee31da02903'),(53121,3488,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2016_River-Trace_ChalkHill_GSM_TECHSheet.pdf'),(53122,3488,'_assets_1_url','field_59ee320b02906'),(53123,3488,'assets','2'),(53124,3488,'_assets','field_59ee31bc02901'),(53125,3488,'varietal','GSM'),(53126,3488,'_varietal','field_59ee660ece2e7'),(53127,3488,'sub_brand',''),(53128,3488,'_sub_brand','field_59ee6623ce2e8'),(53129,3488,'vintage','2016'),(53130,3488,'_vintage','field_59ee6eba9a39a'),(53132,3488,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53133,3488,'_yoast_wpseo_wordproof_timestamp',''),(53134,3490,'inline_featured_image','0'),(53135,3490,'_edit_lock','1715813669:3'),(53136,3490,'_edit_last','3'),(53137,3490,'allowed_customer_tag_titles','a:0:{}'),(53138,3490,'allowed_customer_club_titles','a:0:{}'),(53139,3490,'linked_brand','3399'),(53140,3490,'_linked_brand','field_59ee2d92496e9'),(53141,3490,'main_image','3489'),(53142,3490,'_main_image','field_59ee319d02900'),(53143,3490,'assets_0_text','Bottle Shot'),(53144,3490,'_assets_0_text','field_59ee31cc02902'),(53145,3490,'assets_0_file_or_url','url'),(53146,3490,'_assets_0_file_or_url','field_59ee31da02903'),(53147,3490,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-River-Trace-2017.png'),(53148,3490,'_assets_0_url','field_59ee320b02906'),(53149,3490,'assets_1_text','Tech Sheet'),(53150,3490,'_assets_1_text','field_59ee31cc02902'),(53151,3490,'assets_1_file_or_url','url'),(53152,3490,'_assets_1_file_or_url','field_59ee31da02903'),(53153,3490,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017_River-Trace_ChalkHill_GSM_TECHSheet.pdf'),(53154,3490,'_assets_1_url','field_59ee320b02906'),(53155,3490,'assets','2'),(53156,3490,'_assets','field_59ee31bc02901'),(53157,3490,'varietal','GSM'),(53158,3490,'_varietal','field_59ee660ece2e7'),(53159,3490,'sub_brand',''),(53160,3490,'_sub_brand','field_59ee6623ce2e8'),(53161,3490,'vintage','2017'),(53162,3490,'_vintage','field_59ee6eba9a39a'),(53164,3490,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53165,3490,'_yoast_wpseo_wordproof_timestamp',''),(53166,3491,'inline_featured_image','0'),(53167,3491,'_edit_lock','1715813658:3'),(53168,3491,'_edit_last','3'),(53169,3491,'allowed_customer_tag_titles','a:0:{}'),(53170,3491,'allowed_customer_club_titles','a:0:{}'),(53171,3491,'linked_brand','3399'),(53172,3491,'_linked_brand','field_59ee2d92496e9'),(53173,3491,'main_image','3489'),(53174,3491,'_main_image','field_59ee319d02900'),(53175,3491,'assets_0_text','Bottle Shot'),(53176,3491,'_assets_0_text','field_59ee31cc02902'),(53177,3491,'assets_0_file_or_url','url'),(53178,3491,'_assets_0_file_or_url','field_59ee31da02903'),(53179,3491,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-River-Trace-2019.png'),(53180,3491,'_assets_0_url','field_59ee320b02906'),(53181,3491,'assets_1_text','Tech Sheet'),(53182,3491,'_assets_1_text','field_59ee31cc02902'),(53183,3491,'assets_1_file_or_url','url'),(53184,3491,'_assets_1_file_or_url','field_59ee31da02903'),(53185,3491,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2019_River-Trace_ChalkHill_GSM_TECHSheet.pdf'),(53186,3491,'_assets_1_url','field_59ee320b02906'),(53187,3491,'assets','2'),(53188,3491,'_assets','field_59ee31bc02901'),(53189,3491,'varietal','GSM'),(53190,3491,'_varietal','field_59ee660ece2e7'),(53191,3491,'sub_brand',''),(53192,3491,'_sub_brand','field_59ee6623ce2e8'),(53193,3491,'vintage','2019'),(53194,3491,'_vintage','field_59ee6eba9a39a'),(53196,3491,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53197,3491,'_yoast_wpseo_wordproof_timestamp',''),(53198,3492,'inline_featured_image','0'),(53199,3492,'_edit_lock','1715813647:3'),(53200,3492,'_edit_last','3'),(53201,3492,'allowed_customer_tag_titles','a:0:{}'),(53202,3492,'allowed_customer_club_titles','a:0:{}'),(53203,3492,'linked_brand','3399'),(53204,3492,'_linked_brand','field_59ee2d92496e9'),(53205,3492,'main_image','3489'),(53206,3492,'_main_image','field_59ee319d02900'),(53207,3492,'assets_0_text','Bottle Shot'),(53208,3492,'_assets_0_text','field_59ee31cc02902'),(53209,3492,'assets_0_file_or_url','url'),(53210,3492,'_assets_0_file_or_url','field_59ee31da02903'),(53211,3492,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-River-Trace-2020_Bottleshot.png'),(53212,3492,'_assets_0_url','field_59ee320b02906'),(53213,3492,'assets_1_text','Tech Sheet'),(53214,3492,'_assets_1_text','field_59ee31cc02902'),(53215,3492,'assets_1_file_or_url','url'),(53216,3492,'_assets_1_file_or_url','field_59ee31da02903'),(53217,3492,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2020_River-Trace_CA_GSM_TECHSheet.pdf'),(53218,3492,'_assets_1_url','field_59ee320b02906'),(53219,3492,'assets','2'),(53220,3492,'_assets','field_59ee31bc02901'),(53221,3492,'varietal','GSM'),(53222,3492,'_varietal','field_59ee660ece2e7'),(53223,3492,'sub_brand',''),(53224,3492,'_sub_brand','field_59ee6623ce2e8'),(53225,3492,'vintage','2020'),(53226,3492,'_vintage','field_59ee6eba9a39a'),(53228,3492,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53229,3492,'_yoast_wpseo_wordproof_timestamp',''),(53230,3493,'inline_featured_image','0'),(53231,3493,'_edit_lock','1715813632:3'),(53232,3493,'_edit_last','3'),(53233,3493,'allowed_customer_tag_titles','a:0:{}'),(53234,3493,'allowed_customer_club_titles','a:0:{}'),(53235,3493,'linked_brand','3399'),(53236,3493,'_linked_brand','field_59ee2d92496e9'),(53237,3493,'main_image','3489'),(53238,3493,'_main_image','field_59ee319d02900'),(53239,3493,'assets_0_text','Bottle Shot'),(53240,3493,'_assets_0_text','field_59ee31cc02902'),(53241,3493,'assets_0_file_or_url','url'),(53242,3493,'_assets_0_file_or_url','field_59ee31da02903'),(53243,3493,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-GSM-Screen-scaled.jpg'),(53244,3493,'_assets_0_url','field_59ee320b02906'),(53245,3493,'assets_1_text','Tech Sheet'),(53246,3493,'_assets_1_text','field_59ee31cc02902'),(53247,3493,'assets_1_file_or_url','url'),(53248,3493,'_assets_1_file_or_url','field_59ee31da02903'),(53249,3493,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-GSM-techsheet.pdf'),(53250,3493,'_assets_1_url','field_59ee320b02906'),(53251,3493,'assets','2'),(53252,3493,'_assets','field_59ee31bc02901'),(53253,3493,'varietal','GSM'),(53254,3493,'_varietal','field_59ee660ece2e7'),(53255,3493,'sub_brand',''),(53256,3493,'_sub_brand','field_59ee6623ce2e8'),(53257,3493,'vintage','2021'),(53258,3493,'_vintage','field_59ee6eba9a39a'),(53260,3493,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53261,3493,'_yoast_wpseo_wordproof_timestamp',''),(53262,3494,'inline_featured_image','0'),(53263,3494,'_edit_lock','1715813592:3'),(53264,3494,'_edit_last','3'),(53265,3495,'_wp_attached_file','2024/03/Meadowcroft-Anniversary-Cuvee-NV-Napa-Valley-Bottleshot.png'),(53266,3495,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:67:\"2024/03/Meadowcroft-Anniversary-Cuvee-NV-Napa-Valley-Bottleshot.png\";s:8:\"filesize\";i:62515;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:67:\"Meadowcroft-Anniversary-Cuvee-NV-Napa-Valley-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19737;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:67:\"Meadowcroft-Anniversary-Cuvee-NV-Napa-Valley-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17157;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:67:\"Meadowcroft-Anniversary-Cuvee-NV-Napa-Valley-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36663;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:67:\"Meadowcroft-Anniversary-Cuvee-NV-Napa-Valley-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54963;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:67:\"Meadowcroft-Anniversary-Cuvee-NV-Napa-Valley-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38725;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:67:\"Meadowcroft-Anniversary-Cuvee-NV-Napa-Valley-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31889;}s:8:\"tileview\";a:5:{s:4:\"file\";s:67:\"Meadowcroft-Anniversary-Cuvee-NV-Napa-Valley-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47135;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(53267,3495,'_wp_attachment_image_alt','Meadowcroft Anniversary Cuvee NV Napa Valley'),(53268,3494,'allowed_customer_tag_titles','a:0:{}'),(53269,3494,'allowed_customer_club_titles','a:0:{}'),(53270,3494,'linked_brand','3399'),(53271,3494,'_linked_brand','field_59ee2d92496e9'),(53272,3494,'main_image','3495'),(53273,3494,'_main_image','field_59ee319d02900'),(53274,3494,'assets_0_text','Bottle Shot'),(53275,3494,'_assets_0_text','field_59ee31cc02902'),(53276,3494,'assets_0_file_or_url','url'),(53277,3494,'_assets_0_file_or_url','field_59ee31da02903'),(53278,3494,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/NV-AnnivCuvee20yr-scaled.jpg'),(53279,3494,'_assets_0_url','field_59ee320b02906'),(53280,3494,'assets_1_text','Tech Sheet'),(53281,3494,'_assets_1_text','field_59ee31cc02902'),(53282,3494,'assets_1_file_or_url','url'),(53283,3494,'_assets_1_file_or_url','field_59ee31da02903'),(53284,3494,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/NV-AnivCuvee20YR-TechSheet.pdf'),(53285,3494,'_assets_1_url','field_59ee320b02906'),(53286,3494,'assets','2'),(53287,3494,'_assets','field_59ee31bc02901'),(53288,3494,'varietal','Red Blend'),(53289,3494,'_varietal','field_59ee660ece2e7'),(53290,3494,'sub_brand',''),(53291,3494,'_sub_brand','field_59ee6623ce2e8'),(53292,3494,'vintage','2026'),(53293,3494,'_vintage','field_59ee6eba9a39a'),(53294,3494,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53295,3494,'_yoast_wpseo_wordproof_timestamp',''),(53297,3497,'inline_featured_image','0'),(53298,3497,'_edit_lock','1715813578:3'),(53299,3497,'_edit_last','3'),(53300,3498,'_wp_attached_file','2024/03/Meadowcroft-Napa-Valley-Panorama-Red-Blend-Stags-Leap-District.png'),(53301,3498,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:74:\"2024/03/Meadowcroft-Napa-Valley-Panorama-Red-Blend-Stags-Leap-District.png\";s:8:\"filesize\";i:95329;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:74:\"Meadowcroft-Napa-Valley-Panorama-Red-Blend-Stags-Leap-District-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24173;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:74:\"Meadowcroft-Napa-Valley-Panorama-Red-Blend-Stags-Leap-District-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21125;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:74:\"Meadowcroft-Napa-Valley-Panorama-Red-Blend-Stags-Leap-District-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58855;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:74:\"Meadowcroft-Napa-Valley-Panorama-Red-Blend-Stags-Leap-District-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82561;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:74:\"Meadowcroft-Napa-Valley-Panorama-Red-Blend-Stags-Leap-District-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62948;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:74:\"Meadowcroft-Napa-Valley-Panorama-Red-Blend-Stags-Leap-District-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52301;}s:8:\"tileview\";a:5:{s:4:\"file\";s:74:\"Meadowcroft-Napa-Valley-Panorama-Red-Blend-Stags-Leap-District-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73663;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(53302,3498,'_wp_attachment_image_alt','Meadowcroft Napa Valley Panorama Red Blend Stag\'s Leap District'),(53303,3497,'allowed_customer_tag_titles','a:0:{}'),(53304,3497,'allowed_customer_club_titles','a:0:{}'),(53305,3497,'linked_brand','3399'),(53306,3497,'_linked_brand','field_59ee2d92496e9'),(53307,3497,'main_image','3498'),(53308,3497,'_main_image','field_59ee319d02900'),(53309,3497,'assets_0_text','Bottle Shot'),(53310,3497,'_assets_0_text','field_59ee31cc02902'),(53311,3497,'assets_0_file_or_url','url'),(53312,3497,'_assets_0_file_or_url','field_59ee31da02903'),(53313,3497,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/2017_ThePanorama_StagsLeapDistrict_Napa_RedBlend.png'),(53314,3497,'_assets_0_url','field_59ee320b02906'),(53315,3497,'assets_1_text','Tech Sheet'),(53316,3497,'_assets_1_text','field_59ee31cc02902'),(53317,3497,'assets_1_file_or_url','url'),(53318,3497,'_assets_1_file_or_url','field_59ee31da02903'),(53319,3497,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2017_StagsLeapDistrcit_ThePanorama_MC_v1.pdf'),(53320,3497,'_assets_1_url','field_59ee320b02906'),(53321,3497,'assets','2'),(53322,3497,'_assets','field_59ee31bc02901'),(53323,3497,'varietal','Red Blend'),(53324,3497,'_varietal','field_59ee660ece2e7'),(53325,3497,'sub_brand',''),(53326,3497,'_sub_brand','field_59ee6623ce2e8'),(53327,3497,'vintage','2017'),(53328,3497,'_vintage','field_59ee6eba9a39a'),(53329,3497,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53330,3497,'_yoast_wpseo_wordproof_timestamp',''),(53331,3499,'inline_featured_image','0'),(53332,3499,'_edit_lock','1715813554:3'),(53333,3499,'_edit_last','3'),(53334,3500,'_wp_attached_file','2024/03/Meadowcroft-Napa-Valley-Panorama-Red-Blend-Bottleshot.png'),(53335,3500,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:65:\"2024/03/Meadowcroft-Napa-Valley-Panorama-Red-Blend-Bottleshot.png\";s:8:\"filesize\";i:100964;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:65:\"Meadowcroft-Napa-Valley-Panorama-Red-Blend-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26097;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:65:\"Meadowcroft-Napa-Valley-Panorama-Red-Blend-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23130;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:65:\"Meadowcroft-Napa-Valley-Panorama-Red-Blend-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61484;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:65:\"Meadowcroft-Napa-Valley-Panorama-Red-Blend-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:86670;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:65:\"Meadowcroft-Napa-Valley-Panorama-Red-Blend-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:65634;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:65:\"Meadowcroft-Napa-Valley-Panorama-Red-Blend-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54782;}s:8:\"tileview\";a:5:{s:4:\"file\";s:65:\"Meadowcroft-Napa-Valley-Panorama-Red-Blend-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:76864;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(53336,3500,'_wp_attachment_image_alt','Meadowcroft Napa Valley Panorama Red Blend'),(53337,3499,'allowed_customer_tag_titles','a:0:{}'),(53338,3499,'allowed_customer_club_titles','a:0:{}'),(53339,3499,'linked_brand','3399'),(53340,3499,'_linked_brand','field_59ee2d92496e9'),(53341,3499,'main_image','3500'),(53342,3499,'_main_image','field_59ee319d02900'),(53343,3499,'assets_0_text','Bottle Shot'),(53344,3499,'_assets_0_text','field_59ee31cc02902'),(53345,3499,'assets_0_file_or_url','url'),(53346,3499,'_assets_0_file_or_url','field_59ee31da02903'),(53347,3499,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/17ThePanorama_1.png'),(53348,3499,'_assets_0_url','field_59ee320b02906'),(53349,3499,'assets_1_text','Tech Sheet'),(53350,3499,'_assets_1_text','field_59ee31cc02902'),(53351,3499,'assets_1_file_or_url','url'),(53352,3499,'_assets_1_file_or_url','field_59ee31da02903'),(53353,3499,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2017_Panorama_NV_CabSauvBlend_v1.pdf'),(53354,3499,'_assets_1_url','field_59ee320b02906'),(53355,3499,'assets','2'),(53356,3499,'_assets','field_59ee31bc02901'),(53357,3499,'varietal','Red Blend'),(53358,3499,'_varietal','field_59ee660ece2e7'),(53359,3499,'sub_brand',''),(53360,3499,'_sub_brand','field_59ee6623ce2e8'),(53361,3499,'vintage','2017'),(53362,3499,'_vintage','field_59ee6eba9a39a'),(53363,3499,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53364,3499,'_yoast_wpseo_wordproof_timestamp',''),(53365,3501,'inline_featured_image','0'),(53366,3501,'_edit_lock','1715813518:3'),(53367,3501,'_edit_last','3'),(53368,3502,'_wp_attached_file','2024/03/Meadowcroft-Speedy-Creek-Zinfandel-Bottleshot.png'),(53369,3502,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:57:\"2024/03/Meadowcroft-Speedy-Creek-Zinfandel-Bottleshot.png\";s:8:\"filesize\";i:90071;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-Speedy-Creek-Zinfandel-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24111;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-Speedy-Creek-Zinfandel-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20146;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-Speedy-Creek-Zinfandel-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55513;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-Speedy-Creek-Zinfandel-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78026;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-Speedy-Creek-Zinfandel-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59301;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-Speedy-Creek-Zinfandel-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48752;}s:8:\"tileview\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-Speedy-Creek-Zinfandel-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69238;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(53370,3502,'_wp_attachment_image_alt','Meadowcroft Speedy Creek Zinfandel'),(53371,3501,'allowed_customer_tag_titles','a:0:{}'),(53372,3501,'allowed_customer_club_titles','a:0:{}'),(53373,3501,'linked_brand','3399'),(53374,3501,'_linked_brand','field_59ee2d92496e9'),(53375,3501,'main_image','3502'),(53376,3501,'_main_image','field_59ee319d02900'),(53377,3501,'assets_0_text','Bottle Shot'),(53378,3501,'_assets_0_text','field_59ee31cc02902'),(53379,3501,'assets_0_file_or_url','url'),(53380,3501,'_assets_0_file_or_url','field_59ee31da02903'),(53381,3501,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/2010_MC_Zinfandel-lg.png'),(53382,3501,'_assets_0_url','field_59ee320b02906'),(53383,3501,'assets_1_text','Tech Sheet'),(53384,3501,'_assets_1_text','field_59ee31cc02902'),(53385,3501,'assets_1_file_or_url','url'),(53386,3501,'_assets_1_file_or_url','field_59ee31da02903'),(53387,3501,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/TastingSheet-2011-Meadowcroft-Zinfandel.pdf'),(53388,3501,'_assets_1_url','field_59ee320b02906'),(53389,3501,'assets','2'),(53390,3501,'_assets','field_59ee31bc02901'),(53391,3501,'varietal','Zinfandel'),(53392,3501,'_varietal','field_59ee660ece2e7'),(53393,3501,'sub_brand',''),(53394,3501,'_sub_brand','field_59ee6623ce2e8'),(53395,3501,'vintage','2010'),(53396,3501,'_vintage','field_59ee6eba9a39a'),(53397,3501,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53398,3501,'_yoast_wpseo_wordproof_timestamp',''),(53399,3503,'inline_featured_image','0'),(53400,3503,'_edit_lock','1715813505:3'),(53401,3503,'_edit_last','3'),(53402,3503,'allowed_customer_tag_titles','a:0:{}'),(53403,3503,'allowed_customer_club_titles','a:0:{}'),(53404,3503,'linked_brand','3399'),(53405,3503,'_linked_brand','field_59ee2d92496e9'),(53406,3503,'main_image','3502'),(53407,3503,'_main_image','field_59ee319d02900'),(53408,3503,'assets_0_text','Bottle Shot'),(53409,3503,'_assets_0_text','field_59ee31cc02902'),(53410,3503,'assets_0_file_or_url','url'),(53411,3503,'_assets_0_file_or_url','field_59ee31da02903'),(53412,3503,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/2011_MC_KnightsValley_Zinfandel.png'),(53413,3503,'_assets_0_url','field_59ee320b02906'),(53414,3503,'assets_1_text','Tech Sheet'),(53415,3503,'_assets_1_text','field_59ee31cc02902'),(53416,3503,'assets_1_file_or_url','url'),(53417,3503,'_assets_1_file_or_url','field_59ee31da02903'),(53418,3503,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/TastingSheet-2010-Meadowcroft-Son-Zinfandel.pdf'),(53419,3503,'_assets_1_url','field_59ee320b02906'),(53420,3503,'assets','2'),(53421,3503,'_assets','field_59ee31bc02901'),(53422,3503,'varietal','Zinfandel'),(53423,3503,'_varietal','field_59ee660ece2e7'),(53424,3503,'sub_brand',''),(53425,3503,'_sub_brand','field_59ee6623ce2e8'),(53426,3503,'vintage','2011'),(53427,3503,'_vintage','field_59ee6eba9a39a'),(53428,3503,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53429,3503,'_yoast_wpseo_wordproof_timestamp',''),(53430,3504,'inline_featured_image','0'),(53431,3504,'_edit_lock','1715813493:3'),(53432,3504,'_edit_last','3'),(53433,3504,'allowed_customer_tag_titles','a:0:{}'),(53434,3504,'allowed_customer_club_titles','a:0:{}'),(53435,3504,'linked_brand','3399'),(53436,3504,'_linked_brand','field_59ee2d92496e9'),(53437,3504,'main_image','3502'),(53438,3504,'_main_image','field_59ee319d02900'),(53439,3504,'assets_0_text','Bottle Shot'),(53440,3504,'_assets_0_text','field_59ee31cc02902'),(53441,3504,'assets_0_file_or_url','url'),(53442,3504,'_assets_0_file_or_url','field_59ee31da02903'),(53443,3504,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_Zin_Speedy_12-scaled-1.png'),(53444,3504,'_assets_0_url','field_59ee320b02906'),(53445,3504,'assets_1_text','Tech Sheet'),(53446,3504,'_assets_1_text','field_59ee31cc02902'),(53447,3504,'assets_1_file_or_url','url'),(53448,3504,'_assets_1_file_or_url','field_59ee31da02903'),(53449,3504,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2012_Speedy-Creek-Zin_Tasting-Notes.pdf'),(53450,3504,'_assets_1_url','field_59ee320b02906'),(53451,3504,'assets','2'),(53452,3504,'_assets','field_59ee31bc02901'),(53453,3504,'varietal','Zinfandel'),(53454,3504,'_varietal','field_59ee660ece2e7'),(53455,3504,'sub_brand',''),(53456,3504,'_sub_brand','field_59ee6623ce2e8'),(53457,3504,'vintage','2012'),(53458,3504,'_vintage','field_59ee6eba9a39a'),(53459,3504,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53460,3504,'_yoast_wpseo_wordproof_timestamp',''),(53461,3505,'inline_featured_image','0'),(53462,3505,'_edit_lock','1715813481:3'),(53463,3505,'_edit_last','3'),(53464,3505,'allowed_customer_tag_titles','a:0:{}'),(53465,3505,'allowed_customer_club_titles','a:0:{}'),(53466,3505,'linked_brand','3399'),(53467,3505,'_linked_brand','field_59ee2d92496e9'),(53468,3505,'main_image','3502'),(53469,3505,'_main_image','field_59ee319d02900'),(53470,3505,'assets_0_text','Bottle Shot'),(53471,3505,'_assets_0_text','field_59ee31cc02902'),(53472,3505,'assets_0_file_or_url','url'),(53473,3505,'_assets_0_file_or_url','field_59ee31da02903'),(53474,3505,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_Zin_Speedy_13.png'),(53475,3505,'_assets_0_url','field_59ee320b02906'),(53476,3505,'assets_1_text','Tech Sheet'),(53477,3505,'_assets_1_text','field_59ee31cc02902'),(53478,3505,'assets_1_file_or_url','url'),(53479,3505,'_assets_1_file_or_url','field_59ee31da02903'),(53480,3505,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2013SpeedyCreekZin_TECHSheet.pdf'),(53481,3505,'_assets_1_url','field_59ee320b02906'),(53482,3505,'assets','2'),(53483,3505,'_assets','field_59ee31bc02901'),(53484,3505,'varietal','Zinfandel'),(53485,3505,'_varietal','field_59ee660ece2e7'),(53486,3505,'sub_brand',''),(53487,3505,'_sub_brand','field_59ee6623ce2e8'),(53488,3505,'vintage','2013'),(53489,3505,'_vintage','field_59ee6eba9a39a'),(53490,3505,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53491,3505,'_yoast_wpseo_wordproof_timestamp',''),(53492,3506,'inline_featured_image','0'),(53493,3506,'_edit_lock','1715813470:3'),(53494,3506,'_edit_last','3'),(53495,3506,'allowed_customer_tag_titles','a:0:{}'),(53496,3506,'allowed_customer_club_titles','a:0:{}'),(53497,3506,'linked_brand','3399'),(53498,3506,'_linked_brand','field_59ee2d92496e9'),(53499,3506,'main_image','3502'),(53500,3506,'_main_image','field_59ee319d02900'),(53501,3506,'assets_0_text','Bottle Shot'),(53502,3506,'_assets_0_text','field_59ee31cc02902'),(53503,3506,'assets_0_file_or_url','url'),(53504,3506,'_assets_0_file_or_url','field_59ee31da02903'),(53505,3506,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_Zinfandel_2014_SpeedyCreek.png'),(53506,3506,'_assets_0_url','field_59ee320b02906'),(53507,3506,'assets_1_text','Tech Sheet'),(53508,3506,'_assets_1_text','field_59ee31cc02902'),(53509,3506,'assets_1_file_or_url','url'),(53510,3506,'_assets_1_file_or_url','field_59ee31da02903'),(53511,3506,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2014_SpeedyCreek_Zin_TECHSheet.pdf'),(53512,3506,'_assets_1_url','field_59ee320b02906'),(53513,3506,'assets','2'),(53514,3506,'_assets','field_59ee31bc02901'),(53515,3506,'varietal','Zinfandel'),(53516,3506,'_varietal','field_59ee660ece2e7'),(53517,3506,'sub_brand',''),(53518,3506,'_sub_brand','field_59ee6623ce2e8'),(53519,3506,'vintage','2014'),(53520,3506,'_vintage','field_59ee6eba9a39a'),(53521,3506,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53522,3506,'_yoast_wpseo_wordproof_timestamp',''),(53523,3507,'inline_featured_image','0'),(53524,3507,'_edit_lock','1715813452:3'),(53525,3507,'_edit_last','3'),(53526,3507,'allowed_customer_tag_titles','a:0:{}'),(53527,3507,'allowed_customer_club_titles','a:0:{}'),(53528,3507,'linked_brand','3399'),(53529,3507,'_linked_brand','field_59ee2d92496e9'),(53530,3507,'main_image','3502'),(53531,3507,'_main_image','field_59ee319d02900'),(53532,3507,'assets_0_text','Bottle Shot'),(53533,3507,'_assets_0_text','field_59ee31cc02902'),(53534,3507,'assets_0_file_or_url','url'),(53535,3507,'_assets_0_file_or_url','field_59ee31da02903'),(53536,3507,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_Zinfandel_2018_SpeedyCreek.png'),(53537,3507,'_assets_0_url','field_59ee320b02906'),(53538,3507,'assets_1_text','Tech Sheet'),(53539,3507,'_assets_1_text','field_59ee31cc02902'),(53540,3507,'assets_1_file_or_url','url'),(53541,3507,'_assets_1_file_or_url','field_59ee31da02903'),(53542,3507,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018_SpeedyCreek_Zin_TECHSheet-1.pdf'),(53543,3507,'_assets_1_url','field_59ee320b02906'),(53544,3507,'assets','2'),(53545,3507,'_assets','field_59ee31bc02901'),(53546,3507,'varietal','Zinfandel'),(53547,3507,'_varietal','field_59ee660ece2e7'),(53548,3507,'sub_brand',''),(53549,3507,'_sub_brand','field_59ee6623ce2e8'),(53550,3507,'vintage','2018'),(53551,3507,'_vintage','field_59ee6eba9a39a'),(53552,3507,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53553,3507,'_yoast_wpseo_wordproof_timestamp',''),(53554,3508,'inline_featured_image','0'),(53555,3508,'_edit_lock','1715813430:3'),(53556,3508,'_edit_last','3'),(53557,3508,'allowed_customer_tag_titles','a:0:{}'),(53558,3508,'allowed_customer_club_titles','a:0:{}'),(53559,3508,'linked_brand','3399'),(53560,3508,'_linked_brand','field_59ee2d92496e9'),(53561,3508,'main_image','3502'),(53562,3508,'_main_image','field_59ee319d02900'),(53563,3508,'assets_0_text','Bottle Shot'),(53564,3508,'_assets_0_text','field_59ee31cc02902'),(53565,3508,'assets_0_file_or_url','url'),(53566,3508,'_assets_0_file_or_url','field_59ee31da02903'),(53567,3508,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_Zinfandel_2019_SpeedyCreek-1.png'),(53568,3508,'_assets_0_url','field_59ee320b02906'),(53569,3508,'assets','1'),(53570,3508,'_assets','field_59ee31bc02901'),(53571,3508,'varietal','Zinfandel'),(53572,3508,'_varietal','field_59ee660ece2e7'),(53573,3508,'sub_brand',''),(53574,3508,'_sub_brand','field_59ee6623ce2e8'),(53575,3508,'vintage','2019'),(53576,3508,'_vintage','field_59ee6eba9a39a'),(53577,3508,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53578,3508,'_yoast_wpseo_wordproof_timestamp',''),(53579,3509,'inline_featured_image','0'),(53580,3509,'_edit_lock','1715813234:3'),(53581,3509,'_edit_last','3'),(53582,3510,'_wp_attached_file','2024/03/Meadowcroft-Mae-Vineyard-Dry-Creek-Valley-Zinfandel-Bottleshot.png'),(53583,3510,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:74:\"2024/03/Meadowcroft-Mae-Vineyard-Dry-Creek-Valley-Zinfandel-Bottleshot.png\";s:8:\"filesize\";i:91143;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:74:\"Meadowcroft-Mae-Vineyard-Dry-Creek-Valley-Zinfandel-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23056;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:74:\"Meadowcroft-Mae-Vineyard-Dry-Creek-Valley-Zinfandel-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20664;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:74:\"Meadowcroft-Mae-Vineyard-Dry-Creek-Valley-Zinfandel-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56253;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:74:\"Meadowcroft-Mae-Vineyard-Dry-Creek-Valley-Zinfandel-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79471;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:74:\"Meadowcroft-Mae-Vineyard-Dry-Creek-Valley-Zinfandel-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60248;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:74:\"Meadowcroft-Mae-Vineyard-Dry-Creek-Valley-Zinfandel-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49486;}s:8:\"tileview\";a:5:{s:4:\"file\";s:74:\"Meadowcroft-Mae-Vineyard-Dry-Creek-Valley-Zinfandel-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70536;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(53584,3510,'_wp_attachment_image_alt','Meadowcroft Mae Vineyard Dry Creek Valley Zinfandel'),(53585,3509,'allowed_customer_tag_titles','a:0:{}'),(53586,3509,'allowed_customer_club_titles','a:0:{}'),(53587,3509,'linked_brand','3399'),(53588,3509,'_linked_brand','field_59ee2d92496e9'),(53589,3509,'main_image','3510'),(53590,3509,'_main_image','field_59ee319d02900'),(53591,3509,'assets_0_text','Bottle Shot'),(53592,3509,'_assets_0_text','field_59ee31cc02902'),(53593,3509,'assets_0_file_or_url','url'),(53594,3509,'_assets_0_file_or_url','field_59ee31da02903'),(53595,3509,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-MC_DRYCREEKZIN_20.png'),(53596,3509,'_assets_0_url','field_59ee320b02906'),(53597,3509,'assets_1_text','Tech Sheet'),(53598,3509,'_assets_1_text','field_59ee31cc02902'),(53599,3509,'assets_1_file_or_url','url'),(53600,3509,'_assets_1_file_or_url','field_59ee31da02903'),(53601,3509,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-MC_DRYCREEKZIN_20_Techsheet-1.pdf'),(53602,3509,'_assets_1_url','field_59ee320b02906'),(53603,3509,'assets','2'),(53604,3509,'_assets','field_59ee31bc02901'),(53605,3509,'varietal','Zinfandel'),(53606,3509,'_varietal','field_59ee660ece2e7'),(53607,3509,'sub_brand',''),(53608,3509,'_sub_brand','field_59ee6623ce2e8'),(53609,3509,'vintage','2020'),(53610,3509,'_vintage','field_59ee6eba9a39a'),(53611,3509,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53612,3509,'_yoast_wpseo_wordproof_timestamp',''),(53613,3511,'inline_featured_image','0'),(53614,3511,'_edit_lock','1715813275:3'),(53615,3511,'_edit_last','3'),(53616,3512,'_wp_attached_file','2024/03/Meadowcroft-Old-Vine-Amador-County-Zinfandel-Bottleshot.png'),(53617,3512,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:67:\"2024/03/Meadowcroft-Old-Vine-Amador-County-Zinfandel-Bottleshot.png\";s:8:\"filesize\";i:81517;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:67:\"Meadowcroft-Old-Vine-Amador-County-Zinfandel-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24962;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:67:\"Meadowcroft-Old-Vine-Amador-County-Zinfandel-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20701;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:67:\"Meadowcroft-Old-Vine-Amador-County-Zinfandel-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52902;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:67:\"Meadowcroft-Old-Vine-Amador-County-Zinfandel-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70970;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:67:\"Meadowcroft-Old-Vine-Amador-County-Zinfandel-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56748;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:67:\"Meadowcroft-Old-Vine-Amador-County-Zinfandel-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45667;}s:8:\"tileview\";a:5:{s:4:\"file\";s:67:\"Meadowcroft-Old-Vine-Amador-County-Zinfandel-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66141;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(53618,3512,'_wp_attachment_image_alt','Meadowcroft Old Vine Amador County Zinfandel'),(53619,3511,'allowed_customer_tag_titles','a:0:{}'),(53620,3511,'allowed_customer_club_titles','a:0:{}'),(53621,3511,'linked_brand','3399'),(53622,3511,'_linked_brand','field_59ee2d92496e9'),(53623,3511,'main_image','3512'),(53624,3511,'_main_image','field_59ee319d02900'),(53625,3511,'assets_0_text','Bottle Shot'),(53626,3511,'_assets_0_text','field_59ee31cc02902'),(53627,3511,'assets_0_file_or_url','url'),(53628,3511,'_assets_0_file_or_url','field_59ee31da02903'),(53629,3511,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2013-Speedy-Creek.jpeg'),(53630,3511,'_assets_0_url','field_59ee320b02906'),(53631,3511,'assets_1_text','Tech Sheet'),(53632,3511,'_assets_1_text','field_59ee31cc02902'),(53633,3511,'assets_1_file_or_url','url'),(53634,3511,'_assets_1_file_or_url','field_59ee31da02903'),(53635,3511,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2016Zinfandel_Amador_TECHSheet_v1.pdf'),(53636,3511,'_assets_1_url','field_59ee320b02906'),(53637,3511,'assets','2'),(53638,3511,'_assets','field_59ee31bc02901'),(53639,3511,'varietal','Zinfandel'),(53640,3511,'_varietal','field_59ee660ece2e7'),(53641,3511,'sub_brand',''),(53642,3511,'_sub_brand','field_59ee6623ce2e8'),(53643,3511,'vintage','2016'),(53644,3511,'_vintage','field_59ee6eba9a39a'),(53645,3511,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53646,3511,'_yoast_wpseo_wordproof_timestamp',''),(53647,3513,'inline_featured_image','0'),(53648,3513,'_edit_lock','1715813261:3'),(53649,3513,'_edit_last','3'),(53650,3513,'allowed_customer_tag_titles','a:0:{}'),(53651,3513,'allowed_customer_club_titles','a:0:{}'),(53652,3513,'linked_brand','3399'),(53653,3513,'_linked_brand','field_59ee2d92496e9'),(53654,3513,'main_image','3512'),(53655,3513,'_main_image','field_59ee319d02900'),(53656,3513,'assets_0_text','Bottle Shot'),(53657,3513,'_assets_0_text','field_59ee31cc02902'),(53658,3513,'assets_0_file_or_url','url'),(53659,3513,'_assets_0_file_or_url','field_59ee31da02903'),(53660,3513,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/18ZNOLDVINE_1-1.png'),(53661,3513,'_assets_0_url','field_59ee320b02906'),(53662,3513,'assets_1_text','Tech Sheet'),(53663,3513,'_assets_1_text','field_59ee31cc02902'),(53664,3513,'assets_1_file_or_url','url'),(53665,3513,'_assets_1_file_or_url','field_59ee31da02903'),(53666,3513,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018Zinfandel_Amador_TECHSheet.pdf'),(53667,3513,'_assets_1_url','field_59ee320b02906'),(53668,3513,'assets','2'),(53669,3513,'_assets','field_59ee31bc02901'),(53670,3513,'varietal','Zinfandel'),(53671,3513,'_varietal','field_59ee660ece2e7'),(53672,3513,'sub_brand',''),(53673,3513,'_sub_brand','field_59ee6623ce2e8'),(53674,3513,'vintage','2018'),(53675,3513,'_vintage','field_59ee6eba9a39a'),(53676,3513,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53677,3513,'_yoast_wpseo_wordproof_timestamp',''),(53678,3514,'inline_featured_image','0'),(53679,3514,'_edit_lock','1715813227:3'),(53680,3514,'_edit_last','3'),(53681,3515,'_wp_attached_file','2024/03/Meadowcroft-Cru-De-La-Ruche-Malbec-Bottleshot.png'),(53682,3515,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:57:\"2024/03/Meadowcroft-Cru-De-La-Ruche-Malbec-Bottleshot.png\";s:8:\"filesize\";i:94339;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-Cru-De-La-Ruche-Malbec-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23772;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-Cru-De-La-Ruche-Malbec-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21044;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-Cru-De-La-Ruche-Malbec-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58598;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-Cru-De-La-Ruche-Malbec-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:81669;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-Cru-De-La-Ruche-Malbec-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62303;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-Cru-De-La-Ruche-Malbec-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51814;}s:8:\"tileview\";a:5:{s:4:\"file\";s:57:\"Meadowcroft-Cru-De-La-Ruche-Malbec-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72807;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(53683,3515,'_wp_attachment_image_alt','Meadowcroft Cru de la Ruche Malbec'),(53684,3514,'allowed_customer_tag_titles','a:0:{}'),(53685,3514,'allowed_customer_club_titles','a:0:{}'),(53686,3514,'linked_brand','3399'),(53687,3514,'_linked_brand','field_59ee2d92496e9'),(53688,3514,'main_image','3515'),(53689,3514,'_main_image','field_59ee319d02900'),(53690,3514,'assets_0_text','Bottle Shot'),(53691,3514,'_assets_0_text','field_59ee31cc02902'),(53692,3514,'assets_0_file_or_url','url'),(53693,3514,'_assets_0_file_or_url','field_59ee31da02903'),(53694,3514,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2014-Malbec.jpeg'),(53695,3514,'_assets_0_url','field_59ee320b02906'),(53696,3514,'assets','1'),(53697,3514,'_assets','field_59ee31bc02901'),(53698,3514,'varietal','Malbec'),(53699,3514,'_varietal','field_59ee660ece2e7'),(53700,3514,'sub_brand',''),(53701,3514,'_sub_brand','field_59ee6623ce2e8'),(53702,3514,'vintage','2014'),(53703,3514,'_vintage','field_59ee6eba9a39a'),(53704,3514,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53705,3514,'_yoast_wpseo_wordproof_timestamp',''),(53706,3516,'inline_featured_image','0'),(53707,3516,'_edit_lock','1715813210:3'),(53708,3516,'_edit_last','3'),(53709,3516,'allowed_customer_tag_titles','a:0:{}'),(53710,3516,'allowed_customer_club_titles','a:0:{}'),(53711,3516,'linked_brand','3399'),(53712,3516,'_linked_brand','field_59ee2d92496e9'),(53713,3516,'main_image','3515'),(53714,3516,'_main_image','field_59ee319d02900'),(53715,3516,'assets_0_text','Bottle Shot'),(53716,3516,'_assets_0_text','field_59ee31cc02902'),(53717,3516,'assets_0_file_or_url','url'),(53718,3516,'_assets_0_file_or_url','field_59ee31da02903'),(53719,3516,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_2016_Malbec_BottleShot.jpg.png'),(53720,3516,'_assets_0_url','field_59ee320b02906'),(53721,3516,'assets','1'),(53722,3516,'_assets','field_59ee31bc02901'),(53723,3516,'varietal','Malbec'),(53724,3516,'_varietal','field_59ee660ece2e7'),(53725,3516,'sub_brand',''),(53726,3516,'_sub_brand','field_59ee6623ce2e8'),(53727,3516,'vintage','2016'),(53728,3516,'_vintage','field_59ee6eba9a39a'),(53729,3516,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53730,3516,'_yoast_wpseo_wordproof_timestamp',''),(53732,3518,'inline_featured_image','0'),(53733,3518,'_edit_lock','1711390779:2'),(53734,3518,'_edit_last','2'),(53735,3518,'allowed_customer_tag_titles','a:0:{}'),(53736,3518,'allowed_customer_club_titles','a:0:{}'),(53737,3518,'linked_brand','3399'),(53738,3518,'_linked_brand','field_59ee2d92496e9'),(53739,3518,'main_image','3515'),(53740,3518,'_main_image','field_59ee319d02900'),(53741,3518,'assets_0_text','Bottle Shot'),(53742,3518,'_assets_0_text','field_59ee31cc02902'),(53743,3518,'assets_0_file_or_url','url'),(53744,3518,'_assets_0_file_or_url','field_59ee31da02903'),(53745,3518,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_2017_Malbec_BottleShot_v2.png'),(53746,3518,'_assets_0_url','field_59ee320b02906'),(53747,3518,'assets_1_text','Tech Sheet'),(53748,3518,'_assets_1_text','field_59ee31cc02902'),(53749,3518,'assets_1_file_or_url','url'),(53750,3518,'_assets_1_file_or_url','field_59ee31da02903'),(53751,3518,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017CruDeLaRucheMalbec_TECHSheet_Awards.pdf'),(53752,3518,'_assets_1_url','field_59ee320b02906'),(53753,3518,'assets','2'),(53754,3518,'_assets','field_59ee31bc02901'),(53755,3518,'varietal','Malbec'),(53756,3518,'_varietal','field_59ee660ece2e7'),(53757,3518,'sub_brand',''),(53758,3518,'_sub_brand','field_59ee6623ce2e8'),(53759,3518,'vintage','2017'),(53760,3518,'_vintage','field_59ee6eba9a39a'),(53761,3518,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53762,3518,'_yoast_wpseo_wordproof_timestamp',''),(53763,3519,'inline_featured_image','0'),(53764,3519,'_edit_lock','1715813188:3'),(53765,3519,'_edit_last','3'),(53766,3519,'allowed_customer_tag_titles','a:0:{}'),(53767,3519,'allowed_customer_club_titles','a:0:{}'),(53768,3519,'linked_brand','3399'),(53769,3519,'_linked_brand','field_59ee2d92496e9'),(53770,3519,'main_image','3515'),(53771,3519,'_main_image','field_59ee319d02900'),(53772,3519,'assets_0_text','Tech Sheet'),(53773,3519,'_assets_0_text','field_59ee31cc02902'),(53774,3519,'assets_0_file_or_url','url'),(53775,3519,'_assets_0_file_or_url','field_59ee31da02903'),(53776,3519,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018CruDeLaRucheMalbec_TECHSheet_Awards.pdf'),(53777,3519,'_assets_0_url','field_59ee320b02906'),(53778,3519,'assets','1'),(53779,3519,'_assets','field_59ee31bc02901'),(53780,3519,'varietal','Malbec'),(53781,3519,'_varietal','field_59ee660ece2e7'),(53782,3519,'sub_brand',''),(53783,3519,'_sub_brand','field_59ee6623ce2e8'),(53784,3519,'vintage','2018'),(53785,3519,'_vintage','field_59ee6eba9a39a'),(53786,3519,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53787,3519,'_yoast_wpseo_wordproof_timestamp',''),(53788,3520,'inline_featured_image','0'),(53789,3520,'_edit_lock','1715813172:3'),(53790,3520,'_edit_last','3'),(53791,3520,'allowed_customer_tag_titles','a:0:{}'),(53792,3520,'allowed_customer_club_titles','a:0:{}'),(53793,3520,'linked_brand','3399'),(53794,3520,'_linked_brand','field_59ee2d92496e9'),(53795,3520,'main_image','3515'),(53796,3520,'_main_image','field_59ee319d02900'),(53797,3520,'assets_0_text','Bottle Shot'),(53798,3520,'_assets_0_text','field_59ee31cc02902'),(53799,3520,'assets_0_file_or_url','url'),(53800,3520,'_assets_0_file_or_url','field_59ee31da02903'),(53801,3520,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_2019_Malbec_Clements_Hill_Bottleshot.png'),(53802,3520,'_assets_0_url','field_59ee320b02906'),(53803,3520,'assets_1_text','Tech Sheet'),(53804,3520,'_assets_1_text','field_59ee31cc02902'),(53805,3520,'assets_1_file_or_url','url'),(53806,3520,'_assets_1_file_or_url','field_59ee31da02903'),(53807,3520,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2019CruDeLaRucheMalbec_TECHSheet.pdf'),(53808,3520,'_assets_1_url','field_59ee320b02906'),(53809,3520,'assets','2'),(53810,3520,'_assets','field_59ee31bc02901'),(53811,3520,'varietal','Malbec'),(53812,3520,'_varietal','field_59ee660ece2e7'),(53813,3520,'sub_brand',''),(53814,3520,'_sub_brand','field_59ee6623ce2e8'),(53815,3520,'vintage','2019'),(53816,3520,'_vintage','field_59ee6eba9a39a'),(53817,3520,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53818,3520,'_yoast_wpseo_wordproof_timestamp',''),(53819,3521,'inline_featured_image','0'),(53820,3521,'_edit_lock','1715813157:3'),(53821,3521,'_edit_last','3'),(53822,3521,'allowed_customer_tag_titles','a:0:{}'),(53823,3521,'allowed_customer_club_titles','a:0:{}'),(53824,3521,'linked_brand','3399'),(53825,3521,'_linked_brand','field_59ee2d92496e9'),(53826,3521,'main_image','3515'),(53827,3521,'_main_image','field_59ee319d02900'),(53828,3521,'assets_0_text','Tech Sheet'),(53829,3521,'_assets_0_text','field_59ee31cc02902'),(53830,3521,'assets_0_file_or_url','url'),(53831,3521,'_assets_0_file_or_url','field_59ee31da02903'),(53832,3521,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2020CruDeLaRucheMalbec_TECHSheet-1.pdf'),(53833,3521,'_assets_0_url','field_59ee320b02906'),(53834,3521,'assets','1'),(53835,3521,'_assets','field_59ee31bc02901'),(53836,3521,'varietal','Malbec'),(53837,3521,'_varietal','field_59ee660ece2e7'),(53838,3521,'sub_brand',''),(53839,3521,'_sub_brand','field_59ee6623ce2e8'),(53840,3521,'vintage','2020'),(53841,3521,'_vintage','field_59ee6eba9a39a'),(53842,3521,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53843,3521,'_yoast_wpseo_wordproof_timestamp',''),(53844,3522,'inline_featured_image','0'),(53845,3522,'_edit_lock','1715635854:3'),(53846,3522,'_edit_last','3'),(53850,3524,'_wp_attached_file','2024/03/Meadowcroft-California-Syrah-Bottleshot.png'),(53851,3524,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:51:\"2024/03/Meadowcroft-California-Syrah-Bottleshot.png\";s:8:\"filesize\";i:88431;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"Meadowcroft-California-Syrah-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23401;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"Meadowcroft-California-Syrah-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13083;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:51:\"Meadowcroft-California-Syrah-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42196;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:51:\"Meadowcroft-California-Syrah-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:76694;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:51:\"Meadowcroft-California-Syrah-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45693;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:51:\"Meadowcroft-California-Syrah-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35145;}s:8:\"tileview\";a:5:{s:4:\"file\";s:51:\"Meadowcroft-California-Syrah-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60081;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(53852,3524,'_wp_attachment_image_alt','Meadowcroft California Syrah'),(53853,3522,'allowed_customer_tag_titles','a:0:{}'),(53854,3522,'allowed_customer_club_titles','a:0:{}'),(53855,3522,'linked_brand','3399'),(53856,3522,'_linked_brand','field_59ee2d92496e9'),(53857,3522,'main_image','3524'),(53858,3522,'_main_image','field_59ee319d02900'),(53859,3522,'assets_0_text','Bottle Shot'),(53860,3522,'_assets_0_text','field_59ee31cc02902'),(53861,3522,'assets_0_file_or_url','url'),(53862,3522,'_assets_0_file_or_url','field_59ee31da02903'),(53863,3522,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_Syrah_2014_BottleShot-1-scaled-1.png'),(53864,3522,'_assets_0_url','field_59ee320b02906'),(53865,3522,'assets','1'),(53866,3522,'_assets','field_59ee31bc02901'),(53867,3522,'varietal','Syrah'),(53868,3522,'_varietal','field_59ee660ece2e7'),(53869,3522,'sub_brand',''),(53870,3522,'_sub_brand','field_59ee6623ce2e8'),(53871,3522,'vintage','2014'),(53872,3522,'_vintage','field_59ee6eba9a39a'),(53873,3522,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53874,3522,'_yoast_wpseo_wordproof_timestamp',''),(53875,3525,'inline_featured_image','0'),(53876,3525,'_edit_lock','1715635832:3'),(53877,3525,'_edit_last','3'),(53878,3525,'allowed_customer_tag_titles','a:0:{}'),(53879,3525,'allowed_customer_club_titles','a:0:{}'),(53880,3525,'linked_brand','3399'),(53881,3525,'_linked_brand','field_59ee2d92496e9'),(53882,3525,'main_image','3524'),(53883,3525,'_main_image','field_59ee319d02900'),(53884,3525,'assets_0_text','Bottle Shot'),(53885,3525,'_assets_0_text','field_59ee31cc02902'),(53886,3525,'assets_0_file_or_url','url'),(53887,3525,'_assets_0_file_or_url','field_59ee31da02903'),(53888,3525,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_Syrah_California_2018.png'),(53889,3525,'_assets_0_url','field_59ee320b02906'),(53890,3525,'assets_1_text','Tech Sheet'),(53891,3525,'_assets_1_text','field_59ee31cc02902'),(53892,3525,'assets_1_file_or_url','url'),(53893,3525,'_assets_1_file_or_url','field_59ee31da02903'),(53894,3525,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018_SyrahCalifornia_TECHSheet.pdf'),(53895,3525,'_assets_1_url','field_59ee320b02906'),(53896,3525,'assets','2'),(53897,3525,'_assets','field_59ee31bc02901'),(53898,3525,'varietal','Syrah'),(53899,3525,'_varietal','field_59ee660ece2e7'),(53900,3525,'sub_brand',''),(53901,3525,'_sub_brand','field_59ee6623ce2e8'),(53902,3525,'vintage','2018'),(53903,3525,'_vintage','field_59ee6eba9a39a'),(53904,3525,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53905,3525,'_yoast_wpseo_wordproof_timestamp',''),(53906,3526,'inline_featured_image','0'),(53907,3526,'_edit_lock','1715635812:3'),(53908,3526,'_edit_last','3'),(53909,3527,'_wp_attached_file','2024/03/Meadowcroft-Cornerstone-Vineyard-Pinot-Noir-Bottleshot.png'),(53910,3527,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:66:\"2024/03/Meadowcroft-Cornerstone-Vineyard-Pinot-Noir-Bottleshot.png\";s:8:\"filesize\";i:93038;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Cornerstone-Vineyard-Pinot-Noir-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24782;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Cornerstone-Vineyard-Pinot-Noir-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13931;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Cornerstone-Vineyard-Pinot-Noir-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43502;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Cornerstone-Vineyard-Pinot-Noir-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80609;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Cornerstone-Vineyard-Pinot-Noir-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47064;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Cornerstone-Vineyard-Pinot-Noir-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36238;}s:8:\"tileview\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Cornerstone-Vineyard-Pinot-Noir-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62299;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(53911,3527,'_wp_attachment_image_alt','Cornerstone Vineyard Pinot Noir'),(53912,3526,'allowed_customer_tag_titles','a:0:{}'),(53913,3526,'allowed_customer_club_titles','a:0:{}'),(53914,3526,'linked_brand','3399'),(53915,3526,'_linked_brand','field_59ee2d92496e9'),(53916,3526,'main_image','3527'),(53917,3526,'_main_image','field_59ee319d02900'),(53918,3526,'assets_0_text','Bottle Shot'),(53919,3526,'_assets_0_text','field_59ee31cc02902'),(53920,3526,'assets_0_file_or_url','url'),(53921,3526,'_assets_0_file_or_url','field_59ee31da02903'),(53922,3526,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_2015_PinotNoir_Cornerstone_BottleShot-scaled-1.png'),(53923,3526,'_assets_0_url','field_59ee320b02906'),(53924,3526,'assets_1_text','Tech Sheet'),(53925,3526,'_assets_1_text','field_59ee31cc02902'),(53926,3526,'assets_1_file_or_url','url'),(53927,3526,'_assets_1_file_or_url','field_59ee31da02903'),(53928,3526,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2015_PinotNoir_Cornerstone_TECHSheet.pdf'),(53929,3526,'_assets_1_url','field_59ee320b02906'),(53930,3526,'assets','2'),(53931,3526,'_assets','field_59ee31bc02901'),(53932,3526,'varietal','Pinot Noir'),(53933,3526,'_varietal','field_59ee660ece2e7'),(53934,3526,'sub_brand',''),(53935,3526,'_sub_brand','field_59ee6623ce2e8'),(53936,3526,'vintage','2015'),(53937,3526,'_vintage','field_59ee6eba9a39a'),(53938,3526,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53939,3526,'_yoast_wpseo_wordproof_timestamp',''),(53940,3528,'inline_featured_image','0'),(53941,3528,'_edit_lock','1715635795:3'),(53942,3528,'_edit_last','3'),(53943,3528,'allowed_customer_tag_titles','a:0:{}'),(53944,3528,'allowed_customer_club_titles','a:0:{}'),(53945,3528,'linked_brand','3399'),(53946,3528,'_linked_brand','field_59ee2d92496e9'),(53947,3528,'main_image','3527'),(53948,3528,'_main_image','field_59ee319d02900'),(53949,3528,'assets_0_text','Tech Sheet'),(53950,3528,'_assets_0_text','field_59ee31cc02902'),(53951,3528,'assets_0_file_or_url','url'),(53952,3528,'_assets_0_file_or_url','field_59ee31da02903'),(53953,3528,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2016CornerstoneVineyard_PinotNoir_TECHSheet.pdf'),(53954,3528,'_assets_0_url','field_59ee320b02906'),(53955,3528,'assets','1'),(53956,3528,'_assets','field_59ee31bc02901'),(53957,3528,'varietal','Pinot Noir'),(53958,3528,'_varietal','field_59ee660ece2e7'),(53959,3528,'sub_brand',''),(53960,3528,'_sub_brand','field_59ee6623ce2e8'),(53961,3528,'vintage','2016'),(53962,3528,'_vintage','field_59ee6eba9a39a'),(53963,3528,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53964,3528,'_yoast_wpseo_wordproof_timestamp',''),(53984,3530,'inline_featured_image','0'),(53985,3530,'_edit_lock','1715635784:3'),(53986,3530,'_edit_last','3'),(53987,3530,'allowed_customer_tag_titles','a:0:{}'),(53988,3530,'allowed_customer_club_titles','a:0:{}'),(53989,3530,'linked_brand','3399'),(53990,3530,'_linked_brand','field_59ee2d92496e9'),(53991,3530,'main_image','3527'),(53992,3530,'_main_image','field_59ee319d02900'),(53993,3530,'assets_0_text','Bottle Shot'),(53994,3530,'_assets_0_text','field_59ee31cc02902'),(53995,3530,'assets_0_file_or_url','url'),(53996,3530,'_assets_0_file_or_url','field_59ee31da02903'),(53997,3530,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_PinotNoir_Cornerstone_LosCarneros_2018.png'),(53998,3530,'_assets_0_url','field_59ee320b02906'),(53999,3530,'assets_1_text','Tech Sheet'),(54000,3530,'_assets_1_text','field_59ee31cc02902'),(54001,3530,'assets_1_file_or_url','url'),(54002,3530,'_assets_1_file_or_url','field_59ee31da02903'),(54003,3530,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018_CornerstoneVineyard_Pinotnoir_TECHSheet.pdf'),(54004,3530,'_assets_1_url','field_59ee320b02906'),(54005,3530,'assets','2'),(54006,3530,'_assets','field_59ee31bc02901'),(54007,3530,'varietal','Pinot Noir'),(54008,3530,'_varietal','field_59ee660ece2e7'),(54009,3530,'sub_brand',''),(54010,3530,'_sub_brand','field_59ee6623ce2e8'),(54011,3530,'vintage','2018'),(54012,3530,'_vintage','field_59ee6eba9a39a'),(54013,3530,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54014,3530,'_yoast_wpseo_wordproof_timestamp',''),(54015,3531,'inline_featured_image','0'),(54016,3531,'_edit_lock','1715635774:3'),(54017,3531,'_edit_last','3'),(54018,3531,'allowed_customer_tag_titles','a:0:{}'),(54019,3531,'allowed_customer_club_titles','a:0:{}'),(54020,3531,'linked_brand','3399'),(54021,3531,'_linked_brand','field_59ee2d92496e9'),(54022,3531,'main_image','3527'),(54023,3531,'_main_image','field_59ee319d02900'),(54024,3531,'assets_0_text','Bottle Shot'),(54025,3531,'_assets_0_text','field_59ee31cc02902'),(54026,3531,'assets_0_file_or_url','url'),(54027,3531,'_assets_0_file_or_url','field_59ee31da02903'),(54028,3531,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/19_PinotNoir_Cornerstone.png'),(54029,3531,'_assets_0_url','field_59ee320b02906'),(54030,3531,'assets_1_text','Tech Sheet'),(54031,3531,'_assets_1_text','field_59ee31cc02902'),(54032,3531,'assets_1_file_or_url','url'),(54033,3531,'_assets_1_file_or_url','field_59ee31da02903'),(54034,3531,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2019_CornerstoneVineyard_Pinotnoir_TECHSheet.pdf'),(54035,3531,'_assets_1_url','field_59ee320b02906'),(54036,3531,'assets','2'),(54037,3531,'_assets','field_59ee31bc02901'),(54038,3531,'varietal','Pinot Noir'),(54039,3531,'_varietal','field_59ee660ece2e7'),(54040,3531,'sub_brand',''),(54041,3531,'_sub_brand','field_59ee6623ce2e8'),(54042,3531,'vintage','2019'),(54043,3531,'_vintage','field_59ee6eba9a39a'),(54044,3531,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54045,3531,'_yoast_wpseo_wordproof_timestamp',''),(54046,3532,'inline_featured_image','0'),(54047,3532,'_edit_lock','1715635757:3'),(54048,3532,'_edit_last','3'),(54049,3532,'allowed_customer_tag_titles','a:0:{}'),(54050,3532,'allowed_customer_club_titles','a:0:{}'),(54051,3532,'linked_brand','3399'),(54052,3532,'_linked_brand','field_59ee2d92496e9'),(54053,3532,'main_image','3527'),(54054,3532,'_main_image','field_59ee319d02900'),(54055,3532,'assets_0_text','Bottle Shot'),(54056,3532,'_assets_0_text','field_59ee31cc02902'),(54057,3532,'assets_0_file_or_url','url'),(54058,3532,'_assets_0_file_or_url','field_59ee31da02903'),(54059,3532,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_2020_Cornerstone_Pinotnoir_Bottleshotpng.png'),(54060,3532,'_assets_0_url','field_59ee320b02906'),(54061,3532,'assets_1_text','Tech Sheet'),(54062,3532,'_assets_1_text','field_59ee31cc02902'),(54063,3532,'assets_1_file_or_url','url'),(54064,3532,'_assets_1_file_or_url','field_59ee31da02903'),(54065,3532,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2020_Cornerstone_Pinotnoir_TECHSheet.pdf'),(54066,3532,'_assets_1_url','field_59ee320b02906'),(54067,3532,'assets','2'),(54068,3532,'_assets','field_59ee31bc02901'),(54069,3532,'varietal','Pinot Noir'),(54070,3532,'_varietal','field_59ee660ece2e7'),(54071,3532,'sub_brand',''),(54072,3532,'_sub_brand','field_59ee6623ce2e8'),(54073,3532,'vintage','2020'),(54074,3532,'_vintage','field_59ee6eba9a39a'),(54075,3532,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54076,3532,'_yoast_wpseo_wordproof_timestamp',''),(54077,3533,'inline_featured_image','0'),(54078,3533,'_edit_lock','1715635730:3'),(54079,3533,'_edit_last','3'),(54080,3534,'_wp_attached_file','2024/03/Meadowcroft-Sonoma-Coast-Pinot-Noir-Bottleshot.png'),(54081,3534,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:58:\"2024/03/Meadowcroft-Sonoma-Coast-Pinot-Noir-Bottleshot.png\";s:8:\"filesize\";i:96045;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"Meadowcroft-Sonoma-Coast-Pinot-Noir-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25194;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"Meadowcroft-Sonoma-Coast-Pinot-Noir-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13021;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:58:\"Meadowcroft-Sonoma-Coast-Pinot-Noir-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42283;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:58:\"Meadowcroft-Sonoma-Coast-Pinot-Noir-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79415;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:58:\"Meadowcroft-Sonoma-Coast-Pinot-Noir-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46061;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:58:\"Meadowcroft-Sonoma-Coast-Pinot-Noir-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34613;}s:8:\"tileview\";a:5:{s:4:\"file\";s:58:\"Meadowcroft-Sonoma-Coast-Pinot-Noir-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61123;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(54082,3534,'_wp_attachment_image_alt','Sonoma Coast Pinot Noir'),(54083,3533,'allowed_customer_tag_titles','a:0:{}'),(54084,3533,'allowed_customer_club_titles','a:0:{}'),(54085,3533,'linked_brand','3399'),(54086,3533,'_linked_brand','field_59ee2d92496e9'),(54087,3533,'main_image','3534'),(54088,3533,'_main_image','field_59ee319d02900'),(54089,3533,'assets_0_text','Bottle Shot'),(54090,3533,'_assets_0_text','field_59ee31cc02902'),(54091,3533,'assets_0_file_or_url','url'),(54092,3533,'_assets_0_file_or_url','field_59ee31da02903'),(54093,3533,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_SONOMACOASTPINOT_2018.png'),(54094,3533,'_assets_0_url','field_59ee320b02906'),(54095,3533,'assets_1_text','Tech Sheet'),(54096,3533,'_assets_1_text','field_59ee31cc02902'),(54097,3533,'assets_1_file_or_url','url'),(54098,3533,'_assets_1_file_or_url','field_59ee31da02903'),(54099,3533,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2018-Meadowcroft-Sonoma-Coast-Pinot-noir.pdf'),(54100,3533,'_assets_1_url','field_59ee320b02906'),(54101,3533,'assets','2'),(54102,3533,'_assets','field_59ee31bc02901'),(54103,3533,'varietal','Pinot Noir'),(54104,3533,'_varietal','field_59ee660ece2e7'),(54105,3533,'sub_brand',''),(54106,3533,'_sub_brand','field_59ee6623ce2e8'),(54107,3533,'vintage','2018'),(54108,3533,'_vintage','field_59ee6eba9a39a'),(54109,3533,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54110,3533,'_yoast_wpseo_wordproof_timestamp',''),(54111,3535,'inline_featured_image','0'),(54112,3535,'_edit_lock','1715635715:3'),(54113,3535,'_edit_last','3'),(54114,3535,'allowed_customer_tag_titles','a:0:{}'),(54115,3535,'allowed_customer_club_titles','a:0:{}'),(54116,3535,'linked_brand','3399'),(54117,3535,'_linked_brand','field_59ee2d92496e9'),(54118,3535,'main_image','3534'),(54119,3535,'_main_image','field_59ee319d02900'),(54120,3535,'assets_0_text','Bottle Shot'),(54121,3535,'_assets_0_text','field_59ee31cc02902'),(54122,3535,'assets_0_file_or_url','url'),(54123,3535,'_assets_0_file_or_url','field_59ee31da02903'),(54124,3535,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_SONOMACOASTPINOT_2019-1.png'),(54125,3535,'_assets_0_url','field_59ee320b02906'),(54126,3535,'assets_1_text','Tech Sheet'),(54127,3535,'_assets_1_text','field_59ee31cc02902'),(54128,3535,'assets_1_file_or_url','url'),(54129,3535,'_assets_1_file_or_url','field_59ee31da02903'),(54130,3535,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2019-Meadowcroft-Sonoma-Coast-Pinot-noir-1.pdf'),(54131,3535,'_assets_1_url','field_59ee320b02906'),(54132,3535,'assets','2'),(54133,3535,'_assets','field_59ee31bc02901'),(54134,3535,'varietal','Pinot Noir'),(54135,3535,'_varietal','field_59ee660ece2e7'),(54136,3535,'sub_brand',''),(54137,3535,'_sub_brand','field_59ee6623ce2e8'),(54138,3535,'vintage','2019'),(54139,3535,'_vintage','field_59ee6eba9a39a'),(54140,3535,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54141,3535,'_yoast_wpseo_wordproof_timestamp',''),(54142,3536,'inline_featured_image','0'),(54143,3536,'_edit_lock','1715635699:3'),(54144,3536,'_edit_last','3'),(54145,3536,'allowed_customer_tag_titles','a:0:{}'),(54146,3536,'allowed_customer_club_titles','a:0:{}'),(54147,3536,'linked_brand','3399'),(54148,3536,'_linked_brand','field_59ee2d92496e9'),(54149,3536,'main_image','3534'),(54150,3536,'_main_image','field_59ee319d02900'),(54151,3536,'assets_0_text','Bottle Shot'),(54152,3536,'_assets_0_text','field_59ee31cc02902'),(54153,3536,'assets_0_file_or_url','url'),(54154,3536,'_assets_0_file_or_url','field_59ee31da02903'),(54155,3536,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/2021-Meadowcroft-Sonoma-Coast-Pinot_Bottleshot.png'),(54156,3536,'_assets_0_url','field_59ee320b02906'),(54157,3536,'assets_1_text','Tech Sheet'),(54158,3536,'_assets_1_text','field_59ee31cc02902'),(54159,3536,'assets_1_file_or_url','url'),(54160,3536,'_assets_1_file_or_url','field_59ee31da02903'),(54161,3536,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2021-Meadowcroft-Sonoma-Coast-Pinot-noir.pdf'),(54162,3536,'_assets_1_url','field_59ee320b02906'),(54163,3536,'assets','2'),(54164,3536,'_assets','field_59ee31bc02901'),(54165,3536,'varietal','Pinot Noir'),(54166,3536,'_varietal','field_59ee660ece2e7'),(54167,3536,'sub_brand',''),(54168,3536,'_sub_brand','field_59ee6623ce2e8'),(54169,3536,'vintage','2021'),(54170,3536,'_vintage','field_59ee6eba9a39a'),(54171,3536,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54172,3536,'_yoast_wpseo_wordproof_timestamp',''),(54173,3537,'inline_featured_image','0'),(54174,3537,'_edit_lock','1716403444:3'),(54175,3537,'_edit_last','3'),(54176,3537,'allowed_customer_tag_titles','a:0:{}'),(54177,3537,'allowed_customer_club_titles','a:0:{}'),(54178,3537,'linked_brand','3399'),(54179,3537,'_linked_brand','field_59ee2d92496e9'),(54180,3537,'main_image','3534'),(54181,3537,'_main_image','field_59ee319d02900'),(54182,3537,'assets_0_text','Bottle Shot'),(54183,3537,'_assets_0_text','field_59ee31cc02902'),(54184,3537,'assets_0_file_or_url','url'),(54185,3537,'_assets_0_file_or_url','field_59ee31da02903'),(54186,3537,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-PinotNoir_VinaDelSol-scaled.jpg'),(54187,3537,'_assets_0_url','field_59ee320b02906'),(54188,3537,'assets_1_text','Tech Sheet'),(54189,3537,'_assets_1_text','field_59ee31cc02902'),(54190,3537,'assets_1_file_or_url','url'),(54191,3537,'_assets_1_file_or_url','field_59ee31da02903'),(54192,3537,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-PinotNoir-SonCoast.pdf'),(54193,3537,'_assets_1_url','field_59ee320b02906'),(54194,3537,'assets','2'),(54195,3537,'_assets','field_59ee31bc02901'),(54196,3537,'varietal','Pinot Noir'),(54197,3537,'_varietal','field_59ee660ece2e7'),(54198,3537,'sub_brand',''),(54199,3537,'_sub_brand','field_59ee6623ce2e8'),(54200,3537,'vintage','2022'),(54201,3537,'_vintage','field_59ee6eba9a39a'),(54202,3537,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54203,3537,'_yoast_wpseo_wordproof_timestamp',''),(54204,3538,'inline_featured_image','0'),(54205,3538,'_edit_lock','1715635583:3'),(54206,3538,'_edit_last','3'),(54207,3539,'_wp_attached_file','2024/03/Meadowcroft-Russian-River-Valley-Pinot-Noir_Bottleshot.png'),(54208,3539,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:66:\"2024/03/Meadowcroft-Russian-River-Valley-Pinot-Noir_Bottleshot.png\";s:8:\"filesize\";i:89710;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Russian-River-Valley-Pinot-Noir_Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23555;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Russian-River-Valley-Pinot-Noir_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13206;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Russian-River-Valley-Pinot-Noir_Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43072;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Russian-River-Valley-Pinot-Noir_Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77881;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Russian-River-Valley-Pinot-Noir_Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46612;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Russian-River-Valley-Pinot-Noir_Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35951;}s:8:\"tileview\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Russian-River-Valley-Pinot-Noir_Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61313;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(54209,3539,'_wp_attachment_image_alt','Meadowcroft Russian River Valley Pinot Noir'),(54210,3538,'allowed_customer_tag_titles','a:0:{}'),(54211,3538,'allowed_customer_club_titles','a:0:{}'),(54212,3538,'linked_brand','3399'),(54213,3538,'_linked_brand','field_59ee2d92496e9'),(54214,3538,'main_image','3539'),(54215,3538,'_main_image','field_59ee319d02900'),(54216,3538,'assets_0_text','Bottle Shot'),(54217,3538,'_assets_0_text','field_59ee31cc02902'),(54218,3538,'assets_0_file_or_url','url'),(54219,3538,'_assets_0_file_or_url','field_59ee31da02903'),(54220,3538,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_PinotNoir_RRV18_BotteShot.png'),(54221,3538,'_assets_0_url','field_59ee320b02906'),(54222,3538,'assets_1_text','Tech Sheet'),(54223,3538,'_assets_1_text','field_59ee31cc02902'),(54224,3538,'assets_1_file_or_url','url'),(54225,3538,'_assets_1_file_or_url','field_59ee31da02903'),(54226,3538,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018_RussianRiverValley_Pinotnoir_TECHSheet-1.pdf'),(54227,3538,'_assets_1_url','field_59ee320b02906'),(54228,3538,'assets','2'),(54229,3538,'_assets','field_59ee31bc02901'),(54230,3538,'varietal','Pinot Noir'),(54231,3538,'_varietal','field_59ee660ece2e7'),(54232,3538,'sub_brand',''),(54233,3538,'_sub_brand','field_59ee6623ce2e8'),(54234,3538,'vintage','2018'),(54235,3538,'_vintage','field_59ee6eba9a39a'),(54236,3538,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54237,3538,'_yoast_wpseo_wordproof_timestamp',''),(54238,3540,'inline_featured_image','0'),(54239,3540,'_edit_lock','1715635570:3'),(54240,3540,'_edit_last','3'),(54241,3540,'allowed_customer_tag_titles','a:0:{}'),(54242,3540,'allowed_customer_club_titles','a:0:{}'),(54243,3540,'linked_brand','3399'),(54244,3540,'_linked_brand','field_59ee2d92496e9'),(54245,3540,'main_image','3539'),(54246,3540,'_main_image','field_59ee319d02900'),(54247,3540,'assets_0_text','Bottle Shot'),(54248,3540,'_assets_0_text','field_59ee31cc02902'),(54249,3540,'assets_0_file_or_url','url'),(54250,3540,'_assets_0_file_or_url','field_59ee31da02903'),(54251,3540,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/19PIINOTNOIR_RRValley_Screwcap.png'),(54252,3540,'_assets_0_url','field_59ee320b02906'),(54253,3540,'assets_1_text','Tech Sheet'),(54254,3540,'_assets_1_text','field_59ee31cc02902'),(54255,3540,'assets_1_file_or_url','url'),(54256,3540,'_assets_1_file_or_url','field_59ee31da02903'),(54257,3540,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2019_RussianRiverValley_Pinotnoir_TECHSheet.pdf'),(54258,3540,'_assets_1_url','field_59ee320b02906'),(54259,3540,'assets','2'),(54260,3540,'_assets','field_59ee31bc02901'),(54261,3540,'varietal','Pinot Noir'),(54262,3540,'_varietal','field_59ee660ece2e7'),(54263,3540,'sub_brand',''),(54264,3540,'_sub_brand','field_59ee6623ce2e8'),(54265,3540,'vintage','2019'),(54266,3540,'_vintage','field_59ee6eba9a39a'),(54267,3540,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54268,3540,'_yoast_wpseo_wordproof_timestamp',''),(54269,3541,'inline_featured_image','0'),(54270,3541,'_edit_lock','1715635558:3'),(54271,3541,'_edit_last','3'),(54272,3541,'allowed_customer_tag_titles','a:0:{}'),(54273,3541,'allowed_customer_club_titles','a:0:{}'),(54274,3541,'linked_brand','3399'),(54275,3541,'_linked_brand','field_59ee2d92496e9'),(54276,3541,'main_image','3539'),(54277,3541,'_main_image','field_59ee319d02900'),(54278,3541,'assets_0_text','Bottle Shot'),(54279,3541,'_assets_0_text','field_59ee31cc02902'),(54280,3541,'assets_0_file_or_url','url'),(54281,3541,'_assets_0_file_or_url','field_59ee31da02903'),(54282,3541,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_2020_PinotNoir_RussianriverValley_Bottleshot.png'),(54283,3541,'_assets_0_url','field_59ee320b02906'),(54284,3541,'assets_1_text','Tech Sheet'),(54285,3541,'_assets_1_text','field_59ee31cc02902'),(54286,3541,'assets_1_file_or_url','url'),(54287,3541,'_assets_1_file_or_url','field_59ee31da02903'),(54288,3541,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2020_RussianRiverValley_Pinotnoir_TECHSheet.pdf'),(54289,3541,'_assets_1_url','field_59ee320b02906'),(54290,3541,'assets','2'),(54291,3541,'_assets','field_59ee31bc02901'),(54292,3541,'varietal','Pinot Noir'),(54293,3541,'_varietal','field_59ee660ece2e7'),(54294,3541,'sub_brand',''),(54295,3541,'_sub_brand','field_59ee6623ce2e8'),(54296,3541,'vintage','2020'),(54297,3541,'_vintage','field_59ee6eba9a39a'),(54298,3541,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54299,3541,'_yoast_wpseo_wordproof_timestamp',''),(54300,3542,'inline_featured_image','0'),(54301,3542,'_edit_lock','1715635545:3'),(54302,3542,'_edit_last','3'),(54303,3542,'allowed_customer_tag_titles','a:0:{}'),(54304,3542,'allowed_customer_club_titles','a:0:{}'),(54305,3542,'linked_brand','3399'),(54306,3542,'_linked_brand','field_59ee2d92496e9'),(54307,3542,'main_image','3539'),(54308,3542,'_main_image','field_59ee319d02900'),(54309,3542,'assets_0_text','Bottle Shot'),(54310,3542,'_assets_0_text','field_59ee31cc02902'),(54311,3542,'assets_0_file_or_url','url'),(54312,3542,'_assets_0_file_or_url','field_59ee31da02903'),(54313,3542,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/21_Pinot_RRV_bottleshot.png'),(54314,3542,'_assets_0_url','field_59ee320b02906'),(54315,3542,'assets_1_text','Tech Sheet'),(54316,3542,'_assets_1_text','field_59ee31cc02902'),(54317,3542,'assets_1_file_or_url','url'),(54318,3542,'_assets_1_file_or_url','field_59ee31da02903'),(54319,3542,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2021_RussianRiverValley_Pinotnoir_TECHSheet.pdf'),(54320,3542,'_assets_1_url','field_59ee320b02906'),(54321,3542,'assets','2'),(54322,3542,'_assets','field_59ee31bc02901'),(54323,3542,'varietal','Pinot Noir'),(54324,3542,'_varietal','field_59ee660ece2e7'),(54325,3542,'sub_brand',''),(54326,3542,'_sub_brand','field_59ee6623ce2e8'),(54327,3542,'vintage','2021'),(54328,3542,'_vintage','field_59ee6eba9a39a'),(54329,3542,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54330,3542,'_yoast_wpseo_wordproof_timestamp',''),(54331,3543,'inline_featured_image','0'),(54332,3543,'_edit_lock','1715635534:3'),(54333,3543,'_edit_last','3'),(54334,3543,'allowed_customer_tag_titles','a:0:{}'),(54335,3543,'allowed_customer_club_titles','a:0:{}'),(54336,3543,'linked_brand','3399'),(54337,3543,'_linked_brand','field_59ee2d92496e9'),(54338,3543,'main_image','3539'),(54339,3543,'_main_image','field_59ee319d02900'),(54340,3543,'assets_0_text','Bottle Shot'),(54341,3543,'_assets_0_text','field_59ee31cc02902'),(54342,3543,'assets_0_file_or_url','url'),(54343,3543,'_assets_0_file_or_url','field_59ee31da02903'),(54344,3543,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/RR-PinotNoir-NoVintage.jpg'),(54345,3543,'_assets_0_url','field_59ee320b02906'),(54346,3543,'assets_1_text','Tech Sheet'),(54347,3543,'_assets_1_text','field_59ee31cc02902'),(54348,3543,'assets_1_file_or_url','url'),(54349,3543,'_assets_1_file_or_url','field_59ee31da02903'),(54350,3543,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-PinotNoir-RussianRiver.pdf'),(54351,3543,'_assets_1_url','field_59ee320b02906'),(54352,3543,'assets','2'),(54353,3543,'_assets','field_59ee31bc02901'),(54354,3543,'varietal','Pinot Noir'),(54355,3543,'_varietal','field_59ee660ece2e7'),(54356,3543,'sub_brand',''),(54357,3543,'_sub_brand','field_59ee6623ce2e8'),(54358,3543,'vintage','2022'),(54359,3543,'_vintage','field_59ee6eba9a39a'),(54360,3543,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54361,3543,'_yoast_wpseo_wordproof_timestamp',''),(54362,3544,'inline_featured_image','0'),(54363,3544,'_edit_lock','1715635503:3'),(54364,3544,'_edit_last','3'),(54365,3545,'_wp_attached_file','2024/03/Meadowcroft-Anderson-Valley-Pinot-Noir-Bottleshot.png'),(54366,3545,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:61:\"2024/03/Meadowcroft-Anderson-Valley-Pinot-Noir-Bottleshot.png\";s:8:\"filesize\";i:89658;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-Anderson-Valley-Pinot-Noir-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23579;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-Anderson-Valley-Pinot-Noir-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12693;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-Anderson-Valley-Pinot-Noir-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42222;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-Anderson-Valley-Pinot-Noir-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77878;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-Anderson-Valley-Pinot-Noir-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45765;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-Anderson-Valley-Pinot-Noir-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35058;}s:8:\"tileview\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-Anderson-Valley-Pinot-Noir-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60555;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(54367,3545,'_wp_attachment_image_alt','Meadowcroft Anderson Valley Pinot Noir'),(54368,3544,'allowed_customer_tag_titles','a:0:{}'),(54369,3544,'allowed_customer_club_titles','a:0:{}'),(54370,3544,'linked_brand','3399'),(54371,3544,'_linked_brand','field_59ee2d92496e9'),(54372,3544,'main_image','3545'),(54373,3544,'_main_image','field_59ee319d02900'),(54374,3544,'assets_0_text','Bottle Shot'),(54375,3544,'_assets_0_text','field_59ee31cc02902'),(54376,3544,'assets_0_file_or_url','url'),(54377,3544,'_assets_0_file_or_url','field_59ee31da02903'),(54378,3544,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_Pinot_Noir_Anderson-Valley_15_bottleshot.png'),(54379,3544,'_assets_0_url','field_59ee320b02906'),(54380,3544,'assets','1'),(54381,3544,'_assets','field_59ee31bc02901'),(54382,3544,'varietal','Pinot Noir'),(54383,3544,'_varietal','field_59ee660ece2e7'),(54384,3544,'sub_brand',''),(54385,3544,'_sub_brand','field_59ee6623ce2e8'),(54386,3544,'vintage','2015'),(54387,3544,'_vintage','field_59ee6eba9a39a'),(54388,3544,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54389,3544,'_yoast_wpseo_wordproof_timestamp',''),(54390,3546,'inline_featured_image','0'),(54391,3546,'_edit_lock','1715635491:3'),(54392,3546,'_edit_last','3'),(54393,3546,'allowed_customer_tag_titles','a:0:{}'),(54394,3546,'allowed_customer_club_titles','a:0:{}'),(54395,3546,'linked_brand','3399'),(54396,3546,'_linked_brand','field_59ee2d92496e9'),(54397,3546,'main_image','3545'),(54398,3546,'_main_image','field_59ee319d02900'),(54399,3546,'assets_0_text','Bottle Shot'),(54400,3546,'_assets_0_text','field_59ee31cc02902'),(54401,3546,'assets_0_file_or_url','url'),(54402,3546,'_assets_0_file_or_url','field_59ee31da02903'),(54403,3546,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_Pinot_Noir_Anderson-Valley_16_bottleshot.png'),(54404,3546,'_assets_0_url','field_59ee320b02906'),(54405,3546,'assets','1'),(54406,3546,'_assets','field_59ee31bc02901'),(54407,3546,'varietal','Pinot Noir'),(54408,3546,'_varietal','field_59ee660ece2e7'),(54409,3546,'sub_brand',''),(54410,3546,'_sub_brand','field_59ee6623ce2e8'),(54411,3546,'vintage','2016'),(54412,3546,'_vintage','field_59ee6eba9a39a'),(54413,3546,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54414,3546,'_yoast_wpseo_wordproof_timestamp',''),(54415,3547,'inline_featured_image','0'),(54416,3547,'_edit_lock','1715635478:3'),(54417,3547,'_edit_last','3'),(54418,3547,'allowed_customer_tag_titles','a:0:{}'),(54419,3547,'allowed_customer_club_titles','a:0:{}'),(54420,3547,'linked_brand','3399'),(54421,3547,'_linked_brand','field_59ee2d92496e9'),(54422,3547,'main_image','3545'),(54423,3547,'_main_image','field_59ee319d02900'),(54424,3547,'assets_0_text','Bottle Shot'),(54425,3547,'_assets_0_text','field_59ee31cc02902'),(54426,3547,'assets_0_file_or_url','url'),(54427,3547,'_assets_0_file_or_url','field_59ee31da02903'),(54428,3547,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_PiontNoir_AndersonValley_2018.png'),(54429,3547,'_assets_0_url','field_59ee320b02906'),(54430,3547,'assets_1_text','Tech Sheet'),(54431,3547,'_assets_1_text','field_59ee31cc02902'),(54432,3547,'assets_1_file_or_url','url'),(54433,3547,'_assets_1_file_or_url','field_59ee31da02903'),(54434,3547,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018_PinotAnderson_TECHSheet.pdf'),(54435,3547,'_assets_1_url','field_59ee320b02906'),(54436,3547,'assets','2'),(54437,3547,'_assets','field_59ee31bc02901'),(54438,3547,'varietal','Pinot Noir'),(54439,3547,'_varietal','field_59ee660ece2e7'),(54440,3547,'sub_brand',''),(54441,3547,'_sub_brand','field_59ee6623ce2e8'),(54442,3547,'vintage','2018'),(54443,3547,'_vintage','field_59ee6eba9a39a'),(54444,3547,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54445,3547,'_yoast_wpseo_wordproof_timestamp',''),(54446,3548,'inline_featured_image','0'),(54447,3548,'_edit_lock','1715635467:3'),(54448,3548,'_edit_last','3'),(54449,3548,'allowed_customer_tag_titles','a:0:{}'),(54450,3548,'allowed_customer_club_titles','a:0:{}'),(54451,3548,'linked_brand','3399'),(54452,3548,'_linked_brand','field_59ee2d92496e9'),(54453,3548,'main_image','3545'),(54454,3548,'_main_image','field_59ee319d02900'),(54455,3548,'assets_0_text','Bottle Shot'),(54456,3548,'_assets_0_text','field_59ee31cc02902'),(54457,3548,'assets_0_file_or_url','url'),(54458,3548,'_assets_0_file_or_url','field_59ee31da02903'),(54459,3548,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_PinotNoir_AndersonValley_2019.png'),(54460,3548,'_assets_0_url','field_59ee320b02906'),(54461,3548,'assets_1_text','Tech Sheet'),(54462,3548,'_assets_1_text','field_59ee31cc02902'),(54463,3548,'assets_1_file_or_url','url'),(54464,3548,'_assets_1_file_or_url','field_59ee31da02903'),(54465,3548,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2019PinotAnderson_TECHSheet.pdf'),(54466,3548,'_assets_1_url','field_59ee320b02906'),(54467,3548,'assets','2'),(54468,3548,'_assets','field_59ee31bc02901'),(54469,3548,'varietal','Pinot Noir'),(54470,3548,'_varietal','field_59ee660ece2e7'),(54471,3548,'sub_brand',''),(54472,3548,'_sub_brand','field_59ee6623ce2e8'),(54473,3548,'vintage','2019'),(54474,3548,'_vintage','field_59ee6eba9a39a'),(54475,3548,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54476,3548,'_yoast_wpseo_wordproof_timestamp',''),(54477,3549,'inline_featured_image','0'),(54478,3549,'_edit_lock','1715635447:3'),(54479,3549,'_edit_last','3'),(54480,3549,'allowed_customer_tag_titles','a:0:{}'),(54481,3549,'allowed_customer_club_titles','a:0:{}'),(54482,3549,'linked_brand','3399'),(54483,3549,'_linked_brand','field_59ee2d92496e9'),(54484,3549,'main_image','3545'),(54485,3549,'_main_image','field_59ee319d02900'),(54486,3549,'assets_0_text','Bottle Shot'),(54487,3549,'_assets_0_text','field_59ee31cc02902'),(54488,3549,'assets_0_file_or_url','url'),(54489,3549,'_assets_0_file_or_url','field_59ee31da02903'),(54490,3549,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_AndersonPinot2020.png'),(54491,3549,'_assets_0_url','field_59ee320b02906'),(54492,3549,'assets_1_text','Tech Sheet'),(54493,3549,'_assets_1_text','field_59ee31cc02902'),(54494,3549,'assets_1_file_or_url','url'),(54495,3549,'_assets_1_file_or_url','field_59ee31da02903'),(54496,3549,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2019PinotAnderson_TECHSheet-1.pdf'),(54497,3549,'_assets_1_url','field_59ee320b02906'),(54498,3549,'assets','2'),(54499,3549,'_assets','field_59ee31bc02901'),(54500,3549,'varietal','Pinot Noir'),(54501,3549,'_varietal','field_59ee660ece2e7'),(54502,3549,'sub_brand',''),(54503,3549,'_sub_brand','field_59ee6623ce2e8'),(54504,3549,'vintage','2020'),(54505,3549,'_vintage','field_59ee6eba9a39a'),(54506,3549,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54507,3549,'_yoast_wpseo_wordproof_timestamp',''),(54508,3550,'inline_featured_image','0'),(54509,3550,'_edit_lock','1715635436:3'),(54510,3550,'_edit_last','3'),(54511,3550,'allowed_customer_tag_titles','a:0:{}'),(54512,3550,'allowed_customer_club_titles','a:0:{}'),(54513,3550,'linked_brand','3399'),(54514,3550,'_linked_brand','field_59ee2d92496e9'),(54515,3550,'main_image','3545'),(54516,3550,'_main_image','field_59ee319d02900'),(54517,3550,'assets_0_text','Bottle Shot'),(54518,3550,'_assets_0_text','field_59ee31cc02902'),(54519,3550,'assets_0_file_or_url','url'),(54520,3550,'_assets_0_file_or_url','field_59ee31da02903'),(54521,3550,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-_21_Pinot_Noir_AndersonValley.png'),(54522,3550,'_assets_0_url','field_59ee320b02906'),(54523,3550,'assets_1_text','Tech Sheet'),(54524,3550,'_assets_1_text','field_59ee31cc02902'),(54525,3550,'assets_1_file_or_url','url'),(54526,3550,'_assets_1_file_or_url','field_59ee31da02903'),(54527,3550,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_2021_AndersonValley_PinotNoir_TECHSheet.pdf'),(54528,3550,'_assets_1_url','field_59ee320b02906'),(54529,3550,'assets','2'),(54530,3550,'_assets','field_59ee31bc02901'),(54531,3550,'varietal','Pinot Noir'),(54532,3550,'_varietal','field_59ee660ece2e7'),(54533,3550,'sub_brand',''),(54534,3550,'_sub_brand','field_59ee6623ce2e8'),(54535,3550,'vintage','2021'),(54536,3550,'_vintage','field_59ee6eba9a39a'),(54537,3550,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54538,3550,'_yoast_wpseo_wordproof_timestamp',''),(54539,3551,'inline_featured_image','0'),(54540,3551,'_edit_lock','1715635414:3'),(54541,3551,'_edit_last','3'),(54542,3552,'_wp_attached_file','2024/03/Meadowcroft-Napa-Carneros-Napa-Pinot-Noir-Bottleshot.png'),(54543,3552,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:64:\"2024/03/Meadowcroft-Napa-Carneros-Napa-Pinot-Noir-Bottleshot.png\";s:8:\"filesize\";i:89346;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:64:\"Meadowcroft-Napa-Carneros-Napa-Pinot-Noir-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23406;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:64:\"Meadowcroft-Napa-Carneros-Napa-Pinot-Noir-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12791;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:64:\"Meadowcroft-Napa-Carneros-Napa-Pinot-Noir-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42427;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:64:\"Meadowcroft-Napa-Carneros-Napa-Pinot-Noir-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77680;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:64:\"Meadowcroft-Napa-Carneros-Napa-Pinot-Noir-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45925;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:64:\"Meadowcroft-Napa-Carneros-Napa-Pinot-Noir-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35319;}s:8:\"tileview\";a:5:{s:4:\"file\";s:64:\"Meadowcroft-Napa-Carneros-Napa-Pinot-Noir-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60389;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(54544,3552,'_wp_attachment_image_alt','Meadowcroft Napa Carneros Napa Pinot Noir'),(54545,3551,'allowed_customer_tag_titles','a:0:{}'),(54546,3551,'allowed_customer_club_titles','a:0:{}'),(54547,3551,'linked_brand','3399'),(54548,3551,'_linked_brand','field_59ee2d92496e9'),(54549,3551,'main_image','3552'),(54550,3551,'_main_image','field_59ee319d02900'),(54551,3551,'assets_0_text','Bottle Shot'),(54552,3551,'_assets_0_text','field_59ee31cc02902'),(54553,3551,'assets_0_file_or_url','url'),(54554,3551,'_assets_0_file_or_url','field_59ee31da02903'),(54555,3551,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_Pinot_Noir_CarnerosNapa_15_bottleshot-1.png'),(54556,3551,'_assets_0_url','field_59ee320b02906'),(54557,3551,'assets_1_text','Tech Sheet'),(54558,3551,'_assets_1_text','field_59ee31cc02902'),(54559,3551,'assets_1_file_or_url','url'),(54560,3551,'_assets_1_file_or_url','field_59ee31da02903'),(54561,3551,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2015NapaPinotnoir_TECHSheet.pdf'),(54562,3551,'_assets_1_url','field_59ee320b02906'),(54563,3551,'assets','2'),(54564,3551,'_assets','field_59ee31bc02901'),(54565,3551,'varietal','Pinot Noir'),(54566,3551,'_varietal','field_59ee660ece2e7'),(54567,3551,'sub_brand',''),(54568,3551,'_sub_brand','field_59ee6623ce2e8'),(54569,3551,'vintage','2015'),(54570,3551,'_vintage','field_59ee6eba9a39a'),(54571,3551,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54572,3551,'_yoast_wpseo_wordproof_timestamp',''),(54573,3553,'inline_featured_image','0'),(54574,3553,'_edit_lock','1715635404:3'),(54575,3553,'_edit_last','3'),(54576,3553,'allowed_customer_tag_titles','a:0:{}'),(54577,3553,'allowed_customer_club_titles','a:0:{}'),(54578,3553,'linked_brand','3399'),(54579,3553,'_linked_brand','field_59ee2d92496e9'),(54580,3553,'main_image','3552'),(54581,3553,'_main_image','field_59ee319d02900'),(54582,3553,'assets_0_text','Bottle Shot'),(54583,3553,'_assets_0_text','field_59ee31cc02902'),(54584,3553,'assets_0_file_or_url','url'),(54585,3553,'_assets_0_file_or_url','field_59ee31da02903'),(54586,3553,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/16PNNVLCv2_1.png'),(54587,3553,'_assets_0_url','field_59ee320b02906'),(54588,3553,'assets_1_text','Tech Sheet'),(54589,3553,'_assets_1_text','field_59ee31cc02902'),(54590,3553,'assets_1_file_or_url','url'),(54591,3553,'_assets_1_file_or_url','field_59ee31da02903'),(54592,3553,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2016NapaPinotnoir_TECHSheet.pdf'),(54593,3553,'_assets_1_url','field_59ee320b02906'),(54594,3553,'assets','2'),(54595,3553,'_assets','field_59ee31bc02901'),(54596,3553,'varietal','Pinot Noir'),(54597,3553,'_varietal','field_59ee660ece2e7'),(54598,3553,'sub_brand',''),(54599,3553,'_sub_brand','field_59ee6623ce2e8'),(54600,3553,'vintage','2016'),(54601,3553,'_vintage','field_59ee6eba9a39a'),(54602,3553,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54603,3553,'_yoast_wpseo_wordproof_timestamp',''),(54604,3554,'inline_featured_image','0'),(54605,3554,'_edit_lock','1715635386:3'),(54606,3554,'_edit_last','3'),(54607,3554,'allowed_customer_tag_titles','a:0:{}'),(54608,3554,'allowed_customer_club_titles','a:0:{}'),(54609,3554,'linked_brand','3399'),(54610,3554,'_linked_brand','field_59ee2d92496e9'),(54611,3554,'main_image','3552'),(54612,3554,'_main_image','field_59ee319d02900'),(54613,3554,'assets_0_text','Bottle Shot'),(54614,3554,'_assets_0_text','field_59ee31cc02902'),(54615,3554,'assets_0_file_or_url','url'),(54616,3554,'_assets_0_file_or_url','field_59ee31da02903'),(54617,3554,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/2017_Cornerstone_CarnerosSonoma_PinotNoir.png'),(54618,3554,'_assets_0_url','field_59ee320b02906'),(54619,3554,'assets_1_text','Tech Sheet'),(54620,3554,'_assets_1_text','field_59ee31cc02902'),(54621,3554,'assets_1_file_or_url','url'),(54622,3554,'_assets_1_file_or_url','field_59ee31da02903'),(54623,3554,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017_CornerstoneVineyard_Pinotnoir_TECHSheet.pdf'),(54624,3554,'_assets_1_url','field_59ee320b02906'),(54625,3554,'assets','2'),(54626,3554,'_assets','field_59ee31bc02901'),(54627,3554,'varietal','Pinot Noir'),(54628,3554,'_varietal','field_59ee660ece2e7'),(54629,3554,'sub_brand',''),(54630,3554,'_sub_brand','field_59ee6623ce2e8'),(54631,3554,'vintage','2017'),(54632,3554,'_vintage','field_59ee6eba9a39a'),(54633,3554,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54634,3554,'_yoast_wpseo_wordproof_timestamp',''),(54635,3555,'inline_featured_image','0'),(54636,3555,'_edit_lock','1715635374:3'),(54637,3555,'_edit_last','3'),(54638,3555,'allowed_customer_tag_titles','a:0:{}'),(54639,3555,'allowed_customer_club_titles','a:0:{}'),(54640,3555,'linked_brand','3399'),(54641,3555,'_linked_brand','field_59ee2d92496e9'),(54642,3555,'main_image','3552'),(54643,3555,'_main_image','field_59ee319d02900'),(54644,3555,'assets_0_text','Bottle Shot'),(54645,3555,'_assets_0_text','field_59ee31cc02902'),(54646,3555,'assets_0_file_or_url','url'),(54647,3555,'_assets_0_file_or_url','field_59ee31da02903'),(54648,3555,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_PinotNoir_Carneros_Napa_2021.png'),(54649,3555,'_assets_0_url','field_59ee320b02906'),(54650,3555,'assets_1_text','Tech Sheet'),(54651,3555,'_assets_1_text','field_59ee31cc02902'),(54652,3555,'assets_1_file_or_url','url'),(54653,3555,'_assets_1_file_or_url','field_59ee31da02903'),(54654,3555,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-PinotNoir-NapaCarn-correct.pdf'),(54655,3555,'_assets_1_url','field_59ee320b02906'),(54656,3555,'assets','2'),(54657,3555,'_assets','field_59ee31bc02901'),(54658,3555,'varietal','Pinot Noir'),(54659,3555,'_varietal','field_59ee660ece2e7'),(54660,3555,'sub_brand',''),(54661,3555,'_sub_brand','field_59ee6623ce2e8'),(54662,3555,'vintage','2021'),(54663,3555,'_vintage','field_59ee6eba9a39a'),(54664,3555,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54665,3555,'_yoast_wpseo_wordproof_timestamp',''),(54685,3557,'inline_featured_image','0'),(54686,3557,'_edit_lock','1715635333:3'),(54687,3557,'_edit_last','3'),(54689,3559,'_wp_attached_file','2024/03/2022-PinotNoir-NapaCarneros.pdf'),(54690,3559,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:35:\"2022-PinotNoir-NapaCarneros-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123205;}s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"2022-PinotNoir-NapaCarneros-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10538;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"2022-PinotNoir-NapaCarneros-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68189;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"2022-PinotNoir-NapaCarneros-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5313;}}s:8:\"filesize\";i:138344;}'),(54691,3560,'_wp_attached_file','2024/03/Meadowcroft-Cabernet-Franc-Rivino-Vineyard_Bottleshot.png'),(54692,3560,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:65:\"2024/03/Meadowcroft-Cabernet-Franc-Rivino-Vineyard_Bottleshot.png\";s:8:\"filesize\";i:95364;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:65:\"Meadowcroft-Cabernet-Franc-Rivino-Vineyard_Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24175;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:65:\"Meadowcroft-Cabernet-Franc-Rivino-Vineyard_Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20985;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:65:\"Meadowcroft-Cabernet-Franc-Rivino-Vineyard_Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58403;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:65:\"Meadowcroft-Cabernet-Franc-Rivino-Vineyard_Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82773;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:65:\"Meadowcroft-Cabernet-Franc-Rivino-Vineyard_Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63209;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:65:\"Meadowcroft-Cabernet-Franc-Rivino-Vineyard_Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50783;}s:8:\"tileview\";a:5:{s:4:\"file\";s:65:\"Meadowcroft-Cabernet-Franc-Rivino-Vineyard_Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73992;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(54693,3560,'_wp_attachment_image_alt','Meadowcroft Cabernet Franc Rivino Vineyard'),(54694,3557,'allowed_customer_tag_titles','a:0:{}'),(54695,3557,'allowed_customer_club_titles','a:0:{}'),(54696,3557,'linked_brand','3399'),(54697,3557,'_linked_brand','field_59ee2d92496e9'),(54698,3557,'main_image','3560'),(54699,3557,'_main_image','field_59ee319d02900'),(54700,3557,'assets_0_text','Bottle Shot'),(54701,3557,'_assets_0_text','field_59ee31cc02902'),(54702,3557,'assets_0_file_or_url','url'),(54703,3557,'_assets_0_file_or_url','field_59ee31da02903'),(54704,3557,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018.png'),(54705,3557,'_assets_0_url','field_59ee320b02906'),(54706,3557,'assets_1_text','Tech Sheet'),(54707,3557,'_assets_1_text','field_59ee31cc02902'),(54708,3557,'assets_1_file_or_url','url'),(54709,3557,'_assets_1_file_or_url','field_59ee31da02903'),(54710,3557,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018CabernetFrancRivinoMendo_TECHSheet.pdf'),(54711,3557,'_assets_1_url','field_59ee320b02906'),(54712,3557,'assets','2'),(54713,3557,'_assets','field_59ee31bc02901'),(54714,3557,'varietal','Cabernet Franc'),(54715,3557,'_varietal','field_59ee660ece2e7'),(54716,3557,'sub_brand',''),(54717,3557,'_sub_brand','field_59ee6623ce2e8'),(54718,3557,'vintage','2018'),(54719,3557,'_vintage','field_59ee6eba9a39a'),(54720,3557,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54721,3557,'_yoast_wpseo_wordproof_timestamp',''),(54722,3561,'inline_featured_image','0'),(54723,3561,'_edit_lock','1715635320:3'),(54724,3561,'_edit_last','3'),(54725,3561,'allowed_customer_tag_titles','a:0:{}'),(54726,3561,'allowed_customer_club_titles','a:0:{}'),(54727,3561,'linked_brand','3399'),(54728,3561,'_linked_brand','field_59ee2d92496e9'),(54729,3561,'main_image','3560'),(54730,3561,'_main_image','field_59ee319d02900'),(54731,3561,'assets_0_text','Bottle Shot'),(54732,3561,'_assets_0_text','field_59ee31cc02902'),(54733,3561,'assets_0_file_or_url','url'),(54734,3561,'_assets_0_file_or_url','field_59ee31da02903'),(54735,3561,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021_CabFranc_RivinoVineyard-1.png'),(54736,3561,'_assets_0_url','field_59ee320b02906'),(54737,3561,'assets_1_text','Tech Sheet'),(54738,3561,'_assets_1_text','field_59ee31cc02902'),(54739,3561,'assets_1_file_or_url','url'),(54740,3561,'_assets_1_file_or_url','field_59ee31da02903'),(54741,3561,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-CabernetFranc-Rivino.pdf'),(54742,3561,'_assets_1_url','field_59ee320b02906'),(54743,3561,'assets','2'),(54744,3561,'_assets','field_59ee31bc02901'),(54745,3561,'varietal','Cabernet Franc'),(54746,3561,'_varietal','field_59ee660ece2e7'),(54747,3561,'sub_brand',''),(54748,3561,'_sub_brand','field_59ee6623ce2e8'),(54749,3561,'vintage','2021'),(54750,3561,'_vintage','field_59ee6eba9a39a'),(54751,3561,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54752,3561,'_yoast_wpseo_wordproof_timestamp',''),(54754,3563,'inline_featured_image','0'),(54755,3563,'_edit_lock','1715635290:3'),(54756,3563,'_edit_last','3'),(54757,3564,'_wp_attached_file','2024/03/Meadowcroft-Sonoma-Coast-Chardonnay-Bottleshot.png'),(54758,3564,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:58:\"2024/03/Meadowcroft-Sonoma-Coast-Chardonnay-Bottleshot.png\";s:8:\"filesize\";i:96307;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"Meadowcroft-Sonoma-Coast-Chardonnay-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25302;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"Meadowcroft-Sonoma-Coast-Chardonnay-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17109;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:58:\"Meadowcroft-Sonoma-Coast-Chardonnay-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49973;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:58:\"Meadowcroft-Sonoma-Coast-Chardonnay-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82087;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:58:\"Meadowcroft-Sonoma-Coast-Chardonnay-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53735;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:58:\"Meadowcroft-Sonoma-Coast-Chardonnay-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42424;}s:8:\"tileview\";a:5:{s:4:\"file\";s:58:\"Meadowcroft-Sonoma-Coast-Chardonnay-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66809;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(54759,3564,'_wp_attachment_image_alt','Meadowcroft Sonoma Coast Chardonnay'),(54760,3563,'allowed_customer_tag_titles','a:0:{}'),(54761,3563,'allowed_customer_club_titles','a:0:{}'),(54762,3563,'linked_brand','3399'),(54763,3563,'_linked_brand','field_59ee2d92496e9'),(54764,3563,'main_image','3564'),(54765,3563,'_main_image','field_59ee319d02900'),(54766,3563,'assets_0_text','Bottle Shot'),(54767,3563,'_assets_0_text','field_59ee31cc02902'),(54768,3563,'assets_0_file_or_url','url'),(54769,3563,'_assets_0_file_or_url','field_59ee31da02903'),(54770,3563,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC2015_CH_SC_BottleShot.png'),(54771,3563,'_assets_0_url','field_59ee320b02906'),(54772,3563,'assets_1_text','Tech Sheet'),(54773,3563,'_assets_1_text','field_59ee31cc02902'),(54774,3563,'assets_1_file_or_url','url'),(54775,3563,'_assets_1_file_or_url','field_59ee31da02903'),(54776,3563,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2015SonomaCoastChard_TECHSheet.pdf'),(54777,3563,'_assets_1_url','field_59ee320b02906'),(54778,3563,'assets','2'),(54779,3563,'_assets','field_59ee31bc02901'),(54780,3563,'varietal','Chardonnay'),(54781,3563,'_varietal','field_59ee660ece2e7'),(54782,3563,'sub_brand',''),(54783,3563,'_sub_brand','field_59ee6623ce2e8'),(54784,3563,'vintage','2015'),(54785,3563,'_vintage','field_59ee6eba9a39a'),(54786,3563,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54787,3563,'_yoast_wpseo_wordproof_timestamp',''),(54788,3565,'inline_featured_image','0'),(54789,3565,'_edit_lock','1715635277:3'),(54790,3565,'_edit_last','3'),(54791,3565,'allowed_customer_tag_titles','a:0:{}'),(54792,3565,'allowed_customer_club_titles','a:0:{}'),(54793,3565,'linked_brand','3399'),(54794,3565,'_linked_brand','field_59ee2d92496e9'),(54795,3565,'main_image','3564'),(54796,3565,'_main_image','field_59ee319d02900'),(54797,3565,'assets_0_text','Bottle Shot'),(54798,3565,'_assets_0_text','field_59ee31cc02902'),(54799,3565,'assets_0_file_or_url','url'),(54800,3565,'_assets_0_file_or_url','field_59ee31da02903'),(54801,3565,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/20_Chard_TaylorsCrown_Bottleshot.png'),(54802,3565,'_assets_0_url','field_59ee320b02906'),(54803,3565,'assets_1_text','Tech Sheet'),(54804,3565,'_assets_1_text','field_59ee31cc02902'),(54805,3565,'assets_1_file_or_url','url'),(54806,3565,'_assets_1_file_or_url','field_59ee31da02903'),(54807,3565,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/20_Chard_Sonoma_TaylorsCrown_TechSheet.pdf'),(54808,3565,'_assets_1_url','field_59ee320b02906'),(54809,3565,'assets','2'),(54810,3565,'_assets','field_59ee31bc02901'),(54811,3565,'varietal','Chardonnay'),(54812,3565,'_varietal','field_59ee660ece2e7'),(54813,3565,'sub_brand',''),(54814,3565,'_sub_brand','field_59ee6623ce2e8'),(54815,3565,'vintage','2020'),(54816,3565,'_vintage','field_59ee6eba9a39a'),(54817,3565,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54818,3565,'_yoast_wpseo_wordproof_timestamp',''),(54819,3566,'inline_featured_image','0'),(54820,3566,'_edit_lock','1715635267:3'),(54821,3566,'_edit_last','3'),(54822,3566,'allowed_customer_tag_titles','a:0:{}'),(54823,3566,'allowed_customer_club_titles','a:0:{}'),(54824,3566,'linked_brand','3399'),(54825,3566,'_linked_brand','field_59ee2d92496e9'),(54826,3566,'main_image','3564'),(54827,3566,'_main_image','field_59ee319d02900'),(54828,3566,'assets_0_text','Bottle Shot'),(54829,3566,'_assets_0_text','field_59ee31cc02902'),(54830,3566,'assets_0_file_or_url','url'),(54831,3566,'_assets_0_file_or_url','field_59ee31da02903'),(54832,3566,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/21_Chard_Vinodelsol_SonomaCoast_bottleshot.png'),(54833,3566,'_assets_0_url','field_59ee320b02906'),(54834,3566,'assets_1_text','Tech Sheet'),(54835,3566,'_assets_1_text','field_59ee31cc02902'),(54836,3566,'assets_1_file_or_url','url'),(54837,3566,'_assets_1_file_or_url','field_59ee31da02903'),(54838,3566,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/21_Chard_Sonoma_VinoDelSol_TechSheet.pdf'),(54839,3566,'_assets_1_url','field_59ee320b02906'),(54840,3566,'assets','2'),(54841,3566,'_assets','field_59ee31bc02901'),(54842,3566,'varietal','Chardonnay'),(54843,3566,'_varietal','field_59ee660ece2e7'),(54844,3566,'sub_brand',''),(54845,3566,'_sub_brand','field_59ee6623ce2e8'),(54846,3566,'vintage','2021'),(54847,3566,'_vintage','field_59ee6eba9a39a'),(54848,3566,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54849,3566,'_yoast_wpseo_wordproof_timestamp',''),(54850,3567,'inline_featured_image','0'),(54851,3567,'_edit_lock','1715635239:3'),(54852,3567,'_edit_last','3'),(54853,3568,'_wp_attached_file','2024/03/Meadowcroft-Napa-Valley-Carneros-Chardonnay-Bottleshot.png'),(54854,3568,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:66:\"2024/03/Meadowcroft-Napa-Valley-Carneros-Chardonnay-Bottleshot.png\";s:8:\"filesize\";i:88310;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Napa-Valley-Carneros-Chardonnay-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26326;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Napa-Valley-Carneros-Chardonnay-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17244;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Napa-Valley-Carneros-Chardonnay-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45559;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Napa-Valley-Carneros-Chardonnay-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75167;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Napa-Valley-Carneros-Chardonnay-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48038;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Napa-Valley-Carneros-Chardonnay-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40081;}s:8:\"tileview\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Napa-Valley-Carneros-Chardonnay-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60595;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(54855,3568,'_wp_attachment_image_alt','Meadowcroft Napa Valley Carneros Chardonnay'),(54856,3567,'allowed_customer_tag_titles','a:0:{}'),(54857,3567,'allowed_customer_club_titles','a:0:{}'),(54858,3567,'linked_brand','3399'),(54859,3567,'_linked_brand','field_59ee2d92496e9'),(54860,3567,'main_image','3568'),(54861,3567,'_main_image','field_59ee319d02900'),(54862,3567,'assets_0_text','Bottle Shot'),(54863,3567,'_assets_0_text','field_59ee31cc02902'),(54864,3567,'assets_0_file_or_url','url'),(54865,3567,'_assets_0_file_or_url','field_59ee31da02903'),(54866,3567,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_Chardonnay_NapaValley_Carneros_2019.png'),(54867,3567,'_assets_0_url','field_59ee320b02906'),(54868,3567,'assets_1_text','Tech Sheet'),(54869,3567,'_assets_1_text','field_59ee31cc02902'),(54870,3567,'assets_1_file_or_url','url'),(54871,3567,'_assets_1_file_or_url','field_59ee31da02903'),(54872,3567,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2019LosCarneros_NapaChard_TECHSheet.pdf'),(54873,3567,'_assets_1_url','field_59ee320b02906'),(54874,3567,'assets','2'),(54875,3567,'_assets','field_59ee31bc02901'),(54876,3567,'varietal','Chardonnay'),(54877,3567,'_varietal','field_59ee660ece2e7'),(54878,3567,'sub_brand',''),(54879,3567,'_sub_brand','field_59ee6623ce2e8'),(54880,3567,'vintage','2019'),(54881,3567,'_vintage','field_59ee6eba9a39a'),(54882,3567,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54883,3567,'_yoast_wpseo_wordproof_timestamp',''),(54884,3569,'inline_featured_image','0'),(54885,3569,'_edit_lock','1715635225:3'),(54886,3569,'_edit_last','3'),(54887,3569,'allowed_customer_tag_titles','a:0:{}'),(54888,3569,'allowed_customer_club_titles','a:0:{}'),(54889,3569,'linked_brand','3399'),(54890,3569,'_linked_brand','field_59ee2d92496e9'),(54891,3569,'main_image','3568'),(54892,3569,'_main_image','field_59ee319d02900'),(54893,3569,'assets_0_text','Bottle Shot'),(54894,3569,'_assets_0_text','field_59ee31cc02902'),(54895,3569,'assets_0_file_or_url','url'),(54896,3569,'_assets_0_file_or_url','field_59ee31da02903'),(54897,3569,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_20_Chard_Napa_Carneros_BottleShot-.png'),(54898,3569,'_assets_0_url','field_59ee320b02906'),(54899,3569,'assets_1_text','Tech Sheet'),(54900,3569,'_assets_1_text','field_59ee31cc02902'),(54901,3569,'assets_1_file_or_url','url'),(54902,3569,'_assets_1_file_or_url','field_59ee31da02903'),(54903,3569,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2020LosCarneros_NapaChard_TECHSheet.pdf'),(54904,3569,'_assets_1_url','field_59ee320b02906'),(54905,3569,'assets','2'),(54906,3569,'_assets','field_59ee31bc02901'),(54907,3569,'varietal','Chardonnay'),(54908,3569,'_varietal','field_59ee660ece2e7'),(54909,3569,'sub_brand',''),(54910,3569,'_sub_brand','field_59ee6623ce2e8'),(54911,3569,'vintage','2020'),(54912,3569,'_vintage','field_59ee6eba9a39a'),(54913,3569,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54914,3569,'_yoast_wpseo_wordproof_timestamp',''),(54915,3570,'inline_featured_image','0'),(54916,3570,'_edit_lock','1715635212:3'),(54917,3570,'_edit_last','3'),(54918,3570,'allowed_customer_tag_titles','a:0:{}'),(54919,3570,'allowed_customer_club_titles','a:0:{}'),(54920,3570,'linked_brand','3399'),(54921,3570,'_linked_brand','field_59ee2d92496e9'),(54922,3570,'main_image','3568'),(54923,3570,'_main_image','field_59ee319d02900'),(54924,3570,'assets_0_text','Bottle Shot'),(54925,3570,'_assets_0_text','field_59ee31cc02902'),(54926,3570,'assets_0_file_or_url','url'),(54927,3570,'_assets_0_file_or_url','field_59ee31da02903'),(54928,3570,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_21_Chard_Napa_Carneros_BottleShot-.png'),(54929,3570,'_assets_0_url','field_59ee320b02906'),(54930,3570,'assets_1_text','Tech Sheet'),(54931,3570,'_assets_1_text','field_59ee31cc02902'),(54932,3570,'assets_1_file_or_url','url'),(54933,3570,'_assets_1_file_or_url','field_59ee31da02903'),(54934,3570,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2021LosCarneros_NapaChard_TECHSheet.pdf'),(54935,3570,'_assets_1_url','field_59ee320b02906'),(54936,3570,'assets','2'),(54937,3570,'_assets','field_59ee31bc02901'),(54938,3570,'varietal','Chardonnay'),(54939,3570,'_varietal','field_59ee660ece2e7'),(54940,3570,'sub_brand',''),(54941,3570,'_sub_brand','field_59ee6623ce2e8'),(54942,3570,'vintage','2021'),(54943,3570,'_vintage','field_59ee6eba9a39a'),(54944,3570,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54945,3570,'_yoast_wpseo_wordproof_timestamp',''),(54946,3571,'inline_featured_image','0'),(54947,3571,'_edit_lock','1715635199:3'),(54948,3571,'_edit_last','3'),(54949,3571,'allowed_customer_tag_titles','a:0:{}'),(54950,3571,'allowed_customer_club_titles','a:0:{}'),(54951,3571,'linked_brand','3399'),(54952,3571,'_linked_brand','field_59ee2d92496e9'),(54953,3571,'main_image','3568'),(54954,3571,'_main_image','field_59ee319d02900'),(54955,3571,'assets_0_text','Bottle Shot'),(54956,3571,'_assets_0_text','field_59ee31cc02902'),(54957,3571,'assets_0_file_or_url','url'),(54958,3571,'_assets_0_file_or_url','field_59ee31da02903'),(54959,3571,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-Chard-Carneros-scaled.jpg'),(54960,3571,'_assets_0_url','field_59ee320b02906'),(54961,3571,'assets_1_text','Tech Sheet'),(54962,3571,'_assets_1_text','field_59ee31cc02902'),(54963,3571,'assets_1_file_or_url','url'),(54964,3571,'_assets_1_file_or_url','field_59ee31da02903'),(54965,3571,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-Chard-NapaCarn.pdf'),(54966,3571,'_assets_1_url','field_59ee320b02906'),(54967,3571,'assets','2'),(54968,3571,'_assets','field_59ee31bc02901'),(54969,3571,'varietal','Chardonnay'),(54970,3571,'_varietal','field_59ee660ece2e7'),(54971,3571,'sub_brand',''),(54972,3571,'_sub_brand','field_59ee6623ce2e8'),(54973,3571,'vintage','2022'),(54974,3571,'_vintage','field_59ee6eba9a39a'),(54975,3571,'_yoast_wpseo_estimated-reading-time-minutes','1'),(54976,3571,'_yoast_wpseo_wordproof_timestamp',''),(54980,3573,'_wp_attached_file','2024/03/Meadowcroft-Carneros-Sonoma-County-Chardonnay-Bottleshot.png'),(54981,3573,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:68:\"2024/03/Meadowcroft-Carneros-Sonoma-County-Chardonnay-Bottleshot.png\";s:8:\"filesize\";i:100761;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:68:\"Meadowcroft-Carneros-Sonoma-County-Chardonnay-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26341;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:68:\"Meadowcroft-Carneros-Sonoma-County-Chardonnay-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17266;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:68:\"Meadowcroft-Carneros-Sonoma-County-Chardonnay-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51618;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:68:\"Meadowcroft-Carneros-Sonoma-County-Chardonnay-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85976;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:68:\"Meadowcroft-Carneros-Sonoma-County-Chardonnay-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55341;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:68:\"Meadowcroft-Carneros-Sonoma-County-Chardonnay-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44023;}s:8:\"tileview\";a:5:{s:4:\"file\";s:68:\"Meadowcroft-Carneros-Sonoma-County-Chardonnay-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68648;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(54982,3573,'_wp_attachment_image_alt','Meadowcroft Carneros Sonoma County Chardonnay'),(54999,3574,'inline_featured_image','0'),(55000,3574,'_edit_lock','1715635162:3'),(55001,3574,'_edit_last','3'),(55002,3574,'allowed_customer_tag_titles','a:0:{}'),(55003,3574,'allowed_customer_club_titles','a:0:{}'),(55004,3574,'linked_brand','3399'),(55005,3574,'_linked_brand','field_59ee2d92496e9'),(55006,3574,'main_image','3573'),(55007,3574,'_main_image','field_59ee319d02900'),(55008,3574,'assets_0_text','Bottle Shot'),(55009,3574,'_assets_0_text','field_59ee31cc02902'),(55010,3574,'assets_0_file_or_url','url'),(55011,3574,'_assets_0_file_or_url','field_59ee31da02903'),(55012,3574,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC2016_CH_SCTY_BottleShot-1.png'),(55013,3574,'_assets_0_url','field_59ee320b02906'),(55014,3574,'assets','1'),(55015,3574,'_assets','field_59ee31bc02901'),(55016,3574,'varietal','Chardonnay'),(55017,3574,'_varietal','field_59ee660ece2e7'),(55018,3574,'sub_brand',''),(55019,3574,'_sub_brand','field_59ee6623ce2e8'),(55020,3574,'vintage','2016'),(55021,3574,'_vintage','field_59ee6eba9a39a'),(55022,3574,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55023,3574,'_yoast_wpseo_wordproof_timestamp',''),(55024,3575,'inline_featured_image','0'),(55025,3575,'_edit_lock','1715635137:3'),(55026,3575,'_edit_last','3'),(55027,3575,'allowed_customer_tag_titles','a:0:{}'),(55028,3575,'allowed_customer_club_titles','a:0:{}'),(55029,3575,'linked_brand','3399'),(55030,3575,'_linked_brand','field_59ee2d92496e9'),(55031,3575,'main_image','3573'),(55032,3575,'_main_image','field_59ee319d02900'),(55033,3575,'assets_0_text','Bottle Shot'),(55034,3575,'_assets_0_text','field_59ee31cc02902'),(55035,3575,'assets_0_file_or_url','url'),(55036,3575,'_assets_0_file_or_url','field_59ee31da02903'),(55037,3575,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_2018_LosCarneros_Chardonnay-1.png'),(55038,3575,'_assets_0_url','field_59ee320b02906'),(55039,3575,'assets_1_text','Tech Sheet'),(55040,3575,'_assets_1_text','field_59ee31cc02902'),(55041,3575,'assets_1_file_or_url','url'),(55042,3575,'_assets_1_file_or_url','field_59ee31da02903'),(55043,3575,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018LosCarneros_SonomaChard_TECHSheet.pdf'),(55044,3575,'_assets_1_url','field_59ee320b02906'),(55045,3575,'assets','2'),(55046,3575,'_assets','field_59ee31bc02901'),(55047,3575,'varietal','Chardonnay'),(55048,3575,'_varietal','field_59ee660ece2e7'),(55049,3575,'sub_brand',''),(55050,3575,'_sub_brand','field_59ee6623ce2e8'),(55051,3575,'vintage','2018'),(55052,3575,'_vintage','field_59ee6eba9a39a'),(55053,3575,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55054,3575,'_yoast_wpseo_wordproof_timestamp',''),(55055,3576,'inline_featured_image','0'),(55056,3576,'_edit_lock','1715634921:3'),(55057,3576,'_edit_last','3'),(55058,3576,'allowed_customer_tag_titles','a:0:{}'),(55059,3576,'allowed_customer_club_titles','a:0:{}'),(55060,3576,'linked_brand','3399'),(55061,3576,'_linked_brand','field_59ee2d92496e9'),(55062,3576,'main_image','3573'),(55063,3576,'_main_image','field_59ee319d02900'),(55064,3576,'assets_0_text','Tech Sheet'),(55065,3576,'_assets_0_text','field_59ee31cc02902'),(55066,3576,'assets_0_file_or_url','url'),(55067,3576,'_assets_0_file_or_url','field_59ee31da02903'),(55068,3576,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2019LosCarneros_SonomaChard_TECHSheet.pdf'),(55069,3576,'_assets_0_url','field_59ee320b02906'),(55070,3576,'assets','1'),(55071,3576,'_assets','field_59ee31bc02901'),(55072,3576,'varietal','Chardonnay'),(55073,3576,'_varietal','field_59ee660ece2e7'),(55074,3576,'sub_brand',''),(55075,3576,'_sub_brand','field_59ee6623ce2e8'),(55076,3576,'vintage','2019'),(55077,3576,'_vintage','field_59ee6eba9a39a'),(55078,3576,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55079,3576,'_yoast_wpseo_wordproof_timestamp',''),(55080,3577,'inline_featured_image','0'),(55081,3577,'_edit_lock','1715635003:3'),(55082,3577,'_edit_last','3'),(55083,3578,'_wp_attached_file','2024/03/Meadowcroft-Chardonnay-Russian-River-Valley-Bottleshot.png'),(55084,3578,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:66:\"2024/03/Meadowcroft-Chardonnay-Russian-River-Valley-Bottleshot.png\";s:8:\"filesize\";i:90452;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Chardonnay-Russian-River-Valley-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24407;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Chardonnay-Russian-River-Valley-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15822;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Chardonnay-Russian-River-Valley-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46213;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Chardonnay-Russian-River-Valley-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:76789;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Chardonnay-Russian-River-Valley-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49739;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Chardonnay-Russian-River-Valley-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38846;}s:8:\"tileview\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Chardonnay-Russian-River-Valley-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61852;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(55085,3578,'_wp_attachment_image_alt','Meadowcroft Chardonnay Russian River Valley'),(55086,3577,'allowed_customer_tag_titles','a:0:{}'),(55087,3577,'allowed_customer_club_titles','a:0:{}'),(55088,3577,'linked_brand','3399'),(55089,3577,'_linked_brand','field_59ee2d92496e9'),(55090,3577,'main_image','3578'),(55091,3577,'_main_image','field_59ee319d02900'),(55092,3577,'assets_0_text','Bottle Shot'),(55093,3577,'_assets_0_text','field_59ee31cc02902'),(55094,3577,'assets_0_file_or_url','url'),(55095,3577,'_assets_0_file_or_url','field_59ee31da02903'),(55096,3577,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft2016RRVChardonnayBottleShot.png'),(55097,3577,'_assets_0_url','field_59ee320b02906'),(55098,3577,'assets','1'),(55099,3577,'_assets','field_59ee31bc02901'),(55100,3577,'varietal','Chardonnay'),(55101,3577,'_varietal','field_59ee660ece2e7'),(55102,3577,'sub_brand',''),(55103,3577,'_sub_brand','field_59ee6623ce2e8'),(55104,3577,'vintage','2016'),(55105,3577,'_vintage','field_59ee6eba9a39a'),(55106,3577,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55107,3577,'_yoast_wpseo_wordproof_timestamp',''),(55108,3579,'inline_featured_image','0'),(55109,3579,'_edit_lock','1715634986:3'),(55110,3579,'_edit_last','3'),(55111,3580,'_wp_attached_file','2024/03/Meadowcroft-Chardonnay-Anderson-Valley-Bottleshot.png'),(55112,3580,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:61:\"2024/03/Meadowcroft-Chardonnay-Anderson-Valley-Bottleshot.png\";s:8:\"filesize\";i:104513;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-Chardonnay-Anderson-Valley-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26394;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-Chardonnay-Anderson-Valley-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17068;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-Chardonnay-Anderson-Valley-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52176;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-Chardonnay-Anderson-Valley-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:88054;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-Chardonnay-Anderson-Valley-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55907;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-Chardonnay-Anderson-Valley-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44705;}s:8:\"tileview\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-Chardonnay-Anderson-Valley-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69598;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(55113,3580,'_wp_attachment_image_alt','Meadowcroft Chardonnay Anderson Valley'),(55114,3579,'allowed_customer_tag_titles','a:0:{}'),(55115,3579,'allowed_customer_club_titles','a:0:{}'),(55116,3579,'linked_brand','3399'),(55117,3579,'_linked_brand','field_59ee2d92496e9'),(55118,3579,'main_image','3580'),(55119,3579,'_main_image','field_59ee319d02900'),(55120,3579,'assets_0_text','Bottle Shot'),(55121,3579,'_assets_0_text','field_59ee31cc02902'),(55122,3579,'assets_0_file_or_url','url'),(55123,3579,'_assets_0_file_or_url','field_59ee31da02903'),(55124,3579,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_21_Chard_AV_MENDOCINO_BottleShot_-1.png'),(55125,3579,'_assets_0_url','field_59ee320b02906'),(55126,3579,'assets_1_text','Tech Sheet'),(55127,3579,'_assets_1_text','field_59ee31cc02902'),(55128,3579,'assets_1_file_or_url','url'),(55129,3579,'_assets_1_file_or_url','field_59ee31da02903'),(55130,3579,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2021_AV_Mendo_TECHSheet-1.pdf'),(55131,3579,'_assets_1_url','field_59ee320b02906'),(55132,3579,'assets','2'),(55133,3579,'_assets','field_59ee31bc02901'),(55134,3579,'varietal','Chardonnay'),(55135,3579,'_varietal','field_59ee660ece2e7'),(55136,3579,'sub_brand',''),(55137,3579,'_sub_brand','field_59ee6623ce2e8'),(55138,3579,'vintage','2021'),(55139,3579,'_vintage','field_59ee6eba9a39a'),(55140,3579,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55141,3579,'_yoast_wpseo_wordproof_timestamp',''),(55142,3581,'inline_featured_image','0'),(55143,3581,'_edit_lock','1715634963:3'),(55144,3581,'_edit_last','3'),(55145,3582,'_wp_attached_file','2024/03/Meadowcroft-Viognier-Dry-Creek-Valley-Bottleshot.png'),(55146,3582,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:60:\"2024/03/Meadowcroft-Viognier-Dry-Creek-Valley-Bottleshot.png\";s:8:\"filesize\";i:88885;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"Meadowcroft-Viognier-Dry-Creek-Valley-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26396;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"Meadowcroft-Viognier-Dry-Creek-Valley-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17303;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:60:\"Meadowcroft-Viognier-Dry-Creek-Valley-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45495;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:60:\"Meadowcroft-Viognier-Dry-Creek-Valley-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75755;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:60:\"Meadowcroft-Viognier-Dry-Creek-Valley-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47852;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:60:\"Meadowcroft-Viognier-Dry-Creek-Valley-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39836;}s:8:\"tileview\";a:5:{s:4:\"file\";s:60:\"Meadowcroft-Viognier-Dry-Creek-Valley-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60355;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(55147,3582,'_wp_attachment_image_alt','Meadowcroft Viognier Dry Creek Valley'),(55148,3581,'allowed_customer_tag_titles','a:0:{}'),(55149,3581,'allowed_customer_club_titles','a:0:{}'),(55150,3581,'linked_brand','3399'),(55151,3581,'_linked_brand','field_59ee2d92496e9'),(55152,3581,'main_image','3582'),(55153,3581,'_main_image','field_59ee319d02900'),(55154,3581,'assets_0_text','Bottle Shot'),(55155,3581,'_assets_0_text','field_59ee31cc02902'),(55156,3581,'assets_0_file_or_url','url'),(55157,3581,'_assets_0_file_or_url','field_59ee31da02903'),(55158,3581,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_2018_Viognier_Louvau_DryCreekValley.png'),(55159,3581,'_assets_0_url','field_59ee320b02906'),(55160,3581,'assets','1'),(55161,3581,'_assets','field_59ee31bc02901'),(55162,3581,'varietal','Viognier'),(55163,3581,'_varietal','field_59ee660ece2e7'),(55164,3581,'sub_brand',''),(55165,3581,'_sub_brand','field_59ee6623ce2e8'),(55166,3581,'vintage','2018'),(55167,3581,'_vintage','field_59ee6eba9a39a'),(55168,3581,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55169,3581,'_yoast_wpseo_wordproof_timestamp',''),(55170,3583,'inline_featured_image','0'),(55171,3583,'_edit_lock','1715634948:3'),(55172,3583,'_edit_last','3'),(55173,3583,'allowed_customer_tag_titles','a:0:{}'),(55174,3583,'allowed_customer_club_titles','a:0:{}'),(55175,3583,'linked_brand','3399'),(55176,3583,'_linked_brand','field_59ee2d92496e9'),(55177,3583,'main_image','3582'),(55178,3583,'_main_image','field_59ee319d02900'),(55179,3583,'assets_0_text','Bottle Shot'),(55180,3583,'_assets_0_text','field_59ee31cc02902'),(55181,3583,'assets_0_file_or_url','url'),(55182,3583,'_assets_0_file_or_url','field_59ee31da02903'),(55183,3583,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_2019_LouvauVineyard_DryCreekValley_Viognier.png'),(55184,3583,'_assets_0_url','field_59ee320b02906'),(55185,3583,'assets_1_text','Tech Sheet'),(55186,3583,'_assets_1_text','field_59ee31cc02902'),(55187,3583,'assets_1_file_or_url','url'),(55188,3583,'_assets_1_file_or_url','field_59ee31da02903'),(55189,3583,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_2018_DryValleyCreek_LouvauVineyard_Viognier_TECHSheet.pdf'),(55190,3583,'_assets_1_url','field_59ee320b02906'),(55191,3583,'assets','2'),(55192,3583,'_assets','field_59ee31bc02901'),(55193,3583,'varietal','Viognier'),(55194,3583,'_varietal','field_59ee660ece2e7'),(55195,3583,'sub_brand',''),(55196,3583,'_sub_brand','field_59ee6623ce2e8'),(55197,3583,'vintage','2019'),(55198,3583,'_vintage','field_59ee6eba9a39a'),(55199,3583,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55200,3583,'_yoast_wpseo_wordproof_timestamp',''),(55201,3584,'inline_featured_image','0'),(55202,3584,'_edit_lock','1715634928:3'),(55203,3584,'_edit_last','3'),(55204,3584,'allowed_customer_tag_titles','a:0:{}'),(55205,3584,'allowed_customer_club_titles','a:0:{}'),(55206,3584,'linked_brand','3399'),(55207,3584,'_linked_brand','field_59ee2d92496e9'),(55208,3584,'main_image','3582'),(55209,3584,'_main_image','field_59ee319d02900'),(55210,3584,'assets_0_text','Tech Sheet'),(55211,3584,'_assets_0_text','field_59ee31cc02902'),(55212,3584,'assets_0_file_or_url','url'),(55213,3584,'_assets_0_file_or_url','field_59ee31da02903'),(55214,3584,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_2020_DryValleyCreek_LouvauVineyard_Viognier_TECHSheet.pdf'),(55215,3584,'_assets_0_url','field_59ee320b02906'),(55216,3584,'assets','1'),(55217,3584,'_assets','field_59ee31bc02901'),(55218,3584,'varietal','Viognier'),(55219,3584,'_varietal','field_59ee660ece2e7'),(55220,3584,'sub_brand',''),(55221,3584,'_sub_brand','field_59ee6623ce2e8'),(55222,3584,'vintage','2020'),(55223,3584,'_vintage','field_59ee6eba9a39a'),(55224,3584,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55225,3584,'_yoast_wpseo_wordproof_timestamp',''),(55226,3585,'inline_featured_image','0'),(55227,3585,'_edit_lock','1715634910:3'),(55228,3585,'_edit_last','3'),(55229,3585,'allowed_customer_tag_titles','a:0:{}'),(55230,3585,'allowed_customer_club_titles','a:0:{}'),(55231,3585,'linked_brand','3399'),(55232,3585,'_linked_brand','field_59ee2d92496e9'),(55233,3585,'main_image','3582'),(55234,3585,'_main_image','field_59ee319d02900'),(55235,3585,'assets_0_text','Bottle Shot'),(55236,3585,'_assets_0_text','field_59ee31cc02902'),(55237,3585,'assets_0_file_or_url','url'),(55238,3585,'_assets_0_file_or_url','field_59ee31da02903'),(55239,3585,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_2021_Viognier_WYLDVIN_BottleShot.png'),(55240,3585,'_assets_0_url','field_59ee320b02906'),(55241,3585,'assets_1_text','Tech Sheet'),(55242,3585,'_assets_1_text','field_59ee31cc02902'),(55243,3585,'assets_1_file_or_url','url'),(55244,3585,'_assets_1_file_or_url','field_59ee31da02903'),(55245,3585,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2021_Viognier_WYLDVIN_Tech_Sheet-1.pdf'),(55246,3585,'_assets_1_url','field_59ee320b02906'),(55247,3585,'assets','2'),(55248,3585,'_assets','field_59ee31bc02901'),(55249,3585,'varietal','Viognier'),(55250,3585,'_varietal','field_59ee660ece2e7'),(55251,3585,'sub_brand',''),(55252,3585,'_sub_brand','field_59ee6623ce2e8'),(55253,3585,'vintage','2021'),(55254,3585,'_vintage','field_59ee6eba9a39a'),(55255,3585,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55256,3585,'_yoast_wpseo_wordproof_timestamp',''),(55257,3586,'inline_featured_image','0'),(55258,3586,'_edit_lock','1715634894:3'),(55259,3586,'_edit_last','3'),(55260,3586,'allowed_customer_tag_titles','a:0:{}'),(55261,3586,'allowed_customer_club_titles','a:0:{}'),(55262,3586,'linked_brand','3399'),(55263,3586,'_linked_brand','field_59ee2d92496e9'),(55264,3586,'main_image','3582'),(55265,3586,'_main_image','field_59ee319d02900'),(55266,3586,'assets_0_text','Bottle Shot'),(55267,3586,'_assets_0_text','field_59ee31cc02902'),(55268,3586,'assets_0_file_or_url','url'),(55269,3586,'_assets_0_file_or_url','field_59ee31da02903'),(55270,3586,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-Viognier-scaled.jpg'),(55271,3586,'_assets_0_url','field_59ee320b02906'),(55272,3586,'assets_1_text','Tech Sheet'),(55273,3586,'_assets_1_text','field_59ee31cc02902'),(55274,3586,'assets_1_file_or_url','url'),(55275,3586,'_assets_1_file_or_url','field_59ee31da02903'),(55276,3586,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-Viognier.pdf'),(55277,3586,'_assets_1_url','field_59ee320b02906'),(55278,3586,'assets','2'),(55279,3586,'_assets','field_59ee31bc02901'),(55280,3586,'varietal','Viognier'),(55281,3586,'_varietal','field_59ee660ece2e7'),(55282,3586,'sub_brand',''),(55283,3586,'_sub_brand','field_59ee6623ce2e8'),(55284,3586,'vintage','2022'),(55285,3586,'_vintage','field_59ee6eba9a39a'),(55286,3586,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55287,3586,'_yoast_wpseo_wordproof_timestamp',''),(55288,3587,'inline_featured_image','0'),(55289,3587,'_edit_lock','1715634879:3'),(55290,3587,'_edit_last','3'),(55291,3588,'_wp_attached_file','2024/03/Meadowcroft-Pinot-Blanc-Nelson-Ranch-Vineyard-Mendocino-Bottleshot.png'),(55292,3588,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:78:\"2024/03/Meadowcroft-Pinot-Blanc-Nelson-Ranch-Vineyard-Mendocino-Bottleshot.png\";s:8:\"filesize\";i:94701;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:78:\"Meadowcroft-Pinot-Blanc-Nelson-Ranch-Vineyard-Mendocino-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27100;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:78:\"Meadowcroft-Pinot-Blanc-Nelson-Ranch-Vineyard-Mendocino-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17459;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:78:\"Meadowcroft-Pinot-Blanc-Nelson-Ranch-Vineyard-Mendocino-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47806;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:78:\"Meadowcroft-Pinot-Blanc-Nelson-Ranch-Vineyard-Mendocino-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80331;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:78:\"Meadowcroft-Pinot-Blanc-Nelson-Ranch-Vineyard-Mendocino-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50589;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:78:\"Meadowcroft-Pinot-Blanc-Nelson-Ranch-Vineyard-Mendocino-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41608;}s:8:\"tileview\";a:5:{s:4:\"file\";s:78:\"Meadowcroft-Pinot-Blanc-Nelson-Ranch-Vineyard-Mendocino-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63628;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(55293,3588,'_wp_attachment_image_alt','Meadowcroft Pinot Blanc Nelson Ranch Vineyard Mendocino'),(55294,3587,'allowed_customer_tag_titles','a:0:{}'),(55295,3587,'allowed_customer_club_titles','a:0:{}'),(55296,3587,'linked_brand','3399'),(55297,3587,'_linked_brand','field_59ee2d92496e9'),(55298,3587,'main_image','3588'),(55299,3587,'_main_image','field_59ee319d02900'),(55300,3587,'assets_0_text','Bottle Shot'),(55301,3587,'_assets_0_text','field_59ee31cc02902'),(55302,3587,'assets_0_file_or_url','url'),(55303,3587,'_assets_0_file_or_url','field_59ee31da02903'),(55304,3587,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/2020_Pinot_Blanc_Bottleshot-1.png'),(55305,3587,'_assets_0_url','field_59ee320b02906'),(55306,3587,'assets_1_text','Tech Sheet'),(55307,3587,'_assets_1_text','field_59ee31cc02902'),(55308,3587,'assets_1_file_or_url','url'),(55309,3587,'_assets_1_file_or_url','field_59ee31da02903'),(55310,3587,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_2020_Pinot-Blanc_RivinoVNYD_Mendocino_TECHSheet-1.pdf'),(55311,3587,'_assets_1_url','field_59ee320b02906'),(55312,3587,'assets','2'),(55313,3587,'_assets','field_59ee31bc02901'),(55314,3587,'varietal','Pinot Blanc'),(55315,3587,'_varietal','field_59ee660ece2e7'),(55316,3587,'sub_brand',''),(55317,3587,'_sub_brand','field_59ee6623ce2e8'),(55318,3587,'vintage','2020'),(55319,3587,'_vintage','field_59ee6eba9a39a'),(55320,3587,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55321,3587,'_yoast_wpseo_wordproof_timestamp',''),(55322,3589,'inline_featured_image','0'),(55323,3589,'_edit_lock','1715634848:3'),(55324,3589,'_edit_last','3'),(55325,3589,'allowed_customer_tag_titles','a:0:{}'),(55326,3589,'allowed_customer_club_titles','a:0:{}'),(55327,3589,'linked_brand','3399'),(55328,3589,'_linked_brand','field_59ee2d92496e9'),(55329,3589,'main_image','3588'),(55330,3589,'_main_image','field_59ee319d02900'),(55331,3589,'assets_0_text','Bottle Shot'),(55332,3589,'_assets_0_text','field_59ee31cc02902'),(55333,3589,'assets_0_file_or_url','url'),(55334,3589,'_assets_0_file_or_url','field_59ee31da02903'),(55335,3589,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/2021_Pinot_Blanc_Bottleshot-1.png'),(55336,3589,'_assets_0_url','field_59ee320b02906'),(55337,3589,'assets_1_text','Tech Sheet'),(55338,3589,'_assets_1_text','field_59ee31cc02902'),(55339,3589,'assets_1_file_or_url','url'),(55340,3589,'_assets_1_file_or_url','field_59ee31da02903'),(55341,3589,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2021_Pinot_Blanc_Mendocino_Tech_Sheet-1.pdf'),(55342,3589,'_assets_1_url','field_59ee320b02906'),(55343,3589,'assets','2'),(55344,3589,'_assets','field_59ee31bc02901'),(55345,3589,'varietal','Pinot Blanc'),(55346,3589,'_varietal','field_59ee660ece2e7'),(55347,3589,'sub_brand',''),(55348,3589,'_sub_brand','field_59ee6623ce2e8'),(55349,3589,'vintage','2021'),(55350,3589,'_vintage','field_59ee6eba9a39a'),(55351,3589,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55352,3589,'_yoast_wpseo_wordproof_timestamp',''),(55353,3590,'inline_featured_image','0'),(55354,3590,'_edit_lock','1715634822:3'),(55355,3590,'_edit_last','3'),(55356,3590,'allowed_customer_tag_titles','a:0:{}'),(55357,3590,'allowed_customer_club_titles','a:0:{}'),(55358,3590,'linked_brand','3399'),(55359,3590,'_linked_brand','field_59ee2d92496e9'),(55360,3590,'main_image','3588'),(55361,3590,'_main_image','field_59ee319d02900'),(55362,3590,'assets_0_text','Bottle Shot'),(55363,3590,'_assets_0_text','field_59ee31cc02902'),(55364,3590,'assets_0_file_or_url','url'),(55365,3590,'_assets_0_file_or_url','field_59ee31da02903'),(55366,3590,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-PinotBlanc-scaled.jpg'),(55367,3590,'_assets_0_url','field_59ee320b02906'),(55368,3590,'assets_1_text','Tech Sheet'),(55369,3590,'_assets_1_text','field_59ee31cc02902'),(55370,3590,'assets_1_file_or_url','url'),(55371,3590,'_assets_1_file_or_url','field_59ee31da02903'),(55372,3590,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-PinotBlanc.pdf'),(55373,3590,'_assets_1_url','field_59ee320b02906'),(55374,3590,'assets','2'),(55375,3590,'_assets','field_59ee31bc02901'),(55376,3590,'varietal','Pinot Blanc'),(55377,3590,'_varietal','field_59ee660ece2e7'),(55378,3590,'sub_brand',''),(55379,3590,'_sub_brand','field_59ee6623ce2e8'),(55380,3590,'vintage','2022'),(55381,3590,'_vintage','field_59ee6eba9a39a'),(55382,3590,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55383,3590,'_yoast_wpseo_wordproof_timestamp',''),(55384,3591,'inline_featured_image','0'),(55385,3591,'_edit_lock','1715634793:3'),(55386,3591,'_edit_last','3'),(55387,3592,'_wp_attached_file','2024/03/Meadowcroft-Roussanne-Dry-Creek-Valley-Bottleshot.png'),(55388,3592,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:61:\"2024/03/Meadowcroft-Roussanne-Dry-Creek-Valley-Bottleshot.png\";s:8:\"filesize\";i:89410;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-Roussanne-Dry-Creek-Valley-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26213;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-Roussanne-Dry-Creek-Valley-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17092;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-Roussanne-Dry-Creek-Valley-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45381;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-Roussanne-Dry-Creek-Valley-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:76215;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-Roussanne-Dry-Creek-Valley-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47667;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-Roussanne-Dry-Creek-Valley-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39856;}s:8:\"tileview\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-Roussanne-Dry-Creek-Valley-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60662;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(55389,3592,'_wp_attachment_image_alt','Meadowcroft Roussanne Dry Creek Valley'),(55390,3591,'allowed_customer_tag_titles','a:0:{}'),(55391,3591,'allowed_customer_club_titles','a:0:{}'),(55392,3591,'linked_brand','3399'),(55393,3591,'_linked_brand','field_59ee2d92496e9'),(55394,3591,'main_image','3592'),(55395,3591,'_main_image','field_59ee319d02900'),(55396,3591,'assets_0_text','Bottle Shot'),(55397,3591,'_assets_0_text','field_59ee31cc02902'),(55398,3591,'assets_0_file_or_url','url'),(55399,3591,'_assets_0_file_or_url','field_59ee31da02903'),(55400,3591,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_Roussanne_Louvau_DryCreekValley.png'),(55401,3591,'_assets_0_url','field_59ee320b02906'),(55402,3591,'assets_1_text','Tech Sheet'),(55403,3591,'_assets_1_text','field_59ee31cc02902'),(55404,3591,'assets_1_file_or_url','url'),(55405,3591,'_assets_1_file_or_url','field_59ee31da02903'),(55406,3591,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_2018_Roussanne_Louvau_DryCreekValley_TECHSheet-update.pdf'),(55407,3591,'_assets_1_url','field_59ee320b02906'),(55408,3591,'assets','2'),(55409,3591,'_assets','field_59ee31bc02901'),(55410,3591,'varietal','Roussanne'),(55411,3591,'_varietal','field_59ee660ece2e7'),(55412,3591,'sub_brand',''),(55413,3591,'_sub_brand','field_59ee6623ce2e8'),(55414,3591,'vintage','2018'),(55415,3591,'_vintage','field_59ee6eba9a39a'),(55416,3591,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55417,3591,'_yoast_wpseo_wordproof_timestamp',''),(55418,3593,'inline_featured_image','0'),(55419,3593,'_edit_lock','1715634769:3'),(55420,3593,'_edit_last','3'),(55421,3593,'allowed_customer_tag_titles','a:0:{}'),(55422,3593,'allowed_customer_club_titles','a:0:{}'),(55423,3593,'linked_brand','3399'),(55424,3593,'_linked_brand','field_59ee2d92496e9'),(55425,3593,'main_image','3592'),(55426,3593,'_main_image','field_59ee319d02900'),(55427,3593,'assets_0_text','Bottle Shot'),(55428,3593,'_assets_0_text','field_59ee31cc02902'),(55429,3593,'assets_0_file_or_url','url'),(55430,3593,'_assets_0_file_or_url','field_59ee31da02903'),(55431,3593,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_Roussanne_DCV_LouvauVineyard_2019.png'),(55432,3593,'_assets_0_url','field_59ee320b02906'),(55433,3593,'assets_1_text','Tech Sheet'),(55434,3593,'_assets_1_text','field_59ee31cc02902'),(55435,3593,'assets_1_file_or_url','url'),(55436,3593,'_assets_1_file_or_url','field_59ee31da02903'),(55437,3593,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_2019_Roussanne_Louvau_DryCreekValley_TECHSheet.pdf'),(55438,3593,'_assets_1_url','field_59ee320b02906'),(55439,3593,'assets','2'),(55440,3593,'_assets','field_59ee31bc02901'),(55441,3593,'varietal','Roussanne'),(55442,3593,'_varietal','field_59ee660ece2e7'),(55443,3593,'sub_brand',''),(55444,3593,'_sub_brand','field_59ee6623ce2e8'),(55445,3593,'vintage','2019'),(55446,3593,'_vintage','field_59ee6eba9a39a'),(55447,3593,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55448,3593,'_yoast_wpseo_wordproof_timestamp',''),(55449,3594,'inline_featured_image','0'),(55450,3594,'_edit_lock','1715634752:3'),(55451,3594,'_edit_last','3'),(55452,3594,'allowed_customer_tag_titles','a:0:{}'),(55453,3594,'allowed_customer_club_titles','a:0:{}'),(55454,3594,'linked_brand','3399'),(55455,3594,'_linked_brand','field_59ee2d92496e9'),(55456,3594,'main_image','3592'),(55457,3594,'_main_image','field_59ee319d02900'),(55458,3594,'assets_0_text','Bottle Shot'),(55459,3594,'_assets_0_text','field_59ee31cc02902'),(55460,3594,'assets_0_file_or_url','url'),(55461,3594,'_assets_0_file_or_url','field_59ee31da02903'),(55462,3594,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_Roussanne_2020_Bottleshot_png.png'),(55463,3594,'_assets_0_url','field_59ee320b02906'),(55464,3594,'assets_1_text','Tech Sheet'),(55465,3594,'_assets_1_text','field_59ee31cc02902'),(55466,3594,'assets_1_file_or_url','url'),(55467,3594,'_assets_1_file_or_url','field_59ee31da02903'),(55468,3594,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_2020_Roussanne_Louvau_DryCreekValley_TECHSheet.pdf'),(55469,3594,'_assets_1_url','field_59ee320b02906'),(55470,3594,'assets','2'),(55471,3594,'_assets','field_59ee31bc02901'),(55472,3594,'varietal','Roussanne'),(55473,3594,'_varietal','field_59ee660ece2e7'),(55474,3594,'sub_brand',''),(55475,3594,'_sub_brand','field_59ee6623ce2e8'),(55476,3594,'vintage','2020'),(55477,3594,'_vintage','field_59ee6eba9a39a'),(55478,3594,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55479,3594,'_yoast_wpseo_wordproof_timestamp',''),(55480,3595,'inline_featured_image','0'),(55481,3595,'_edit_lock','1715634737:3'),(55482,3595,'_edit_last','3'),(55483,3595,'allowed_customer_tag_titles','a:0:{}'),(55484,3595,'allowed_customer_club_titles','a:0:{}'),(55485,3595,'linked_brand','3399'),(55486,3595,'_linked_brand','field_59ee2d92496e9'),(55487,3595,'main_image','3592'),(55488,3595,'_main_image','field_59ee319d02900'),(55489,3595,'assets_0_text','Bottle Shot'),(55490,3595,'_assets_0_text','field_59ee31cc02902'),(55491,3595,'assets_0_file_or_url','url'),(55492,3595,'_assets_0_file_or_url','field_59ee31da02903'),(55493,3595,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_Roussanne_2021_Bottleshot.png'),(55494,3595,'_assets_0_url','field_59ee320b02906'),(55495,3595,'assets_1_text','Tech Sheet'),(55496,3595,'_assets_1_text','field_59ee31cc02902'),(55497,3595,'assets_1_file_or_url','url'),(55498,3595,'_assets_1_file_or_url','field_59ee31da02903'),(55499,3595,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2021_Roussanne_Mendocino_Tech_Sheet.pdf'),(55500,3595,'_assets_1_url','field_59ee320b02906'),(55501,3595,'assets','2'),(55502,3595,'_assets','field_59ee31bc02901'),(55503,3595,'varietal','Roussanne'),(55504,3595,'_varietal','field_59ee660ece2e7'),(55505,3595,'sub_brand',''),(55506,3595,'_sub_brand','field_59ee6623ce2e8'),(55507,3595,'vintage','2021'),(55508,3595,'_vintage','field_59ee6eba9a39a'),(55509,3595,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55510,3595,'_yoast_wpseo_wordproof_timestamp',''),(55511,3596,'inline_featured_image','0'),(55512,3596,'_edit_lock','1715634716:3'),(55513,3596,'_edit_last','3'),(55514,3596,'allowed_customer_tag_titles','a:0:{}'),(55515,3596,'allowed_customer_club_titles','a:0:{}'),(55516,3596,'linked_brand','3399'),(55517,3596,'_linked_brand','field_59ee2d92496e9'),(55518,3596,'main_image','3592'),(55519,3596,'_main_image','field_59ee319d02900'),(55520,3596,'assets_0_text','Bottle Shot'),(55521,3596,'_assets_0_text','field_59ee31cc02902'),(55522,3596,'assets_0_file_or_url','url'),(55523,3596,'_assets_0_file_or_url','field_59ee31da02903'),(55524,3596,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-Roussanne-scaled.jpg'),(55525,3596,'_assets_0_url','field_59ee320b02906'),(55526,3596,'assets_1_text','Tech Sheet'),(55527,3596,'_assets_1_text','field_59ee31cc02902'),(55528,3596,'assets_1_file_or_url','url'),(55529,3596,'_assets_1_file_or_url','field_59ee31da02903'),(55530,3596,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-Roussanne.pdf'),(55531,3596,'_assets_1_url','field_59ee320b02906'),(55532,3596,'assets','2'),(55533,3596,'_assets','field_59ee31bc02901'),(55534,3596,'varietal','Roussanne'),(55535,3596,'_varietal','field_59ee660ece2e7'),(55536,3596,'sub_brand',''),(55537,3596,'_sub_brand','field_59ee6623ce2e8'),(55538,3596,'vintage','2022'),(55539,3596,'_vintage','field_59ee6eba9a39a'),(55540,3596,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55541,3596,'_yoast_wpseo_wordproof_timestamp',''),(55542,3597,'inline_featured_image','0'),(55543,3597,'_edit_lock','1715635109:3'),(55544,3597,'_edit_last','3'),(55545,3598,'_wp_attached_file','2024/03/Meadowcroft-Sonoma-Coast-Sauvignon-Blanc-Bottleshot.png'),(55546,3598,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:63:\"2024/03/Meadowcroft-Sonoma-Coast-Sauvignon-Blanc-Bottleshot.png\";s:8:\"filesize\";i:92065;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:63:\"Meadowcroft-Sonoma-Coast-Sauvignon-Blanc-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26181;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:63:\"Meadowcroft-Sonoma-Coast-Sauvignon-Blanc-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18590;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:63:\"Meadowcroft-Sonoma-Coast-Sauvignon-Blanc-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49681;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:63:\"Meadowcroft-Sonoma-Coast-Sauvignon-Blanc-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:74401;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:63:\"Meadowcroft-Sonoma-Coast-Sauvignon-Blanc-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52218;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:63:\"Meadowcroft-Sonoma-Coast-Sauvignon-Blanc-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42734;}s:8:\"tileview\";a:5:{s:4:\"file\";s:63:\"Meadowcroft-Sonoma-Coast-Sauvignon-Blanc-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60419;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(55547,3598,'_wp_attachment_image_alt','Meadowcroft Sonoma Coast Sauvignon Blanc'),(55548,3597,'allowed_customer_tag_titles','a:0:{}'),(55549,3597,'allowed_customer_club_titles','a:0:{}'),(55550,3597,'linked_brand','3399'),(55551,3597,'_linked_brand','field_59ee2d92496e9'),(55552,3597,'main_image','3598'),(55553,3597,'_main_image','field_59ee319d02900'),(55554,3597,'assets_0_text','Bottle Shot'),(55555,3597,'_assets_0_text','field_59ee31cc02902'),(55556,3597,'assets_0_file_or_url','url'),(55557,3597,'_assets_0_file_or_url','field_59ee31da02903'),(55558,3597,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_SauvBlanc_SonomaCoast_2020.png'),(55559,3597,'_assets_0_url','field_59ee320b02906'),(55560,3597,'assets_1_text','Tech Sheet'),(55561,3597,'_assets_1_text','field_59ee31cc02902'),(55562,3597,'assets_1_file_or_url','url'),(55563,3597,'_assets_1_file_or_url','field_59ee31da02903'),(55564,3597,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2020SonomaCoastSauvBlanc_TECHSheet.pdf'),(55565,3597,'_assets_1_url','field_59ee320b02906'),(55566,3597,'assets','2'),(55567,3597,'_assets','field_59ee31bc02901'),(55568,3597,'varietal','Sauvignon Blanc'),(55569,3597,'_varietal','field_59ee660ece2e7'),(55570,3597,'sub_brand',''),(55571,3597,'_sub_brand','field_59ee6623ce2e8'),(55572,3597,'vintage','2020'),(55573,3597,'_vintage','field_59ee6eba9a39a'),(55574,3597,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55575,3597,'_yoast_wpseo_wordproof_timestamp',''),(55576,3599,'inline_featured_image','0'),(55577,3599,'_edit_lock','1715634694:3'),(55578,3599,'_edit_last','3'),(55579,3599,'allowed_customer_tag_titles','a:0:{}'),(55580,3599,'allowed_customer_club_titles','a:0:{}'),(55581,3599,'linked_brand','3399'),(55582,3599,'_linked_brand','field_59ee2d92496e9'),(55583,3599,'main_image','3598'),(55584,3599,'_main_image','field_59ee319d02900'),(55585,3599,'assets_0_text','Bottle Shot'),(55586,3599,'_assets_0_text','field_59ee31cc02902'),(55587,3599,'assets_0_file_or_url','url'),(55588,3599,'_assets_0_file_or_url','field_59ee31da02903'),(55589,3599,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_SauvBlanc_SonomaCoast_2021.png'),(55590,3599,'_assets_0_url','field_59ee320b02906'),(55591,3599,'assets_1_text','Tech Sheet'),(55592,3599,'_assets_1_text','field_59ee31cc02902'),(55593,3599,'assets_1_file_or_url','url'),(55594,3599,'_assets_1_file_or_url','field_59ee31da02903'),(55595,3599,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2021SonomaCoastSauvBlanc_TECHSheet.pdf'),(55596,3599,'_assets_1_url','field_59ee320b02906'),(55597,3599,'assets','2'),(55598,3599,'_assets','field_59ee31bc02901'),(55599,3599,'varietal','Sauvignon Blanc'),(55600,3599,'_varietal','field_59ee660ece2e7'),(55601,3599,'sub_brand',''),(55602,3599,'_sub_brand','field_59ee6623ce2e8'),(55603,3599,'vintage','2021'),(55604,3599,'_vintage','field_59ee6eba9a39a'),(55605,3599,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55606,3599,'_yoast_wpseo_wordproof_timestamp',''),(55626,3601,'inline_featured_image','0'),(55627,3601,'_edit_lock','1715634667:3'),(55628,3601,'_edit_last','3'),(55629,3601,'allowed_customer_tag_titles','a:0:{}'),(55630,3601,'allowed_customer_club_titles','a:0:{}'),(55631,3601,'linked_brand','3399'),(55632,3601,'_linked_brand','field_59ee2d92496e9'),(55633,3601,'main_image','3598'),(55634,3601,'_main_image','field_59ee319d02900'),(55635,3601,'assets_0_text','Bottle Shot'),(55636,3601,'_assets_0_text','field_59ee31cc02902'),(55637,3601,'assets_0_file_or_url','url'),(55638,3601,'_assets_0_file_or_url','field_59ee31da02903'),(55639,3601,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2023-SauvignonBlanc-scaled.jpg'),(55640,3601,'_assets_0_url','field_59ee320b02906'),(55641,3601,'assets_1_text','Tech Sheet'),(55642,3601,'_assets_1_text','field_59ee31cc02902'),(55643,3601,'assets_1_file_or_url','url'),(55644,3601,'_assets_1_file_or_url','field_59ee31da02903'),(55645,3601,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2023-SauvBlanc.pdf'),(55646,3601,'_assets_1_url','field_59ee320b02906'),(55647,3601,'assets','2'),(55648,3601,'_assets','field_59ee31bc02901'),(55649,3601,'varietal','Sauvignon Blanc'),(55650,3601,'_varietal','field_59ee660ece2e7'),(55651,3601,'sub_brand',''),(55652,3601,'_sub_brand','field_59ee6623ce2e8'),(55653,3601,'vintage','2023'),(55654,3601,'_vintage','field_59ee6eba9a39a'),(55655,3601,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55656,3601,'_yoast_wpseo_wordproof_timestamp',''),(55657,3602,'inline_featured_image','0'),(55658,3602,'_edit_lock','1715634644:3'),(55659,3602,'_edit_last','3'),(55660,3603,'_wp_attached_file','2024/03/Meadowcroft-Nelson-Ranch-Vineyard-Mendocino-Riesling-Bottleshot.png'),(55661,3603,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:75:\"2024/03/Meadowcroft-Nelson-Ranch-Vineyard-Mendocino-Riesling-Bottleshot.png\";s:8:\"filesize\";i:95159;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:75:\"Meadowcroft-Nelson-Ranch-Vineyard-Mendocino-Riesling-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24559;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:75:\"Meadowcroft-Nelson-Ranch-Vineyard-Mendocino-Riesling-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15842;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:75:\"Meadowcroft-Nelson-Ranch-Vineyard-Mendocino-Riesling-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47653;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:75:\"Meadowcroft-Nelson-Ranch-Vineyard-Mendocino-Riesling-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79608;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:75:\"Meadowcroft-Nelson-Ranch-Vineyard-Mendocino-Riesling-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50817;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:75:\"Meadowcroft-Nelson-Ranch-Vineyard-Mendocino-Riesling-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40498;}s:8:\"tileview\";a:5:{s:4:\"file\";s:75:\"Meadowcroft-Nelson-Ranch-Vineyard-Mendocino-Riesling-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63593;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(55662,3603,'_wp_attachment_image_alt','Meadowcroft Nelson Ranch Vineyard Mendocino Riesling'),(55663,3602,'allowed_customer_tag_titles','a:0:{}'),(55664,3602,'allowed_customer_club_titles','a:0:{}'),(55665,3602,'linked_brand','3399'),(55666,3602,'_linked_brand','field_59ee2d92496e9'),(55667,3602,'main_image','3603'),(55668,3602,'_main_image','field_59ee319d02900'),(55669,3602,'assets_0_text','Bottle Shot'),(55670,3602,'_assets_0_text','field_59ee31cc02902'),(55671,3602,'assets_0_file_or_url','url'),(55672,3602,'_assets_0_file_or_url','field_59ee31da02903'),(55673,3602,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC15_Riesling_BottleShot-scaled-1.jpg'),(55674,3602,'_assets_0_url','field_59ee320b02906'),(55675,3602,'assets_1_text','Tech Sheet'),(55676,3602,'_assets_1_text','field_59ee31cc02902'),(55677,3602,'assets_1_file_or_url','url'),(55678,3602,'_assets_1_file_or_url','field_59ee31da02903'),(55679,3602,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/15Riesling_Tech-1.pdf'),(55680,3602,'_assets_1_url','field_59ee320b02906'),(55681,3602,'assets','2'),(55682,3602,'_assets','field_59ee31bc02901'),(55683,3602,'varietal','Riesling'),(55684,3602,'_varietal','field_59ee660ece2e7'),(55685,3602,'sub_brand',''),(55686,3602,'_sub_brand','field_59ee6623ce2e8'),(55687,3602,'vintage','2015'),(55688,3602,'_vintage','field_59ee6eba9a39a'),(55689,3602,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55690,3602,'_yoast_wpseo_wordproof_timestamp',''),(55691,3604,'inline_featured_image','0'),(55692,3604,'_edit_lock','1715634619:3'),(55693,3604,'_edit_last','3'),(55694,3604,'allowed_customer_tag_titles','a:0:{}'),(55695,3604,'allowed_customer_club_titles','a:0:{}'),(55696,3604,'linked_brand','3399'),(55697,3604,'_linked_brand','field_59ee2d92496e9'),(55698,3604,'main_image','3603'),(55699,3604,'_main_image','field_59ee319d02900'),(55700,3604,'assets_0_text','Bottle Shot'),(55701,3604,'_assets_0_text','field_59ee31cc02902'),(55702,3604,'assets_0_file_or_url','url'),(55703,3604,'_assets_0_file_or_url','field_59ee31da02903'),(55704,3604,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/16RIMDNV_1.png'),(55705,3604,'_assets_0_url','field_59ee320b02906'),(55706,3604,'assets_1_text','Tech Sheet'),(55707,3604,'_assets_1_text','field_59ee31cc02902'),(55708,3604,'assets_1_file_or_url','url'),(55709,3604,'_assets_1_file_or_url','field_59ee31da02903'),(55710,3604,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2016Riesling_TECHSheet.pdf'),(55711,3604,'_assets_1_url','field_59ee320b02906'),(55712,3604,'assets','2'),(55713,3604,'_assets','field_59ee31bc02901'),(55714,3604,'varietal','Riesling'),(55715,3604,'_varietal','field_59ee660ece2e7'),(55716,3604,'sub_brand',''),(55717,3604,'_sub_brand','field_59ee6623ce2e8'),(55718,3604,'vintage','2016'),(55719,3604,'_vintage','field_59ee6eba9a39a'),(55720,3604,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55721,3604,'_yoast_wpseo_wordproof_timestamp',''),(55722,3605,'inline_featured_image','0'),(55723,3605,'_edit_lock','1715634579:3'),(55724,3605,'_edit_last','3'),(55725,3605,'allowed_customer_tag_titles','a:0:{}'),(55726,3605,'allowed_customer_club_titles','a:0:{}'),(55727,3605,'linked_brand','3399'),(55728,3605,'_linked_brand','field_59ee2d92496e9'),(55729,3605,'main_image','3603'),(55730,3605,'_main_image','field_59ee319d02900'),(55731,3605,'assets_0_text','Bottle Shot'),(55732,3605,'_assets_0_text','field_59ee31cc02902'),(55733,3605,'assets_0_file_or_url','url'),(55734,3605,'_assets_0_file_or_url','field_59ee31da02903'),(55735,3605,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC17_Riesling_BottleShot_warm_dh.png'),(55736,3605,'_assets_0_url','field_59ee320b02906'),(55737,3605,'assets_1_text','Tech Sheet'),(55738,3605,'_assets_1_text','field_59ee31cc02902'),(55739,3605,'assets_1_file_or_url','url'),(55740,3605,'_assets_1_file_or_url','field_59ee31da02903'),(55741,3605,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017Riesling_TECHSheet.pdf'),(55742,3605,'_assets_1_url','field_59ee320b02906'),(55743,3605,'assets','2'),(55744,3605,'_assets','field_59ee31bc02901'),(55745,3605,'varietal','Riesling'),(55746,3605,'_varietal','field_59ee660ece2e7'),(55747,3605,'sub_brand',''),(55748,3605,'_sub_brand','field_59ee6623ce2e8'),(55749,3605,'vintage','2017'),(55750,3605,'_vintage','field_59ee6eba9a39a'),(55751,3605,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55752,3605,'_yoast_wpseo_wordproof_timestamp',''),(55753,3606,'inline_featured_image','0'),(55754,3606,'_edit_lock','1715634587:3'),(55755,3606,'_edit_last','3'),(55756,3606,'allowed_customer_tag_titles','a:0:{}'),(55757,3606,'allowed_customer_club_titles','a:0:{}'),(55758,3606,'linked_brand','3399'),(55759,3606,'_linked_brand','field_59ee2d92496e9'),(55760,3606,'main_image','3603'),(55761,3606,'_main_image','field_59ee319d02900'),(55762,3606,'assets_0_text','Bottle Shot'),(55763,3606,'_assets_0_text','field_59ee31cc02902'),(55764,3606,'assets_0_file_or_url','url'),(55765,3606,'_assets_0_file_or_url','field_59ee31da02903'),(55766,3606,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC18_Riesling_BottleShot.png'),(55767,3606,'_assets_0_url','field_59ee320b02906'),(55768,3606,'assets_1_text','Tech Sheet'),(55769,3606,'_assets_1_text','field_59ee31cc02902'),(55770,3606,'assets_1_file_or_url','url'),(55771,3606,'_assets_1_file_or_url','field_59ee31da02903'),(55772,3606,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018Riesling_TECHSheet.pdf'),(55773,3606,'_assets_1_url','field_59ee320b02906'),(55774,3606,'assets','2'),(55775,3606,'_assets','field_59ee31bc02901'),(55776,3606,'varietal','Riesling'),(55777,3606,'_varietal','field_59ee660ece2e7'),(55778,3606,'sub_brand',''),(55779,3606,'_sub_brand','field_59ee6623ce2e8'),(55780,3606,'vintage','2018'),(55781,3606,'_vintage','field_59ee6eba9a39a'),(55782,3606,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55783,3606,'_yoast_wpseo_wordproof_timestamp',''),(55784,3607,'inline_featured_image','0'),(55785,3607,'_edit_lock','1715634523:3'),(55786,3607,'_edit_last','3'),(55787,3608,'_wp_attached_file','2024/03/Meadowcroft-French-Colombard-Russian-River-Valley-Bottleshot.png'),(55788,3608,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:72:\"2024/03/Meadowcroft-French-Colombard-Russian-River-Valley-Bottleshot.png\";s:8:\"filesize\";i:105272;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:72:\"Meadowcroft-French-Colombard-Russian-River-Valley-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28415;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:72:\"Meadowcroft-French-Colombard-Russian-River-Valley-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19695;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:72:\"Meadowcroft-French-Colombard-Russian-River-Valley-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54662;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:72:\"Meadowcroft-French-Colombard-Russian-River-Valley-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84044;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:72:\"Meadowcroft-French-Colombard-Russian-River-Valley-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57494;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:72:\"Meadowcroft-French-Colombard-Russian-River-Valley-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47361;}s:8:\"tileview\";a:5:{s:4:\"file\";s:72:\"Meadowcroft-French-Colombard-Russian-River-Valley-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66365;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(55789,3608,'_wp_attachment_image_alt','Meadowcroft French Colombard Russian River Valley'),(55790,3607,'allowed_customer_tag_titles','a:0:{}'),(55791,3607,'allowed_customer_club_titles','a:0:{}'),(55792,3607,'linked_brand','3399'),(55793,3607,'_linked_brand','field_59ee2d92496e9'),(55794,3607,'main_image','3608'),(55795,3607,'_main_image','field_59ee319d02900'),(55796,3607,'assets_0_text','Bottle Shot'),(55797,3607,'_assets_0_text','field_59ee31cc02902'),(55798,3607,'assets_0_file_or_url','url'),(55799,3607,'_assets_0_file_or_url','field_59ee31da02903'),(55800,3607,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_FrenchColombard_2016_bottleshot.png'),(55801,3607,'_assets_0_url','field_59ee320b02906'),(55802,3607,'assets_1_text','Tech Sheet'),(55803,3607,'_assets_1_text','field_59ee31cc02902'),(55804,3607,'assets_1_file_or_url','url'),(55805,3607,'_assets_1_file_or_url','field_59ee31da02903'),(55806,3607,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Sunset_FrenchColombard16_Roussanne16_BestofClass-1.pdf'),(55807,3607,'_assets_1_url','field_59ee320b02906'),(55808,3607,'assets','2'),(55809,3607,'_assets','field_59ee31bc02901'),(55810,3607,'varietal','French Colombard'),(55811,3607,'_varietal','field_59ee660ece2e7'),(55812,3607,'sub_brand',''),(55813,3607,'_sub_brand','field_59ee6623ce2e8'),(55814,3607,'vintage','2016'),(55815,3607,'_vintage','field_59ee6eba9a39a'),(55816,3607,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55817,3607,'_yoast_wpseo_wordproof_timestamp',''),(55818,3609,'inline_featured_image','0'),(55819,3609,'_edit_lock','1715634506:3'),(55820,3609,'_edit_last','3'),(55821,3609,'allowed_customer_tag_titles','a:0:{}'),(55822,3609,'allowed_customer_club_titles','a:0:{}'),(55823,3609,'linked_brand','3399'),(55824,3609,'_linked_brand','field_59ee2d92496e9'),(55825,3609,'main_image','3608'),(55826,3609,'_main_image','field_59ee319d02900'),(55827,3609,'assets_0_text','Bottle Shot'),(55828,3609,'_assets_0_text','field_59ee31cc02902'),(55829,3609,'assets_0_file_or_url','url'),(55830,3609,'_assets_0_file_or_url','field_59ee31da02903'),(55831,3609,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_FRENCHCOLUMBARD_2017.png'),(55832,3609,'_assets_0_url','field_59ee320b02906'),(55833,3609,'assets_1_text','Tech Sheet'),(55834,3609,'_assets_1_text','field_59ee31cc02902'),(55835,3609,'assets_1_file_or_url','url'),(55836,3609,'_assets_1_file_or_url','field_59ee31da02903'),(55837,3609,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017RussianRiverFrenchColombard_TECHSheet.pdf'),(55838,3609,'_assets_1_url','field_59ee320b02906'),(55839,3609,'assets','2'),(55840,3609,'_assets','field_59ee31bc02901'),(55841,3609,'varietal','French Colombard'),(55842,3609,'_varietal','field_59ee660ece2e7'),(55843,3609,'sub_brand',''),(55844,3609,'_sub_brand','field_59ee6623ce2e8'),(55845,3609,'vintage','2017'),(55846,3609,'_vintage','field_59ee6eba9a39a'),(55847,3609,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55848,3609,'_yoast_wpseo_wordproof_timestamp',''),(55849,3610,'inline_featured_image','0'),(55850,3610,'_edit_lock','1715634489:3'),(55851,3610,'_edit_last','3'),(55852,3610,'allowed_customer_tag_titles','a:0:{}'),(55853,3610,'allowed_customer_club_titles','a:0:{}'),(55854,3610,'linked_brand','3399'),(55855,3610,'_linked_brand','field_59ee2d92496e9'),(55856,3610,'main_image','3608'),(55857,3610,'_main_image','field_59ee319d02900'),(55858,3610,'assets_0_text','Bottle Shot'),(55859,3610,'_assets_0_text','field_59ee31cc02902'),(55860,3610,'assets_0_file_or_url','url'),(55861,3610,'_assets_0_file_or_url','field_59ee31da02903'),(55862,3610,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_2018_FrenchColombard_BottleShot.png'),(55863,3610,'_assets_0_url','field_59ee320b02906'),(55864,3610,'assets_1_text','Tech Sheet'),(55865,3610,'_assets_1_text','field_59ee31cc02902'),(55866,3610,'assets_1_file_or_url','url'),(55867,3610,'_assets_1_file_or_url','field_59ee31da02903'),(55868,3610,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018RussianRiverFrenchColombard_TECHSheet.pdf'),(55869,3610,'_assets_1_url','field_59ee320b02906'),(55870,3610,'assets','2'),(55871,3610,'_assets','field_59ee31bc02901'),(55872,3610,'varietal','French Colombard'),(55873,3610,'_varietal','field_59ee660ece2e7'),(55874,3610,'sub_brand',''),(55875,3610,'_sub_brand','field_59ee6623ce2e8'),(55876,3610,'vintage','2018'),(55877,3610,'_vintage','field_59ee6eba9a39a'),(55878,3610,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55879,3610,'_yoast_wpseo_wordproof_timestamp',''),(55880,3611,'inline_featured_image','0'),(55881,3611,'_edit_lock','1715634473:3'),(55882,3611,'_edit_last','3'),(55883,3611,'allowed_customer_tag_titles','a:0:{}'),(55884,3611,'allowed_customer_club_titles','a:0:{}'),(55885,3611,'linked_brand','3399'),(55886,3611,'_linked_brand','field_59ee2d92496e9'),(55887,3611,'main_image','3608'),(55888,3611,'_main_image','field_59ee319d02900'),(55889,3611,'assets_0_text','Bottle Shot'),(55890,3611,'_assets_0_text','field_59ee31cc02902'),(55891,3611,'assets_0_file_or_url','url'),(55892,3611,'_assets_0_file_or_url','field_59ee31da02903'),(55893,3611,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_FrenchColombard2019_Bottleshot.png'),(55894,3611,'_assets_0_url','field_59ee320b02906'),(55895,3611,'assets_1_text','Tech Sheet'),(55896,3611,'_assets_1_text','field_59ee31cc02902'),(55897,3611,'assets_1_file_or_url','url'),(55898,3611,'_assets_1_file_or_url','field_59ee31da02903'),(55899,3611,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2019RussianRiverFrenchColombard_TECHSheet.pdf'),(55900,3611,'_assets_1_url','field_59ee320b02906'),(55901,3611,'assets','2'),(55902,3611,'_assets','field_59ee31bc02901'),(55903,3611,'varietal','French Colombard'),(55904,3611,'_varietal','field_59ee660ece2e7'),(55905,3611,'sub_brand',''),(55906,3611,'_sub_brand','field_59ee6623ce2e8'),(55907,3611,'vintage','2019'),(55908,3611,'_vintage','field_59ee6eba9a39a'),(55909,3611,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55910,3611,'_yoast_wpseo_wordproof_timestamp',''),(55911,3612,'inline_featured_image','0'),(55912,3612,'_edit_lock','1715634458:3'),(55913,3612,'_edit_last','3'),(55914,3612,'allowed_customer_tag_titles','a:0:{}'),(55915,3612,'allowed_customer_club_titles','a:0:{}'),(55916,3612,'linked_brand','3399'),(55917,3612,'_linked_brand','field_59ee2d92496e9'),(55918,3612,'main_image','3608'),(55919,3612,'_main_image','field_59ee319d02900'),(55920,3612,'assets_0_text','Bottle Shot'),(55921,3612,'_assets_0_text','field_59ee31cc02902'),(55922,3612,'assets_0_file_or_url','url'),(55923,3612,'_assets_0_file_or_url','field_59ee31da02903'),(55924,3612,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_FrenchColombard2021_Bottleshot.png'),(55925,3612,'_assets_0_url','field_59ee320b02906'),(55926,3612,'assets_1_text','Tech Sheet'),(55927,3612,'_assets_1_text','field_59ee31cc02902'),(55928,3612,'assets_1_file_or_url','url'),(55929,3612,'_assets_1_file_or_url','field_59ee31da02903'),(55930,3612,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2021RussianRiverFrenchColombard_TECHSheet.pdf'),(55931,3612,'_assets_1_url','field_59ee320b02906'),(55932,3612,'assets','2'),(55933,3612,'_assets','field_59ee31bc02901'),(55934,3612,'varietal','French Colombard'),(55935,3612,'_varietal','field_59ee660ece2e7'),(55936,3612,'sub_brand',''),(55937,3612,'_sub_brand','field_59ee6623ce2e8'),(55938,3612,'vintage','2021'),(55939,3612,'_vintage','field_59ee6eba9a39a'),(55940,3612,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55941,3612,'_yoast_wpseo_wordproof_timestamp',''),(55942,3613,'inline_featured_image','0'),(55943,3613,'_edit_lock','1715634440:3'),(55944,3613,'_edit_last','3'),(55945,3613,'allowed_customer_tag_titles','a:0:{}'),(55946,3613,'allowed_customer_club_titles','a:0:{}'),(55947,3613,'linked_brand','3399'),(55948,3613,'_linked_brand','field_59ee2d92496e9'),(55949,3613,'main_image','3608'),(55950,3613,'_main_image','field_59ee319d02900'),(55951,3613,'assets_0_text','Bottle Shot'),(55952,3613,'_assets_0_text','field_59ee31cc02902'),(55953,3613,'assets_0_file_or_url','url'),(55954,3613,'_assets_0_file_or_url','field_59ee31da02903'),(55955,3613,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-FrenchColombard-scaled.jpg'),(55956,3613,'_assets_0_url','field_59ee320b02906'),(55957,3613,'assets_1_text','Tech Sheet'),(55958,3613,'_assets_1_text','field_59ee31cc02902'),(55959,3613,'assets_1_file_or_url','url'),(55960,3613,'_assets_1_file_or_url','field_59ee31da02903'),(55961,3613,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-French-Colombard.pdf'),(55962,3613,'_assets_1_url','field_59ee320b02906'),(55963,3613,'assets','2'),(55964,3613,'_assets','field_59ee31bc02901'),(55965,3613,'varietal','French Colombard'),(55966,3613,'_varietal','field_59ee660ece2e7'),(55967,3613,'sub_brand',''),(55968,3613,'_sub_brand','field_59ee6623ce2e8'),(55969,3613,'vintage','2022'),(55970,3613,'_vintage','field_59ee6eba9a39a'),(55971,3613,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55972,3613,'_yoast_wpseo_wordproof_timestamp',''),(55973,3614,'inline_featured_image','0'),(55974,3614,'_edit_lock','1715634423:3'),(55975,3614,'_edit_last','3'),(55976,3615,'_wp_attached_file','2024/03/Meadowcroft-Pinot-Gris-Nelson-Ranch-Mendocino-Bottleshot.png'),(55977,3615,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:68:\"2024/03/Meadowcroft-Pinot-Gris-Nelson-Ranch-Mendocino-Bottleshot.png\";s:8:\"filesize\";i:92258;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:68:\"Meadowcroft-Pinot-Gris-Nelson-Ranch-Mendocino-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26248;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:68:\"Meadowcroft-Pinot-Gris-Nelson-Ranch-Mendocino-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18397;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:68:\"Meadowcroft-Pinot-Gris-Nelson-Ranch-Mendocino-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49969;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:68:\"Meadowcroft-Pinot-Gris-Nelson-Ranch-Mendocino-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:74711;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:68:\"Meadowcroft-Pinot-Gris-Nelson-Ranch-Mendocino-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52458;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:68:\"Meadowcroft-Pinot-Gris-Nelson-Ranch-Mendocino-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42706;}s:8:\"tileview\";a:5:{s:4:\"file\";s:68:\"Meadowcroft-Pinot-Gris-Nelson-Ranch-Mendocino-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60700;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(55978,3615,'_wp_attachment_image_alt','Meadowcroft Pinot Gris Nelson Ranch Mendocino'),(55979,3614,'allowed_customer_tag_titles','a:0:{}'),(55980,3614,'allowed_customer_club_titles','a:0:{}'),(55981,3614,'linked_brand','3399'),(55982,3614,'_linked_brand','field_59ee2d92496e9'),(55983,3614,'main_image','3615'),(55984,3614,'_main_image','field_59ee319d02900'),(55985,3614,'assets_0_text','Bottle Shot'),(55986,3614,'_assets_0_text','field_59ee31cc02902'),(55987,3614,'assets_0_file_or_url','url'),(55988,3614,'_assets_0_file_or_url','field_59ee31da02903'),(55989,3614,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_21_PinotGris_BottleShot.png'),(55990,3614,'_assets_0_url','field_59ee320b02906'),(55991,3614,'assets_1_text','Tech Sheet'),(55992,3614,'_assets_1_text','field_59ee31cc02902'),(55993,3614,'assets_1_file_or_url','url'),(55994,3614,'_assets_1_file_or_url','field_59ee31da02903'),(55995,3614,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2021_Pinot_Gris_Mendocino_Tech_Sheet.pdf'),(55996,3614,'_assets_1_url','field_59ee320b02906'),(55997,3614,'assets','2'),(55998,3614,'_assets','field_59ee31bc02901'),(55999,3614,'varietal','Pinot Gris'),(56000,3614,'_varietal','field_59ee660ece2e7'),(56001,3614,'sub_brand',''),(56002,3614,'_sub_brand','field_59ee6623ce2e8'),(56003,3614,'vintage','2021'),(56004,3614,'_vintage','field_59ee6eba9a39a'),(56005,3614,'_yoast_wpseo_estimated-reading-time-minutes','1'),(56006,3614,'_yoast_wpseo_wordproof_timestamp',''),(56007,3616,'inline_featured_image','0'),(56008,3616,'_edit_lock','1715634401:3'),(56009,3616,'_edit_last','3'),(56010,3616,'allowed_customer_tag_titles','a:0:{}'),(56011,3616,'allowed_customer_club_titles','a:0:{}'),(56012,3616,'linked_brand','3399'),(56013,3616,'_linked_brand','field_59ee2d92496e9'),(56014,3616,'main_image','3615'),(56015,3616,'_main_image','field_59ee319d02900'),(56016,3616,'assets_0_text','Bottle Shot'),(56017,3616,'_assets_0_text','field_59ee31cc02902'),(56018,3616,'assets_0_file_or_url','url'),(56019,3616,'_assets_0_file_or_url','field_59ee31da02903'),(56020,3616,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-PinotGris-scaled.jpg'),(56021,3616,'_assets_0_url','field_59ee320b02906'),(56022,3616,'assets_1_text','Tech Sheet'),(56023,3616,'_assets_1_text','field_59ee31cc02902'),(56024,3616,'assets_1_file_or_url','url'),(56025,3616,'_assets_1_file_or_url','field_59ee31da02903'),(56026,3616,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2023-Pinot-Gris.pdf'),(56027,3616,'_assets_1_url','field_59ee320b02906'),(56028,3616,'assets','2'),(56029,3616,'_assets','field_59ee31bc02901'),(56030,3616,'varietal','Pinot Gris'),(56031,3616,'_varietal','field_59ee660ece2e7'),(56032,3616,'sub_brand',''),(56033,3616,'_sub_brand','field_59ee6623ce2e8'),(56034,3616,'vintage','2023'),(56035,3616,'_vintage','field_59ee6eba9a39a'),(56036,3616,'_yoast_wpseo_estimated-reading-time-minutes','1'),(56037,3616,'_yoast_wpseo_wordproof_timestamp',''),(56038,3617,'inline_featured_image','0'),(56039,3617,'_edit_lock','1715634365:3'),(56040,3617,'_edit_last','3'),(56041,3618,'_wp_attached_file','2024/03/Meadowcroft-Blanc-de-Blancs-Napa-Valley-Bottleshot.png'),(56042,3618,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:62:\"2024/03/Meadowcroft-Blanc-de-Blancs-Napa-Valley-Bottleshot.png\";s:8:\"filesize\";i:117716;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"Meadowcroft-Blanc-de-Blancs-Napa-Valley-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33956;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"Meadowcroft-Blanc-de-Blancs-Napa-Valley-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22106;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:62:\"Meadowcroft-Blanc-de-Blancs-Napa-Valley-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54515;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:62:\"Meadowcroft-Blanc-de-Blancs-Napa-Valley-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:96162;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:62:\"Meadowcroft-Blanc-de-Blancs-Napa-Valley-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58061;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:62:\"Meadowcroft-Blanc-de-Blancs-Napa-Valley-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47543;}s:8:\"tileview\";a:5:{s:4:\"file\";s:62:\"Meadowcroft-Blanc-de-Blancs-Napa-Valley-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:71001;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(56043,3618,'_wp_attachment_image_alt','Meadowcroft Blanc de Blancs Napa Valley'),(56044,3617,'allowed_customer_tag_titles','a:0:{}'),(56045,3617,'allowed_customer_club_titles','a:0:{}'),(56046,3617,'linked_brand','3399'),(56047,3617,'_linked_brand','field_59ee2d92496e9'),(56048,3617,'main_image','3618'),(56049,3617,'_main_image','field_59ee319d02900'),(56050,3617,'assets_0_text','Bottle Shot'),(56051,3617,'_assets_0_text','field_59ee31cc02902'),(56052,3617,'assets_0_file_or_url','url'),(56053,3617,'_assets_0_file_or_url','field_59ee31da02903'),(56054,3617,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-Sparkling-Bottle-shot-1-1.png'),(56055,3617,'_assets_0_url','field_59ee320b02906'),(56056,3617,'assets_1_text','Tech Sheet'),(56057,3617,'_assets_1_text','field_59ee31cc02902'),(56058,3617,'assets_1_file_or_url','url'),(56059,3617,'_assets_1_file_or_url','field_59ee31da02903'),(56060,3617,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/NV-Blanc-de-Blanc-Tech-Sheet-Revised2.pdf'),(56061,3617,'_assets_1_url','field_59ee320b02906'),(56062,3617,'assets','2'),(56063,3617,'_assets','field_59ee31bc02901'),(56064,3617,'varietal','Blanc de Blanc'),(56065,3617,'_varietal','field_59ee660ece2e7'),(56066,3617,'sub_brand',''),(56067,3617,'_sub_brand','field_59ee6623ce2e8'),(56068,3617,'vintage','2025'),(56069,3617,'_vintage','field_59ee6eba9a39a'),(56070,3617,'_yoast_wpseo_estimated-reading-time-minutes','1'),(56071,3617,'_yoast_wpseo_wordproof_timestamp',''),(56072,3619,'inline_featured_image','0'),(56073,3619,'_edit_lock','1715634348:3'),(56074,3619,'_edit_last','3'),(56075,3620,'_wp_attached_file','2024/03/Meadowcroft-Rose-of-Malbec-Clements-Hills-Bottleshot.png'),(56076,3620,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:64:\"2024/03/Meadowcroft-Rose-of-Malbec-Clements-Hills-Bottleshot.png\";s:8:\"filesize\";i:143085;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:64:\"Meadowcroft-Rose-of-Malbec-Clements-Hills-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37046;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:64:\"Meadowcroft-Rose-of-Malbec-Clements-Hills-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20943;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:64:\"Meadowcroft-Rose-of-Malbec-Clements-Hills-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60399;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:64:\"Meadowcroft-Rose-of-Malbec-Clements-Hills-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:115602;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:64:\"Meadowcroft-Rose-of-Malbec-Clements-Hills-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64357;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:64:\"Meadowcroft-Rose-of-Malbec-Clements-Hills-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52633;}s:8:\"tileview\";a:5:{s:4:\"file\";s:64:\"Meadowcroft-Rose-of-Malbec-Clements-Hills-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85329;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(56077,3620,'_wp_attachment_image_alt','Rosé of Malbec Clements Hills'),(56078,3619,'allowed_customer_tag_titles','a:0:{}'),(56079,3619,'allowed_customer_club_titles','a:0:{}'),(56080,3619,'linked_brand','3399'),(56081,3619,'_linked_brand','field_59ee2d92496e9'),(56082,3619,'main_image','3620'),(56083,3619,'_main_image','field_59ee319d02900'),(56084,3619,'assets_0_text','Bottle Shot'),(56085,3619,'_assets_0_text','field_59ee31cc02902'),(56086,3619,'assets_0_file_or_url','url'),(56087,3619,'_assets_0_file_or_url','field_59ee31da02903'),(56088,3619,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_Rose_2016_BottleShot.png'),(56089,3619,'_assets_0_url','field_59ee320b02906'),(56090,3619,'assets_1_text','Tech Sheet'),(56091,3619,'_assets_1_text','field_59ee31cc02902'),(56092,3619,'assets_1_file_or_url','url'),(56093,3619,'_assets_1_file_or_url','field_59ee31da02903'),(56094,3619,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2016Rose_TECHSheet.pdf'),(56095,3619,'_assets_1_url','field_59ee320b02906'),(56096,3619,'assets','2'),(56097,3619,'_assets','field_59ee31bc02901'),(56098,3619,'varietal','Rosé of Malbec'),(56099,3619,'_varietal','field_59ee660ece2e7'),(56100,3619,'sub_brand',''),(56101,3619,'_sub_brand','field_59ee6623ce2e8'),(56102,3619,'vintage','2016'),(56103,3619,'_vintage','field_59ee6eba9a39a'),(56104,3619,'_yoast_wpseo_estimated-reading-time-minutes','1'),(56105,3619,'_yoast_wpseo_wordproof_timestamp',''),(56106,3621,'inline_featured_image','0'),(56107,3621,'_edit_lock','1715634327:3'),(56108,3621,'_edit_last','3'),(56109,3621,'allowed_customer_tag_titles','a:0:{}'),(56110,3621,'allowed_customer_club_titles','a:0:{}'),(56111,3621,'linked_brand','3399'),(56112,3621,'_linked_brand','field_59ee2d92496e9'),(56113,3621,'main_image','3620'),(56114,3621,'_main_image','field_59ee319d02900'),(56115,3621,'assets_0_text','Bottle Shot'),(56116,3621,'_assets_0_text','field_59ee31cc02902'),(56117,3621,'assets_0_file_or_url','url'),(56118,3621,'_assets_0_file_or_url','field_59ee31da02903'),(56119,3621,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_ROSE_17.png'),(56120,3621,'_assets_0_url','field_59ee320b02906'),(56121,3621,'assets_1_text','Tech Sheet'),(56122,3621,'_assets_1_text','field_59ee31cc02902'),(56123,3621,'assets_1_file_or_url','url'),(56124,3621,'_assets_1_file_or_url','field_59ee31da02903'),(56125,3621,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017Rose_TECHSheet.pdf'),(56126,3621,'_assets_1_url','field_59ee320b02906'),(56127,3621,'assets','2'),(56128,3621,'_assets','field_59ee31bc02901'),(56129,3621,'varietal','Rosé of Malbec'),(56130,3621,'_varietal','field_59ee660ece2e7'),(56131,3621,'sub_brand',''),(56132,3621,'_sub_brand','field_59ee6623ce2e8'),(56133,3621,'vintage','2017'),(56134,3621,'_vintage','field_59ee6eba9a39a'),(56135,3621,'_yoast_wpseo_estimated-reading-time-minutes','1'),(56136,3621,'_yoast_wpseo_wordproof_timestamp',''),(56137,3622,'inline_featured_image','0'),(56138,3622,'_edit_lock','1715634309:3'),(56139,3622,'_edit_last','3'),(56140,3622,'allowed_customer_tag_titles','a:0:{}'),(56141,3622,'allowed_customer_club_titles','a:0:{}'),(56142,3622,'linked_brand','3399'),(56143,3622,'_linked_brand','field_59ee2d92496e9'),(56144,3622,'main_image','3620'),(56145,3622,'_main_image','field_59ee319d02900'),(56146,3622,'assets_0_text','Bottle Shot'),(56147,3622,'_assets_0_text','field_59ee31cc02902'),(56148,3622,'assets_0_file_or_url','url'),(56149,3622,'_assets_0_file_or_url','field_59ee31da02903'),(56150,3622,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_ROSE_18.png'),(56151,3622,'_assets_0_url','field_59ee320b02906'),(56152,3622,'assets_1_text','Tech Sheet'),(56153,3622,'_assets_1_text','field_59ee31cc02902'),(56154,3622,'assets_1_file_or_url','url'),(56155,3622,'_assets_1_file_or_url','field_59ee31da02903'),(56156,3622,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018Rose_TECHSheet.pdf'),(56157,3622,'_assets_1_url','field_59ee320b02906'),(56158,3622,'assets','2'),(56159,3622,'_assets','field_59ee31bc02901'),(56160,3622,'varietal','Rosé of Malbec'),(56161,3622,'_varietal','field_59ee660ece2e7'),(56162,3622,'sub_brand',''),(56163,3622,'_sub_brand','field_59ee6623ce2e8'),(56164,3622,'vintage','2018'),(56165,3622,'_vintage','field_59ee6eba9a39a'),(56166,3622,'_yoast_wpseo_estimated-reading-time-minutes','1'),(56167,3622,'_yoast_wpseo_wordproof_timestamp',''),(56168,3623,'inline_featured_image','0'),(56169,3623,'_edit_lock','1715634289:3'),(56170,3623,'_edit_last','3'),(56171,3623,'allowed_customer_tag_titles','a:0:{}'),(56172,3623,'allowed_customer_club_titles','a:0:{}'),(56173,3623,'linked_brand','3399'),(56174,3623,'_linked_brand','field_59ee2d92496e9'),(56175,3623,'main_image','3620'),(56176,3623,'_main_image','field_59ee319d02900'),(56177,3623,'assets_0_text','Bottle Shot'),(56178,3623,'_assets_0_text','field_59ee31cc02902'),(56179,3623,'assets_0_file_or_url','url'),(56180,3623,'_assets_0_file_or_url','field_59ee31da02903'),(56181,3623,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_Malbec_Rose_2020_BottleShot.png'),(56182,3623,'_assets_0_url','field_59ee320b02906'),(56183,3623,'assets_1_text','Tech Sheet'),(56184,3623,'_assets_1_text','field_59ee31cc02902'),(56185,3623,'assets_1_file_or_url','url'),(56186,3623,'_assets_1_file_or_url','field_59ee31da02903'),(56187,3623,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2020Rose_TECHSheet.pdf'),(56188,3623,'_assets_1_url','field_59ee320b02906'),(56189,3623,'assets','2'),(56190,3623,'_assets','field_59ee31bc02901'),(56191,3623,'varietal','Rosé of Malbec'),(56192,3623,'_varietal','field_59ee660ece2e7'),(56193,3623,'sub_brand',''),(56194,3623,'_sub_brand','field_59ee6623ce2e8'),(56195,3623,'vintage','2020'),(56196,3623,'_vintage','field_59ee6eba9a39a'),(56197,3623,'_yoast_wpseo_estimated-reading-time-minutes','1'),(56198,3623,'_yoast_wpseo_wordproof_timestamp',''),(56199,3624,'inline_featured_image','0'),(56200,3624,'_edit_lock','1715634240:3'),(56201,3624,'_edit_last','3'),(56202,3625,'_wp_attached_file','2024/03/Meadowcroft-Rose-of-Pinot-Noir-Sonoma-Coast-Bottleshot.png'),(56203,3625,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:66:\"2024/03/Meadowcroft-Rose-of-Pinot-Noir-Sonoma-Coast-Bottleshot.png\";s:8:\"filesize\";i:104961;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Rose-of-Pinot-Noir-Sonoma-Coast-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28209;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Rose-of-Pinot-Noir-Sonoma-Coast-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20239;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Rose-of-Pinot-Noir-Sonoma-Coast-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54990;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Rose-of-Pinot-Noir-Sonoma-Coast-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84245;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Rose-of-Pinot-Noir-Sonoma-Coast-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58136;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Rose-of-Pinot-Noir-Sonoma-Coast-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47064;}s:8:\"tileview\";a:5:{s:4:\"file\";s:66:\"Meadowcroft-Rose-of-Pinot-Noir-Sonoma-Coast-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67612;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(56204,3625,'_wp_attachment_image_alt','Meadowcroft Rosé of Pinot Noir Sonoma Coast'),(56205,3624,'allowed_customer_tag_titles','a:0:{}'),(56206,3624,'allowed_customer_club_titles','a:0:{}'),(56207,3624,'linked_brand','3399'),(56208,3624,'_linked_brand','field_59ee2d92496e9'),(56209,3624,'main_image','3625'),(56210,3624,'_main_image','field_59ee319d02900'),(56211,3624,'assets_0_text','Tech Sheet'),(56212,3624,'_assets_0_text','field_59ee31cc02902'),(56213,3624,'assets_0_file_or_url','url'),(56214,3624,'_assets_0_file_or_url','field_59ee31da02903'),(56215,3624,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2019RoseSC_TECHSheet.pdf'),(56216,3624,'_assets_0_url','field_59ee320b02906'),(56217,3624,'assets','1'),(56218,3624,'_assets','field_59ee31bc02901'),(56219,3624,'varietal','Rosé of Pinot Noir'),(56220,3624,'_varietal','field_59ee660ece2e7'),(56221,3624,'sub_brand',''),(56222,3624,'_sub_brand','field_59ee6623ce2e8'),(56223,3624,'vintage','2019'),(56224,3624,'_vintage','field_59ee6eba9a39a'),(56225,3624,'_yoast_wpseo_estimated-reading-time-minutes','1'),(56226,3624,'_yoast_wpseo_wordproof_timestamp',''),(56227,3626,'inline_featured_image','0'),(56228,3626,'_edit_lock','1715634114:3'),(56229,3626,'_edit_last','3'),(56230,3626,'allowed_customer_tag_titles','a:0:{}'),(56231,3626,'allowed_customer_club_titles','a:0:{}'),(56232,3626,'linked_brand','3399'),(56233,3626,'_linked_brand','field_59ee2d92496e9'),(56234,3626,'main_image','3625'),(56235,3626,'_main_image','field_59ee319d02900'),(56236,3626,'assets_0_text','Bottle Shot'),(56237,3626,'_assets_0_text','field_59ee31cc02902'),(56238,3626,'assets_0_file_or_url','url'),(56239,3626,'_assets_0_file_or_url','field_59ee31da02903'),(56240,3626,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_Pinot_Rose_2020_BottleShot.png'),(56241,3626,'_assets_0_url','field_59ee320b02906'),(56242,3626,'assets_1_text','Tech Sheet'),(56243,3626,'_assets_1_text','field_59ee31cc02902'),(56244,3626,'assets_1_file_or_url','url'),(56245,3626,'_assets_1_file_or_url','field_59ee31da02903'),(56246,3626,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2020RoseSC_TECHSheet.pdf'),(56247,3626,'_assets_1_url','field_59ee320b02906'),(56248,3626,'assets','2'),(56249,3626,'_assets','field_59ee31bc02901'),(56250,3626,'varietal','Rosé of Pinot Noir'),(56251,3626,'_varietal','field_59ee660ece2e7'),(56252,3626,'sub_brand',''),(56253,3626,'_sub_brand','field_59ee6623ce2e8'),(56254,3626,'vintage','2020'),(56255,3626,'_vintage','field_59ee6eba9a39a'),(56256,3626,'_yoast_wpseo_estimated-reading-time-minutes','1'),(56257,3626,'_yoast_wpseo_wordproof_timestamp',''),(56258,3627,'inline_featured_image','0'),(56259,3627,'_edit_lock','1715115913:3'),(56260,3627,'_edit_last','3'),(56261,3627,'allowed_customer_tag_titles','a:0:{}'),(56262,3627,'allowed_customer_club_titles','a:0:{}'),(56263,3627,'linked_brand','3399'),(56264,3627,'_linked_brand','field_59ee2d92496e9'),(56265,3627,'main_image','3625'),(56266,3627,'_main_image','field_59ee319d02900'),(56267,3627,'assets_0_text','Bottle Shot'),(56268,3627,'_assets_0_text','field_59ee31cc02902'),(56269,3627,'assets_0_file_or_url','url'),(56270,3627,'_assets_0_file_or_url','field_59ee31da02903'),(56271,3627,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_2021_Rose_Sonoma-Coast_BottleShot.png'),(56272,3627,'_assets_0_url','field_59ee320b02906'),(56273,3627,'assets_1_text','Tech Sheet'),(56274,3627,'_assets_1_text','field_59ee31cc02902'),(56275,3627,'assets_1_file_or_url','url'),(56276,3627,'_assets_1_file_or_url','field_59ee31da02903'),(56277,3627,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2021_Rose_Somoma-Coast_TechSheet.pdf'),(56278,3627,'_assets_1_url','field_59ee320b02906'),(56279,3627,'assets','2'),(56280,3627,'_assets','field_59ee31bc02901'),(56281,3627,'varietal','Rosé of Pinot Noir'),(56282,3627,'_varietal','field_59ee660ece2e7'),(56283,3627,'sub_brand',''),(56284,3627,'_sub_brand','field_59ee6623ce2e8'),(56285,3627,'vintage','2021'),(56286,3627,'_vintage','field_59ee6eba9a39a'),(56287,3627,'_yoast_wpseo_estimated-reading-time-minutes','1'),(56288,3627,'_yoast_wpseo_wordproof_timestamp',''),(56289,3628,'inline_featured_image','0'),(56290,3628,'_edit_lock','1715115893:3'),(56291,3628,'_edit_last','3'),(56292,3628,'allowed_customer_tag_titles','a:0:{}'),(56293,3628,'allowed_customer_club_titles','a:0:{}'),(56294,3628,'linked_brand','3399'),(56295,3628,'_linked_brand','field_59ee2d92496e9'),(56296,3628,'main_image','3625'),(56297,3628,'_main_image','field_59ee319d02900'),(56298,3628,'assets_0_text','Bottle Shot'),(56299,3628,'_assets_0_text','field_59ee31cc02902'),(56300,3628,'assets_0_file_or_url','url'),(56301,3628,'_assets_0_file_or_url','field_59ee31da02903'),(56302,3628,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022PinotNoirRose-scaled.jpg'),(56303,3628,'_assets_0_url','field_59ee320b02906'),(56304,3628,'assets_1_text','Tech Sheet'),(56305,3628,'_assets_1_text','field_59ee31cc02902'),(56306,3628,'assets_1_file_or_url','url'),(56307,3628,'_assets_1_file_or_url','field_59ee31da02903'),(56308,3628,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-RosePinotNoir.pdf'),(56309,3628,'_assets_1_url','field_59ee320b02906'),(56310,3628,'assets','2'),(56311,3628,'_assets','field_59ee31bc02901'),(56312,3628,'varietal','Rosé of Pinot Noir'),(56313,3628,'_varietal','field_59ee660ece2e7'),(56314,3628,'sub_brand',''),(56315,3628,'_sub_brand','field_59ee6623ce2e8'),(56316,3628,'vintage','2022'),(56317,3628,'_vintage','field_59ee6eba9a39a'),(56318,3628,'_yoast_wpseo_estimated-reading-time-minutes','1'),(56319,3628,'_yoast_wpseo_wordproof_timestamp',''),(56320,3629,'inline_featured_image','0'),(56321,3629,'_edit_lock','1715115874:3'),(56322,3629,'_edit_last','3'),(56323,3630,'_wp_attached_file','2024/03/Meadowcroft-River-Trace-Rose-GSM-Bottleshot.png'),(56324,3630,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:55:\"2024/03/Meadowcroft-River-Trace-Rose-GSM-Bottleshot.png\";s:8:\"filesize\";i:104623;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-River-Trace-Rose-GSM-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28055;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-River-Trace-Rose-GSM-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20279;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-River-Trace-Rose-GSM-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54234;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-River-Trace-Rose-GSM-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:83951;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-River-Trace-Rose-GSM-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57584;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-River-Trace-Rose-GSM-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46408;}s:8:\"tileview\";a:5:{s:4:\"file\";s:55:\"Meadowcroft-River-Trace-Rose-GSM-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67198;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(56325,3630,'_wp_attachment_image_alt','Meadowcroft River Trace Rosé GSM'),(56326,3629,'allowed_customer_tag_titles','a:0:{}'),(56327,3629,'allowed_customer_club_titles','a:0:{}'),(56328,3629,'linked_brand','3399'),(56329,3629,'_linked_brand','field_59ee2d92496e9'),(56330,3629,'main_image','3630'),(56331,3629,'_main_image','field_59ee319d02900'),(56332,3629,'assets_0_text','Bottle Shot'),(56333,3629,'_assets_0_text','field_59ee31cc02902'),(56334,3629,'assets_0_file_or_url','url'),(56335,3629,'_assets_0_file_or_url','field_59ee31da02903'),(56336,3629,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_GSM_Rose_2021_BottleShot-1.png'),(56337,3629,'_assets_0_url','field_59ee320b02906'),(56338,3629,'assets_1_text','Tech Sheet'),(56339,3629,'_assets_1_text','field_59ee31cc02902'),(56340,3629,'assets_1_file_or_url','url'),(56341,3629,'_assets_1_file_or_url','field_59ee31da02903'),(56342,3629,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2021RoseGSM_TECHSheet-1.pdf'),(56343,3629,'_assets_1_url','field_59ee320b02906'),(56344,3629,'assets','2'),(56345,3629,'_assets','field_59ee31bc02901'),(56346,3629,'varietal','GSM'),(56347,3629,'_varietal','field_59ee660ece2e7'),(56348,3629,'sub_brand',''),(56349,3629,'_sub_brand','field_59ee6623ce2e8'),(56350,3629,'vintage','2021'),(56351,3629,'_vintage','field_59ee6eba9a39a'),(56352,3629,'_yoast_wpseo_estimated-reading-time-minutes','1'),(56353,3629,'_yoast_wpseo_wordproof_timestamp',''),(56354,3631,'inline_featured_image','0'),(56355,3631,'_edit_lock','1715115844:3'),(56356,3631,'_edit_last','3'),(56357,3631,'allowed_customer_tag_titles','a:0:{}'),(56358,3631,'allowed_customer_club_titles','a:0:{}'),(56359,3631,'linked_brand','3399'),(56360,3631,'_linked_brand','field_59ee2d92496e9'),(56361,3631,'main_image','3630'),(56362,3631,'_main_image','field_59ee319d02900'),(56363,3631,'assets_0_text','Bottle Shot'),(56364,3631,'_assets_0_text','field_59ee31cc02902'),(56365,3631,'assets_0_file_or_url','url'),(56366,3631,'_assets_0_file_or_url','field_59ee31da02903'),(56367,3631,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022RivertraceRose-scaled.jpg'),(56368,3631,'_assets_0_url','field_59ee320b02906'),(56369,3631,'assets_1_text','Tech Sheet'),(56370,3631,'_assets_1_text','field_59ee31cc02902'),(56371,3631,'assets_1_file_or_url','url'),(56372,3631,'_assets_1_file_or_url','field_59ee31da02903'),(56373,3631,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-RiverTrace-Rose.pdf'),(56374,3631,'_assets_1_url','field_59ee320b02906'),(56375,3631,'assets','2'),(56376,3631,'_assets','field_59ee31bc02901'),(56377,3631,'varietal','GSM'),(56378,3631,'_varietal','field_59ee660ece2e7'),(56379,3631,'sub_brand',''),(56380,3631,'_sub_brand','field_59ee6623ce2e8'),(56381,3631,'vintage','2022'),(56382,3631,'_vintage','field_59ee6eba9a39a'),(56383,3631,'_yoast_wpseo_estimated-reading-time-minutes','1'),(56384,3631,'_yoast_wpseo_wordproof_timestamp',''),(56385,3632,'inline_featured_image','0'),(56386,3632,'_edit_lock','1715115805:3'),(56387,3632,'_edit_last','3'),(56388,3633,'_wp_attached_file','2024/03/Meadowcroft-All-She-Wrote-Port-Bottleshot.png'),(56389,3633,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:53:\"2024/03/Meadowcroft-All-She-Wrote-Port-Bottleshot.png\";s:8:\"filesize\";i:109028;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-All-She-Wrote-Port-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30806;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-All-She-Wrote-Port-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24503;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-All-She-Wrote-Port-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62389;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-All-She-Wrote-Port-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:98212;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-All-She-Wrote-Port-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68093;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-All-She-Wrote-Port-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55827;}s:8:\"tileview\";a:5:{s:4:\"file\";s:53:\"Meadowcroft-All-She-Wrote-Port-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82295;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(56390,3633,'_wp_attachment_image_alt','All She Wrote Port'),(56391,3632,'allowed_customer_tag_titles','a:0:{}'),(56392,3632,'allowed_customer_club_titles','a:0:{}'),(56393,3632,'linked_brand','3399'),(56394,3632,'_linked_brand','field_59ee2d92496e9'),(56395,3632,'main_image','3633'),(56396,3632,'_main_image','field_59ee319d02900'),(56397,3632,'assets_0_text','Bottle Shot'),(56398,3632,'_assets_0_text','field_59ee31cc02902'),(56399,3632,'assets_0_file_or_url','url'),(56400,3632,'_assets_0_file_or_url','field_59ee31da02903'),(56401,3632,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/All-She-Wrote-Wax.png'),(56402,3632,'_assets_0_url','field_59ee320b02906'),(56403,3632,'assets_1_text','Tech Sheet'),(56404,3632,'_assets_1_text','field_59ee31cc02902'),(56405,3632,'assets_1_file_or_url','url'),(56406,3632,'_assets_1_file_or_url','field_59ee31da02903'),(56407,3632,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/ALL-SHE-WROTE_tastingnotes_Website.pdf'),(56408,3632,'_assets_1_url','field_59ee320b02906'),(56409,3632,'assets','2'),(56410,3632,'_assets','field_59ee31bc02901'),(56411,3632,'varietal','Port'),(56412,3632,'_varietal','field_59ee660ece2e7'),(56413,3632,'sub_brand',''),(56414,3632,'_sub_brand','field_59ee6623ce2e8'),(56415,3632,'vintage','2025'),(56416,3632,'_vintage','field_59ee6eba9a39a'),(56418,3632,'_yoast_wpseo_estimated-reading-time-minutes','1'),(56419,3632,'_yoast_wpseo_wordproof_timestamp',''),(56420,3634,'inline_featured_image','0'),(56421,3634,'_edit_lock','1712686400:2'),(56422,3634,'_edit_last','2'),(56424,3636,'_wp_attached_file','2024/03/Meadowcroft-Let-It-Bee-Bottleshot.png'),(56425,3636,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:45:\"2024/03/Meadowcroft-Let-It-Bee-Bottleshot.png\";s:8:\"filesize\";i:117357;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"Meadowcroft-Let-It-Bee-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33378;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"Meadowcroft-Let-It-Bee-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29709;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:45:\"Meadowcroft-Let-It-Bee-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:71008;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:45:\"Meadowcroft-Let-It-Bee-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:114081;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:45:\"Meadowcroft-Let-It-Bee-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78044;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:45:\"Meadowcroft-Let-It-Bee-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61841;}s:8:\"tileview\";a:5:{s:4:\"file\";s:45:\"Meadowcroft-Let-It-Bee-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:97267;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(56426,3636,'_wp_attachment_image_alt','Let It Bee'),(56427,3634,'allowed_customer_tag_titles','a:0:{}'),(56428,3634,'allowed_customer_club_titles','a:0:{}'),(56429,3634,'linked_brand','3399'),(56430,3634,'_linked_brand','field_59ee2d92496e9'),(56431,3634,'main_image','3636'),(56432,3634,'_main_image','field_59ee319d02900'),(56433,3634,'assets_0_text','Bottle Shot'),(56434,3634,'_assets_0_text','field_59ee31cc02902'),(56435,3634,'assets_0_file_or_url','url'),(56436,3634,'_assets_0_file_or_url','field_59ee31da02903'),(56437,3634,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/02/NV-Let_It_Bee_Bottleshot-1.png'),(56438,3634,'_assets_0_url','field_59ee320b02906'),(56439,3634,'assets_1_text','Tech Sheet'),(56440,3634,'_assets_1_text','field_59ee31cc02902'),(56441,3634,'assets_1_file_or_url','url'),(56442,3634,'_assets_1_file_or_url','field_59ee31da02903'),(56443,3634,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2022/11/NV_Let-It-Bee-White-Port_-TechSheet.pdf'),(56444,3634,'_assets_1_url','field_59ee320b02906'),(56445,3634,'assets','2'),(56446,3634,'_assets','field_59ee31bc02901'),(56447,3634,'varietal','Verdelho'),(56448,3634,'_varietal','field_59ee660ece2e7'),(56449,3634,'sub_brand',''),(56450,3634,'_sub_brand','field_59ee6623ce2e8'),(56451,3634,'vintage','2024'),(56452,3634,'_vintage','field_59ee6eba9a39a'),(56453,3634,'_yoast_wpseo_estimated-reading-time-minutes','1'),(56454,3634,'_yoast_wpseo_wordproof_timestamp',''),(56456,3638,'inline_featured_image','0'),(56457,3638,'_edit_lock','1715115791:3'),(56458,3638,'_edit_last','3'),(56459,3639,'_wp_attached_file','2024/03/Meadowcroft-Blanc-De-Noirs-Napa-Valley-Bottleshot.png'),(56460,3639,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:61:\"2024/03/Meadowcroft-Blanc-De-Noirs-Napa-Valley-Bottleshot.png\";s:8:\"filesize\";i:117126;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-Blanc-De-Noirs-Napa-Valley-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32959;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-Blanc-De-Noirs-Napa-Valley-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22155;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-Blanc-De-Noirs-Napa-Valley-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55863;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-Blanc-De-Noirs-Napa-Valley-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:97230;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-Blanc-De-Noirs-Napa-Valley-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60383;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-Blanc-De-Noirs-Napa-Valley-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48951;}s:8:\"tileview\";a:5:{s:4:\"file\";s:61:\"Meadowcroft-Blanc-De-Noirs-Napa-Valley-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:71785;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(56461,3639,'_wp_attachment_image_alt','Meadowcroft Blanc de Noirs Napa Valley'),(56462,3638,'allowed_customer_tag_titles','a:0:{}'),(56463,3638,'allowed_customer_club_titles','a:0:{}'),(56464,3638,'linked_brand','3399'),(56465,3638,'_linked_brand','field_59ee2d92496e9'),(56466,3638,'main_image','3639'),(56467,3638,'_main_image','field_59ee319d02900'),(56468,3638,'assets_0_text','Bottle Shot'),(56469,3638,'_assets_0_text','field_59ee31cc02902'),(56470,3638,'assets_0_file_or_url','url'),(56471,3638,'_assets_0_file_or_url','field_59ee31da02903'),(56472,3638,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/NV-BlancdeNoirs-scaled.jpg'),(56473,3638,'_assets_0_url','field_59ee320b02906'),(56474,3638,'assets_1_text','Tech Sheet'),(56475,3638,'_assets_1_text','field_59ee31cc02902'),(56476,3638,'assets_1_file_or_url','url'),(56477,3638,'_assets_1_file_or_url','field_59ee31da02903'),(56478,3638,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2023/03/NV-Blanc-de-Noir-final.pdf'),(56479,3638,'_assets_1_url','field_59ee320b02906'),(56480,3638,'assets','2'),(56481,3638,'_assets','field_59ee31bc02901'),(56482,3638,'varietal','Pinot Noir'),(56483,3638,'_varietal','field_59ee660ece2e7'),(56484,3638,'sub_brand',''),(56485,3638,'_sub_brand','field_59ee6623ce2e8'),(56486,3638,'vintage','2025'),(56487,3638,'_vintage','field_59ee6eba9a39a'),(56488,3638,'_yoast_wpseo_estimated-reading-time-minutes','1'),(56489,3638,'_yoast_wpseo_wordproof_timestamp',''),(56490,3640,'inline_featured_image','0'),(56491,3640,'_edit_lock','1715115765:3'),(56492,3640,'_edit_last','3'),(56493,3641,'_wp_attached_file','2024/03/Meadowcroft-Stags-Leap-District-Napa-Valley-Cabernet-Sauvignon-Bottleshot.png'),(56494,3641,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:600;s:4:\"file\";s:85:\"2024/03/Meadowcroft-Stags-Leap-District-Napa-Valley-Cabernet-Sauvignon-Bottleshot.png\";s:8:\"filesize\";i:79449;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:85:\"Meadowcroft-Stags-Leap-District-Napa-Valley-Cabernet-Sauvignon-Bottleshot-100x300.png\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24848;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:85:\"Meadowcroft-Stags-Leap-District-Napa-Valley-Cabernet-Sauvignon-Bottleshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16727;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:85:\"Meadowcroft-Stags-Leap-District-Napa-Valley-Cabernet-Sauvignon-Bottleshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36800;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:85:\"Meadowcroft-Stags-Leap-District-Napa-Valley-Cabernet-Sauvignon-Bottleshot-200x500.png\";s:5:\"width\";i:200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66683;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:85:\"Meadowcroft-Stags-Leap-District-Napa-Valley-Cabernet-Sauvignon-Bottleshot-200x324.png\";s:5:\"width\";i:200;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38738;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:85:\"Meadowcroft-Stags-Leap-District-Napa-Valley-Cabernet-Sauvignon-Bottleshot-200x260.png\";s:5:\"width\";i:200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33234;}s:8:\"tileview\";a:5:{s:4:\"file\";s:85:\"Meadowcroft-Stags-Leap-District-Napa-Valley-Cabernet-Sauvignon-Bottleshot-200x400.png\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47420;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(56495,3641,'_wp_attachment_image_alt','Meadowcroft Stag\'s Leap District Napa Valley Cabernet Sauvignon'),(56496,3640,'allowed_customer_tag_titles','a:0:{}'),(56497,3640,'allowed_customer_club_titles','a:0:{}'),(56498,3640,'linked_brand','3399'),(56499,3640,'_linked_brand','field_59ee2d92496e9'),(56500,3640,'main_image','3641'),(56501,3640,'_main_image','field_59ee319d02900'),(56502,3640,'assets_0_text','Bottle Shot'),(56503,3640,'_assets_0_text','field_59ee31cc02902'),(56504,3640,'assets_0_file_or_url','url'),(56505,3640,'_assets_0_file_or_url','field_59ee31da02903'),(56506,3640,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2019-scaled.jpg'),(56507,3640,'_assets_0_url','field_59ee320b02906'),(56508,3640,'assets_1_text','Tech Sheet'),(56509,3640,'_assets_1_text','field_59ee31cc02902'),(56510,3640,'assets_1_file_or_url','url'),(56511,3640,'_assets_1_file_or_url','field_59ee31da02903'),(56512,3640,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/TechSheet-2019-Cab-StagsLeap-Final-3.pdf'),(56513,3640,'_assets_1_url','field_59ee320b02906'),(56514,3640,'assets','2'),(56515,3640,'_assets','field_59ee31bc02901'),(56516,3640,'varietal','Cabernet Sauvignon'),(56517,3640,'_varietal','field_59ee660ece2e7'),(56518,3640,'sub_brand',''),(56519,3640,'_sub_brand','field_59ee6623ce2e8'),(56520,3640,'vintage','2019'),(56521,3640,'_vintage','field_59ee6eba9a39a'),(56522,3640,'_yoast_wpseo_estimated-reading-time-minutes','1'),(56523,3640,'_yoast_wpseo_wordproof_timestamp',''),(56524,3642,'inline_featured_image','0'),(56525,3642,'_edit_lock','1715115732:3'),(56526,3642,'_edit_last','3'),(56527,3642,'allowed_customer_tag_titles','a:0:{}'),(56528,3642,'allowed_customer_club_titles','a:0:{}'),(56529,3642,'linked_brand','3399'),(56530,3642,'_linked_brand','field_59ee2d92496e9'),(56531,3642,'main_image','3641'),(56532,3642,'_main_image','field_59ee319d02900'),(56533,3642,'assets_0_text','Bottle Shot'),(56534,3642,'_assets_0_text','field_59ee31cc02902'),(56535,3642,'assets_0_file_or_url','url'),(56536,3642,'_assets_0_file_or_url','field_59ee31da02903'),(56537,3642,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2020-2-scaled.jpg'),(56538,3642,'_assets_0_url','field_59ee320b02906'),(56539,3642,'assets_1_text','Tech Sheet'),(56540,3642,'_assets_1_text','field_59ee31cc02902'),(56541,3642,'assets_1_file_or_url','url'),(56542,3642,'_assets_1_file_or_url','field_59ee31da02903'),(56543,3642,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/TechSheet-2020-Cab-StagsLeap-Final-4.pdf'),(56544,3642,'_assets_1_url','field_59ee320b02906'),(56545,3642,'assets','2'),(56546,3642,'_assets','field_59ee31bc02901'),(56547,3642,'varietal','Cabernet Sauvignon'),(56548,3642,'_varietal','field_59ee660ece2e7'),(56549,3642,'sub_brand',''),(56550,3642,'_sub_brand','field_59ee6623ce2e8'),(56551,3642,'vintage','2020'),(56552,3642,'_vintage','field_59ee6eba9a39a'),(56553,3642,'_yoast_wpseo_estimated-reading-time-minutes','1'),(56554,3642,'_yoast_wpseo_wordproof_timestamp',''),(56555,3643,'inline_featured_image','0'),(56556,3643,'_edit_lock','1715106185:3'),(56557,3643,'_edit_last','3'),(56558,3643,'allowed_customer_tag_titles','a:0:{}'),(56559,3643,'allowed_customer_club_titles','a:0:{}'),(56560,3643,'linked_brand','3399'),(56561,3643,'_linked_brand','field_59ee2d92496e9'),(56562,3643,'main_image','3641'),(56563,3643,'_main_image','field_59ee319d02900'),(56564,3643,'assets_0_text','Bottle Shot'),(56565,3643,'_assets_0_text','field_59ee31cc02902'),(56566,3643,'assets_0_file_or_url','url'),(56567,3643,'_assets_0_file_or_url','field_59ee31da02903'),(56568,3643,'assets_0_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-StagsLeapCab-techsheet.pdf'),(56569,3643,'_assets_0_url','field_59ee320b02906'),(56570,3643,'assets_1_text','Tech Sheet'),(56571,3643,'_assets_1_text','field_59ee31cc02902'),(56572,3643,'assets_1_file_or_url','url'),(56573,3643,'_assets_1_file_or_url','field_59ee31da02903'),(56574,3643,'assets_1_url','https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-StagsLeapCab-techsheet.pdf'),(56575,3643,'_assets_1_url','field_59ee320b02906'),(56576,3643,'assets','2'),(56577,3643,'_assets','field_59ee31bc02901'),(56578,3643,'varietal','Cabernet Sauvignon'),(56579,3643,'_varietal','field_59ee660ece2e7'),(56580,3643,'sub_brand',''),(56581,3643,'_sub_brand','field_59ee6623ce2e8'),(56582,3643,'vintage','2021'),(56583,3643,'_vintage','field_59ee6eba9a39a'),(56584,3643,'_yoast_wpseo_estimated-reading-time-minutes','1'),(56585,3643,'_yoast_wpseo_wordproof_timestamp',''),(56590,3645,'web_id','e237f08e-712c-4af2-b0bf-b99aa2115b5f'),(56591,3645,'slug','celebrate-spring-2024-6-pack'),(56592,3645,'title','Celebrate Spring 2024 6 Pack'),(56593,3645,'type','Bundle'),(56594,3645,'image','https://images.commerce7.com/meadowcroft-wines/images/original/spring6pk-email-1711572229702.jpg'),(56595,3645,'teaser',NULL),(56596,3645,'content','<p class=\"text-body font-regular text-gray-800 leading-[24px] pt-[9px] pb-[2px]\" dir=\"ltr\">We\'ve put together a special bundle of wines that we thought would be perfect for you.&nbsp; This special six pack of wines includes one bottle of each of the following wines:</p>\n<ul>\n<li class=\"text-body font-regular text-gray-800 leading-[24px] pt-[9px] pb-[2px]\" dir=\"ltr\">Sparkling Blanc de Blancs</li>\n<li class=\"text-body font-regular text-gray-800 leading-[24px] pt-[9px] pb-[2px]\" dir=\"ltr\">2023 Pinot Gris</li>\n<li class=\"text-body font-regular text-gray-800 leading-[24px] pt-[9px] pb-[2px]\" dir=\"ltr\">2021 Napa Carneros Pinot Noir</li>\n<li class=\"text-body font-regular text-gray-800 leading-[24px] pt-[9px] pb-[2px]\" dir=\"ltr\">2021 River Trace GSM <span style=\"font-style: italic; font-size: 12px;\">(Grenache, Syrah &amp; Mourvedre)</span></li>\n<li class=\"text-body font-regular text-gray-800 leading-[24px] pt-[9px] pb-[2px]\" dir=\"ltr\">2021 Sangiovese</li>\n<li class=\"text-body font-regular text-gray-800 leading-[24px] pt-[9px] pb-[2px]\" dir=\"ltr\">2021 Napa Valley Cabernet Sauvignon</li>\n</ul>'),(56597,3645,'subtitle',NULL),(56598,3645,'price','21500'),(56599,3645,'web_status','Retired'),(56600,3645,'admin_status','Not Available'),(56601,3645,'collections','a:0:{}'),(56602,3645,'primary_collection',''),(56619,3647,'web_id','0c944019-28a1-4d56-88ec-b5762d6d8bae'),(56620,3647,'slug','hoodie-bee-you-unisex-'),(56621,3647,'title','Hoodie sweatshirt - Bee You (unisex)'),(56622,3647,'type','General Merchandise'),(56623,3647,'image','https://images.commerce7.com/meadowcroft-wines/images/original/hoodie-beeyou-back-1718132089077.jpg'),(56624,3647,'teaser','Show your Meadowcroft PRIDE! Super soft & comfortable hoodie.  Front - \"BEE YOU\" gradient logo & back shows the classic Meadowcroft bee logo.  65% cotton & 35% polyester.'),(56625,3647,'content','<p>Show your Meadowcroft PRIDE! Super soft &amp; comfortable hoodie. &nbsp;Front - \"BEE YOU\" gradient logo &amp; back shows the classic Meadowcroft bee logo. &nbsp;65% cotton &amp; 35% polyester.</p>'),(56626,3647,'subtitle',NULL),(56627,3647,'price','4500'),(56628,3647,'web_status','Available'),(56629,3647,'admin_status','Available'),(56630,3647,'vendor','707 Embroidery Zone'),(56631,3647,'collections','a:0:{}'),(56632,3647,'primary_collection',''),(56633,3648,'web_id','e3d0ba55-ed55-4df5-82a9-a77d1b33beb3'),(56634,3648,'slug','hoodie---bee-you-unisex-duplicate'),(56635,3648,'title','Tee Shirt - Bee You (unisex)'),(56636,3648,'type','General Merchandise'),(56637,3648,'image','https://images.commerce7.com/meadowcroft-wines/images/original/tee-beeyou-front-1718746777148.png'),(56638,3648,'teaser','Show your Meadowcroft pride!  Our super soft and breathable Bee You tee shirt features a color gradient version of our popular bee logo.  \n50% recycled polyester, 25% organic cotton & 25% modal.'),(56639,3648,'content','<p>Show your Meadowcroft pride! &nbsp;Our super soft and breathable Bee You tee shirt features a color gradient version of our popular bee logo. &nbsp;<br />50% recycled polyester, 25% organic cotton &amp; 25% modal.&nbsp;</p>'),(56640,3648,'subtitle',NULL),(56641,3648,'price','3000'),(56642,3648,'web_status','Available'),(56643,3648,'admin_status','Available'),(56644,3648,'vendor','707 Embroidery Zone'),(56645,3648,'collections','a:0:{}'),(56646,3648,'primary_collection',''),(56647,3649,'web_id','1f402210-bcfd-4c43-a846-ac9b06fb03b9'),(56648,3649,'slug','save-the-bees-tee-shirt-men-duplicate'),(56649,3649,'title','Tee Shirt - On Sale'),(56650,3649,'type','General Merchandise'),(56651,3649,'image',NULL),(56652,3649,'teaser',NULL),(56653,3649,'content',NULL),(56654,3649,'subtitle','Assorted Sizes'),(56655,3649,'price','1500'),(56656,3649,'web_status','Not Available'),(56657,3649,'admin_status','Available'),(56658,3649,'collections','a:0:{}'),(56659,3649,'primary_collection',''),(56661,3424,'vendor','Meadowcroft Wines'),(56663,3652,'inline_featured_image','0'),(56664,3652,'_edit_lock','1715115479:3'),(56665,3652,'_edit_last','3'),(56666,3653,'_wp_attached_file','2024/04/2023-Rose-Grenache-Westfall-FINAL.pdf'),(56667,3653,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:41:\"2023-Rose-Grenache-Westfall-FINAL-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:195994;}s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"2023-Rose-Grenache-Westfall-FINAL-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15063;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"2023-Rose-Grenache-Westfall-FINAL-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105968;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"2023-Rose-Grenache-Westfall-FINAL-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6794;}}s:8:\"filesize\";i:337625;}'),(56668,3652,'allowed_customer_tag_titles','a:0:{}'),(56669,3652,'allowed_customer_club_titles','a:0:{}'),(56670,3652,'linked_brand','3399'),(56671,3652,'_linked_brand','field_59ee2d92496e9'),(56672,3652,'main_image','3639'),(56673,3652,'_main_image','field_59ee319d02900'),(56674,3652,'assets_0_text','Tech Sheet'),(56675,3652,'_assets_0_text','field_59ee31cc02902'),(56676,3652,'assets_0_file_or_url','file'),(56677,3652,'_assets_0_file_or_url','field_59ee31da02903'),(56678,3652,'assets_0_file','3653'),(56679,3652,'_assets_0_file','field_59ee320302905'),(56680,3652,'assets','2'),(56681,3652,'_assets','field_59ee31bc02901'),(56682,3652,'varietal','Grenache'),(56683,3652,'_varietal','field_59ee660ece2e7'),(56684,3652,'sub_brand',''),(56685,3652,'_sub_brand','field_59ee6623ce2e8'),(56686,3652,'vintage','2023'),(56687,3652,'_vintage','field_59ee6eba9a39a'),(56688,3652,'_yoast_wpseo_estimated-reading-time-minutes','1'),(56689,3652,'_yoast_wpseo_wordproof_timestamp',''),(56691,3655,'inline_featured_image','0'),(56692,3655,'_edit_lock','1715106110:3'),(56693,3655,'_edit_last','3'),(56696,3657,'_wp_attached_file','2024/04/23-RR-PinotNoir.png'),(56697,3657,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:590;s:6:\"height\";i:2048;s:4:\"file\";s:27:\"2024/04/23-RR-PinotNoir.png\";s:8:\"filesize\";i:890540;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"23-RR-PinotNoir-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19489;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"23-RR-PinotNoir-295x1024.png\";s:5:\"width\";i:295;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:190702;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"23-RR-PinotNoir-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9300;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:27:\"23-RR-PinotNoir-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32478;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:27:\"23-RR-PinotNoir-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85979;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:27:\"23-RR-PinotNoir-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34398;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:27:\"23-RR-PinotNoir-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22932;}s:8:\"tileview\";a:5:{s:4:\"file\";s:27:\"23-RR-PinotNoir-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61236;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"23-RR-PinotNoir-443x1536.png\";s:5:\"width\";i:443;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:437276;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(56698,3655,'allowed_customer_tag_titles','a:0:{}'),(56699,3655,'allowed_customer_club_titles','a:0:{}'),(56700,3655,'linked_brand','3399'),(56701,3655,'_linked_brand','field_59ee2d92496e9'),(56702,3655,'main_image','3657'),(56703,3655,'_main_image','field_59ee319d02900'),(56704,3655,'assets_0_text','Tech Sheet'),(56705,3655,'_assets_0_text','field_59ee31cc02902'),(56706,3655,'assets_0_file_or_url','file'),(56707,3655,'_assets_0_file_or_url','field_59ee31da02903'),(56708,3655,'assets_0_file','3658'),(56709,3655,'_assets_0_file','field_59ee320302905'),(56710,3655,'assets','2'),(56711,3655,'_assets','field_59ee31bc02901'),(56712,3655,'varietal','Pinot Noir'),(56713,3655,'_varietal','field_59ee660ece2e7'),(56714,3655,'sub_brand',''),(56715,3655,'_sub_brand','field_59ee6623ce2e8'),(56716,3655,'vintage','2023'),(56717,3655,'_vintage','field_59ee6eba9a39a'),(56718,3655,'_yoast_wpseo_estimated-reading-time-minutes','1'),(56719,3655,'_yoast_wpseo_wordproof_timestamp',''),(56720,3655,'assets_1_text','Bottle Shot'),(56721,3655,'_assets_1_text','field_59ee31cc02902'),(56722,3655,'assets_1_file_or_url','file'),(56723,3655,'_assets_1_file_or_url','field_59ee31da02903'),(56724,3655,'assets_1_file','3657'),(56725,3655,'_assets_1_file','field_59ee320302905'),(56726,3418,'vendor','Meadowcroft Wines'),(56727,3658,'_wp_attached_file','2024/04/2023-PinotNoir-RussianRiver-FINAL.pdf'),(56728,3658,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:41:\"2023-PinotNoir-RussianRiver-FINAL-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177821;}s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"2023-PinotNoir-RussianRiver-FINAL-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13844;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"2023-PinotNoir-RussianRiver-FINAL-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96225;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"2023-PinotNoir-RussianRiver-FINAL-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6469;}}s:8:\"filesize\";i:248728;}'),(56729,3659,'inline_featured_image','0'),(56730,3659,'_edit_lock','1734637839:3'),(56731,3659,'_edit_last','3'),(56734,3661,'_wp_attached_file','2024/04/23-AndValley-PinotNoir.png'),(56735,3661,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:590;s:6:\"height\";i:2048;s:4:\"file\";s:34:\"2024/04/23-AndValley-PinotNoir.png\";s:8:\"filesize\";i:824965;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"23-AndValley-PinotNoir-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18078;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"23-AndValley-PinotNoir-295x1024.png\";s:5:\"width\";i:295;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:174729;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"23-AndValley-PinotNoir-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9482;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:34:\"23-AndValley-PinotNoir-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33224;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:34:\"23-AndValley-PinotNoir-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:87946;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:34:\"23-AndValley-PinotNoir-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33224;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:34:\"23-AndValley-PinotNoir-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22431;}s:8:\"tileview\";a:5:{s:4:\"file\";s:34:\"23-AndValley-PinotNoir-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61055;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"23-AndValley-PinotNoir-443x1536.png\";s:5:\"width\";i:443;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:401421;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(56736,3659,'allowed_customer_tag_titles','a:0:{}'),(56737,3659,'allowed_customer_club_titles','a:0:{}'),(56738,3659,'linked_brand','3399'),(56739,3659,'_linked_brand','field_59ee2d92496e9'),(56740,3659,'main_image','3661'),(56741,3659,'_main_image','field_59ee319d02900'),(56742,3659,'assets_0_text','Tech Sheet'),(56743,3659,'_assets_0_text','field_59ee31cc02902'),(56744,3659,'assets_0_file_or_url','file'),(56745,3659,'_assets_0_file_or_url','field_59ee31da02903'),(56746,3659,'assets_0_file','3662'),(56747,3659,'_assets_0_file','field_59ee320302905'),(56748,3659,'assets_1_text','Bottle Shot'),(56749,3659,'_assets_1_text','field_59ee31cc02902'),(56750,3659,'assets_1_file_or_url','file'),(56751,3659,'_assets_1_file_or_url','field_59ee31da02903'),(56752,3659,'assets_1_file','3661'),(56753,3659,'_assets_1_file','field_59ee320302905'),(56754,3659,'assets','2'),(56755,3659,'_assets','field_59ee31bc02901'),(56756,3659,'varietal','Pinot Noir'),(56757,3659,'_varietal','field_59ee660ece2e7'),(56758,3659,'sub_brand',''),(56759,3659,'_sub_brand','field_59ee6623ce2e8'),(56760,3659,'vintage','2023'),(56761,3659,'_vintage','field_59ee6eba9a39a'),(56762,3659,'_yoast_wpseo_estimated-reading-time-minutes','1'),(56763,3659,'_yoast_wpseo_wordproof_timestamp',''),(56764,3662,'_wp_attached_file','2024/04/2023-PinotNoir-AndValley-FINAL.pdf'),(56765,3662,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:38:\"2023-PinotNoir-AndValley-FINAL-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184031;}s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"2023-PinotNoir-AndValley-FINAL-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14141;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"2023-PinotNoir-AndValley-FINAL-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98666;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"2023-PinotNoir-AndValley-FINAL-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6630;}}s:8:\"filesize\";i:259570;}'),(56767,3664,'inline_featured_image','0'),(56768,3664,'_edit_lock','1715106067:3'),(56769,3664,'_edit_last','3'),(56770,3665,'_wp_attached_file','2024/04/2023BotanicaConsecrata.png'),(56771,3665,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:590;s:6:\"height\";i:2048;s:4:\"file\";s:34:\"2024/04/2023BotanicaConsecrata.png\";s:8:\"filesize\";i:1260112;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"2023BotanicaConsecrata-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31601;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"2023BotanicaConsecrata-295x1024.png\";s:5:\"width\";i:295;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:284778;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"2023BotanicaConsecrata-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29069;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:34:\"2023BotanicaConsecrata-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107231;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:34:\"2023BotanicaConsecrata-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:291947;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:34:\"2023BotanicaConsecrata-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:185483;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:34:\"2023BotanicaConsecrata-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122251;}s:8:\"tileview\";a:5:{s:4:\"file\";s:34:\"2023BotanicaConsecrata-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139317;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"2023BotanicaConsecrata-443x1536.png\";s:5:\"width\";i:443;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:629556;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(56772,3666,'_wp_attached_file','2024/04/2023-Botanica-Consecrata-PinotGris-FINAL.pdf'),(56773,3666,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:48:\"2023-Botanica-Consecrata-PinotGris-FINAL-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:205439;}s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"2023-Botanica-Consecrata-PinotGris-FINAL-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14947;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"2023-Botanica-Consecrata-PinotGris-FINAL-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113443;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"2023-Botanica-Consecrata-PinotGris-FINAL-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6677;}}s:8:\"filesize\";i:369204;}'),(56774,3664,'allowed_customer_tag_titles','a:0:{}'),(56775,3664,'allowed_customer_club_titles','a:0:{}'),(56776,3664,'linked_brand','3399'),(56777,3664,'_linked_brand','field_59ee2d92496e9'),(56778,3664,'main_image','3665'),(56779,3664,'_main_image','field_59ee319d02900'),(56780,3664,'assets_0_text','Tech Sheet'),(56781,3664,'_assets_0_text','field_59ee31cc02902'),(56782,3664,'assets_0_file_or_url','file'),(56783,3664,'_assets_0_file_or_url','field_59ee31da02903'),(56784,3664,'assets_0_file','3666'),(56785,3664,'_assets_0_file','field_59ee320302905'),(56786,3664,'assets_1_text','Bottle Shot'),(56787,3664,'_assets_1_text','field_59ee31cc02902'),(56788,3664,'assets_1_file_or_url','file'),(56789,3664,'_assets_1_file_or_url','field_59ee31da02903'),(56790,3664,'assets_1_file','3665'),(56791,3664,'_assets_1_file','field_59ee320302905'),(56792,3664,'assets','2'),(56793,3664,'_assets','field_59ee31bc02901'),(56794,3664,'varietal','Pinot Gris'),(56795,3664,'_varietal','field_59ee660ece2e7'),(56796,3664,'sub_brand',''),(56797,3664,'_sub_brand','field_59ee6623ce2e8'),(56798,3664,'vintage','2023'),(56799,3664,'_vintage','field_59ee6eba9a39a'),(56800,3664,'_yoast_wpseo_estimated-reading-time-minutes','1'),(56801,3664,'_yoast_wpseo_wordproof_timestamp',''),(56802,3425,'vendor','Meadowcroft Wines'),(56804,3668,'inline_featured_image','0'),(56805,3668,'_edit_lock','1715106027:3'),(56806,3668,'_edit_last','3'),(56807,3669,'_wp_attached_file','2024/04/2023-ALBARINO.png'),(56808,3669,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:590;s:6:\"height\";i:2048;s:4:\"file\";s:25:\"2024/04/2023-ALBARINO.png\";s:8:\"filesize\";i:943865;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"2023-ALBARINO-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21093;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"2023-ALBARINO-295x1024.png\";s:5:\"width\";i:295;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:191912;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"2023-ALBARINO-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11645;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:25:\"2023-ALBARINO-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44615;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:25:\"2023-ALBARINO-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:123043;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:25:\"2023-ALBARINO-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77045;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:25:\"2023-ALBARINO-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49856;}s:8:\"tileview\";a:5:{s:4:\"file\";s:25:\"2023-ALBARINO-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63012;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:26:\"2023-ALBARINO-443x1536.png\";s:5:\"width\";i:443;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:436354;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(56811,3668,'allowed_customer_tag_titles','a:0:{}'),(56812,3668,'allowed_customer_club_titles','a:0:{}'),(56813,3668,'linked_brand','3399'),(56814,3668,'_linked_brand','field_59ee2d92496e9'),(56815,3668,'main_image','3669'),(56816,3668,'_main_image','field_59ee319d02900'),(56817,3668,'assets_0_text','Tech Sheet'),(56818,3668,'_assets_0_text','field_59ee31cc02902'),(56819,3668,'assets_0_file_or_url','file'),(56820,3668,'_assets_0_file_or_url','field_59ee31da02903'),(56821,3668,'assets_0_file','3673'),(56822,3668,'_assets_0_file','field_59ee320302905'),(56823,3668,'assets_1_text','Bottle Shot'),(56824,3668,'_assets_1_text','field_59ee31cc02902'),(56825,3668,'assets_1_file_or_url','file'),(56826,3668,'_assets_1_file_or_url','field_59ee31da02903'),(56827,3668,'assets_1_file','3669'),(56828,3668,'_assets_1_file','field_59ee320302905'),(56829,3668,'assets','2'),(56830,3668,'_assets','field_59ee31bc02901'),(56831,3668,'varietal','Albarino'),(56832,3668,'_varietal','field_59ee660ece2e7'),(56833,3668,'sub_brand',''),(56834,3668,'_sub_brand','field_59ee6623ce2e8'),(56835,3668,'vintage','2023'),(56836,3668,'_vintage','field_59ee6eba9a39a'),(56837,3668,'_yoast_wpseo_estimated-reading-time-minutes','1'),(56838,3668,'_yoast_wpseo_wordproof_timestamp',''),(56843,3673,'_wp_attached_file','2024/04/2023-Albarino-Final2.pdf'),(56844,3673,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:28:\"2023-Albarino-Final2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167634;}s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"2023-Albarino-Final2-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15428;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"2023-Albarino-Final2-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93281;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"2023-Albarino-Final2-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8255;}}s:8:\"filesize\";i:263881;}'),(56845,3427,'vendor','Meadowcroft Wines'),(56846,3674,'_wp_attached_file','2024/04/2022-NapaValley-CabSauv.png'),(56847,3674,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:590;s:6:\"height\";i:2048;s:4:\"file\";s:35:\"2024/04/2022-NapaValley-CabSauv.png\";s:8:\"filesize\";i:1000241;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"2022-NapaValley-CabSauv-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19831;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"2022-NapaValley-CabSauv-295x1024.png\";s:5:\"width\";i:295;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:208668;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"2022-NapaValley-CabSauv-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22661;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:35:\"2022-NapaValley-CabSauv-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:95870;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:35:\"2022-NapaValley-CabSauv-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:280436;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:35:\"2022-NapaValley-CabSauv-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:192959;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:35:\"2022-NapaValley-CabSauv-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:124975;}s:8:\"tileview\";a:5:{s:4:\"file\";s:35:\"2022-NapaValley-CabSauv-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:119893;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"2022-NapaValley-CabSauv-443x1536.png\";s:5:\"width\";i:443;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:487849;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(56848,3675,'_wp_attached_file','2024/04/2022-CabernetSauv-NapaValley-FINAL.pdf'),(56849,3675,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:42:\"2022-CabernetSauv-NapaValley-FINAL-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:208589;}s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"2022-CabernetSauv-NapaValley-FINAL-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14993;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"2022-CabernetSauv-NapaValley-FINAL-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109785;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"2022-CabernetSauv-NapaValley-FINAL-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6817;}}s:8:\"filesize\";i:269305;}'),(56850,3676,'_wp_attached_file','2024/04/2022-CabernetSauv-DryCreek-Wyldvin-FINAL.pdf'),(56851,3676,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:48:\"2022-CabernetSauv-DryCreek-Wyldvin-FINAL-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:187011;}s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"2022-CabernetSauv-DryCreek-Wyldvin-FINAL-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14067;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"2022-CabernetSauv-DryCreek-Wyldvin-FINAL-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96405;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"2022-CabernetSauv-DryCreek-Wyldvin-FINAL-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6549;}}s:8:\"filesize\";i:272850;}'),(56852,3677,'_wp_attached_file','2024/04/2022-Wyldvin-CabSauv.png'),(56853,3677,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1492;s:6:\"height\";i:5299;s:4:\"file\";s:32:\"2024/04/2022-Wyldvin-CabSauv.png\";s:8:\"filesize\";i:6281190;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"2022-Wyldvin-CabSauv-84x300.png\";s:5:\"width\";i:84;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20006;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"2022-Wyldvin-CabSauv-288x1024.png\";s:5:\"width\";i:288;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:202549;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"2022-Wyldvin-CabSauv-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22153;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"2022-Wyldvin-CabSauv-768x2728.png\";s:5:\"width\";i:768;s:6:\"height\";i:2728;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1428500;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:32:\"2022-Wyldvin-CabSauv-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:92286;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:32:\"2022-Wyldvin-CabSauv-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:265276;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:32:\"2022-Wyldvin-CabSauv-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:183441;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:32:\"2022-Wyldvin-CabSauv-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122085;}s:8:\"tileview\";a:5:{s:4:\"file\";s:32:\"2022-Wyldvin-CabSauv-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:116242;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"2022-Wyldvin-CabSauv-432x1536.png\";s:5:\"width\";i:432;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:457961;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:33:\"2022-Wyldvin-CabSauv-577x2048.png\";s:5:\"width\";i:577;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:808501;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:34:\"2022-Wyldvin-CabSauv-1200x4262.png\";s:5:\"width\";i:1200;s:6:\"height\";i:4262;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3328055;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(56854,3421,'vendor','Meadowcroft Wines'),(56855,3678,'inline_featured_image','0'),(56856,3678,'_edit_lock','1715106121:3'),(56857,3678,'_edit_last','3'),(56858,3678,'allowed_customer_tag_titles','a:0:{}'),(56859,3678,'allowed_customer_club_titles','a:0:{}'),(56860,3678,'linked_brand','3399'),(56861,3678,'_linked_brand','field_59ee2d92496e9'),(56862,3678,'main_image','3674'),(56863,3678,'_main_image','field_59ee319d02900'),(56864,3678,'assets_0_text','Tech Sheet'),(56865,3678,'_assets_0_text','field_59ee31cc02902'),(56866,3678,'assets_0_file_or_url','file'),(56867,3678,'_assets_0_file_or_url','field_59ee31da02903'),(56868,3678,'assets_0_file','3675'),(56869,3678,'_assets_0_file','field_59ee320302905'),(56870,3678,'assets_1_text','Bottle Shot'),(56871,3678,'_assets_1_text','field_59ee31cc02902'),(56872,3678,'assets_1_file_or_url','file'),(56873,3678,'_assets_1_file_or_url','field_59ee31da02903'),(56874,3678,'assets_1_file','3674'),(56875,3678,'_assets_1_file','field_59ee320302905'),(56876,3678,'assets','2'),(56877,3678,'_assets','field_59ee31bc02901'),(56878,3678,'varietal','Cabernet Sauvignon'),(56879,3678,'_varietal','field_59ee660ece2e7'),(56880,3678,'sub_brand',''),(56881,3678,'_sub_brand','field_59ee6623ce2e8'),(56882,3678,'vintage','2022'),(56883,3678,'_vintage','field_59ee6eba9a39a'),(56884,3678,'_yoast_wpseo_estimated-reading-time-minutes','1'),(56885,3678,'_yoast_wpseo_wordproof_timestamp',''),(56887,3680,'inline_featured_image','0'),(56888,3680,'_edit_lock','1715105969:3'),(56889,3680,'_edit_last','3'),(56890,3681,'_wp_attached_file','2024/04/2022-Wyldvin-CabSauv-1.png'),(56891,3681,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:590;s:6:\"height\";i:2048;s:4:\"file\";s:34:\"2024/04/2022-Wyldvin-CabSauv-1.png\";s:8:\"filesize\";i:1007922;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"2022-Wyldvin-CabSauv-1-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20261;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"2022-Wyldvin-CabSauv-1-295x1024.png\";s:5:\"width\";i:295;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:211396;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"2022-Wyldvin-CabSauv-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22515;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:34:\"2022-Wyldvin-CabSauv-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:95053;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:34:\"2022-Wyldvin-CabSauv-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:279362;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:34:\"2022-Wyldvin-CabSauv-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:191760;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:34:\"2022-Wyldvin-CabSauv-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:123745;}s:8:\"tileview\";a:5:{s:4:\"file\";s:34:\"2022-Wyldvin-CabSauv-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:118722;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"2022-Wyldvin-CabSauv-1-443x1536.png\";s:5:\"width\";i:443;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:493471;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(56892,3680,'allowed_customer_tag_titles','a:0:{}'),(56893,3680,'allowed_customer_club_titles','a:0:{}'),(56894,3680,'linked_brand','3399'),(56895,3680,'_linked_brand','field_59ee2d92496e9'),(56896,3680,'main_image','3681'),(56897,3680,'_main_image','field_59ee319d02900'),(56898,3680,'assets_0_text','Tech Sheet'),(56899,3680,'_assets_0_text','field_59ee31cc02902'),(56900,3680,'assets_0_file_or_url','file'),(56901,3680,'_assets_0_file_or_url','field_59ee31da02903'),(56902,3680,'assets_0_file','3676'),(56903,3680,'_assets_0_file','field_59ee320302905'),(56904,3680,'assets_1_text','Bottle Shot'),(56905,3680,'_assets_1_text','field_59ee31cc02902'),(56906,3680,'assets_1_file_or_url','file'),(56907,3680,'_assets_1_file_or_url','field_59ee31da02903'),(56908,3680,'assets_1_file','3676'),(56909,3680,'_assets_1_file','field_59ee320302905'),(56910,3680,'assets','2'),(56911,3680,'_assets','field_59ee31bc02901'),(56912,3680,'varietal','Cabernet Sauvignon'),(56913,3680,'_varietal','field_59ee660ece2e7'),(56914,3680,'sub_brand',''),(56915,3680,'_sub_brand','field_59ee6623ce2e8'),(56916,3680,'vintage','2022'),(56917,3680,'_vintage','field_59ee6eba9a39a'),(56918,3680,'_yoast_wpseo_estimated-reading-time-minutes','1'),(56919,3680,'_yoast_wpseo_wordproof_timestamp',''),(56920,3420,'vendor','Meadowcroft Wines'),(56921,3682,'_menu_item_type','post_type'),(56922,3682,'_menu_item_menu_item_parent','759'),(56923,3682,'_menu_item_object_id','3399'),(56924,3682,'_menu_item_object','brand'),(56925,3682,'_menu_item_target',''),(56926,3682,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56927,3682,'_menu_item_xfn',''),(56928,3682,'_menu_item_url',''),(56930,920,'_wp_old_date','2023-12-21'),(56931,456,'_wp_old_date','2023-12-21'),(56934,3179,'_wp_old_date','2023-12-21'),(56935,3178,'_wp_old_date','2023-12-21'),(56936,759,'_wp_old_date','2023-12-21'),(56937,2993,'_wp_old_date','2023-12-21'),(56938,2990,'_wp_old_date','2023-12-21'),(56939,2989,'_wp_old_date','2023-12-21'),(56940,2992,'_wp_old_date','2023-12-21'),(56941,2991,'_wp_old_date','2023-12-21'),(56942,3272,'_wp_old_date','2023-12-21'),(56943,3027,'_wp_old_date','2023-12-21'),(56944,1563,'_wp_old_date','2023-12-21'),(56945,948,'_wp_old_date','2023-12-21'),(56946,949,'_wp_old_date','2023-12-21'),(56947,950,'_wp_old_date','2023-12-21'),(56948,880,'_wp_old_date','2023-12-21'),(56949,1541,'_wp_old_date','2023-12-21'),(56950,508,'mec_location_id','0'),(56951,508,'mec_additional_location_ids','a:0:{}'),(56952,508,'mec_organizer_id','0'),(56953,508,'mec_additional_organizer_ids','a:0:{}'),(56957,3683,'_menu_item_type','post_type'),(56958,3683,'_menu_item_menu_item_parent','0'),(56959,3683,'_menu_item_object_id','3399'),(56960,3683,'_menu_item_object','brand'),(56961,3683,'_menu_item_target',''),(56962,3683,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56963,3683,'_menu_item_xfn',''),(56964,3683,'_menu_item_url',''),(56966,1007,'_wp_old_date','2022-11-17'),(56967,1042,'_wp_old_date','2022-11-17'),(56968,1022,'_wp_old_date','2022-11-17'),(56969,1009,'_wp_old_date','2022-11-17'),(56970,1012,'_wp_old_date','2022-11-17'),(56971,3684,'web_id','f856651a-6aa9-47e5-8333-e9d197ff41a1'),(56972,3684,'slug','blanket-fleece-logo'),(56973,3684,'title','Blanket fleece logo'),(56974,3684,'type','General Merchandise'),(56975,3684,'image',NULL),(56976,3684,'teaser',NULL),(56977,3684,'content',NULL),(56978,3684,'subtitle',NULL),(56979,3684,'price','2500'),(56980,3684,'web_status','Not Available'),(56981,3684,'admin_status','Available'),(56982,3684,'vendor','707 Embroidery Zone'),(56983,3684,'collections','a:0:{}'),(56984,3684,'primary_collection',''),(57191,412,'content_block_6_layout_title','Atmospheric Video'),(57192,412,'_content_block_6_layout_title','field_5bc11ca9a0d50-u'),(57193,412,'content_block_6_hide_this_content_block','1'),(57194,412,'_content_block_6_hide_this_content_block','field_643884e4df74c7vidleg'),(57195,412,'content_block_6_custom_css_class',''),(57196,412,'_content_block_6_custom_css_class','field_5bbe30b1ahalf-vidleg'),(57197,412,'content_block_6_video_width','full'),(57198,412,'_content_block_6_video_width','field_5bbe75793d323'),(57199,412,'content_block_6_autoplay_video','1'),(57200,412,'_content_block_6_autoplay_video','field_5bbe7f869a2a7'),(57201,412,'content_block_6_add_a_muteunmute_button','0'),(57202,412,'_content_block_6_add_a_muteunmute_button','field_5de6f2f5cc5c4m'),(57203,412,'content_block_6_mobile_video','autoplay'),(57204,412,'_content_block_6_mobile_video','field_5de7031a2009e'),(57205,412,'content_block_6_video_source','Local'),(57206,412,'_content_block_6_video_source','field_5bbe74973d31d'),(57207,412,'content_block_6_local_video','863'),(57208,412,'_content_block_6_local_video','field_5bbe74c83d31e'),(57209,412,'content_block_6_video_cover_image','864'),(57210,412,'_content_block_6_video_cover_image','field_5bbe75d33d326'),(57211,412,'content_block_6_video_cover_image_mobile','865'),(57212,412,'_content_block_6_video_cover_image_mobile','field_5bbe765b3d327'),(57213,412,'content_block_7_layout_title','Visit'),(57214,412,'_content_block_7_layout_title','field_5bc11ca9a0d50-s'),(57215,412,'content_block_7_hide_this_content_block','1'),(57216,412,'_content_block_7_hide_this_content_block','field_643884e4df74c7textb'),(57217,412,'content_block_7_custom_css_class',''),(57218,412,'_content_block_7_custom_css_class','field_5bbe30b1a4de2-1'),(57219,412,'content_block_7_text_block_columns','one'),(57220,412,'_content_block_7_text_block_columns','field_5bbe2f81a4de0'),(57221,412,'content_block_7_narrow_text_block_content','1'),(57222,412,'_content_block_7_narrow_text_block_content','field_5bbe342e08360'),(57223,412,'content_block_7_reverse_colors','0'),(57224,412,'_content_block_7_reverse_colors','field_5bbe3027a4de1'),(57225,412,'content_block_7_enable_background_image','0'),(57226,412,'_content_block_7_enable_background_image','field_5bbe30b1a4de2'),(57227,412,'content_block_7_text_block_content_col_one','<p class=\"metatitle\" style=\"text-align: center;\">OPEN DAILY</p>\r\n\r\n<h3 style=\"text-align: center;\">VISIT THE MEADOWCROFT\r\nTASTING ROOM</h3>\r\n<p style=\"text-align: center;\">Our tasting room is located in California’s iconic Sonoma Valley. Here our guests take the time to slow down and enjoy the flavors of our wines. We are open daily from 10:00 a.m. – 5:00 p.m.</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"https://www.meadowcroftwines.com/tasting-room/\">Reservations</a> are recommended but walk-ins are welcome and accommodated as possible.</strong></p>\r\n<p style=\"text-align: center;\"><strong>Please call us at (707)934-4090 for last minute reservations or same-day requests.</strong></p>\r\n<p style=\"text-align: center;\">23574 Arnold Drive\r\nSonoma, CA 95476\r\n<a href=\"https://www.google.com/maps/dir//Meadowcroft+wines,+%2FHwy.+121,+suite+Meadowcroft+wines,+23574+Arnold+Dr,+Sonoma,+CA+95476/@38.22773,-122.457926,15z/data=!4m15!1m6!3m5!1s0x0:0xd21fda9232c58ee9!2sMeadowcroft+wines!8m2!3d38.22773!4d-122.457926!4m7!1m0!1m5!1m1!1s0x8085af4f80be9b43:0xd21fda9232c58ee9!2m2!1d-122.457926!2d38.22773\">Get Directions</a></p>\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"/tasting-room/\">BROWSE OUR UNIQUE TASTING ROOM EXPERIENCES</a></p>\r\n&nbsp;'),(57228,412,'_content_block_7_text_block_content_col_one','field_5bbe313b3920d'),(57229,412,'content_block_8_layout_title','Illustration'),(57230,412,'_content_block_8_layout_title','field_5bc11ca9a0d50-c'),(57231,412,'content_block_8_hide_this_content_block','1'),(57232,412,'_content_block_8_hide_this_content_block','field_643884e4df74banner'),(57233,412,'content_block_8_custom_css_class','illustration'),(57234,412,'_content_block_8_custom_css_class','field_5bbf30b1a4de2-1'),(57235,412,'content_block_8_banner_full_width','1'),(57236,412,'_content_block_8_banner_full_width','field_5bbe19c8efa0a'),(57237,412,'content_block_8_banner_size','long'),(57238,412,'_content_block_8_banner_size','field_5bbe232929ec9'),(57239,412,'content_block_8_add_parallax_effect','0'),(57240,412,'_content_block_8_add_parallax_effect','field_5bbe219ccb6a9'),(57241,412,'content_block_8_add_veil_over_banner','0'),(57242,412,'_content_block_8_add_veil_over_banner','field_5bbe333f39212'),(57243,412,'content_block_8_banner_content_position','centered'),(57244,412,'_content_block_8_banner_content_position','field_5bbe259b02b62'),(57245,412,'content_block_8_banner_title',''),(57246,412,'_content_block_8_banner_title','field_5bbe1b78efa0b'),(57247,412,'content_block_8_banner_subtitle',''),(57248,412,'_content_block_8_banner_subtitle','field_5bbe1b83efa0c'),(57249,412,'content_block_8_banner_button_link',''),(57250,412,'_content_block_8_banner_button_link','field_5bbe1b8cefa0d'),(57251,412,'content_block_8_banner_button_new_tab','0'),(57252,412,'_content_block_8_banner_button_new_tab','field_5bbe1e6d18fae'),(57253,412,'content_block_8_show_down_arrow','0'),(57254,412,'_content_block_8_show_down_arrow','field_5bbe24f721165'),(57255,412,'content_block_8_banner_image_description','Illustration of field with bee and flowers'),(57256,412,'_content_block_8_banner_image_description','field_5bbf30b1a4de2-1a'),(57257,412,'content_block_8_banner_image','867'),(57258,412,'_content_block_8_banner_image','field_5bbe201718faf'),(57259,412,'content_block_8_banner_image_position','center center'),(57260,412,'_content_block_8_banner_image_position','field_5bbe278f9fb97'),(57261,412,'content_block_8_banner_image_mobile','867'),(57262,412,'_content_block_8_banner_image_mobile','field_5bbe202818fb0'),(57263,412,'content_block_8_banner_image_mobile_position','center center'),(57264,412,'_content_block_8_banner_image_mobile_position','field_5bbe279c9fb98'),(57266,3437,'_edit_lock','1712656533:5'),(57269,3691,'inline_featured_image','0'),(57270,3691,'_edit_lock','1730323080:2'),(57271,3691,'_edit_last','2'),(57272,3691,'_wp_page_template','default'),(57273,3691,'allowed_customer_tag_titles','a:0:{}'),(57274,3691,'allowed_customer_club_titles','a:0:{}'),(57307,3691,'content_block','a:3:{i:0;s:6:\"spacer\";i:1;s:10:\"text_block\";i:2;s:18:\"product_collection\";}'),(57308,3691,'_content_block','field_5bbe19a7efa09'),(57309,3691,'_yoast_wpseo_estimated-reading-time-minutes','1'),(57310,3691,'_yoast_wpseo_wordproof_timestamp',''),(57311,3691,'content_block_0_admin_title',''),(57312,3691,'_content_block_0_admin_title','field_1z275012789c2'),(57313,3691,'content_block_0_hide_this_content_block','1'),(57314,3691,'_content_block_0_hide_this_content_block','field_1z3884e4df74f'),(57315,3691,'content_block_0_custom_css_classes',''),(57316,3691,'_content_block_0_custom_css_classes','field_1z388502df750'),(57317,3691,'content_block_0_spacer_height_desktop','20'),(57318,3691,'_content_block_0_spacer_height_desktop','field_1zf7ac2212937'),(57319,3691,'content_block_0_spacer_height_mobile','5'),(57320,3691,'_content_block_0_spacer_height_mobile','field_1zf7ac4512938'),(57321,3691,'content_block_1_layout_title',''),(57322,3691,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(57323,3691,'content_block_1_hide_this_content_block','1'),(57324,3691,'_content_block_1_hide_this_content_block','field_643884e4df74c7textb'),(57325,3691,'content_block_1_custom_css_class',''),(57326,3691,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(57327,3691,'content_block_1_text_block_columns','one'),(57328,3691,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(57329,3691,'content_block_1_narrow_text_block_content','0'),(57330,3691,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(57331,3691,'content_block_1_reverse_colors','0'),(57332,3691,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(57333,3691,'content_block_1_enable_background_image','0'),(57334,3691,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(57335,3691,'content_block_1_text_block_content_col_one','<h1 style=\"text-align: center;\">Event Tickets</h1>'),(57336,3691,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(57337,3691,'content_block_2_layout_title',''),(57338,3691,'_content_block_2_layout_title','field_5bc11ca9a0d50-v'),(57339,3691,'content_block_2_hide_this_content_block','1'),(57340,3691,'_content_block_2_hide_this_content_block','field_643884e4df74c7prodcol'),(57341,3691,'content_block_2_custom_css_class',''),(57342,3691,'_content_block_2_custom_css_class','field_5bc11ca9a0d50-cc'),(57343,3691,'content_block_2_product_row_number','1up'),(57344,3691,'_content_block_2_product_row_number','field_5bc11c6da0d4f'),(57345,3691,'content_block_2_data_collection_slug','event-tickets-2'),(57346,3691,'_content_block_2_data_collection_slug','field_5bc11ca9a0d50'),(57347,3691,'content_block_2_manually_enter_collection_slug','0'),(57348,3691,'_content_block_2_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(57349,3691,'content_block_2_product_display_feature','0'),(57350,3691,'_content_block_2_product_display_feature','field_5d1144d5e6922'),(57351,3691,'content_block_2_product_display_teaser','0'),(57352,3691,'_content_block_2_product_display_teaser','field_5d114505e6923'),(57353,3692,'_menu_item_type','post_type'),(57354,3692,'_menu_item_menu_item_parent','920'),(57355,3692,'_menu_item_object_id','3691'),(57356,3692,'_menu_item_object','page'),(57357,3692,'_menu_item_target',''),(57358,3692,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57359,3692,'_menu_item_xfn',''),(57360,3692,'_menu_item_url',''),(57362,920,'_wp_old_date','2024-04-01'),(57363,456,'_wp_old_date','2024-04-01'),(57365,3179,'_wp_old_date','2024-04-01'),(57366,3178,'_wp_old_date','2024-04-01'),(57367,759,'_wp_old_date','2024-04-01'),(57368,2993,'_wp_old_date','2024-04-01'),(57369,2990,'_wp_old_date','2024-04-01'),(57370,2989,'_wp_old_date','2024-04-01'),(57371,2992,'_wp_old_date','2024-04-01'),(57372,2991,'_wp_old_date','2024-04-01'),(57373,3272,'_wp_old_date','2024-04-01'),(57374,3682,'_wp_old_date','2024-04-01'),(57375,3027,'_wp_old_date','2024-04-01'),(57376,1563,'_wp_old_date','2024-04-01'),(57377,948,'_wp_old_date','2024-04-01'),(57378,949,'_wp_old_date','2024-04-01'),(57379,950,'_wp_old_date','2024-04-01'),(57380,880,'_wp_old_date','2024-04-01'),(57381,1541,'_wp_old_date','2024-04-01'),(57384,3695,'inline_featured_image','0'),(57385,3695,'_edit_lock','1713204718:3'),(57386,3695,'_edit_last','3'),(57387,3696,'_wp_attached_file','2024/04/kintsugi-web.jpg'),(57388,3696,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"file\";s:24:\"2024/04/kintsugi-web.jpg\";s:8:\"filesize\";i:560985;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"kintsugi-web-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23748;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"kintsugi-web-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:161720;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"kintsugi-web-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8306;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"kintsugi-web-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101670;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:24:\"kintsugi-web-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23748;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:24:\"kintsugi-web-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52017;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:24:\"kintsugi-web-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38177;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:24:\"kintsugi-web-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27813;}s:8:\"tileview\";a:5:{s:4:\"file\";s:24:\"kintsugi-web-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31712;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:26:\"kintsugi-web-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:318328;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:26:\"kintsugi-web-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:210878;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(57389,3696,'_wp_attachment_image_alt','Kintsugi Experience at Meadowcroft Wines'),(57390,3695,'_thumbnail_id','3696'),(57391,3695,'mec_color','00a0d2'),(57392,3695,'allowed_customer_tag_titles','a:0:{}'),(57393,3695,'allowed_customer_club_titles','a:0:{}'),(57394,3695,'mec_location_id','24'),(57395,3695,'mec_dont_show_map','0'),(57396,3695,'mec_organizer_id','1'),(57397,3695,'mec_read_more','https://www.eventbrite.com/e/kintsugi-la-workshop-with-meadowcroft-wines-tickets-838075585637?aff=oddtdtcreator&utm_source=Klaviyo&utm_medium=campaign&_kx=sMlwCJhHfraCTp4LyIcfTw.Ua2Zpn'),(57398,3695,'mec_more_info',''),(57399,3695,'mec_more_info_title',''),(57400,3695,'mec_more_info_target','_self'),(57401,3695,'mec_cost','180'),(57402,3695,'mec_cost_auto_calculate','0'),(57403,3695,'mec_currency','a:0:{}'),(57404,3695,'mec_additional_organizer_ids','a:0:{}'),(57405,3695,'mec_additional_location_ids','a:0:{}'),(57406,3695,'mec_date','a:4:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2024-04-27\";s:4:\"hour\";s:2:\"11\";s:7:\"minutes\";s:1:\"0\";s:4:\"ampm\";s:2:\"AM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2024-04-27\";s:4:\"hour\";s:1:\"2\";s:7:\"minutes\";s:2:\"30\";s:4:\"ampm\";s:2:\"PM\";}s:7:\"comment\";s:0:\"\";s:6:\"repeat\";a:6:{s:4:\"type\";s:5:\"daily\";s:8:\"interval\";s:1:\"1\";s:8:\"advanced\";s:0:\"\";s:3:\"end\";s:5:\"never\";s:11:\"end_at_date\";s:0:\"\";s:18:\"end_at_occurrences\";s:2:\"10\";}}'),(57407,3695,'mec_repeat','a:6:{s:4:\"type\";s:5:\"daily\";s:8:\"interval\";s:1:\"1\";s:8:\"advanced\";s:0:\"\";s:3:\"end\";s:5:\"never\";s:11:\"end_at_date\";s:0:\"\";s:18:\"end_at_occurrences\";s:2:\"10\";}'),(57408,3695,'mec_certain_weekdays','a:0:{}'),(57409,3695,'mec_allday','0'),(57410,3695,'one_occurrence','0'),(57411,3695,'mec_hide_time','0'),(57412,3695,'mec_hide_end_time','0'),(57413,3695,'mec_comment',''),(57414,3695,'mec_timezone','global'),(57415,3695,'mec_countdown_method','global'),(57416,3695,'mec_style_per_event','global'),(57417,3695,'mec_trailer_url',''),(57418,3695,'mec_trailer_title',''),(57419,3695,'mec_public','1'),(57420,3695,'mec_start_date','2024-04-27'),(57421,3695,'mec_start_time_hour','11'),(57422,3695,'mec_start_time_minutes','0'),(57423,3695,'mec_start_time_ampm','AM'),(57424,3695,'mec_start_day_seconds','39600'),(57425,3695,'mec_start_datetime','2024-04-27 11:00 AM'),(57426,3695,'mec_end_date','2024-04-27'),(57427,3695,'mec_end_time_hour','2'),(57428,3695,'mec_end_time_minutes','30'),(57429,3695,'mec_end_time_ampm','PM'),(57430,3695,'mec_end_day_seconds','52200'),(57431,3695,'mec_end_datetime','2024-04-27 02:30 PM'),(57432,3695,'mec_repeat_status','0'),(57433,3695,'mec_repeat_type',''),(57434,3695,'mec_repeat_interval','1'),(57435,3695,'mec_repeat_end',''),(57436,3695,'mec_repeat_end_at_occurrences','9'),(57437,3695,'mec_repeat_end_at_date',''),(57438,3695,'mec_advanced_days','a:0:{}'),(57439,3695,'mec_sequence','6'),(57440,3695,'mec_in_days',''),(57441,3695,'mec_not_in_days',''),(57442,3695,'mec_hourly_schedules','a:0:{}'),(57443,3695,'mec_booking','a:0:{}'),(57444,3695,'mec_tickets','a:0:{}'),(57445,3695,'mec_fees_global_inheritance','1'),(57446,3695,'mec_fees','a:0:{}'),(57447,3695,'mec_ticket_variations_global_inheritance','1'),(57448,3695,'mec_ticket_variations','a:0:{}'),(57449,3695,'mec_reg_fields_global_inheritance','1'),(57450,3695,'mec_reg_fields','a:0:{}'),(57451,3695,'mec_bfixed_fields','a:0:{}'),(57452,3695,'mec_op','a:0:{}'),(57453,3695,'mec_fields','a:0:{}'),(57454,3695,'mec_event_gallery','a:0:{}'),(57455,3695,'mec_related_events','a:0:{}'),(57456,3695,'mec_banner','a:0:{}'),(57457,3695,'mec_event_status','EventScheduled'),(57458,3695,'mec_moved_online_link',''),(57459,3695,'mec_cancelled_reason',''),(57460,3695,'mec_display_cancellation_reason_in_single_page',''),(57461,3695,'_yoast_wpseo_primary_mec_category',''),(57462,3695,'_yoast_wpseo_focuskw','Kintsugi pottery experience at Meadowcroft Wines'),(57463,3695,'_yoast_wpseo_linkdex','59'),(57464,3695,'_yoast_wpseo_content_score','90'),(57465,3695,'_yoast_wpseo_estimated-reading-time-minutes','2'),(57466,3695,'_yoast_wpseo_wordproof_timestamp',''),(57470,3695,'mec_new_event_notif_sent','1'),(57471,3695,'_yoast_wpseo_metadesc','Join us for an immersive Kintsugi experience at Meadowcroft Wines. Learn to create new beautiful pottery from broken pieces.'),(57472,3697,'web_id','ed8be307-5566-49a4-86ea-10945c3816a2'),(57473,3697,'slug','2023-chardonnay-carneros'),(57474,3697,'title','2023 Chardonnay, Carneros'),(57475,3697,'type','Wine'),(57476,3697,'image','https://images.commerce7.com/meadowcroft-wines/images/original/2023--chardonnay-napacarneros-2-1715104763226.png'),(57477,3697,'teaser',NULL),(57478,3697,'content','<div class=\"tatsu-section-pad clearfix\" data-padding=\"{&quot;d&quot;:&quot;90px 0px 90px 0px&quot;}\" data-padding-top=\"90px\">\n<div class=\"tatsu-row-wrap  tatsu-wrap tatsu-row-one-col tatsu-row-has-one-cols tatsu-medium-gutter tatsu-reg-cols  tatsu-clearfix tatsu-HJxPYjzn1q\">\n<div class=\"tatsu-row \">\n<div class=\"tatsu-column  tatsu-bg-overlay tatsu-one-col tatsu-column-image-none tatsu-column-effect-none  tatsu-rJDKoGnJq\" data-parallax-speed=\"0\">\n<div class=\"tatsu-column-inner \">\n<div class=\"tatsu-column-pad-wrap\">\n<div class=\"tatsu-column-pad\">\n<div id=\"\" class=\"tatsu-code tatsu-module tatsu-ByuNCz215   \">\n<div class=\"ecp-wrapper epub-locale-en\" data-ecp-wrapper=\"true\">\n<div class=\"ecp-component ecp_ProductDetail \">\n<div data-ecp-id=\"1211\">\n<div class=\"ecp-columns ecp-clearfix\">\n<div class=\"ecp-columns-right\">\n<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>\n<p class=\"p2\"><strong>TASTING NOTES</strong></p>\n<p class=\"p3\">A lush and aromatic wine, the 2023 vintage of our Carneros Chardonnay is delightfully complex, with aromatic notes of fresh baked brioche, honeydew melon, crisp green apple and marzipan. The long finish delivers refreshing acidity and subtle toasted oak flavors.</p>\n<p class=\"p2\"><strong>SUGGESTED FOOD PAIRING</strong></p>\n<p class=\"p4\">This wine will carry you through pairings for elegant entertaining, weeknight dinners, and everything in between. Fresh Dungeness crab or seared bacon wrapped scallops make this wine sing.</p>\n<p class=\"p4\"><strong>TECHNICAL INFORMATION</strong></p>\n<p class=\"p2\"><span class=\"s2\">APPELLATION: </span>Carneros, Napa Valley</p>\n<p class=\"p2\"><span class=\"s2\">VARIETAL: </span>Chardonnay</p>\n<p class=\"p2\"><span class=\"s2\">HARVESTED: </span>September 2023</p>\n<p class=\"p2\"><span class=\"s2\">BOTTLED: </span>March 2024</p>\n<p class=\"p2\"><span class=\"s2\">PRODUCTION: </span>1059 750ml cases/ 146 375ml cases</p>\n<p class=\"p3\">ALCOHOL: <span class=\"s3\">13.5% </span></p>\n<p class=\"p4\">pH: <span class=\"s3\">3.60</span></p>\n<p class=\"p4\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2023-Napa-Carneros-Chardonnay-Tech-Sheet-FINAL.pdf\"><strong><span class=\"s3\">PDF Wine Notes</span></strong></a></p>\n<p class=\"p4\"><strong><span class=\"s3\">ACCOLADES</span></strong></p>\n<p class=\"p4\"><strong><span class=\"s3\">Gold Medal - </span></strong><span class=\"s3\">Critics Challenge Intl Wine &amp; Spirits Competition</span></p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>'),(57479,3697,'subtitle','Napa Valley'),(57480,3697,'price','3800'),(57481,3697,'web_status','Available'),(57482,3697,'admin_status','Available'),(57483,3697,'varietal','Chardonnay'),(57484,3697,'appellation','Carneros'),(57485,3697,'vintage','2023'),(57486,3697,'collections','a:0:{}'),(57487,3697,'primary_collection',''),(57488,3697,'_wp_old_slug','2022-chardonnay-carneros-duplicate'),(57489,3698,'web_id','2e2f2d3b-2a2d-4933-bad4-bdfaee7264ad'),(57490,3698,'slug','2023-chardonnay-carneros-375ml'),(57491,3698,'title','2023 Chardonnay, Carneros 375ml'),(57492,3698,'type','Wine'),(57493,3698,'image','https://images.commerce7.com/meadowcroft-wines/images/original/2023--chardonnay-napacarneros-2-1715104988495.png'),(57494,3698,'teaser',NULL),(57495,3698,'content','<p class=\"p2\"><strong>TASTING NOTES</strong></p>\n<p class=\"p3\">A lush and aromatic wine, the 2023 vintage of our Carneros Chardonnay is delightfully complex, with aromatic notes of fresh baked brioche, honeydew melon, crisp green apple and marzipan. The long finish delivers refreshing acidity and subtle toasted oak flavors.</p>\n<p class=\"p2\"><strong>SUGGESTED FOOD PAIRING</strong></p>\n<p class=\"p4\">This wine will carry you through pairings for elegant entertaining, weeknight dinners, and everything in between. Fresh Dungeness crab or seared bacon wrapped scallops make this wine sing.</p>\n<p class=\"p4\"><strong>TECHNICAL INFORMATION</strong></p>\n<p class=\"p2\"><span class=\"s2\">APPELLATION: </span>Carneros, Napa Valley</p>\n<p class=\"p2\"><span class=\"s2\">VARIETAL: </span>Chardonnay</p>\n<p class=\"p2\"><span class=\"s2\">HARVESTED: </span>September 2023</p>\n<p class=\"p2\"><span class=\"s2\">BOTTLED: </span>March 2024</p>\n<p class=\"p2\"><span class=\"s2\">PRODUCTION: </span>1059 750ml cases/ 146 375ml cases</p>\n<p class=\"p3\">ALCOHOL: <span class=\"s3\">13.5% </span></p>\n<p class=\"p4\">pH: <span class=\"s3\">3.60</span></p>\n<p class=\"p4\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2023-Napa-Carneros-Chardonnay-Tech-Sheet-FINAL.pdf\"><strong><span class=\"s3\">PDF Wine Notes</span></strong></a></p>'),(57496,3698,'subtitle','Napa Valley'),(57497,3698,'price','1350'),(57498,3698,'web_status','Not Available'),(57499,3698,'admin_status','Available'),(57500,3698,'varietal','Chardonnay'),(57501,3698,'appellation','Carneros'),(57502,3698,'vintage','2023'),(57503,3698,'meta_data_review-text','<div>&nbsp;</div>\n<div>&nbsp;</div>'),(57504,3698,'meta_data_wine-notes','<div>TASTING NOTES:&nbsp; &nbsp;A lush and aromatic wine, our 2021 vintage of our Carneros Chardonnay is delightfully complex, with notes of melon and stone fruit framed by primary flavors of apple and lemon peel. Secondary suggestions of grilled bread cheese, mustard seed, pear, and white pepper follow. The finish is rich and extended, with hints of toasted marshmallows.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp; This wine will carry you through pairings for elegant entertaining, weeknight dinners, and everything in between.&nbsp; Seafood is always an easy pairing with this wine. Try also with a selection of cheeses with higher acidity like goat cheese or Jarlsberg. In general, choose to serve with foods that are light and a tad rich.&nbsp;</div>'),(57505,3698,'meta_data_technical-notes','<div>Appellation: Carneros, Napa Valley</div>\n<div>Varietal:&nbsp; Chardonnay</div>\n<div>Harvested:&nbsp; September 2021</div>\n<div>Bottled Date:&nbsp; February 2022</div>\n<div>&nbsp;</div>'),(57506,3698,'collections','a:0:{}'),(57507,3698,'primary_collection',''),(57508,3698,'_wp_old_slug','2022-chardonnay-carneros-375ml-duplicate'),(57509,3699,'web_id','0babcf14-6b77-42b0-b80c-bb50867c68c7'),(57510,3699,'slug','2022-pinot-noir-sonoma-coast-375ml-'),(57511,3699,'title','2022 Pinot Noir, Sonoma Coast 375mL'),(57512,3699,'type','Wine'),(57513,3699,'image','https://images.commerce7.com/meadowcroft-wines/images/original/prod_image1_1071-1657824692437.png'),(57514,3699,'teaser',NULL),(57515,3699,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>TASTING NOTES: Packed with summer ripen strawberries accented by Bing cherries and elegant tannins, this refined pinot noir is a beauty. The mouthfeel is velvety and the finish lingers pleasantly. Drink now through 2030.</div>\n<div>&nbsp;</div>\n<div>FOOD PAIRINGS:&nbsp;&nbsp;This pinot noir will complement a variety of dishes such as Fennel-Garlic Pork Roast, Stuffed Eggplant with Lamb and Pine Nuts, or Leek and Pecorino Wood Fire Pizza. This wine is also excellent on its own.</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">\n<div>FORMAT: 375ml (Half- Bottle)</div>\nAppellation: Sonoma Coast, Sonoma County Pinot Noir<br />Harvest Date: September 2022<br />Barrel Regime: French oak barrels<br />Bottling Date: April 2024<br />Production: 145 Cases<br />Alcohol: 13.50%<br />pH: 3.69</div>\n<div class=\"ecp-html-content tech-notes\">&nbsp;</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><a href=\"https://client-assets.ecellar1.com/meadowcroftwines/prod_pdf_1071.pdf\" target=\"_blank\" rel=\"noopener\">Download Complete Wine Tasting Notes</a></div>'),(57516,3699,'subtitle','Sonoma Coast, Sonoma County'),(57517,3699,'price','2000'),(57518,3699,'web_status','Not Available'),(57519,3699,'admin_status','Available'),(57520,3699,'varietal','Pinot Noir'),(57521,3699,'appellation','Sonoma Coast'),(57522,3699,'vintage','2022'),(57523,3699,'collections','a:0:{}'),(57524,3699,'primary_collection',''),(57525,3699,'_wp_old_slug','2018-pinot-noir-sonoma-coast-375ml-duplicate'),(57526,3700,'web_id','601c7293-5054-4c6e-b232-18c2cde0ded8'),(57527,3700,'slug','2023-pinot-noir-sonoma-coast-'),(57528,3700,'title','2023 Pinot Noir Sonoma Coast'),(57529,3700,'type','Wine'),(57530,3700,'image','https://images.commerce7.com/meadowcroft-wines/images/original/2023-pinotnoir-sonomacoast-1-1715105255000.png'),(57531,3700,'teaser',NULL),(57532,3700,'content','<p class=\"p2\"><strong>TASTING NOTES</strong></p>\n<p class=\"p3\">Sourced from Sonoma&rsquo;s largest AVA, the vines cultivated in this world-famous growing region experience warm days followed by cool evenings year-round. A longer growing season allows for the development of rich fruit characteristics and bright acidity. Aromas of cherry, wild strawberry, cigar box and briny notes are followed by flavors of cherry cola, raspberry with hints of coffee and wet stone. Drink now through 2031.</p>\n<p class=\"p2\"><strong>SUGGESTED FOOD PAIRING</strong></p>\n<p class=\"p4\">Easy to pair, this supple and elegant wine is perfect for every day enjoyment or to share in a special moment. Try with wood-fired pizza, roasted duck or barbecued pork ribs. If you plan to serve it with cheese, pair this wine with Brie, Gouda, and Manchego cheeses.</p>\n<p class=\"p4\"><strong>TECHNICAL INFORMATION</strong></p>\n<p class=\"p2\"><span class=\"s2\">APPELLATION: </span>Sonoma Coast</p>\n<p class=\"p2\"><span class=\"s2\">VARIETAL: </span>Pinot Noir</p>\n<p class=\"p2\"><span class=\"s2\">HARVESTED: </span>September 2023</p>\n<p class=\"p2\"><span class=\"s2\">BOTTLED: </span>April 2024</p>\n<p class=\"p3\">PRODUCTION: <span class=\"s3\">145 cases </span></p>\n<p class=\"p3\">ALCOHOL: <span class=\"s3\">13.9% </span></p>\n<p class=\"p4\">pH: <span class=\"s3\">3.65</span></p>\n<p class=\"p4\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2023-Pinot-Noir-Son-Coast-Tech-Sheet-FINAL.pdf\"><strong><span class=\"s3\">PDF Wine Notes</span></strong></a></p>\n<p class=\"p4\"><strong><span class=\"s3\">ACCOLADES</span></strong></p>\n<p class=\"p4\"><strong><span class=\"s3\">Gold Medal - </span></strong><span class=\"s3\">Critics Challenge Intl Wine &amp; Spirits Competition</span></p>\n<p class=\"p4\">&nbsp;</p>'),(57533,3700,'subtitle','Sonoma County'),(57534,3700,'price','4200'),(57535,3700,'web_status','Available'),(57536,3700,'admin_status','Available'),(57537,3700,'vendor','Meadowcroft Wines'),(57538,3700,'varietal','Pinot Noir'),(57539,3700,'appellation','Sonoma Coast'),(57540,3700,'vintage','2023'),(57541,3700,'collections','a:0:{}'),(57542,3700,'primary_collection',''),(57543,3700,'_wp_old_slug','2022-pinot-noir-sonoma-coast-duplicate'),(57544,3701,'web_id','31efb753-35d2-4ffa-bbb9-ce0ea53c1b9a'),(57545,3701,'slug','2023-pinot-blanc-rivino-vineyard-'),(57546,3701,'title','2023 Pinot Blanc, Rivino Vineyard'),(57547,3701,'type','Wine'),(57548,3701,'image','https://images.commerce7.com/meadowcroft-wines/images/original/2023-pinotblanc-1714761458094.png'),(57549,3701,'teaser',NULL),(57550,3701,'content','<div>Primarily produced as a single varietal in Alsace in northeast France and the Alto Adige region of Italy, Pinot Blanc is the white counterpart to Pinot Noir. Very delicate, with tightly packed clusters on the vine, this grape variety results in light, refreshing wines that easily showcase winemaking style and terroir. This limited production, vintage is a special release.</div>\n<div>&nbsp;</div>\n<div>\n<p class=\"p2\"><strong>TASTING NOTES</strong></p>\n<p class=\"p2\">Fresh from start to finish, this ever interesting wine begs to be paired with food. Upfront, aromas of mango, crisp apple and tropical notes are accented by subtle notes of bubblegum. On the palate the wine expresses flavors of ripe pear, baked apple and nectar. A medium to full-bodied white wine with a rich round mouthfeel and balanced acidity.</p>\n<p class=\"p2\"><strong><span class=\"s2\">SUGGESTED FOOD PAIRING </span></strong></p>\n<p class=\"p4\">Our Pinot Blanc calls out for fresh oysters or steamed mussels. Or, try with a recent favorite - fresh fettucine with lemon cream sauce. Extremely versatile and crowd-pleasing, this varietal would be perfect for both brunch and lunch fare.</p>\n<p class=\"p4\"><strong>TECHNICAL INFORMATION</strong></p>\n<p class=\"p4\"><span class=\"s2\">APPELLATION: </span>Rivino Vineyard, Mendocino County</p>\n<p class=\"p4\"><span class=\"s2\">VARIETAL: </span>Pinot Blanc</p>\n<p class=\"p4\"><span class=\"s2\">HARVESTED: </span>September 2023</p>\n<p class=\"p4\"><span class=\"s2\">BOTTLED: </span>April 2024</p>\n<p class=\"p4\">PRODUCTION: <span class=\"s3\">87 cases </span></p>\n<p class=\"p4\">ALCOHOL: <span class=\"s3\">13.9 </span></p>\n<p class=\"p4\">pH: <span class=\"s3\">3.44</span></p>\n<p class=\"p4\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2023-Pinot-Blanc-FINAL.pdf\"><strong><span class=\"s3\">PDF Wine Notes</span></strong></a></p>\n<p class=\"p4\">&nbsp;</p>\n</div>\n<div>&nbsp;</div>\n<div>&nbsp;</div>'),(57551,3701,'subtitle','Mendocino County'),(57552,3701,'price','3400'),(57553,3701,'web_status','Available'),(57554,3701,'admin_status','Available'),(57555,3701,'varietal','Chardonnay'),(57556,3701,'appellation','Mendocino'),(57557,3701,'vintage','2023'),(57558,3701,'meta_data_review-text','<p><span style=\"font-weight: bold;\">AWARDS AND REVIEWS</span></p>\n<div>DOUBLE GOLD MEDAL&nbsp;</div>\n<div>2021 Rivino Vineyard Pinot Blanc</div>\n<div><a href=\"https://enofileonline.com/awardsbybrandgoldplus.aspx?compid=2842\" target=\"_blank\" rel=\"noopener\">Sunset International Wine Competition</a></div>\n<div>&nbsp;</div>\n<div>\n<div>GOLD MEDAL |&nbsp;&nbsp;92 pts&nbsp;</div>\n<div>2020 Rivino Vineyard Pinot Blanc</div>\n<a title=\"\" target=\"\">Critics Challenge Wine Wine Competition</a></div>\n<div>&nbsp;</div>\n<p>\"</p>'),(57559,3701,'meta_data_feature-text','<p>Mendocino</p>'),(57560,3701,'meta_data_wine-notes','<p>$25.60</p>'),(57561,3701,'meta_data_technical-notes','<div>Appellation:&nbsp; Mendocino</div>\n<div>Varietal:&nbsp; Pinot Blanc</div>\n<div>Harvest Date: September 2021</div>\n<div>Bottle date: February&nbsp;</div>\n<div>Production: 97&nbsp; cases</div>\n<div>Alcohol: 13.39%</div>'),(57562,3701,'collections','a:0:{}'),(57563,3701,'primary_collection',''),(57564,3701,'_wp_old_slug','2022-pinot-blanc-rivino-vineyard-duplicate'),(57565,3702,'web_id','6906eee5-fa5e-4468-af32-6c09ae8d0f07'),(57566,3702,'slug','2023-roussanne-wyldvin-vineyard-'),(57567,3702,'title','2023 Roussanne, Wyldvin Vineyard'),(57568,3702,'type','Wine'),(57569,3702,'image','https://images.commerce7.com/meadowcroft-wines/images/original/2023-roussanne-c7-1716572686832.png'),(57570,3702,'teaser',NULL),(57571,3702,'content','<div class=\"tatsu-section-pad clearfix\" data-padding=\"{&quot;d&quot;:&quot;90px 0px 90px 0px&quot;}\" data-padding-top=\"90px\">\n<div class=\"tatsu-row-wrap  tatsu-wrap tatsu-row-one-col tatsu-row-has-one-cols tatsu-medium-gutter tatsu-reg-cols  tatsu-clearfix tatsu-HJxPYjzn1q\">\n<div class=\"tatsu-row \">\n<div class=\"tatsu-column  tatsu-bg-overlay tatsu-one-col tatsu-column-image-none tatsu-column-effect-none  tatsu-rJDKoGnJq\" data-parallax-speed=\"0\">\n<div class=\"tatsu-column-inner \">\n<div class=\"tatsu-column-pad-wrap\">\n<div class=\"tatsu-column-pad\">\n<div id=\"\" class=\"tatsu-code tatsu-module tatsu-ByuNCz215   \">\n<div class=\"ecp-wrapper epub-locale-en\" data-ecp-wrapper=\"true\">\n<div class=\"ecp-component ecp_ProductDetail \">\n<div data-ecp-id=\"1214\">\n<div class=\"ecp-columns ecp-clearfix\">\n<div class=\"ecp-columns-right\">\n<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>Originally grown in the Rhone wine region of France, Roussanne is a primary component in the white wines of Chateauneuf-du-Pape. &nbsp; Roussanne drinks very well as a young wine but will develop more complexity and depth if aged 7-8 years.</div>\n<div>&nbsp;</div>\n<div>TASTING NOTES: <span id=\"page67R_mcid4\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">A spirited wine, with lush fruit notes of fresh baked challah bread&nbsp;</span></span><span id=\"page67R_mcid5\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">or croissant, honeycomb, white peach and notes of mango.</span> <span dir=\"ltr\" role=\"presentation\">The&nbsp;</span></span><span id=\"page67R_mcid6\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">palate is medium, with prominent structure and youthful acidity.&nbsp;</span></span><span id=\"page67R_mcid7\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">The finish is laced with subtle spice and delicious flavors of lemon&nbsp;</span></span><span id=\"page67R_mcid8\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">meringue, vanilla, and acacia flower ending in a mineral-driven,&nbsp;</span></span><span id=\"page67R_mcid9\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">lengthy finale.</span></span></div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING: <span id=\"page67R_mcid12\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Due to the natural acidity and heavier body, this wine is&nbsp;</span></span><span id=\"page67R_mcid13\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">excellent with rich shellfish or poultry dishes. Try this&nbsp;</span></span><span id=\"page67R_mcid14\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">wine with fresh vegetables or grilled artichokes. A match&nbsp;</span></span><span id=\"page67R_mcid15\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">for anything you might pair with Chardonnay, our 2023 </span></span><span id=\"page67R_mcid16\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Roussanne can also stand up to spicy fare.</span></span></div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">\n<div>Appellation: &nbsp;Dry Creek Valley, Sonoma County</div>\n<div>Varietal: Roussanne</div>\n<div>Fermentation: &nbsp;French oak barrel fermented</div>\n<div>Harvest Date: September 2023</div>\n<div>Bottling Date: April 2024</div>\n<div>Production:&nbsp; 93 cases</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"review_notes\">\n<h3>ACCOLADES</h3>\n<div class=\"ecp-html-content\">\n<div><strong>91 pts -&nbsp;</strong>Wine Enthusiast</div>\n<div><strong>Silver Medal</strong> - <span class=\"s3\">Critics Challenge Intl Wine &amp; Spirits Competition (2023 Vintage)</span></div>\n<div><strong>Best of Class</strong> - San Francisco Chronicle Wine Competition (2022 Vintage)</div>\n<div>&nbsp;</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><strong><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2023-Roussanne-FINAL.pdf\" target=\"_blank\" rel=\"noopener\">Download Complete Wine Tasting Notes</a></strong></div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div data-ecp-sidekick=\"\">&nbsp;</div>\n</div>\n</div>\n</div>\n<div class=\"tatsu-column-bg-image-wrap\">\n<div class=\"tatsu-column-bg-image\">&nbsp;</div>\n</div>\n<div class=\"tatsu-overlay tatsu-column-overlay tatsu-animate-none\">&nbsp;</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"tatsu-section-background-wrap\">\n<div class=\"tatsu-section-background\">&nbsp;</div>\n</div>'),(57572,3702,'subtitle','Dry Creek Valley'),(57573,3702,'price','3800'),(57574,3702,'web_status','Available'),(57575,3702,'admin_status','Available'),(57576,3702,'varietal','Roussanne'),(57577,3702,'appellation','Dry Creek Valley'),(57578,3702,'vintage','2023'),(57579,3702,'meta_data_review-text','<div><strong>AWARDS AND REVIEWS</strong></div>\n<div>&nbsp;</div>\n<div>GOLD MEDAL&nbsp;</div>\n<div>2021 Roussanne, Wyldvin Vineyard Dry Creek Valley</div>\n<div><a href=\"https://enofileonline.com/awardsbybrandgoldplus.aspx?compid=2842\" target=\"_blank\" rel=\"noopener\">Sunset International Wine Competition</a></div>'),(57580,3702,'collections','a:0:{}'),(57581,3702,'primary_collection',''),(57582,3702,'_wp_old_slug','2022-roussanne-wyldvin-vineyard-duplicate'),(57583,3703,'web_id','2b4849d7-df52-4e5b-82f6-d8cddbbbe384'),(57584,3703,'slug','2023-viognier-wyldvin-vineyard-'),(57585,3703,'title','2023 Viognier, Wyldvin Vineyard'),(57586,3703,'type','Wine'),(57587,3703,'image','https://images.commerce7.com/meadowcroft-wines/images/original/2023-viognier-wyldvin-2-1715105738604.png'),(57588,3703,'teaser',NULL),(57589,3703,'content','<p>Morning fog from the Pacific Ocean tempers warm summer days, the Wyldvin Vineyard has a great balance of maritime and inland climates. Nestled among heritage oak and olive trees, this vineyard is over 30 years old. This Viognier is a classically fine-formed white that is aromatic and expressive.</p>\n<div>\n<p class=\"p2\"><strong>TASTING NOTES</strong></p>\n<p class=\"p3\">Crafted in the traditional Northern Rh&ocirc;ne style, with a new world edge, this supple and balanced wine was aged in French-oak after being stainless-steel fermented. This lively white opens in a flourish of dried apricot, honey and passionfruit. On the palate crisp clean acidity is mingled with flavors of baked apple and notes of bergamot.</p>\n<p class=\"p3\"><strong><span class=\"s2\">SUGGESTED FOOD PAIRING </span></strong></p>\n<p class=\"p4\">This wine is a great match for a variety of food pairings like ch&egrave;vre, oysters, and is beautifully matched with any recipes featuring fresh herbs like tarragon or mint. This refreshing sauvignon blanc is also delicious on its own as an ap&eacute;ritif &agrave; la maison (aperitif at home).</p>\n<p class=\"p4\"><strong>TECHNICAL INFORMATION</strong></p>\n<p class=\"p2\"><span class=\"s2\">APPELLATION: </span>Wyldvin Vineyard, Dry Creek Valley</p>\n<p class=\"p3\">VARIETAL: <span class=\"s3\">Viognier </span></p>\n<p class=\"p2\"><span class=\"s2\">HARVESTED: </span>September 2023</p>\n<p class=\"p2\"><span class=\"s2\">BOTTLED: </span>February 2024</p>\n<p class=\"p3\">PRODUCTION: <span class=\"s3\">134 cases </span></p>\n<p class=\"p3\">ALCOHOL: <span class=\"s3\">14.5% </span></p>\n<p class=\"p4\">pH: <span class=\"s3\">3.31</span></p>\n<p class=\"p4\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2023-Viognier-FINAL2.pdf\"><strong><span class=\"s3\">PDF Wine Notes</span></strong></a></p>\n<p class=\"p4\"><strong><span class=\"s3\">ACCOLADES</span></strong></p>\n<p class=\"p4\"><strong><span class=\"s3\">Best Viognier/Platinum Award - </span></strong><span class=\"s3\">Critics Challenge Intl Wine &amp; Spirits Competition</span></p>\n</div>'),(57590,3703,'subtitle','Dry Creek Valley'),(57591,3703,'price','3800'),(57592,3703,'web_status','Available'),(57593,3703,'admin_status','Available'),(57594,3703,'varietal','Viognier'),(57595,3703,'appellation','Dry Creek Valley'),(57596,3703,'vintage','2023'),(57597,3703,'collections','a:0:{}'),(57598,3703,'primary_collection',''),(57599,3703,'_wp_old_slug','2022-viognier-wyldvin-vineyard-duplicate'),(57616,3705,'web_id','cabaf60e-8362-4f22-8c9c-5cf168307270'),(57617,3705,'slug','2012-cabernet-sauvignon-napa-valley-college-duplicate'),(57618,3705,'title','2012 Cabernet Sauvignon, Napa Valley College duplicate'),(57619,3705,'type','Wine'),(57620,3705,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft_cabsauv_napacol_12-1663717498296.png'),(57621,3705,'teaser','A classic Napa Valley style cabernet sauvignon with delicate intensity showing black pepper, red currant, and bright black cherry.'),(57622,3705,'content','<p>TASTING NOTES: &nbsp;Our 2012 Napa Cabernet Sauvignon has a delicate intensity with black pepper, red currant, bright black cherry, and a whisper of violet on the nose. &nbsp;The smooth velvety tannins and balanced acid lend themselves to becoming a Meadowcroft classic! &nbsp;Drink now through 2025.&nbsp;</p>'),(57623,3705,'subtitle','Napa Valley'),(57624,3705,'price','16000'),(57625,3705,'web_status','Not Available'),(57626,3705,'admin_status','Available'),(57627,3705,'varietal','Cabernet Sauvignon'),(57628,3705,'appellation','Napa Valley'),(57629,3705,'vintage','2012'),(57630,3705,'collections','a:0:{}'),(57631,3705,'primary_collection',''),(57632,3706,'web_id','d34aeab5-d4a6-4f87-b843-ad5bdda7fb0f'),(57633,3706,'slug','2020-cabernet-sauvignon-howell-mountain'),(57634,3706,'title','2020 Cabernet Sauvignon, Howell Mountain'),(57635,3706,'type','Wine'),(57636,3706,'image','https://images.commerce7.com/meadowcroft-wines/images/original/2020-cabernetsauv-howellmtn-1-1715104273337.png'),(57637,3706,'teaser',NULL),(57638,3706,'content','<p class=\"p2\">First planted in the 1800&rsquo;s, the Howell Mountain AVA sits on the east side of the Napa Valley and begins above the fogline at 1400 feet above sea level. The volcanic soils and long warm days with little to no marine influence create conditions that provide world-class Cabernet Sauvignon fruit.</p>\n<p class=\"p2\"><strong><span class=\"s2\">TASTING NOTES </span></strong></p>\n<p class=\"p3\">Aromas of ripe blackberry bramble, toasty oak, dark cherry and notes of vanilla, baking spice and fig fill the glass. Vibrant acidity on the palate adds to the balanced mouthfeel of the wine. Flavors of ripe black cherry, blackberry, blueberry and black tea round out the lengthy smooth finish. Drink now thorugh 2040.</p>\n<p class=\"p3\"><strong><span class=\"s3\">SUGGESTED FOOD PAIRING </span></strong></p>\n<p class=\"p4\">The concentrated richness and notable acidity make this wine a remarkable partner with food. We recommend hearty strong dishes like steak au poivre, grilled portobello mushrooms or rack of lamb with herbs. This wine will easily hold up to flavorful cheeses such as aged Gorgonzola, aged sharp cheddar or aged Parmiagiano Reggiano.</p>\n<p class=\"p4\"><strong>TECHNICAL INFO</strong></p>\n<p class=\"p2\"><span class=\"s2\">APPELLATION: </span>Howell Mountain, Napa Valley</p>\n<p class=\"p2\"><span class=\"s2\">VARIETAL: </span>Cabernet Sauvignon</p>\n<p class=\"p2\"><span class=\"s2\">HARVESTED: </span>September 2020</p>\n<p class=\"p2\"><span class=\"s2\">BOTTLED: </span>April 2024</p>\n<p class=\"p3\">PRODUCTION: <span class=\"s3\">82 cases </span></p>\n<p class=\"p3\">ALCOHOL: <span class=\"s3\">14.5 </span></p>\n<p class=\"p4\">pH: <span class=\"s3\">3.60</span></p>\n<p class=\"p4\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2020-HowellMtn-Cabernet-techsheet-FINAL.pdf\"><strong><span class=\"s3\">PDF Wine Notes</span></strong></a></p>\n<p class=\"p4\"><strong><span class=\"s3\">ACCOLADES</span></strong></p>\n<p class=\"p4\"><strong><span class=\"s3\">Gold Medal - </span></strong><span class=\"s3\">Critics Challenge Intl Wine &amp; Spirits Competition</span></p>'),(57639,3706,'subtitle',NULL),(57640,3706,'price','12500'),(57641,3706,'web_status','Available'),(57642,3706,'admin_status','Available'),(57643,3706,'varietal','Cabernet Sauvignon'),(57644,3706,'appellation','Howell Mountain'),(57645,3706,'vintage','2020'),(57646,3706,'meta_data_review-text','<div>90 pt |&nbsp; James Suckling&nbsp; |&nbsp; 2016 vintage</div>\n<div><span style=\"font-style: italic;\">A prototypical, modern Napa red that has the big cassis character of fully ripe cabernet sauvignon, moderate tannins that are already well integrated and nice freshness at the finish.&nbsp; Makes you want to order or cook some Osso Bucco.&nbsp; &nbsp;</span></div>\n<div>&nbsp;</div>\n<p>94 pts | &nbsp;Chris Sawyer, Certified Sommelier&nbsp; |&nbsp; 2014 vintage</p>\n<div><span>&nbsp;On the palate, the generous flavors of black raspberry, dark cherry, cassis, ripe currants, cinnamon, hickory spice and dark chocolate truffle are complemented with a harmonious mixture of smooth, silky texture, chewy tannins, firm structure, and a lingering finish. Overall, an extremely well-crafted wine that is not only approachable when young, but also worthy of cellaring for more 10-15 years.</span></div>\n<p>\"</p>'),(57647,3706,'meta_data_wine-notes','<p>$52.00</p>'),(57648,3706,'meta_data_technical-notes','<div>Appellation: &nbsp;Napa Valley<br />Varietal: &nbsp;Cabernet Sauvignon<br />Harvested:&nbsp; September 2020<br />Bottle Date:&nbsp; March 2022<br />Production: 578 cases</div>'),(57649,3706,'collections','a:0:{}'),(57650,3706,'primary_collection',''),(57651,3706,'_wp_old_slug','2020-cabernet-sauvignon-napa-valley-duplicate'),(57652,3707,'web_id','82e266b9-c221-4990-a459-d8e9fe0d4b07'),(57653,3707,'slug','2021-cabernet-sauvignon-howell-mountain-duplicate'),(57654,3707,'title','2021 Cabernet Sauvignon, Howell Mountain'),(57655,3707,'type','Wine'),(57656,3707,'image','https://images.commerce7.com/meadowcroft-wines/images/original/212-howell-1715104022654.png'),(57657,3707,'teaser',NULL),(57658,3707,'content','<div>\n<div>\n<p class=\"p2\">First planted in the 1800&rsquo;s, the Howell Mountain AVA sits on the east side of the Napa Valley and begins above the fogline at 1400 feet above sea level. The volcanic soils and long warm days with little to no marine influence create conditions that provide world-class Cabernet Sauvignon fruit.</p>\n<p class=\"p2\"><strong><span class=\"s2\">TASTING NOTES </span></strong></p>\n<p class=\"p3\">Aromas of ripe blackberry bramble, toasty oak, dark cherry and notes of vanilla fill the glass. Pronounced acidity on the palate adds to the balanced mouthfeel of the wine. Flavors of sweet black cherry, blueberry, boysenberry, and mineral notes are prominent. The lengthy finish is lush and smooth. Drink now thorugh 2040.</p>\n<p class=\"p3\">&nbsp;</p>\n<p class=\"p3\"><strong><span class=\"s2\">SUGGESTED FOOD PAIRING </span></strong></p>\n<p class=\"p4\">The concentrated richness and notable acidity make this wine a remarkable partner with food. We recommend complementary recipes like steak au poivre, grilled portobello mushrooms or rack of lamb with herbs. This wine will easily hold up to strong cheeses such as aged Gorgonzola, aged sharp cheddar or aged Parmiagiano Reggiano.</p>\n<p class=\"p4\"><strong>TECHNICAL INFORMATION</strong></p>\n<p class=\"p2\"><span class=\"s2\">APPELLATION: </span>Howell Mountain, Napa Valley</p>\n<p class=\"p2\"><span class=\"s2\">VARIETAL: </span>Cabernet Sauvignon</p>\n<p class=\"p2\"><span class=\"s2\">HARVESTED: </span>September 2021</p>\n<p class=\"p2\"><span class=\"s2\">BOTTLED: </span>April 2024</p>\n<p class=\"p3\">PRODUCTION: <span class=\"s3\">98 cases </span></p>\n<p class=\"p3\">ALCOHOL: <span class=\"s3\">14.5 </span></p>\n<p class=\"p4\">pH: <span class=\"s3\">3.60</span></p>\n<p class=\"p4\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2021-HowellMtn-Cabernet-techsheet-FINAL.pdf\"><strong><span class=\"s3\">PDF Wine Notes</span></strong></a></p>\n<p class=\"p4\"><strong><span class=\"s3\">ACCOLADES</span></strong></p>\n<p class=\"p4\"><strong><span class=\"s3\">Platinum Award - </span></strong><span class=\"s3\">Critics Challenge Intl Wine &amp; Spirits Competition</span></p>\n</div>\n</div>'),(57659,3707,'subtitle',NULL),(57660,3707,'price','13500'),(57661,3707,'web_status','Not Available'),(57662,3707,'admin_status','Available'),(57663,3707,'varietal','Cabernet Sauvignon'),(57664,3707,'appellation','Howell Mountain'),(57665,3707,'vintage','2021'),(57666,3707,'meta_data_review-text','<div>90 pt |&nbsp; James Suckling&nbsp; |&nbsp; 2016 vintage</div>\n<div><span style=\"font-style: italic;\">A prototypical, modern Napa red that has the big cassis character of fully ripe cabernet sauvignon, moderate tannins that are already well integrated and nice freshness at the finish.&nbsp; Makes you want to order or cook some Osso Bucco.&nbsp; &nbsp;</span></div>\n<div>&nbsp;</div>\n<p>94 pts | &nbsp;Chris Sawyer, Certified Sommelier&nbsp; |&nbsp; 2014 vintage</p>\n<div><span>&nbsp;On the palate, the generous flavors of black raspberry, dark cherry, cassis, ripe currants, cinnamon, hickory spice and dark chocolate truffle are complemented with a harmonious mixture of smooth, silky texture, chewy tannins, firm structure, and a lingering finish. Overall, an extremely well-crafted wine that is not only approachable when young, but also worthy of cellaring for more 10-15 years.</span></div>\n<p>\"</p>'),(57667,3707,'meta_data_wine-notes','<p>$52.00</p>'),(57668,3707,'meta_data_technical-notes','<div>Appellation: &nbsp;Napa Valley<br />Varietal: &nbsp;Cabernet Sauvignon<br />Harvested:&nbsp; September 2020<br />Bottle Date:&nbsp; March 2022<br />Production: 578 cases</div>'),(57669,3707,'collections','a:0:{}'),(57670,3707,'primary_collection',''),(57671,3707,'_wp_old_slug','2020-cabernet-sauvignon-howell-mountain-duplicate'),(57672,3708,'web_id','58bce64c-41c9-4c25-9edd-ac01112874a1'),(57673,3708,'slug','2023-chardonnay-carneros-duplicate'),(57674,3708,'title','2023 Chardonnay, Carneros (private label)'),(57675,3708,'type','Wine'),(57676,3708,'image',NULL),(57677,3708,'teaser',NULL),(57678,3708,'content','<div class=\"tatsu-section-pad clearfix\" data-padding=\"{&quot;d&quot;:&quot;90px 0px 90px 0px&quot;}\" data-padding-top=\"90px\">\n<div class=\"tatsu-row-wrap  tatsu-wrap tatsu-row-one-col tatsu-row-has-one-cols tatsu-medium-gutter tatsu-reg-cols  tatsu-clearfix tatsu-HJxPYjzn1q\">\n<div class=\"tatsu-row \">\n<div class=\"tatsu-column  tatsu-bg-overlay tatsu-one-col tatsu-column-image-none tatsu-column-effect-none  tatsu-rJDKoGnJq\" data-parallax-speed=\"0\">\n<div class=\"tatsu-column-inner \">\n<div class=\"tatsu-column-pad-wrap\">\n<div class=\"tatsu-column-pad\">\n<div id=\"\" class=\"tatsu-code tatsu-module tatsu-ByuNCz215   \">\n<div class=\"ecp-wrapper epub-locale-en\" data-ecp-wrapper=\"true\">\n<div class=\"ecp-component ecp_ProductDetail \">\n<div data-ecp-id=\"1211\">\n<div class=\"ecp-columns ecp-clearfix\">\n<div class=\"ecp-columns-right\">\n<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>TASTING NOTES: <span id=\"page60R_mcid4\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">A lush and aromatic wine, our 2023 vintage of our Carneros </span></span><span id=\"page60R_mcid5\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Chardonnay is delightfully complex, with aromatic notes of&nbsp;</span></span><span id=\"page60R_mcid6\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">dragonfruit, lychee and baking spice framed by primary flavors&nbsp;</span></span><span id=\"page60R_mcid7\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">of pineapple and lemon. The long finish delivers refreshing&nbsp;</span></span><span id=\"page60R_mcid8\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">acidity and subtle toasted oak flavors.</span></span></div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING: <span id=\"page60R_mcid10\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">This wine will carry you through pairings for elegant entertaining,&nbsp;</span></span><span id=\"page60R_mcid11\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">weeknight dinners, and everything in between. Fresh Dungeness&nbsp;</span></span><span id=\"page60R_mcid12\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">crab or seared bacon wrapped scallops make this wine sing.</span></span>Try also with a selection of cheeses with higher acidity like goat cheese or Jarlsberg. In general, choose to serve with foods that are light and a tad rich.&nbsp;</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<h3>TECHNICAL NOTES</h3>\n<div class=\"ecp-html-content tech-notes\">\n<div>Appellation: Carneros, Napa Valley</div>\n<div>Varietal:&nbsp; Chardonnay</div>\n<div>Harvested:&nbsp; September 2023</div>\n<div>Bottled Date:&nbsp; April 2024</div>\n<div>Production:&nbsp; 1060 Cases</div>\n<div>&nbsp;</div>\n<div><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/08/2022-Napa-Carneros-Chardonnay-final.pdf\"><strong>Wine Notes</strong></a></div>\n<div>&nbsp;</div>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><strong>ACCOLADES</strong></div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\">Gold Medal - San Francisco Chronicle Wine Competition</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div data-ecp-sidekick=\"\">&nbsp;</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>'),(57679,3708,'subtitle','Napa Valley'),(57680,3708,'price','3500'),(57681,3708,'web_status','Not Available'),(57682,3708,'admin_status','Available'),(57683,3708,'varietal','Chardonnay'),(57684,3708,'appellation','Carneros'),(57685,3708,'vintage','2023'),(57686,3708,'collections','a:0:{}'),(57687,3708,'primary_collection',''),(57688,2768,'_edit_lock','1713254213:5'),(57689,2768,'_edit_last','5'),(57690,2768,'trade_assets','a:0:{}'),(57691,2768,'downloads','a:0:{}'),(57692,2768,'related_products','a:0:{}'),(57693,2768,'recipe_pairings','a:0:{}'),(57694,2768,'external_recipe_pairings','a:0:{}'),(57695,2768,'should_exclude_from_search',''),(57696,2768,'additional_css_classes',''),(57697,2768,'template',''),(57698,2768,'allowed_customer_tag_titles','a:0:{}'),(57699,2768,'allowed_customer_club_titles','a:0:{}'),(57700,2768,'_yoast_wpseo_metadesc','Discover the allure of our 2022 French Colombard from Cameron Vineyard by Meadowcroft Wines. Experience unrivaled elegance & flavor. Order now!'),(57701,2768,'_yoast_wpseo_estimated-reading-time-minutes','0'),(57702,2768,'_yoast_wpseo_wordproof_timestamp',''),(57703,3243,'_edit_lock','1713254213:5'),(57704,3243,'_edit_last','5'),(57705,3243,'wine_vertical',''),(57706,3243,'wine_score',''),(57707,3243,'trade_assets','a:0:{}'),(57708,3243,'downloads','a:0:{}'),(57709,3243,'related_products','a:0:{}'),(57710,3243,'recipe_pairings','a:0:{}'),(57711,3243,'external_recipe_pairings','a:0:{}'),(57712,3243,'should_exclude_from_search',''),(57713,3243,'additional_css_classes',''),(57714,3243,'template',''),(57715,3243,'allowed_customer_tag_titles','a:0:{}'),(57716,3243,'allowed_customer_club_titles','a:0:{}'),(57717,3243,'_yoast_wpseo_metadesc','Indulge in the exceptional 2023 Pinot Gris from Nelson Family Vineyard by Meadowcroft Wines.Experience a delightful symphony of flavors in every sip. Order now for a taste of perfection!'),(57718,3243,'_yoast_wpseo_estimated-reading-time-minutes','0'),(57719,3243,'_yoast_wpseo_wordproof_timestamp',''),(57720,3244,'_edit_lock','1713254250:5'),(57721,3244,'_edit_last','5'),(57722,3244,'wine_vertical',''),(57723,3244,'wine_score',''),(57724,3244,'trade_assets','a:0:{}'),(57725,3244,'downloads','a:0:{}'),(57726,3244,'related_products','a:0:{}'),(57727,3244,'recipe_pairings','a:0:{}'),(57728,3244,'external_recipe_pairings','a:0:{}'),(57729,3244,'should_exclude_from_search',''),(57730,3244,'additional_css_classes',''),(57731,3244,'template',''),(57732,3244,'allowed_customer_tag_titles','a:0:{}'),(57733,3244,'allowed_customer_club_titles','a:0:{}'),(57734,3244,'_yoast_wpseo_metadesc','Indulge in the exceptional 2023 Pinot Gris from Nelson Family Vineyard by Meadowcroft Wines.Experience a delightful symphony of flavors in every sip. Order now for a taste of perfection!'),(57735,3244,'_yoast_wpseo_estimated-reading-time-minutes','0'),(57736,3244,'_yoast_wpseo_wordproof_timestamp',''),(57737,2769,'_edit_lock','1713254297:5'),(57738,2769,'_edit_last','5'),(57739,2769,'trade_assets','a:0:{}'),(57740,2769,'downloads','a:0:{}'),(57741,2769,'related_products','a:0:{}'),(57742,2769,'recipe_pairings','a:0:{}'),(57743,2769,'external_recipe_pairings','a:0:{}'),(57744,2769,'should_exclude_from_search',''),(57745,2769,'additional_css_classes',''),(57746,2769,'template',''),(57747,2769,'allowed_customer_tag_titles','a:0:{}'),(57748,2769,'allowed_customer_club_titles','a:0:{}'),(57749,2769,'_yoast_wpseo_metadesc','Indulge in the refined excellence of our 2022 Pinot Blanc from Rivino Vineyard. Meadowcroft Wines offers a symphony of flavors in every sip. Order now to experience elegance!'),(57750,2769,'_yoast_wpseo_estimated-reading-time-minutes','0'),(57751,2769,'_yoast_wpseo_wordproof_timestamp',''),(57752,2774,'_edit_lock','1713254318:5'),(57753,2774,'_edit_last','5'),(57754,2774,'primary_collection',''),(57755,2774,'trade_assets','a:0:{}'),(57756,2774,'downloads','a:0:{}'),(57757,2774,'related_products','a:0:{}'),(57758,2774,'recipe_pairings','a:0:{}'),(57759,2774,'external_recipe_pairings','a:0:{}'),(57760,2774,'should_exclude_from_search',''),(57761,2774,'additional_css_classes',''),(57762,2774,'template',''),(57763,2774,'allowed_customer_tag_titles','a:0:{}'),(57764,2774,'allowed_customer_club_titles','a:0:{}'),(57765,2774,'_yoast_wpseo_metadesc','Delve into the exquisite flavors of our 2022 Roussanne from Wyldvin Vineyard. Experience the essence of Meadowcroft Wines in every sip.'),(57766,2774,'_yoast_wpseo_estimated-reading-time-minutes','0'),(57767,2774,'_yoast_wpseo_wordproof_timestamp',''),(57768,2693,'_edit_lock','1713254338:5'),(57769,2693,'_edit_last','5'),(57770,2693,'trade_assets','a:0:{}'),(57771,2693,'downloads','a:0:{}'),(57772,2693,'related_products','a:0:{}'),(57773,2693,'recipe_pairings','a:0:{}'),(57774,2693,'external_recipe_pairings','a:0:{}'),(57775,2693,'should_exclude_from_search',''),(57776,2693,'additional_css_classes',''),(57777,2693,'template',''),(57778,2693,'allowed_customer_tag_titles','a:0:{}'),(57779,2693,'allowed_customer_club_titles','a:0:{}'),(57780,2693,'_yoast_wpseo_metadesc','Unwind with the richness of our 2019 Chardonnay from Bonneau Vineyard. Meadowcroft Wines presents a harmonious blend of flavors. Enhance your experience. Order today.'),(57781,2693,'_yoast_wpseo_estimated-reading-time-minutes','0'),(57782,2693,'_yoast_wpseo_wordproof_timestamp',''),(57783,2766,'_edit_lock','1713255751:5'),(57784,2766,'_edit_last','5'),(57785,2766,'trade_assets','a:0:{}'),(57786,2766,'downloads','a:0:{}'),(57787,2766,'related_products','a:0:{}'),(57788,2766,'recipe_pairings','a:0:{}'),(57789,2766,'external_recipe_pairings','a:0:{}'),(57790,2766,'should_exclude_from_search',''),(57791,2766,'additional_css_classes',''),(57792,2766,'template',''),(57793,2766,'allowed_customer_tag_titles','a:0:{}'),(57794,2766,'allowed_customer_club_titles','a:0:{}'),(57795,2766,'_yoast_wpseo_metadesc','Enjoy the refined taste of our 2022 Chardonnay from Carneros. Meadowcroft Wines invites you to savor sophisticated flavors. Order your bottle today.'),(57796,2766,'_yoast_wpseo_estimated-reading-time-minutes','0'),(57797,2766,'_yoast_wpseo_wordproof_timestamp',''),(57798,3705,'_edit_lock','1713255842:5'),(57799,3706,'_edit_lock','1713261657:5'),(57800,3710,'content_block_0_layout_title',''),(57801,3710,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(57802,3710,'content_block_0_hide_this_content_block','1'),(57803,3710,'_content_block_0_hide_this_content_block','field_643884e4df74banner'),(57804,3710,'content_block_0_custom_css_class',''),(57805,3710,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(57806,3710,'content_block_0_banner_full_width','1'),(57807,3710,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(57808,3710,'content_block_0_banner_size','normal'),(57809,3710,'_content_block_0_banner_size','field_5bbe232929ec9'),(57810,3710,'content_block_0_add_parallax_effect','0'),(57811,3710,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(57812,3710,'content_block_0_add_veil_over_banner','1'),(57813,3710,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(57814,3710,'content_block_0_banner_content_position','centered'),(57815,3710,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(57816,3710,'content_block_0_banner_title','Visit Meadowcroft Wines'),(57817,3710,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(57818,3710,'content_block_0_banner_subtitle',''),(57819,3710,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(57820,3710,'content_block_0_banner_button_link',''),(57821,3710,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(57822,3710,'content_block_0_banner_button_new_tab','0'),(57823,3710,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(57824,3710,'content_block_0_show_down_arrow','0'),(57825,3710,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(57826,3710,'content_block_0_banner_image_description',''),(57827,3710,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(57828,3710,'content_block_0_banner_image','881'),(57829,3710,'_content_block_0_banner_image','field_5bbe201718faf'),(57830,3710,'content_block_0_banner_image_position','center center'),(57831,3710,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(57832,3710,'content_block_0_banner_image_mobile','882'),(57833,3710,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(57834,3710,'content_block_0_banner_image_mobile_position','center center'),(57835,3710,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(57836,3710,'content_block_1_layout_title',''),(57837,3710,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(57838,3710,'content_block_1_hide_this_content_block','1'),(57839,3710,'_content_block_1_hide_this_content_block','field_643884e4df74c7textb'),(57840,3710,'content_block_1_custom_css_class',''),(57841,3710,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(57842,3710,'content_block_1_text_block_columns','one'),(57843,3710,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(57844,3710,'content_block_1_narrow_text_block_content','1'),(57845,3710,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(57846,3710,'content_block_1_reverse_colors','0'),(57847,3710,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(57848,3710,'content_block_1_enable_background_image','0'),(57849,3710,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(57850,3710,'content_block_1_text_block_content_col_one','&nbsp;\r\n<p class=\"metatitle\" style=\"text-align: center;\">OPEN DAILY</p>\r\n\r\n<h2 style=\"text-align: center;\">THE TASTING ROOM</h2>\r\nDiscover delicious wines and a casual atmosphere at Meadowcroft Tasting Room in Sonoma\'s Cornerstone Marketplace. Slow down and savor our superb <a href=\"https://www.meadowcroftwines.com/wines/\">reds, whites, and sparkling wines</a>.\r\n\r\nOur tasting room is open 7 days per week for indoor and outdoor tastings. Reservations are recommended, but walk-ins are always welcomed as possible.  For groups of more than 6, please call ahead to arrange tastings.\r\n\r\nVisit us at <a href=\"https://goo.gl/maps/oyMh9muKCFrBuMQM7\">23574 Arnold Drive in Sonoma, CA</a>, open daily from 10:00 a.m. to 5:00 p.m. Call 707.934.4090 for any last-minute reservations. We look forward to seeing you!\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"https://www.google.com/maps/dir//Meadowcroft+wines,+%2FHwy.+121,+suite+Meadowcroft+wines,+23574+Arnold+Dr,+Sonoma,+CA+95476/@38.22773,-122.457926,15z/data=!4m15!1m6!3m5!1s0x0:0xd21fda9232c58ee9!2sMeadowcroft+wines!8m2!3d38.22773!4d-122.457926!4m7!1m0!1m5!1m1!1s0x8085af4f80be9b43:0xd21fda9232c58ee9!2m2!1d-122.457926!2d38.22773\">GET DIRECTIONS</a></p>\r\n&nbsp;'),(57851,3710,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(57852,3710,'content_block_2_layout_title',''),(57853,3710,'_content_block_2_layout_title','field_5bc11ca9a0d50-c'),(57854,3710,'content_block_2_hide_this_content_block','1'),(57855,3710,'_content_block_2_hide_this_content_block','field_643884e4df74banner'),(57856,3710,'content_block_2_custom_css_class',''),(57857,3710,'_content_block_2_custom_css_class','field_5bbf30b1a4de2-1'),(57858,3710,'content_block_2_banner_full_width','1'),(57859,3710,'_content_block_2_banner_full_width','field_5bbe19c8efa0a'),(57860,3710,'content_block_2_banner_size','normal'),(57861,3710,'_content_block_2_banner_size','field_5bbe232929ec9'),(57862,3710,'content_block_2_add_parallax_effect','1'),(57863,3710,'_content_block_2_add_parallax_effect','field_5bbe219ccb6a9'),(57864,3710,'content_block_2_add_veil_over_banner','0'),(57865,3710,'_content_block_2_add_veil_over_banner','field_5bbe333f39212'),(57866,3710,'content_block_2_banner_content_position','centered'),(57867,3710,'_content_block_2_banner_content_position','field_5bbe259b02b62'),(57868,3710,'content_block_2_banner_title',''),(57869,3710,'_content_block_2_banner_title','field_5bbe1b78efa0b'),(57870,3710,'content_block_2_banner_subtitle',''),(57871,3710,'_content_block_2_banner_subtitle','field_5bbe1b83efa0c'),(57872,3710,'content_block_2_banner_button_link',''),(57873,3710,'_content_block_2_banner_button_link','field_5bbe1b8cefa0d'),(57874,3710,'content_block_2_banner_button_new_tab','0'),(57875,3710,'_content_block_2_banner_button_new_tab','field_5bbe1e6d18fae'),(57876,3710,'content_block_2_show_down_arrow','0'),(57877,3710,'_content_block_2_show_down_arrow','field_5bbe24f721165'),(57878,3710,'content_block_2_banner_image_description',''),(57879,3710,'_content_block_2_banner_image_description','field_5bbf30b1a4de2-1a'),(57880,3710,'content_block_2_banner_image','1521'),(57881,3710,'_content_block_2_banner_image','field_5bbe201718faf'),(57882,3710,'content_block_2_banner_image_position','center center'),(57883,3710,'_content_block_2_banner_image_position','field_5bbe278f9fb97'),(57884,3710,'content_block_2_banner_image_mobile','1522'),(57885,3710,'_content_block_2_banner_image_mobile','field_5bbe202818fb0'),(57886,3710,'content_block_2_banner_image_mobile_position','center center'),(57887,3710,'_content_block_2_banner_image_mobile_position','field_5bbe279c9fb98'),(57888,3710,'content_block_3_layout_title','Experiences Sub-Title'),(57889,3710,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(57890,3710,'content_block_3_hide_this_content_block','1'),(57891,3710,'_content_block_3_hide_this_content_block','field_643884e4df74c7textb'),(57892,3710,'content_block_3_custom_css_class','no-padding'),(57893,3710,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(57894,3710,'content_block_3_text_block_columns','one'),(57895,3710,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(57896,3710,'content_block_3_narrow_text_block_content','0'),(57897,3710,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(57898,3710,'content_block_3_reverse_colors','0'),(57899,3710,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(57900,3710,'content_block_3_enable_background_image','0'),(57901,3710,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(57902,3710,'content_block_3_text_block_content_col_one','<hr />\r\n<p class=\"metatitle\" style=\"text-align: center;\">SONOMA VALLEY</p>\r\n\r\n<h2 style=\"text-align: center;\">WINE TASTING EXPERIENCES</h2>\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/09/DigitalGeneralBrochure.pdf\">PDF Brochure</a></p>'),(57903,3710,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(57904,3710,'content_block_4_layout_title','Seated Tastings'),(57905,3710,'_content_block_4_layout_title','field_5bc11ca9a0d50-s'),(57906,3710,'content_block_4_hide_this_content_block','1'),(57907,3710,'_content_block_4_hide_this_content_block','field_643884e4df74c7textb'),(57908,3710,'content_block_4_custom_css_class','no-padding'),(57909,3710,'_content_block_4_custom_css_class','field_5bbe30b1a4de2-1'),(57910,3710,'content_block_4_text_block_columns','two'),(57911,3710,'_content_block_4_text_block_columns','field_5bbe2f81a4de0'),(57912,3710,'content_block_4_column_size','equal'),(57913,3710,'_content_block_4_column_size','field_columnsize'),(57914,3710,'content_block_4_narrow_text_block_content','0'),(57915,3710,'_content_block_4_narrow_text_block_content','field_5bbe342e08360'),(57916,3710,'content_block_4_reverse_colors','0'),(57917,3710,'_content_block_4_reverse_colors','field_5bbe3027a4de1'),(57918,3710,'content_block_4_enable_background_image','0'),(57919,3710,'_content_block_4_enable_background_image','field_5bbe30b1a4de2'),(57920,3710,'content_block_4_text_block_content_col_one','<img class=\"wp-image-885 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/seated-300x212.jpg\" alt=\"Woman pouring red wine into glass\" width=\"500\" height=\"353\" />'),(57921,3710,'_content_block_4_text_block_content_col_one','field_5bbe313b3920d'),(57922,3710,'content_block_4_text_block_content_col_two','<h3 style=\"text-align: center;\"><span class=\"h4\">SEATED TASTINGS</span></h3>\r\nEnjoy a serene setting in the heart of Sonoma Valley as you taste a flight of 4 wines, poured tableside by your designated wine expert. Wine selections vary seasonally.\r\n<p style=\"text-align: center;\" role=\"heading\" data-uw-rm-heading=\"level\" aria-level=\"3\"><strong><em>Enjoy Complimentary Seated Tastings Through March 31st, 2024 (up to six guests)</em></strong></p>\r\n<p style=\"text-align: center;\">ADVANCED RESERVATIONS RECOMMENDED\r\n$25/person (up to 6 guests)</p>\r\n<p style=\"text-align: center;\"><strong>Please call us at (707)934-4090 for last minute or same-day appointments.</strong></p>\r\n\r\n<div class=\"c7-reservation-availability\" style=\"text-align: center;\" data-reservation-type-slug=\"seated-tasting\"></div>'),(57923,3710,'_content_block_4_text_block_content_col_two','field_5bbe31593920e'),(57924,3710,'content_block_5_layout_title','Member Tastings'),(57925,3710,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(57926,3710,'content_block_5_hide_this_content_block','1'),(57927,3710,'_content_block_5_hide_this_content_block','field_643884e4df74c7textb'),(57928,3710,'content_block_5_custom_css_class','no-padding'),(57929,3710,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(57930,3710,'content_block_5_text_block_columns','two'),(57931,3710,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(57932,3710,'content_block_5_column_size','equal'),(57933,3710,'_content_block_5_column_size','field_columnsize'),(57934,3710,'content_block_5_narrow_text_block_content','0'),(57935,3710,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(57936,3710,'content_block_5_reverse_colors','0'),(57937,3710,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(57938,3710,'content_block_5_enable_background_image','0'),(57939,3710,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(57940,3710,'content_block_5_text_block_content_col_one','<img class=\"wp-image-886 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/member-300x212.jpg\" alt=\"Lineup of Meadowcroft wine bottles\" width=\"500\" height=\"353\" />'),(57941,3710,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(57942,3710,'content_block_5_text_block_content_col_two','<h3 style=\"text-align: center;\"><span class=\"h4\">MEMBER TASTINGS</span></h3>\r\nOur Bee Team will guide you through a selection of 4 special wines, chosen specifically for our members. Wine selections vary seasonally.\r\n<p style=\"text-align: center;\">ADVANCED RESERVATIONS ARE RECOMMENDED\r\nMembers Receive Complimentary Tastings</p>\r\n<p style=\"text-align: center;\"><strong>Please call us at (707)934-4090 for last minute or same-day appointments.</strong></p>\r\n\r\n<div class=\"c7-reservation-availability\" style=\"text-align: center;\" data-reservation-type-slug=\"seated-tasting\"></div>'),(57943,3710,'_content_block_5_text_block_content_col_two','field_5bbe31593920e'),(57944,3710,'content_block_6_layout_title','A Perfect Blend'),(57945,3710,'_content_block_6_layout_title','field_5bc11ca9a0d50-s'),(57946,3710,'content_block_6_hide_this_content_block','1'),(57947,3710,'_content_block_6_hide_this_content_block','field_643884e4df74c7textb'),(57948,3710,'content_block_6_custom_css_class','no-padding'),(57949,3710,'_content_block_6_custom_css_class','field_5bbe30b1a4de2-1'),(57950,3710,'content_block_6_text_block_columns','two'),(57951,3710,'_content_block_6_text_block_columns','field_5bbe2f81a4de0'),(57952,3710,'content_block_6_column_size','equal'),(57953,3710,'_content_block_6_column_size','field_columnsize'),(57954,3710,'content_block_6_narrow_text_block_content','0'),(57955,3710,'_content_block_6_narrow_text_block_content','field_5bbe342e08360'),(57956,3710,'content_block_6_reverse_colors','0'),(57957,3710,'_content_block_6_reverse_colors','field_5bbe3027a4de1'),(57958,3710,'content_block_6_enable_background_image','0'),(57959,3710,'_content_block_6_enable_background_image','field_5bbe30b1a4de2'),(57960,3710,'content_block_6_text_block_content_col_one','<img class=\"wp-image-888 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/blend-240x300.jpg\" alt=\"Red wine being poured into two glasses\" width=\"500\" height=\"625\" />'),(57961,3710,'_content_block_6_text_block_content_col_one','field_5bbe313b3920d'),(57962,3710,'content_block_6_text_block_content_col_two','<h3 style=\"text-align: center;\"><a href=\"#a-perfect-blend\"><span class=\"h4\">A PERFECT BLEND</span></a></h3>\r\nLearn the art and science of winemaking! Start with a stroll through the stunning <a href=\"https://www.cornerstonesonoma.com/\">Cornerstone Gardens</a> to learn about Meadowcroft’s unique winemaking perspective, along with the special history of Sonoma. Then, we’ll blend wines that have been aged in separate oak barrels to make a classic red Bordeaux style blend of cabernet sauvignon, cabernet franc, and merlot. Experiment putting together different blending components using your 5 senses. When your blend is just right, you’ll label and cork your own 750ml bottle of your perfect blend to take home. This is an experience that you’ll never forget! Includes a selection of locally sourced cheese &amp; accompaniments.\r\n\r\nWe welcome corporate groups, team building events and large parties.  <a href=\"mailto:tastingroom@meadowcroftwines.com\">Contact us</a> to discuss your needs and we will help you to plan the perfect experience.\r\n<p style=\"text-align: center;\">3 DAYS ADVANCED RESERVATIONS ARE REQUIRED\r\n$125/person | $100/member</p>\r\n\r\n<div class=\"c7-reservation-availability\" style=\"text-align: center;\" data-reservation-type-slug=\"a-perfect-blend\"></div>'),(57963,3710,'_content_block_6_text_block_content_col_two','field_5bbe31593920e'),(57964,3710,'content_block_7_layout_title','Balloon & Blending'),(57965,3710,'_content_block_7_layout_title','field_5bc11ca9a0d50-s'),(57966,3710,'content_block_7_hide_this_content_block','1'),(57967,3710,'_content_block_7_hide_this_content_block','field_643884e4df74c7textb'),(57968,3710,'content_block_7_custom_css_class','no-padding'),(57969,3710,'_content_block_7_custom_css_class','field_5bbe30b1a4de2-1'),(57970,3710,'content_block_7_text_block_columns','two'),(57971,3710,'_content_block_7_text_block_columns','field_5bbe2f81a4de0'),(57972,3710,'content_block_7_column_size','equal'),(57973,3710,'_content_block_7_column_size','field_columnsize'),(57974,3710,'content_block_7_narrow_text_block_content','0'),(57975,3710,'_content_block_7_narrow_text_block_content','field_5bbe342e08360'),(57976,3710,'content_block_7_reverse_colors','0'),(57977,3710,'_content_block_7_reverse_colors','field_5bbe3027a4de1'),(57978,3710,'content_block_7_enable_background_image','0'),(57979,3710,'_content_block_7_enable_background_image','field_5bbe30b1a4de2'),(57980,3710,'content_block_7_text_block_content_col_one','<img class=\"size-full wp-image-1546 aligncenter\" src=\"/wp-content/uploads/2023/02/balloon-2.jpg\" alt=\"Balloon over vineyard \" width=\"500\" height=\"1000\" />'),(57981,3710,'_content_block_7_text_block_content_col_one','field_5bbe313b3920d'),(57982,3710,'content_block_7_text_block_content_col_two','<h3 style=\"text-align: center;\"><span class=\"h4\">BALLOON &amp; BLENDING</span></h3>\r\nWe’ve partnered with <a href=\"https://sonomaballooning.com/\">Sonoma Ballooning</a> in Sonoma Valley to bring a unique, cultural experience your way! Enjoy a magical sunrise join-in flight with <a href=\"https://sonomaballooning.com/\">Sonoma Ballooning</a>, and after your post-flight champagne toast, continue your Sonoma wine country adventure with Meadowcroft Wines’ Blending Seminar.\r\n\r\nSince no two hot air balloon rides are ever the same and you’ll be creating your own special blend of wine afterward, it’s safe to say that this is truly a one-of-a-kind experience that you’ll be sharing with your friends and family for years to come. Expect to be with <a href=\"https://sonomaballooning.com/\">Sonoma Ballooning</a> for 3-4 hours and Meadowcroft Wines for approximately 2-2.5 hours.\r\n\r\n<strong><a href=\"https://sonomaballooning.com/\">Sonoma Ballooning</a> Tour Includes:</strong>\r\n• Light Refreshments Pre-flight (coffee, tea, pre-packaged snacks)\r\n• 45 Minute to 1 Hour Balloon Flight\r\n• Post-flight Champagne Toast\r\n• Flight Certificate (upon request)\r\n\r\n<strong>Meadowcroft Blending Seminar Includes:</strong>\r\n• Tour of Cornerstone Gardens\r\n• Wine Blending\r\n• Cheese Plate\r\n• Label &amp; Cork Your Own “Perfect Blend” 750ml Bottle To Take Home\r\n\r\n*This package is for ages 21+. After booking is confirmed, you will receive a separate email confirmation from each respective company. <strong>Each company will also charge you separately</strong>.\r\n<p style=\"text-align: center;\">ADVANCED RESERVATIONS ARE REQUIRED\r\n$380/person <em>(Includes flight and blending)</em></p>\r\n<p style=\"text-align: center;\">Contact Sonoma Ballooning by clicking the button below.  Once your flight is booked, they will reach out to us to confirm your wine blending.  Have a happy flight!</p>\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"https://sonomaballooning.com/balloon-ride-packages/#balloon-blending\" aria-label=\"Arrange your flight directly with Sonoma Ballonning\">ARRANGE YOUR FLIGHT</a></p>'),(57983,3710,'_content_block_7_text_block_content_col_two','field_5bbe31593920e'),(57984,3710,'content_block_8_layout_title','Wine by the glass'),(57985,3710,'_content_block_8_layout_title','field_5bc11ca9a0d50-s'),(57986,3710,'content_block_8_hide_this_content_block','1'),(57987,3710,'_content_block_8_hide_this_content_block','field_643884e4df74c7textb'),(57988,3710,'content_block_8_custom_css_class',''),(57989,3710,'_content_block_8_custom_css_class','field_5bbe30b1a4de2-1'),(57990,3710,'content_block_8_text_block_columns','two'),(57991,3710,'_content_block_8_text_block_columns','field_5bbe2f81a4de0'),(57992,3710,'content_block_8_column_size','equal'),(57993,3710,'_content_block_8_column_size','field_columnsize'),(57994,3710,'content_block_8_narrow_text_block_content','0'),(57995,3710,'_content_block_8_narrow_text_block_content','field_5bbe342e08360'),(57996,3710,'content_block_8_reverse_colors','0'),(57997,3710,'_content_block_8_reverse_colors','field_5bbe3027a4de1'),(57998,3710,'content_block_8_enable_background_image','0'),(57999,3710,'_content_block_8_enable_background_image','field_5bbe30b1a4de2'),(58000,3710,'content_block_8_text_block_content_col_one','<img class=\"aligncenter\" src=\"/wp-content/uploads/2022/12/rose-1.jpg\" width=\"500\" height=\"373\" />'),(58001,3710,'_content_block_8_text_block_content_col_one','field_5bbe313b3920d'),(58002,3710,'content_block_8_text_block_content_col_two','<h3 style=\"text-align: center;\"><span class=\"h4\"> WINE BY THE GLASS AND BY THE BOTTLE</span></h3>\r\n<p style=\"text-align: center;\">We encourage guests to come in to purchase wine by the glass or by the bottle. There are wonderful picnic opportunities in the gardens of <a href=\"https://www.cornerstonesonoma.com/\">Cornerstone Sonoma</a> and enjoy the Sonoma sunshine.</p>\r\n<p style=\"text-align: center;\">NO RESERVATIONS NEED | TO-GO SERVICE</p>'),(58003,3710,'_content_block_8_text_block_content_col_two','field_5bbe31593920e'),(58004,3710,'content_block_9_layout_title','Cornerstone Title'),(58005,3710,'_content_block_9_layout_title','field_5bc11ca9a0d50-s'),(58006,3710,'content_block_9_hide_this_content_block','1'),(58007,3710,'_content_block_9_hide_this_content_block','field_643884e4df74c7textb'),(58008,3710,'content_block_9_custom_css_class','no-padding'),(58009,3710,'_content_block_9_custom_css_class','field_5bbe30b1a4de2-1'),(58010,3710,'content_block_9_text_block_columns','one'),(58011,3710,'_content_block_9_text_block_columns','field_5bbe2f81a4de0'),(58012,3710,'content_block_9_narrow_text_block_content','0'),(58013,3710,'_content_block_9_narrow_text_block_content','field_5bbe342e08360'),(58014,3710,'content_block_9_reverse_colors','0'),(58015,3710,'_content_block_9_reverse_colors','field_5bbe3027a4de1'),(58016,3710,'content_block_9_enable_background_image','0'),(58017,3710,'_content_block_9_enable_background_image','field_5bbe30b1a4de2'),(58018,3710,'content_block_9_text_block_content_col_one','&nbsp;\r\n<h2 style=\"text-align: center;\"><span class=\"h3\">MEADOWCROFT TASTING ROOM AT <a href=\"https://www.cornerstonesonoma.com/\">CORNERSTONE</a></span></h2>'),(58019,3710,'_content_block_9_text_block_content_col_one','field_5bbe313b3920d'),(58020,3710,'content_block_10_layout_title','Testimonials'),(58021,3710,'_content_block_10_layout_title','field_5bc11ca9a0d50-s'),(58022,3710,'content_block_10_hide_this_content_block','1'),(58023,3710,'_content_block_10_hide_this_content_block','field_643884e4df74c7textb'),(58024,3710,'content_block_10_custom_css_class','medium-width'),(58025,3710,'_content_block_10_custom_css_class','field_5bbe30b1a4de2-1'),(58026,3710,'content_block_10_text_block_columns','two'),(58027,3710,'_content_block_10_text_block_columns','field_5bbe2f81a4de0'),(58028,3710,'content_block_10_column_size','equal'),(58029,3710,'_content_block_10_column_size','field_columnsize'),(58030,3710,'content_block_10_narrow_text_block_content','0'),(58031,3710,'_content_block_10_narrow_text_block_content','field_5bbe342e08360'),(58032,3710,'content_block_10_reverse_colors','0'),(58033,3710,'_content_block_10_reverse_colors','field_5bbe3027a4de1'),(58034,3710,'content_block_10_enable_background_image','0'),(58035,3710,'_content_block_10_enable_background_image','field_5bbe30b1a4de2'),(58036,3710,'content_block_10_text_block_content_col_one','&nbsp;\r\n<p class=\"metatitle\" style=\"text-align: center;\">OPEN DAILY</p>\r\n\r\n<h3 style=\"text-align: center;\">TESTIMONIALS</h3>\r\n[slick-slider category=\"29\" loop=\"true\" hover_pause=\"true\" dots=\"false\" arrows=\"false\" show_content=\"true\" show_title=\"false\" autoplay_interval=\"4000\" speed=\"300\" extra_class=\"tasting-room\" design=\"design-5\"]'),(58037,3710,'_content_block_10_text_block_content_col_one','field_5bbe313b3920d'),(58038,3710,'content_block_10_text_block_content_col_two','<img class=\"wp-image-896 aligncenter\" src=\"/wp-content/uploads/2023/02/testimonials.jpg\" alt=\"Bottle of Meadowcroft wine in lavender field\" width=\"861\" height=\"610\" />'),(58039,3710,'_content_block_10_text_block_content_col_two','field_5bbe31593920e'),(58040,3710,'content_block','a:11:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:6:\"banner\";i:3;s:10:\"text_block\";i:4;s:10:\"text_block\";i:5;s:10:\"text_block\";i:6;s:10:\"text_block\";i:7;s:10:\"text_block\";i:8;s:10:\"text_block\";i:9;s:10:\"text_block\";i:10;s:10:\"text_block\";}'),(58041,3710,'_content_block','field_5bbe19a7efa09'),(58044,3110,'_edit_lock','1713851504:5'),(58045,3713,'web_id','65f44c17-7fb6-48b2-b47c-b7f71b8dfc5d'),(58046,3713,'slug','tee-shirt---bee-you-unisex-duplicate'),(58047,3713,'title','Tee Shirt - Save the Bees (unisex)'),(58048,3713,'type','General Merchandise'),(58049,3713,'image','https://images.commerce7.com/meadowcroft-wines/images/original/tee-savebees-front-1718746303615.png'),(58050,3713,'teaser',NULL),(58051,3713,'content',NULL),(58052,3713,'subtitle',NULL),(58053,3713,'price','3000'),(58054,3713,'web_status','Available'),(58055,3713,'admin_status','Available'),(58056,3713,'vendor','707 Embroidery Zone'),(58057,3713,'collections','a:0:{}'),(58058,3713,'primary_collection',''),(58059,3714,'web_id','485ae8bd-1603-4bcf-8647-5b190df7ccc6'),(58060,3714,'slug','tee-shirt---save-the-bees-unisex-duplicate'),(58061,3714,'title','Tee Shirt - European Heritage (unisex)'),(58062,3714,'type','General Merchandise'),(58063,3714,'image','https://images.commerce7.com/meadowcroft-wines/images/original/tee-euroheritage-back-1718747847225.png'),(58064,3714,'teaser','Our classic Meadowcroft tee shirt.   Front has Meadowcroft logo and back side reads \" European Heritage with California Creativity\".  Made from 100% recycled cotton.'),(58065,3714,'content','<p>Our classic Meadowcroft tee shirt. &nbsp; Front has Meadowcroft logo and back side reads \" European Heritage with California Creativity\". &nbsp;Made from 100% recycled cotton.</p>'),(58066,3714,'subtitle',NULL),(58067,3714,'price','3000'),(58068,3714,'web_status','Available'),(58069,3714,'admin_status','Available'),(58070,3714,'vendor','707 Embroidery Zone'),(58071,3714,'collections','a:0:{}'),(58072,3714,'primary_collection',''),(58073,3715,'web_id','968ad468-95f1-4b62-9e52-4c17dd7615ca'),(58074,3715,'slug','hoodie-sweatshirt---bee-you-unisex-duplicate'),(58075,3715,'title','Hoodie sweatshirt - European heritage(unisex)'),(58076,3715,'type','General Merchandise'),(58077,3715,'image','https://images.commerce7.com/meadowcroft-wines/images/original/hoodie-europeanheritage-back-1718131071198.jpg'),(58078,3715,'teaser','Soft & comfortable hoodie.  Front - Meadowcroft logo & back \"European Heritage with California Creativity\".  65% cotton & 35% polyester.'),(58079,3715,'content','<p>Soft &amp; comfortable hoodie. &nbsp;Front - Meadowcroft logo &amp; back \"European Heritage with California Creativity\". &nbsp;65% cotton &amp; 35% polyester.</p>'),(58080,3715,'subtitle',NULL),(58081,3715,'price','4500'),(58082,3715,'web_status','Available'),(58083,3715,'admin_status','Available'),(58084,3715,'vendor','707 Embroidery Zone'),(58085,3715,'collections','a:0:{}'),(58086,3715,'primary_collection',''),(58087,3110,'_edit_last','5'),(58088,3110,'wine_vertical',''),(58089,3110,'wine_score',''),(58090,3110,'trade_assets','a:0:{}'),(58091,3110,'downloads','a:0:{}'),(58092,3110,'related_products','a:0:{}'),(58093,3110,'recipe_pairings','a:0:{}'),(58094,3110,'external_recipe_pairings','a:0:{}'),(58095,3110,'should_exclude_from_search',''),(58096,3110,'additional_css_classes',''),(58097,3110,'template',''),(58098,3110,'allowed_customer_tag_titles','a:0:{}'),(58099,3110,'allowed_customer_club_titles','a:0:{}'),(58100,3110,'_yoast_wpseo_metadesc','Enjoy the delicious taste of our 2022 Pinot Noir Sonoma Coast at Meadowcroft Wines. Taste the essence of Sonoma in every sip.'),(58101,3110,'_yoast_wpseo_estimated-reading-time-minutes','0'),(58102,3110,'_yoast_wpseo_wordproof_timestamp',''),(58103,3061,'_edit_lock','1713851561:5'),(58104,3061,'_edit_last','5'),(58105,3061,'wine_vertical',''),(58106,3061,'wine_score',''),(58107,3061,'trade_assets','a:0:{}'),(58108,3061,'downloads','a:0:{}'),(58109,3061,'related_products','a:0:{}'),(58110,3061,'recipe_pairings','a:0:{}'),(58111,3061,'external_recipe_pairings','a:0:{}'),(58112,3061,'should_exclude_from_search',''),(58113,3061,'additional_css_classes',''),(58114,3061,'template',''),(58115,3061,'allowed_customer_tag_titles','a:0:{}'),(58116,3061,'allowed_customer_club_titles','a:0:{}'),(58117,3061,'_yoast_wpseo_metadesc','Experience the refined flavors of our 2022 Pinot Noir from the Russian River Valley. Discover the essence of Meadowcroft Wines.'),(58118,3061,'_yoast_wpseo_estimated-reading-time-minutes','0'),(58119,3061,'_yoast_wpseo_wordproof_timestamp',''),(58120,2771,'_edit_lock','1713851562:5'),(58121,2771,'_edit_last','5'),(58122,2771,'trade_assets','a:0:{}'),(58123,2771,'downloads','a:0:{}'),(58124,2771,'related_products','a:0:{}'),(58125,2771,'recipe_pairings','a:0:{}'),(58126,2771,'external_recipe_pairings','a:0:{}'),(58127,2771,'should_exclude_from_search',''),(58128,2771,'additional_css_classes',''),(58129,2771,'template',''),(58130,2771,'allowed_customer_tag_titles','a:0:{}'),(58131,2771,'allowed_customer_club_titles','a:0:{}'),(58132,2771,'_yoast_wpseo_metadesc','Savor the delightful taste of our 2022 Pinot Noir from Anderson Valley. Dive into the exquisite flavors crafted by Meadowcroft Wines.'),(58133,2771,'_yoast_wpseo_estimated-reading-time-minutes','0'),(58134,2771,'_yoast_wpseo_wordproof_timestamp',''),(58135,3057,'_edit_lock','1713851827:5'),(58136,3057,'_edit_last','5'),(58137,3057,'wine_vertical',''),(58138,3057,'wine_score',''),(58139,3057,'trade_assets','a:0:{}'),(58140,3057,'downloads','a:0:{}'),(58141,3057,'related_products','a:0:{}'),(58142,3057,'recipe_pairings','a:0:{}'),(58143,3057,'external_recipe_pairings','a:0:{}'),(58144,3057,'should_exclude_from_search',''),(58145,3057,'additional_css_classes',''),(58146,3057,'template',''),(58147,3057,'allowed_customer_tag_titles','a:0:{}'),(58148,3057,'allowed_customer_club_titles','a:0:{}'),(58149,3057,'_yoast_wpseo_metadesc','Experience the rich flavors of our 2021 Sangiovese from Speedy Creek Vineyard, a classic varietal crafted by Meadowcroft Wines.'),(58150,3057,'_yoast_wpseo_estimated-reading-time-minutes','0'),(58151,3057,'_yoast_wpseo_wordproof_timestamp',''),(58152,2709,'_edit_lock','1713851699:5'),(58153,2709,'_edit_last','5'),(58154,2709,'primary_collection',''),(58155,2709,'trade_assets','a:0:{}'),(58156,2709,'downloads','a:0:{}'),(58157,2709,'related_products','a:0:{}'),(58158,2709,'recipe_pairings','a:0:{}'),(58159,2709,'external_recipe_pairings','a:0:{}'),(58160,2709,'should_exclude_from_search',''),(58161,2709,'additional_css_classes',''),(58162,2709,'template',''),(58163,2709,'allowed_customer_tag_titles','a:0:{}'),(58164,2709,'allowed_customer_club_titles','a:0:{}'),(58165,2709,'_yoast_wpseo_metadesc','Savor the bold essence of our 2019 Zinfandel from Speedy Creek Vineyard.Experience the bold and distinctive flavors of Meadowcroft Wines.'),(58166,2709,'_yoast_wpseo_estimated-reading-time-minutes','0'),(58167,2709,'_yoast_wpseo_wordproof_timestamp',''),(58168,3249,'_edit_lock','1713857770:5'),(58169,2714,'_edit_lock','1713857915:5'),(58170,2738,'_edit_lock','1713857771:5'),(58171,2741,'_edit_lock','1713857771:5'),(58172,2718,'_edit_lock','1713857772:5'),(58173,3249,'_edit_last','5'),(58174,3249,'wine_vertical',''),(58175,3249,'wine_score',''),(58176,3249,'trade_assets','a:0:{}'),(58177,3249,'downloads','a:0:{}'),(58178,3249,'related_products','a:0:{}'),(58179,3249,'recipe_pairings','a:0:{}'),(58180,3249,'external_recipe_pairings','a:0:{}'),(58181,3249,'should_exclude_from_search',''),(58182,3249,'additional_css_classes',''),(58183,3249,'template',''),(58184,3249,'allowed_customer_tag_titles','a:0:{}'),(58185,3249,'allowed_customer_club_titles','a:0:{}'),(58186,3249,'_yoast_wpseo_metadesc','Enjoy the enchantment of Meadowcroft Wines\' 2022 The Magi. Experience delightful flavors with every sip. Embrace the extraordinary.'),(58187,3249,'_yoast_wpseo_estimated-reading-time-minutes','0'),(58188,3249,'_yoast_wpseo_wordproof_timestamp',''),(58189,3060,'_edit_last','5'),(58190,3060,'wine_vertical',''),(58191,3060,'wine_score',''),(58192,3060,'trade_assets','a:0:{}'),(58193,3060,'downloads','a:0:{}'),(58194,3060,'related_products','a:0:{}'),(58195,3060,'recipe_pairings','a:0:{}'),(58196,3060,'external_recipe_pairings','a:0:{}'),(58197,3060,'should_exclude_from_search',''),(58198,3060,'additional_css_classes',''),(58199,3060,'template',''),(58200,3060,'allowed_customer_tag_titles','a:0:{}'),(58201,3060,'allowed_customer_club_titles','a:0:{}'),(58202,3060,'_yoast_wpseo_metadesc','Elevate your palate with Meadowcroft Wines\' 2021 Napa Valley Cabernet Sauvignon. Experience bold excellence in every sip.'),(58203,3060,'_yoast_wpseo_estimated-reading-time-minutes','0'),(58204,3060,'_yoast_wpseo_wordproof_timestamp',''),(58205,2714,'_edit_last','5'),(58206,2714,'trade_assets','a:0:{}'),(58207,2714,'downloads','a:0:{}'),(58208,2714,'related_products','a:0:{}'),(58209,2714,'recipe_pairings','a:0:{}'),(58210,2714,'external_recipe_pairings','a:0:{}'),(58211,2714,'should_exclude_from_search',''),(58212,2714,'additional_css_classes',''),(58213,2714,'template',''),(58214,2714,'allowed_customer_tag_titles','a:0:{}'),(58215,2714,'allowed_customer_club_titles','a:0:{}'),(58216,2714,'_yoast_wpseo_metadesc','Savor the sophistication of our 2020 Cabernet Sauvignon from Mt. Veeder Estate. Meadowcroft Wines invites you to indulge in elevated vineyard perfection.'),(58217,2714,'_yoast_wpseo_estimated-reading-time-minutes','0'),(58218,2714,'_yoast_wpseo_wordproof_timestamp',''),(58219,2738,'_edit_last','5'),(58220,2738,'trade_assets','a:0:{}'),(58221,2738,'downloads','a:0:{}'),(58222,2738,'related_products','a:0:{}'),(58223,2738,'recipe_pairings','a:0:{}'),(58224,2738,'external_recipe_pairings','a:0:{}'),(58225,2738,'should_exclude_from_search',''),(58226,2738,'additional_css_classes',''),(58227,2738,'template',''),(58228,2738,'allowed_customer_tag_titles','a:0:{}'),(58229,2738,'allowed_customer_club_titles','a:0:{}'),(58230,2738,'_yoast_wpseo_metadesc','Experience the allure of our 2020 Cabernet Sauvignon from Rutherford. Meadowcroft Wines invites you to savor the rich flavors of this exceptional vintage.'),(58231,2738,'_yoast_wpseo_estimated-reading-time-minutes','0'),(58232,2738,'_yoast_wpseo_wordproof_timestamp',''),(58233,2741,'_edit_last','5'),(58234,2741,'primary_collection',''),(58235,2741,'trade_assets','a:0:{}'),(58236,2741,'downloads','a:0:{}'),(58237,2741,'related_products','a:0:{}'),(58238,2741,'recipe_pairings','a:0:{}'),(58239,2741,'external_recipe_pairings','a:0:{}'),(58240,2741,'should_exclude_from_search',''),(58241,2741,'additional_css_classes',''),(58242,2741,'template',''),(58243,2741,'allowed_customer_tag_titles','a:0:{}'),(58244,2741,'allowed_customer_club_titles','a:0:{}'),(58245,2741,'_yoast_wpseo_metadesc','Savor the rich flavors of our 2020 Cabernet Sauvignon from the Stags Leap District. Enjoy excellence with Meadowcroft Wines.'),(58246,2741,'_yoast_wpseo_estimated-reading-time-minutes','0'),(58247,2741,'_yoast_wpseo_wordproof_timestamp',''),(58248,2718,'_edit_last','5'),(58249,2718,'trade_assets','a:0:{}'),(58250,2718,'downloads','a:0:{}'),(58251,2718,'related_products','a:0:{}'),(58252,2718,'recipe_pairings','a:0:{}'),(58253,2718,'external_recipe_pairings','a:0:{}'),(58254,2718,'should_exclude_from_search',''),(58255,2718,'additional_css_classes',''),(58256,2718,'template',''),(58257,2718,'allowed_customer_tag_titles','a:0:{}'),(58258,2718,'allowed_customer_club_titles','a:0:{}'),(58259,2718,'_yoast_wpseo_metadesc','Indulge in the opulence of our 2020 Cabernet Sauvignon from Oakville. Meadowcroft Wines presents a symphony of rich flavors, a testament to vineyard excellence.'),(58260,2718,'_yoast_wpseo_estimated-reading-time-minutes','0'),(58261,2718,'_yoast_wpseo_wordproof_timestamp',''),(58262,2773,'_edit_lock','1713857793:5'),(58263,2772,'_edit_lock','1713858553:5'),(58264,2773,'_edit_last','5'),(58265,2773,'primary_collection',''),(58266,2773,'trade_assets','a:0:{}'),(58267,2773,'downloads','a:0:{}'),(58268,2773,'related_products','a:0:{}'),(58269,2773,'recipe_pairings','a:0:{}'),(58270,2773,'external_recipe_pairings','a:0:{}'),(58271,2773,'should_exclude_from_search',''),(58272,2773,'additional_css_classes',''),(58273,2773,'template',''),(58274,2773,'allowed_customer_tag_titles','a:0:{}'),(58275,2773,'allowed_customer_club_titles','a:0:{}'),(58276,2773,'_yoast_wpseo_metadesc','Experience the delicate flavors of our 2022 Rosé of Pinot Noir from Sonoma Coast. Meadowcroft Wines presents a refreshing blend with hints of strawberries and citrus. Order now for a delightful tasting experience.'),(58277,2773,'_yoast_wpseo_estimated-reading-time-minutes','0'),(58278,2773,'_yoast_wpseo_wordproof_timestamp',''),(58279,2772,'_edit_last','5'),(58280,2772,'trade_assets','a:0:{}'),(58281,2772,'downloads','a:0:{}'),(58282,2772,'related_products','a:0:{}'),(58283,2772,'recipe_pairings','a:0:{}'),(58284,2772,'external_recipe_pairings','a:0:{}'),(58285,2772,'should_exclude_from_search',''),(58286,2772,'additional_css_classes',''),(58287,2772,'template',''),(58288,2772,'allowed_customer_tag_titles','a:0:{}'),(58289,2772,'allowed_customer_club_titles','a:0:{}'),(58290,2772,'_yoast_wpseo_metadesc','Experience the essence of summer with our 2022 River Trace Rosé. Crafted with care by Meadowcroft Wines, this refreshing rosé embodies the vibrant flavors of the season. Order now and savor the taste of sunshine in every sip.'),(58291,2772,'_yoast_wpseo_estimated-reading-time-minutes','0'),(58292,2772,'_yoast_wpseo_wordproof_timestamp',''),(58293,3716,'web_id','5d13cacf-4b85-49e7-85c3-e08b5177bb9d'),(58294,3716,'slug','2022-chardonnay-sonoma-coast-vina-del-sol'),(58295,3716,'title','2022 Chardonnay, Sonoma Coast - Vina Del Sol'),(58296,3716,'type','Wine'),(58297,3716,'image',NULL),(58298,3716,'teaser',NULL),(58299,3716,'content','<p>The Sonoma Coast AVA extends from San Pablo Bay to the border with Mendocino County. The appellation is known for its cool climate and high rainfall relative to other parts of Sonoma County. Close to the Pacific, with more than twice the annual rainfall of its inland neighbors, it&rsquo;s warm enough to ripen wine grapes because most vineyards are above the fog line.</p>\n<p><span style=\"font-weight: bold;\">TASTING NOTES:</span>&nbsp; Showcases vibrant notes of tropical fruit and green apple on the nose. The palate is medium, with fresh flavors of lychee, grapefruit, ripe cantaloupe, and vanilla bean. The finish lingers delightfully with notes of apple strudel and suggestions of baking spice.&nbsp;</p>\n<div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp; We love this clean, complex chardonnay with fresh dishes like ceviche, Ahi tuna tartare, buttered crab, and crusty sourdough bread. Serve chilled with salads and young cheeses, or at room temperature with richer dishes and aged cheeses. A versatile and complex wine is a great cellar staple.</div>\n</div>'),(58300,3716,'subtitle','Sonoma Coast'),(58301,3716,'price','3500'),(58302,3716,'web_status','Available'),(58303,3716,'admin_status','Available'),(58304,3716,'varietal','Chardonnay'),(58305,3716,'appellation','Sonoma Coast'),(58306,3716,'vintage','2022'),(58307,3716,'meta_data_feature-text','Sonoma Coast'),(58308,3716,'meta_data_wine-notes','$28.00'),(58309,3716,'meta_data_technical-notes','<div>Appellation: Vino Del Sol Sonoma Coast, Sonoma County</div><div>Varietal: Chardonnay</div><div>Oak Regime: 100% French Oak, 35% New</div><div>Harvested: September 2021</div><div>Bottle Date: April 2022</div><div>Production: 145 Cases</div><div>Alc: 13.5%</div><div><br></div>'),(58310,3716,'collections','a:0:{}'),(58311,3716,'primary_collection',''),(58312,3716,'_wp_old_slug','2022-chardonnay-sonoma-coast-bee-you-duplicate'),(58315,3719,'inline_featured_image','0'),(58316,3719,'_edit_lock','1715105741:3'),(58317,3719,'_edit_last','3'),(58318,3720,'_wp_attached_file','2024/04/2023-westfall-rose.png'),(58319,3720,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:532;s:6:\"height\";i:2048;s:4:\"file\";s:30:\"2024/04/2023-westfall-rose.png\";s:8:\"filesize\";i:1139777;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"2023-westfall-rose-78x300.png\";s:5:\"width\";i:78;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25684;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"2023-westfall-rose-266x1024.png\";s:5:\"width\";i:266;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:236161;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"2023-westfall-rose-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22547;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:30:\"2023-westfall-rose-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:92095;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:30:\"2023-westfall-rose-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:263479;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:30:\"2023-westfall-rose-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:177787;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:30:\"2023-westfall-rose-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:114145;}s:8:\"tileview\";a:5:{s:4:\"file\";s:30:\"2023-westfall-rose-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:118905;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:31:\"2023-westfall-rose-399x1536.png\";s:5:\"width\";i:399;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:538442;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(58320,3721,'_wp_attached_file','2024/04/2023-RoseGrenache-Westfall-FINAL.pdf'),(58321,3721,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:40:\"2023-RoseGrenache-Westfall-FINAL-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175875;}s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"2023-RoseGrenache-Westfall-FINAL-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13976;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"2023-RoseGrenache-Westfall-FINAL-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96642;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"2023-RoseGrenache-Westfall-FINAL-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6383;}}s:8:\"filesize\";i:264162;}'),(58322,3719,'allowed_customer_tag_titles','a:0:{}'),(58323,3719,'allowed_customer_club_titles','a:0:{}'),(58324,3719,'linked_brand','3399'),(58325,3719,'_linked_brand','field_59ee2d92496e9'),(58326,3719,'main_image','3720'),(58327,3719,'_main_image','field_59ee319d02900'),(58328,3719,'assets_0_text','Tech Sheet'),(58329,3719,'_assets_0_text','field_59ee31cc02902'),(58330,3719,'assets_0_file_or_url','file'),(58331,3719,'_assets_0_file_or_url','field_59ee31da02903'),(58332,3719,'assets_0_file','3721'),(58333,3719,'_assets_0_file','field_59ee320302905'),(58334,3719,'assets','2'),(58335,3719,'_assets','field_59ee31bc02901'),(58336,3719,'varietal','Grenache'),(58337,3719,'_varietal','field_59ee660ece2e7'),(58338,3719,'sub_brand',''),(58339,3719,'_sub_brand','field_59ee6623ce2e8'),(58340,3719,'vintage','2023'),(58341,3719,'_vintage','field_59ee6eba9a39a'),(58342,3719,'_yoast_wpseo_estimated-reading-time-minutes','1'),(58343,3719,'_yoast_wpseo_wordproof_timestamp',''),(58344,3719,'assets_1_text','Bottle Shot'),(58345,3719,'_assets_1_text','field_59ee31cc02902'),(58346,3719,'assets_1_file_or_url','file'),(58347,3719,'_assets_1_file_or_url','field_59ee31da02903'),(58348,3719,'assets_1_file','3720'),(58349,3719,'_assets_1_file','field_59ee320302905'),(58350,3722,'_wp_attached_file','2024/04/PinotNoir-NoVintage-NapaCarneros.png'),(58351,3722,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:607;s:6:\"height\";i:2048;s:4:\"file\";s:44:\"2024/04/PinotNoir-NoVintage-NapaCarneros.png\";s:8:\"filesize\";i:1239868;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"PinotNoir-NoVintage-NapaCarneros-89x300.png\";s:5:\"width\";i:89;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24231;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"PinotNoir-NoVintage-NapaCarneros-304x1024.png\";s:5:\"width\";i:304;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:243892;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"PinotNoir-NoVintage-NapaCarneros-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14161;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:44:\"PinotNoir-NoVintage-NapaCarneros-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53370;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:44:\"PinotNoir-NoVintage-NapaCarneros-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157521;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:44:\"PinotNoir-NoVintage-NapaCarneros-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90169;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:44:\"PinotNoir-NoVintage-NapaCarneros-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56788;}s:8:\"tileview\";a:5:{s:4:\"file\";s:44:\"PinotNoir-NoVintage-NapaCarneros-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80642;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:45:\"PinotNoir-NoVintage-NapaCarneros-455x1536.png\";s:5:\"width\";i:455;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:569110;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(58355,3725,'_wp_attached_file','2024/05/2020-HowellMtn-Cabernet-techsheet-FINAL.pdf'),(58356,3725,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:47:\"2020-HowellMtn-Cabernet-techsheet-FINAL-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229043;}s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"2020-HowellMtn-Cabernet-techsheet-FINAL-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16775;}s:5:\"large\";a:5:{s:4:\"file\";s:56:\"2020-HowellMtn-Cabernet-techsheet-FINAL-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122353;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"2020-HowellMtn-Cabernet-techsheet-FINAL-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7325;}}s:8:\"filesize\";i:310378;}'),(58357,3726,'_wp_attached_file','2024/05/2021-HowellMtn-Cabernet-techsheet-FINAL.pdf'),(58358,3726,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:47:\"2021-HowellMtn-Cabernet-techsheet-FINAL-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:161027;}s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"2021-HowellMtn-Cabernet-techsheet-FINAL-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12286;}s:5:\"large\";a:5:{s:4:\"file\";s:56:\"2021-HowellMtn-Cabernet-techsheet-FINAL-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85841;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"2021-HowellMtn-Cabernet-techsheet-FINAL-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5806;}}s:8:\"filesize\";i:279127;}'),(58359,3727,'_wp_attached_file','2024/05/2023-Napa-Carneros-Chardonnay-Tech-Sheet-FINAL.pdf'),(58360,3727,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:54:\"2023-Napa-Carneros-Chardonnay-Tech-Sheet-FINAL-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162576;}s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"2023-Napa-Carneros-Chardonnay-Tech-Sheet-FINAL-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13753;}s:5:\"large\";a:5:{s:4:\"file\";s:63:\"2023-Napa-Carneros-Chardonnay-Tech-Sheet-FINAL-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89411;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"2023-Napa-Carneros-Chardonnay-Tech-Sheet-FINAL-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6564;}}s:8:\"filesize\";i:255856;}'),(58361,3728,'_wp_attached_file','2024/05/2023-Pinot-Blanc-FINAL.pdf'),(58362,3728,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:30:\"2023-Pinot-Blanc-FINAL-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:179999;}s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"2023-Pinot-Blanc-FINAL-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14670;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"2023-Pinot-Blanc-FINAL-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100170;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"2023-Pinot-Blanc-FINAL-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6708;}}s:8:\"filesize\";i:296311;}'),(58363,3729,'_wp_attached_file','2024/05/2023-Pinot-Noir-Son-Coast-Tech-Sheet-FINAL.pdf'),(58364,3729,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:50:\"2023-Pinot-Noir-Son-Coast-Tech-Sheet-FINAL-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:190703;}s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"2023-Pinot-Noir-Son-Coast-Tech-Sheet-FINAL-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14776;}s:5:\"large\";a:5:{s:4:\"file\";s:59:\"2023-Pinot-Noir-Son-Coast-Tech-Sheet-FINAL-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105939;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"2023-Pinot-Noir-Son-Coast-Tech-Sheet-FINAL-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6841;}}s:8:\"filesize\";i:315066;}'),(58365,3678,'mec_location_id','0'),(58366,3678,'mec_additional_location_ids','a:0:{}'),(58367,3678,'mec_organizer_id','0'),(58368,3678,'mec_additional_organizer_ids','a:0:{}'),(58369,3668,'mec_location_id','0'),(58370,3668,'mec_additional_location_ids','a:0:{}'),(58371,3668,'mec_organizer_id','0'),(58372,3668,'mec_additional_organizer_ids','a:0:{}'),(58373,3664,'mec_location_id','0'),(58374,3664,'mec_additional_location_ids','a:0:{}'),(58375,3664,'mec_organizer_id','0'),(58376,3664,'mec_additional_organizer_ids','a:0:{}'),(58377,3659,'mec_location_id','0'),(58378,3659,'mec_additional_location_ids','a:0:{}'),(58379,3659,'mec_organizer_id','0'),(58380,3659,'mec_additional_organizer_ids','a:0:{}'),(58381,3655,'mec_location_id','0'),(58382,3655,'mec_additional_location_ids','a:0:{}'),(58383,3655,'mec_organizer_id','0'),(58384,3655,'mec_additional_organizer_ids','a:0:{}'),(58385,3652,'mec_location_id','0'),(58386,3652,'mec_additional_location_ids','a:0:{}'),(58387,3652,'mec_organizer_id','0'),(58388,3652,'mec_additional_organizer_ids','a:0:{}'),(58389,3643,'mec_location_id','0'),(58390,3643,'mec_additional_location_ids','a:0:{}'),(58391,3643,'mec_organizer_id','0'),(58392,3643,'mec_additional_organizer_ids','a:0:{}'),(58394,3731,'inline_featured_image','0'),(58395,3731,'_edit_lock','1715116228:3'),(58396,3731,'_edit_last','3'),(58397,3731,'allowed_customer_tag_titles','a:0:{}'),(58398,3731,'allowed_customer_club_titles','a:0:{}'),(58399,3731,'linked_brand','3399'),(58400,3731,'_linked_brand','field_59ee2d92496e9'),(58401,3731,'main_image','3641'),(58402,3731,'_main_image','field_59ee319d02900'),(58403,3731,'assets_0_text','Tech Sheet'),(58404,3731,'_assets_0_text','field_59ee31cc02902'),(58405,3731,'assets_0_file_or_url','file'),(58406,3731,'_assets_0_file_or_url','field_59ee31da02903'),(58407,3731,'assets_0_file','3725'),(58408,3731,'_assets_0_file','field_59ee320302905'),(58409,3731,'assets_1_text','Bottle Shot'),(58410,3731,'_assets_1_text','field_59ee31cc02902'),(58411,3731,'assets_1_file_or_url','file'),(58412,3731,'_assets_1_file_or_url','field_59ee31da02903'),(58413,3731,'assets_1_file','3735'),(58414,3731,'_assets_1_file','field_59ee320302905'),(58415,3731,'assets','2'),(58416,3731,'_assets','field_59ee31bc02901'),(58417,3731,'varietal','Cabernet Sauvignon'),(58418,3731,'_varietal','field_59ee660ece2e7'),(58419,3731,'sub_brand',''),(58420,3731,'_sub_brand','field_59ee6623ce2e8'),(58421,3731,'vintage','2020'),(58422,3731,'_vintage','field_59ee6eba9a39a'),(58423,3731,'_yoast_wpseo_estimated-reading-time-minutes','1'),(58424,3731,'_yoast_wpseo_wordproof_timestamp',''),(58425,3732,'inline_featured_image','0'),(58426,3732,'_edit_lock','1715114306:3'),(58427,3732,'_edit_last','3'),(58428,3733,'_wp_attached_file','2024/05/howellmtn-novintage-4.jpg'),(58429,3733,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:572;s:6:\"height\";i:2048;s:4:\"file\";s:33:\"2024/05/howellmtn-novintage-4.jpg\";s:8:\"filesize\";i:146807;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"howellmtn-novintage-4-84x300.jpg\";s:5:\"width\";i:84;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7409;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"howellmtn-novintage-4-286x1024.jpg\";s:5:\"width\";i:286;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46023;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"howellmtn-novintage-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5809;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:33:\"howellmtn-novintage-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14636;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:33:\"howellmtn-novintage-4-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30270;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:33:\"howellmtn-novintage-4-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21867;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:33:\"howellmtn-novintage-4-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16081;}s:8:\"tileview\";a:5:{s:4:\"file\";s:33:\"howellmtn-novintage-4-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21244;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"howellmtn-novintage-4-429x1536.jpg\";s:5:\"width\";i:429;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86931;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(58430,3732,'allowed_customer_tag_titles','a:0:{}'),(58431,3732,'allowed_customer_club_titles','a:0:{}'),(58432,3732,'linked_brand','3399'),(58433,3732,'_linked_brand','field_59ee2d92496e9'),(58434,3732,'main_image','3733'),(58435,3732,'_main_image','field_59ee319d02900'),(58436,3732,'assets_0_text','Tech Sheet'),(58437,3732,'_assets_0_text','field_59ee31cc02902'),(58438,3732,'assets_0_file_or_url','file'),(58439,3732,'_assets_0_file_or_url','field_59ee31da02903'),(58440,3732,'assets_0_file','3726'),(58441,3732,'_assets_0_file','field_59ee320302905'),(58442,3732,'assets_1_text','Bottle Shot'),(58443,3732,'_assets_1_text','field_59ee31cc02902'),(58444,3732,'assets_1_file_or_url','file'),(58445,3732,'_assets_1_file_or_url','field_59ee31da02903'),(58446,3732,'assets_1_file','3733'),(58447,3732,'_assets_1_file','field_59ee320302905'),(58448,3732,'assets','2'),(58449,3732,'_assets','field_59ee31bc02901'),(58450,3732,'varietal','Cabernet Sauvignon'),(58451,3732,'_varietal','field_59ee660ece2e7'),(58452,3732,'sub_brand',''),(58453,3732,'_sub_brand','field_59ee6623ce2e8'),(58454,3732,'vintage','2021'),(58455,3732,'_vintage','field_59ee6eba9a39a'),(58456,3732,'_yoast_wpseo_focuskw','Howell Mountain Cabernet Sauvignon'),(58457,3732,'_yoast_wpseo_linkdex','30'),(58458,3732,'_yoast_wpseo_estimated-reading-time-minutes','1'),(58459,3732,'_yoast_wpseo_wordproof_timestamp',''),(58460,3734,'inline_featured_image','0'),(58461,3734,'_edit_lock','1715114218:3'),(58462,3734,'_edit_last','3'),(58463,3735,'_wp_attached_file','2024/05/2020-HOWELLMTN-CABERNET.jpg'),(58464,3735,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:572;s:6:\"height\";i:2048;s:4:\"file\";s:35:\"2024/05/2020-HOWELLMTN-CABERNET.jpg\";s:8:\"filesize\";i:147137;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"2020-HOWELLMTN-CABERNET-84x300.jpg\";s:5:\"width\";i:84;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7418;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"2020-HOWELLMTN-CABERNET-286x1024.jpg\";s:5:\"width\";i:286;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46076;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"2020-HOWELLMTN-CABERNET-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5789;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:35:\"2020-HOWELLMTN-CABERNET-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14677;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:35:\"2020-HOWELLMTN-CABERNET-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30039;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:35:\"2020-HOWELLMTN-CABERNET-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21869;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:35:\"2020-HOWELLMTN-CABERNET-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15848;}s:8:\"tileview\";a:5:{s:4:\"file\";s:35:\"2020-HOWELLMTN-CABERNET-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21131;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"2020-HOWELLMTN-CABERNET-429x1536.jpg\";s:5:\"width\";i:429;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87130;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(58465,3736,'_wp_attached_file','2024/05/2021-HOWELLMTN-CABERNET.jpg'),(58466,3736,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:572;s:6:\"height\";i:2048;s:4:\"file\";s:35:\"2024/05/2021-HOWELLMTN-CABERNET.jpg\";s:8:\"filesize\";i:146360;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"2021-HOWELLMTN-CABERNET-84x300.jpg\";s:5:\"width\";i:84;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7373;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"2021-HOWELLMTN-CABERNET-286x1024.jpg\";s:5:\"width\";i:286;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45767;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"2021-HOWELLMTN-CABERNET-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5785;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:35:\"2021-HOWELLMTN-CABERNET-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14676;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:35:\"2021-HOWELLMTN-CABERNET-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30095;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:35:\"2021-HOWELLMTN-CABERNET-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21912;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:35:\"2021-HOWELLMTN-CABERNET-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15861;}s:8:\"tileview\";a:5:{s:4:\"file\";s:35:\"2021-HOWELLMTN-CABERNET-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21131;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"2021-HOWELLMTN-CABERNET-429x1536.jpg\";s:5:\"width\";i:429;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86718;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(58467,3737,'_wp_attached_file','2024/05/2023-CHARDONNAY-NAPACARNEROS.jpg'),(58468,3737,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:572;s:6:\"height\";i:2048;s:4:\"file\";s:40:\"2024/05/2023-CHARDONNAY-NAPACARNEROS.jpg\";s:8:\"filesize\";i:128911;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"2023-CHARDONNAY-NAPACARNEROS-84x300.jpg\";s:5:\"width\";i:84;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6976;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"2023-CHARDONNAY-NAPACARNEROS-286x1024.jpg\";s:5:\"width\";i:286;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39612;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"2023-CHARDONNAY-NAPACARNEROS-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4782;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:40:\"2023-CHARDONNAY-NAPACARNEROS-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11060;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:40:\"2023-CHARDONNAY-NAPACARNEROS-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22251;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:40:\"2023-CHARDONNAY-NAPACARNEROS-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13305;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:40:\"2023-CHARDONNAY-NAPACARNEROS-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9966;}s:8:\"tileview\";a:5:{s:4:\"file\";s:40:\"2023-CHARDONNAY-NAPACARNEROS-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14975;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:41:\"2023-CHARDONNAY-NAPACARNEROS-429x1536.jpg\";s:5:\"width\";i:429;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75926;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(58469,3738,'_wp_attached_file','2024/05/2023-PINOTBLANC.jpg'),(58470,3738,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:572;s:6:\"height\";i:2048;s:4:\"file\";s:27:\"2024/05/2023-PINOTBLANC.jpg\";s:8:\"filesize\";i:133090;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"2023-PINOTBLANC-84x300.jpg\";s:5:\"width\";i:84;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6992;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"2023-PINOTBLANC-286x1024.jpg\";s:5:\"width\";i:286;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40211;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"2023-PINOTBLANC-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4645;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:27:\"2023-PINOTBLANC-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10968;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:27:\"2023-PINOTBLANC-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22334;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:27:\"2023-PINOTBLANC-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13242;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:27:\"2023-PINOTBLANC-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9889;}s:8:\"tileview\";a:5:{s:4:\"file\";s:27:\"2023-PINOTBLANC-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14859;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"2023-PINOTBLANC-429x1536.jpg\";s:5:\"width\";i:429;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77736;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(58471,3739,'_wp_attached_file','2024/05/2023-PINOTNPOIR-SONCOAST.jpg'),(58472,3739,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:572;s:6:\"height\";i:2048;s:4:\"file\";s:36:\"2024/05/2023-PINOTNPOIR-SONCOAST.jpg\";s:8:\"filesize\";i:144330;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"2023-PINOTNPOIR-SONCOAST-84x300.jpg\";s:5:\"width\";i:84;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6084;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"2023-PINOTNPOIR-SONCOAST-286x1024.jpg\";s:5:\"width\";i:286;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37009;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"2023-PINOTNPOIR-SONCOAST-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3651;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:36:\"2023-PINOTNPOIR-SONCOAST-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8287;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:36:\"2023-PINOTNPOIR-SONCOAST-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17529;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:36:\"2023-PINOTNPOIR-SONCOAST-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9686;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:36:\"2023-PINOTNPOIR-SONCOAST-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7243;}s:8:\"tileview\";a:5:{s:4:\"file\";s:36:\"2023-PINOTNPOIR-SONCOAST-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12905;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"2023-PINOTNPOIR-SONCOAST-429x1536.jpg\";s:5:\"width\";i:429;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76562;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(58473,3740,'_wp_attached_file','2024/05/2023-VIOGNIER.jpg'),(58474,3740,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:572;s:6:\"height\";i:2048;s:4:\"file\";s:25:\"2024/05/2023-VIOGNIER.jpg\";s:8:\"filesize\";i:134227;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"2023-VIOGNIER-84x300.jpg\";s:5:\"width\";i:84;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6914;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"2023-VIOGNIER-286x1024.jpg\";s:5:\"width\";i:286;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39596;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"2023-VIOGNIER-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4632;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:25:\"2023-VIOGNIER-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10864;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:25:\"2023-VIOGNIER-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22420;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:25:\"2023-VIOGNIER-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13227;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:25:\"2023-VIOGNIER-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9915;}s:8:\"tileview\";a:5:{s:4:\"file\";s:25:\"2023-VIOGNIER-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14712;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:26:\"2023-VIOGNIER-429x1536.jpg\";s:5:\"width\";i:429;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77018;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(58475,3741,'_wp_attached_file','2024/05/howellmtn-novintage-4-1.jpg'),(58476,3741,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:572;s:6:\"height\";i:2048;s:4:\"file\";s:35:\"2024/05/howellmtn-novintage-4-1.jpg\";s:8:\"filesize\";i:146807;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"howellmtn-novintage-4-1-84x300.jpg\";s:5:\"width\";i:84;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7409;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"howellmtn-novintage-4-1-286x1024.jpg\";s:5:\"width\";i:286;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46023;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"howellmtn-novintage-4-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5809;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:35:\"howellmtn-novintage-4-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14636;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:35:\"howellmtn-novintage-4-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30270;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:35:\"howellmtn-novintage-4-1-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21867;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:35:\"howellmtn-novintage-4-1-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16081;}s:8:\"tileview\";a:5:{s:4:\"file\";s:35:\"howellmtn-novintage-4-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21244;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"howellmtn-novintage-4-1-429x1536.jpg\";s:5:\"width\";i:429;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86931;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(58477,3734,'allowed_customer_tag_titles','a:0:{}'),(58478,3734,'allowed_customer_club_titles','a:0:{}'),(58479,3734,'linked_brand','3399'),(58480,3734,'_linked_brand','field_59ee2d92496e9'),(58481,3734,'main_image','3737'),(58482,3734,'_main_image','field_59ee319d02900'),(58483,3734,'assets_0_text','Tech Sheet'),(58484,3734,'_assets_0_text','field_59ee31cc02902'),(58485,3734,'assets_0_file_or_url','file'),(58486,3734,'_assets_0_file_or_url','field_59ee31da02903'),(58487,3734,'assets_0_file','3727'),(58488,3734,'_assets_0_file','field_59ee320302905'),(58489,3734,'assets_1_text','Bottle Shot'),(58490,3734,'_assets_1_text','field_59ee31cc02902'),(58491,3734,'assets_1_file_or_url','file'),(58492,3734,'_assets_1_file_or_url','field_59ee31da02903'),(58493,3734,'assets_1_file','3737'),(58494,3734,'_assets_1_file','field_59ee320302905'),(58495,3734,'assets','2'),(58496,3734,'_assets','field_59ee31bc02901'),(58497,3734,'varietal','Chardonnay'),(58498,3734,'_varietal','field_59ee660ece2e7'),(58499,3734,'sub_brand',''),(58500,3734,'_sub_brand','field_59ee6623ce2e8'),(58501,3734,'vintage','2023'),(58502,3734,'_vintage','field_59ee6eba9a39a'),(58503,3734,'_yoast_wpseo_estimated-reading-time-minutes','1'),(58504,3734,'_yoast_wpseo_wordproof_timestamp',''),(58505,3742,'inline_featured_image','0'),(58506,3742,'_edit_lock','1715114482:3'),(58507,3742,'_edit_last','3'),(58508,3742,'allowed_customer_tag_titles','a:0:{}'),(58509,3742,'allowed_customer_club_titles','a:0:{}'),(58510,3742,'linked_brand','3399'),(58511,3742,'_linked_brand','field_59ee2d92496e9'),(58512,3742,'main_image','3739'),(58513,3742,'_main_image','field_59ee319d02900'),(58514,3742,'assets_0_text','Tech Sheet'),(58515,3742,'_assets_0_text','field_59ee31cc02902'),(58516,3742,'assets_0_file_or_url','file'),(58517,3742,'_assets_0_file_or_url','field_59ee31da02903'),(58518,3742,'assets_0_file','3729'),(58519,3742,'_assets_0_file','field_59ee320302905'),(58520,3742,'assets_1_text','Bottle Shot'),(58521,3742,'_assets_1_text','field_59ee31cc02902'),(58522,3742,'assets_1_file_or_url','file'),(58523,3742,'_assets_1_file_or_url','field_59ee31da02903'),(58524,3742,'assets_1_file','3739'),(58525,3742,'_assets_1_file','field_59ee320302905'),(58526,3742,'assets','2'),(58527,3742,'_assets','field_59ee31bc02901'),(58528,3742,'varietal','Pinot Noir'),(58529,3742,'_varietal','field_59ee660ece2e7'),(58530,3742,'sub_brand',''),(58531,3742,'_sub_brand','field_59ee6623ce2e8'),(58532,3742,'vintage','2023'),(58533,3742,'_vintage','field_59ee6eba9a39a'),(58534,3742,'_yoast_wpseo_estimated-reading-time-minutes','1'),(58535,3742,'_yoast_wpseo_wordproof_timestamp',''),(58536,3743,'inline_featured_image','0'),(58537,3743,'_edit_lock','1735327692:3'),(58538,3743,'_edit_last','3'),(58539,3743,'allowed_customer_tag_titles','a:0:{}'),(58540,3743,'allowed_customer_club_titles','a:0:{}'),(58541,3743,'linked_brand','3399'),(58542,3743,'_linked_brand','field_59ee2d92496e9'),(58543,3743,'main_image','3738'),(58544,3743,'_main_image','field_59ee319d02900'),(58545,3743,'assets_0_text','Tech Sheet'),(58546,3743,'_assets_0_text','field_59ee31cc02902'),(58547,3743,'assets_0_file_or_url','file'),(58548,3743,'_assets_0_file_or_url','field_59ee31da02903'),(58549,3743,'assets_0_file','3728'),(58550,3743,'_assets_0_file','field_59ee320302905'),(58551,3743,'assets_1_text','Bottle Shot'),(58552,3743,'_assets_1_text','field_59ee31cc02902'),(58553,3743,'assets_1_file_or_url','file'),(58554,3743,'_assets_1_file_or_url','field_59ee31da02903'),(58555,3743,'assets_1_file','3738'),(58556,3743,'_assets_1_file','field_59ee320302905'),(58557,3743,'assets','2'),(58558,3743,'_assets','field_59ee31bc02901'),(58559,3743,'varietal','Pinot Blanc'),(58560,3743,'_varietal','field_59ee660ece2e7'),(58561,3743,'sub_brand',''),(58562,3743,'_sub_brand','field_59ee6623ce2e8'),(58563,3743,'vintage','2023'),(58564,3743,'_vintage','field_59ee6eba9a39a'),(58565,3743,'_yoast_wpseo_estimated-reading-time-minutes','1'),(58566,3743,'_yoast_wpseo_wordproof_timestamp',''),(58567,3744,'inline_featured_image','0'),(58568,3744,'_edit_lock','1716402129:3'),(58569,3744,'_edit_last','3'),(58570,3744,'allowed_customer_tag_titles','a:0:{}'),(58571,3744,'allowed_customer_club_titles','a:0:{}'),(58572,3744,'linked_brand','3399'),(58573,3744,'_linked_brand','field_59ee2d92496e9'),(58574,3744,'main_image','3740'),(58575,3744,'_main_image','field_59ee319d02900'),(58576,3744,'assets_0_text','Tech Sheet'),(58577,3744,'_assets_0_text','field_59ee31cc02902'),(58578,3744,'assets_0_file_or_url','file'),(58579,3744,'_assets_0_file_or_url','field_59ee31da02903'),(58580,3744,'assets_0_file','3752'),(58581,3744,'_assets_0_file','field_59ee320302905'),(58582,3744,'assets_1_text','Bottle Shot'),(58583,3744,'_assets_1_text','field_59ee31cc02902'),(58584,3744,'assets_1_file_or_url','file'),(58585,3744,'_assets_1_file_or_url','field_59ee31da02903'),(58586,3744,'assets_1_file','3740'),(58587,3744,'_assets_1_file','field_59ee320302905'),(58588,3744,'assets','2'),(58589,3744,'_assets','field_59ee31bc02901'),(58590,3744,'varietal','Viognier'),(58591,3744,'_varietal','field_59ee660ece2e7'),(58592,3744,'sub_brand',''),(58593,3744,'_sub_brand','field_59ee6623ce2e8'),(58594,3744,'vintage','2023'),(58595,3744,'_vintage','field_59ee6eba9a39a'),(58596,3744,'_yoast_wpseo_estimated-reading-time-minutes','1'),(58597,3744,'_yoast_wpseo_wordproof_timestamp',''),(58598,3652,'assets_1_text','Bottle Shot'),(58599,3652,'_assets_1_text','field_59ee31cc02902'),(58600,3652,'assets_1_file_or_url','file'),(58601,3652,'_assets_1_file_or_url','field_59ee31da02903'),(58602,3652,'assets_1_file','3720'),(58603,3652,'_assets_1_file','field_59ee320302905'),(58604,3642,'mec_location_id','0'),(58605,3642,'mec_additional_location_ids','a:0:{}'),(58606,3642,'mec_organizer_id','0'),(58607,3642,'mec_additional_organizer_ids','a:0:{}'),(58608,3640,'mec_location_id','0'),(58609,3640,'mec_additional_location_ids','a:0:{}'),(58610,3640,'mec_organizer_id','0'),(58611,3640,'mec_additional_organizer_ids','a:0:{}'),(58612,3638,'mec_location_id','0'),(58613,3638,'mec_additional_location_ids','a:0:{}'),(58614,3638,'mec_organizer_id','0'),(58615,3638,'mec_additional_organizer_ids','a:0:{}'),(58616,3632,'mec_location_id','0'),(58617,3632,'mec_additional_location_ids','a:0:{}'),(58618,3632,'mec_organizer_id','0'),(58619,3632,'mec_additional_organizer_ids','a:0:{}'),(58620,3631,'mec_location_id','0'),(58621,3631,'mec_additional_location_ids','a:0:{}'),(58622,3631,'mec_organizer_id','0'),(58623,3631,'mec_additional_organizer_ids','a:0:{}'),(58624,3629,'mec_location_id','0'),(58625,3629,'mec_additional_location_ids','a:0:{}'),(58626,3629,'mec_organizer_id','0'),(58627,3629,'mec_additional_organizer_ids','a:0:{}'),(58628,3628,'mec_location_id','0'),(58629,3628,'mec_additional_location_ids','a:0:{}'),(58630,3628,'mec_organizer_id','0'),(58631,3628,'mec_additional_organizer_ids','a:0:{}'),(58632,3627,'mec_location_id','0'),(58633,3627,'mec_additional_location_ids','a:0:{}'),(58634,3627,'mec_organizer_id','0'),(58635,3627,'mec_additional_organizer_ids','a:0:{}'),(58636,3745,'linked_brand','3399'),(58637,3745,'_linked_brand','field_59ee2d92496e9'),(58638,3745,'main_image','3641'),(58639,3745,'_main_image','field_59ee319d02900'),(58640,3745,'assets_0_text','Tech Sheet'),(58641,3745,'_assets_0_text','field_59ee31cc02902'),(58642,3745,'assets_0_file_or_url','file'),(58643,3745,'_assets_0_file_or_url','field_59ee31da02903'),(58644,3745,'assets_0_file','3725'),(58645,3745,'_assets_0_file','field_59ee320302905'),(58646,3745,'assets_1_text','Bottle Shot'),(58647,3745,'_assets_1_text','field_59ee31cc02902'),(58648,3745,'assets_1_file_or_url','file'),(58649,3745,'_assets_1_file_or_url','field_59ee31da02903'),(58650,3745,'assets_1_file','3735'),(58651,3745,'_assets_1_file','field_59ee320302905'),(58652,3745,'assets','2'),(58653,3745,'_assets','field_59ee31bc02901'),(58654,3745,'varietal','Cabernet Sauvignon'),(58655,3745,'_varietal','field_59ee660ece2e7'),(58656,3745,'sub_brand',''),(58657,3745,'_sub_brand','field_59ee6623ce2e8'),(58658,3745,'vintage','2020'),(58659,3745,'_vintage','field_59ee6eba9a39a'),(58660,3746,'inline_featured_image','0'),(58661,3746,'_edit_lock','1715270858:3'),(58662,3746,'_edit_last','3'),(58663,3747,'_wp_attached_file','2024/05/2021-oakville-cabernet-web.png'),(58664,3747,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:572;s:6:\"height\";i:2048;s:4:\"file\";s:38:\"2024/05/2021-oakville-cabernet-web.png\";s:8:\"filesize\";i:933405;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"2021-oakville-cabernet-web-84x300.png\";s:5:\"width\";i:84;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22923;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"2021-oakville-cabernet-web-286x1024.png\";s:5:\"width\";i:286;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:185584;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"2021-oakville-cabernet-web-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17312;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:38:\"2021-oakville-cabernet-web-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58639;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:38:\"2021-oakville-cabernet-web-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:152138;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:38:\"2021-oakville-cabernet-web-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:104941;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:38:\"2021-oakville-cabernet-web-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:71164;}s:8:\"tileview\";a:5:{s:4:\"file\";s:38:\"2021-oakville-cabernet-web-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:74904;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"2021-oakville-cabernet-web-429x1536.png\";s:5:\"width\";i:429;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:398756;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(58665,3748,'_wp_attached_file','2024/05/2021-OakvilleCab-techsheet-web2-2.pdf'),(58666,3748,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:41:\"2021-OakvilleCab-techsheet-web2-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198113;}s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"2021-OakvilleCab-techsheet-web2-2-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15031;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"2021-OakvilleCab-techsheet-web2-2-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108448;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"2021-OakvilleCab-techsheet-web2-2-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6857;}}s:8:\"filesize\";i:236088;}'),(58667,3746,'allowed_customer_tag_titles','a:0:{}'),(58668,3746,'allowed_customer_club_titles','a:0:{}'),(58669,3746,'linked_brand','3399'),(58670,3746,'_linked_brand','field_59ee2d92496e9'),(58671,3746,'main_image','3747'),(58672,3746,'_main_image','field_59ee319d02900'),(58673,3746,'assets_0_text','Tech Sheet'),(58674,3746,'_assets_0_text','field_59ee31cc02902'),(58675,3746,'assets_0_file_or_url','file'),(58676,3746,'_assets_0_file_or_url','field_59ee31da02903'),(58677,3746,'assets_0_file','3748'),(58678,3746,'_assets_0_file','field_59ee320302905'),(58679,3746,'assets_1_text','Bottle Shot'),(58680,3746,'_assets_1_text','field_59ee31cc02902'),(58681,3746,'assets_1_file_or_url','file'),(58682,3746,'_assets_1_file_or_url','field_59ee31da02903'),(58683,3746,'assets_1_file','3747'),(58684,3746,'_assets_1_file','field_59ee320302905'),(58685,3746,'assets','2'),(58686,3746,'_assets','field_59ee31bc02901'),(58687,3746,'varietal','Cabernet Sauvignon'),(58688,3746,'_varietal','field_59ee660ece2e7'),(58689,3746,'sub_brand',''),(58690,3746,'_sub_brand','field_59ee6623ce2e8'),(58691,3746,'vintage','2021'),(58692,3746,'_vintage','field_59ee6eba9a39a'),(58693,3746,'_yoast_wpseo_estimated-reading-time-minutes','1'),(58694,3746,'_yoast_wpseo_wordproof_timestamp',''),(58695,3626,'mec_location_id','0'),(58696,3626,'mec_additional_location_ids','a:0:{}'),(58697,3626,'mec_organizer_id','0'),(58698,3626,'mec_additional_organizer_ids','a:0:{}'),(58699,3624,'mec_location_id','0'),(58700,3624,'mec_additional_location_ids','a:0:{}'),(58701,3624,'mec_organizer_id','0'),(58702,3624,'mec_additional_organizer_ids','a:0:{}'),(58703,3623,'mec_location_id','0'),(58704,3623,'mec_additional_location_ids','a:0:{}'),(58705,3623,'mec_organizer_id','0'),(58706,3623,'mec_additional_organizer_ids','a:0:{}'),(58707,3622,'mec_location_id','0'),(58708,3622,'mec_additional_location_ids','a:0:{}'),(58709,3622,'mec_organizer_id','0'),(58710,3622,'mec_additional_organizer_ids','a:0:{}'),(58711,3621,'mec_location_id','0'),(58712,3621,'mec_additional_location_ids','a:0:{}'),(58713,3621,'mec_organizer_id','0'),(58714,3621,'mec_additional_organizer_ids','a:0:{}'),(58715,3619,'mec_location_id','0'),(58716,3619,'mec_additional_location_ids','a:0:{}'),(58717,3619,'mec_organizer_id','0'),(58718,3619,'mec_additional_organizer_ids','a:0:{}'),(58719,3617,'mec_location_id','0'),(58720,3617,'mec_additional_location_ids','a:0:{}'),(58721,3617,'mec_organizer_id','0'),(58722,3617,'mec_additional_organizer_ids','a:0:{}'),(58723,3616,'mec_location_id','0'),(58724,3616,'mec_additional_location_ids','a:0:{}'),(58725,3616,'mec_organizer_id','0'),(58726,3616,'mec_additional_organizer_ids','a:0:{}'),(58727,3614,'mec_location_id','0'),(58728,3614,'mec_additional_location_ids','a:0:{}'),(58729,3614,'mec_organizer_id','0'),(58730,3614,'mec_additional_organizer_ids','a:0:{}'),(58731,3613,'mec_location_id','0'),(58732,3613,'mec_additional_location_ids','a:0:{}'),(58733,3613,'mec_organizer_id','0'),(58734,3613,'mec_additional_organizer_ids','a:0:{}'),(58735,3612,'mec_location_id','0'),(58736,3612,'mec_additional_location_ids','a:0:{}'),(58737,3612,'mec_organizer_id','0'),(58738,3612,'mec_additional_organizer_ids','a:0:{}'),(58739,3611,'mec_location_id','0'),(58740,3611,'mec_additional_location_ids','a:0:{}'),(58741,3611,'mec_organizer_id','0'),(58742,3611,'mec_additional_organizer_ids','a:0:{}'),(58743,3610,'mec_location_id','0'),(58744,3610,'mec_additional_location_ids','a:0:{}'),(58745,3610,'mec_organizer_id','0'),(58746,3610,'mec_additional_organizer_ids','a:0:{}'),(58747,3609,'mec_location_id','0'),(58748,3609,'mec_additional_location_ids','a:0:{}'),(58749,3609,'mec_organizer_id','0'),(58750,3609,'mec_additional_organizer_ids','a:0:{}'),(58751,3607,'mec_location_id','0'),(58752,3607,'mec_additional_location_ids','a:0:{}'),(58753,3607,'mec_organizer_id','0'),(58754,3607,'mec_additional_organizer_ids','a:0:{}'),(58755,3606,'mec_location_id','0'),(58756,3606,'mec_additional_location_ids','a:0:{}'),(58757,3606,'mec_organizer_id','0'),(58758,3606,'mec_additional_organizer_ids','a:0:{}'),(58759,3605,'mec_location_id','0'),(58760,3605,'mec_additional_location_ids','a:0:{}'),(58761,3605,'mec_organizer_id','0'),(58762,3605,'mec_additional_organizer_ids','a:0:{}'),(58763,3604,'mec_location_id','0'),(58764,3604,'mec_additional_location_ids','a:0:{}'),(58765,3604,'mec_organizer_id','0'),(58766,3604,'mec_additional_organizer_ids','a:0:{}'),(58767,3602,'mec_location_id','0'),(58768,3602,'mec_additional_location_ids','a:0:{}'),(58769,3602,'mec_organizer_id','0'),(58770,3602,'mec_additional_organizer_ids','a:0:{}'),(58771,3601,'mec_location_id','0'),(58772,3601,'mec_additional_location_ids','a:0:{}'),(58773,3601,'mec_organizer_id','0'),(58774,3601,'mec_additional_organizer_ids','a:0:{}'),(58775,3599,'mec_location_id','0'),(58776,3599,'mec_additional_location_ids','a:0:{}'),(58777,3599,'mec_organizer_id','0'),(58778,3599,'mec_additional_organizer_ids','a:0:{}'),(58779,3596,'mec_location_id','0'),(58780,3596,'mec_additional_location_ids','a:0:{}'),(58781,3596,'mec_organizer_id','0'),(58782,3596,'mec_additional_organizer_ids','a:0:{}'),(58783,3595,'mec_location_id','0'),(58784,3595,'mec_additional_location_ids','a:0:{}'),(58785,3595,'mec_organizer_id','0'),(58786,3595,'mec_additional_organizer_ids','a:0:{}'),(58787,3594,'mec_location_id','0'),(58788,3594,'mec_additional_location_ids','a:0:{}'),(58789,3594,'mec_organizer_id','0'),(58790,3594,'mec_additional_organizer_ids','a:0:{}'),(58791,3593,'mec_location_id','0'),(58792,3593,'mec_additional_location_ids','a:0:{}'),(58793,3593,'mec_organizer_id','0'),(58794,3593,'mec_additional_organizer_ids','a:0:{}'),(58795,3591,'mec_location_id','0'),(58796,3591,'mec_additional_location_ids','a:0:{}'),(58797,3591,'mec_organizer_id','0'),(58798,3591,'mec_additional_organizer_ids','a:0:{}'),(58799,3590,'mec_location_id','0'),(58800,3590,'mec_additional_location_ids','a:0:{}'),(58801,3590,'mec_organizer_id','0'),(58802,3590,'mec_additional_organizer_ids','a:0:{}'),(58803,3589,'mec_location_id','0'),(58804,3589,'mec_additional_location_ids','a:0:{}'),(58805,3589,'mec_organizer_id','0'),(58806,3589,'mec_additional_organizer_ids','a:0:{}'),(58807,3587,'mec_location_id','0'),(58808,3587,'mec_additional_location_ids','a:0:{}'),(58809,3587,'mec_organizer_id','0'),(58810,3587,'mec_additional_organizer_ids','a:0:{}'),(58811,3586,'mec_location_id','0'),(58812,3586,'mec_additional_location_ids','a:0:{}'),(58813,3586,'mec_organizer_id','0'),(58814,3586,'mec_additional_organizer_ids','a:0:{}'),(58815,3585,'mec_location_id','0'),(58816,3585,'mec_additional_location_ids','a:0:{}'),(58817,3585,'mec_organizer_id','0'),(58818,3585,'mec_additional_organizer_ids','a:0:{}'),(58819,3584,'mec_location_id','0'),(58820,3584,'mec_additional_location_ids','a:0:{}'),(58821,3584,'mec_organizer_id','0'),(58822,3584,'mec_additional_organizer_ids','a:0:{}'),(58823,3583,'mec_location_id','0'),(58824,3583,'mec_additional_location_ids','a:0:{}'),(58825,3583,'mec_organizer_id','0'),(58826,3583,'mec_additional_organizer_ids','a:0:{}'),(58827,3581,'mec_location_id','0'),(58828,3581,'mec_additional_location_ids','a:0:{}'),(58829,3581,'mec_organizer_id','0'),(58830,3581,'mec_additional_organizer_ids','a:0:{}'),(58831,3579,'mec_location_id','0'),(58832,3579,'mec_additional_location_ids','a:0:{}'),(58833,3579,'mec_organizer_id','0'),(58834,3579,'mec_additional_organizer_ids','a:0:{}'),(58835,3577,'mec_location_id','0'),(58836,3577,'mec_additional_location_ids','a:0:{}'),(58837,3577,'mec_organizer_id','0'),(58838,3577,'mec_additional_organizer_ids','a:0:{}'),(58839,3576,'mec_location_id','0'),(58840,3576,'mec_additional_location_ids','a:0:{}'),(58841,3576,'mec_organizer_id','0'),(58842,3576,'mec_additional_organizer_ids','a:0:{}'),(58843,3597,'mec_location_id','0'),(58844,3597,'mec_additional_location_ids','a:0:{}'),(58845,3597,'mec_organizer_id','0'),(58846,3597,'mec_additional_organizer_ids','a:0:{}'),(58847,3575,'mec_location_id','0'),(58848,3575,'mec_additional_location_ids','a:0:{}'),(58849,3575,'mec_organizer_id','0'),(58850,3575,'mec_additional_organizer_ids','a:0:{}'),(58851,3574,'mec_location_id','0'),(58852,3574,'mec_additional_location_ids','a:0:{}'),(58853,3574,'mec_organizer_id','0'),(58854,3574,'mec_additional_organizer_ids','a:0:{}'),(58855,3571,'mec_location_id','0'),(58856,3571,'mec_additional_location_ids','a:0:{}'),(58857,3571,'mec_organizer_id','0'),(58858,3571,'mec_additional_organizer_ids','a:0:{}'),(58859,3570,'mec_location_id','0'),(58860,3570,'mec_additional_location_ids','a:0:{}'),(58861,3570,'mec_organizer_id','0'),(58862,3570,'mec_additional_organizer_ids','a:0:{}'),(58863,3569,'mec_location_id','0'),(58864,3569,'mec_additional_location_ids','a:0:{}'),(58865,3569,'mec_organizer_id','0'),(58866,3569,'mec_additional_organizer_ids','a:0:{}'),(58867,3567,'mec_location_id','0'),(58868,3567,'mec_additional_location_ids','a:0:{}'),(58869,3567,'mec_organizer_id','0'),(58870,3567,'mec_additional_organizer_ids','a:0:{}'),(58871,3566,'mec_location_id','0'),(58872,3566,'mec_additional_location_ids','a:0:{}'),(58873,3566,'mec_organizer_id','0'),(58874,3566,'mec_additional_organizer_ids','a:0:{}'),(58875,3565,'mec_location_id','0'),(58876,3565,'mec_additional_location_ids','a:0:{}'),(58877,3565,'mec_organizer_id','0'),(58878,3565,'mec_additional_organizer_ids','a:0:{}'),(58879,3563,'mec_location_id','0'),(58880,3563,'mec_additional_location_ids','a:0:{}'),(58881,3563,'mec_organizer_id','0'),(58882,3563,'mec_additional_organizer_ids','a:0:{}'),(58883,3561,'mec_location_id','0'),(58884,3561,'mec_additional_location_ids','a:0:{}'),(58885,3561,'mec_organizer_id','0'),(58886,3561,'mec_additional_organizer_ids','a:0:{}'),(58887,3557,'mec_location_id','0'),(58888,3557,'mec_additional_location_ids','a:0:{}'),(58889,3557,'mec_organizer_id','0'),(58890,3557,'mec_additional_organizer_ids','a:0:{}'),(58891,3555,'mec_location_id','0'),(58892,3555,'mec_additional_location_ids','a:0:{}'),(58893,3555,'mec_organizer_id','0'),(58894,3555,'mec_additional_organizer_ids','a:0:{}'),(58895,3554,'mec_location_id','0'),(58896,3554,'mec_additional_location_ids','a:0:{}'),(58897,3554,'mec_organizer_id','0'),(58898,3554,'mec_additional_organizer_ids','a:0:{}'),(58899,3553,'mec_location_id','0'),(58900,3553,'mec_additional_location_ids','a:0:{}'),(58901,3553,'mec_organizer_id','0'),(58902,3553,'mec_additional_organizer_ids','a:0:{}'),(58903,3551,'mec_location_id','0'),(58904,3551,'mec_additional_location_ids','a:0:{}'),(58905,3551,'mec_organizer_id','0'),(58906,3551,'mec_additional_organizer_ids','a:0:{}'),(58907,3550,'mec_location_id','0'),(58908,3550,'mec_additional_location_ids','a:0:{}'),(58909,3550,'mec_organizer_id','0'),(58910,3550,'mec_additional_organizer_ids','a:0:{}'),(58911,3549,'mec_location_id','0'),(58912,3549,'mec_additional_location_ids','a:0:{}'),(58913,3549,'mec_organizer_id','0'),(58914,3549,'mec_additional_organizer_ids','a:0:{}'),(58915,3548,'mec_location_id','0'),(58916,3548,'mec_additional_location_ids','a:0:{}'),(58917,3548,'mec_organizer_id','0'),(58918,3548,'mec_additional_organizer_ids','a:0:{}'),(58919,3547,'mec_location_id','0'),(58920,3547,'mec_additional_location_ids','a:0:{}'),(58921,3547,'mec_organizer_id','0'),(58922,3547,'mec_additional_organizer_ids','a:0:{}'),(58923,3546,'mec_location_id','0'),(58924,3546,'mec_additional_location_ids','a:0:{}'),(58925,3546,'mec_organizer_id','0'),(58926,3546,'mec_additional_organizer_ids','a:0:{}'),(58927,3544,'mec_location_id','0'),(58928,3544,'mec_additional_location_ids','a:0:{}'),(58929,3544,'mec_organizer_id','0'),(58930,3544,'mec_additional_organizer_ids','a:0:{}'),(58931,3543,'mec_location_id','0'),(58932,3543,'mec_additional_location_ids','a:0:{}'),(58933,3543,'mec_organizer_id','0'),(58934,3543,'mec_additional_organizer_ids','a:0:{}'),(58935,3542,'mec_location_id','0'),(58936,3542,'mec_additional_location_ids','a:0:{}'),(58937,3542,'mec_organizer_id','0'),(58938,3542,'mec_additional_organizer_ids','a:0:{}'),(58939,3541,'mec_location_id','0'),(58940,3541,'mec_additional_location_ids','a:0:{}'),(58941,3541,'mec_organizer_id','0'),(58942,3541,'mec_additional_organizer_ids','a:0:{}'),(58943,3540,'mec_location_id','0'),(58944,3540,'mec_additional_location_ids','a:0:{}'),(58945,3540,'mec_organizer_id','0'),(58946,3540,'mec_additional_organizer_ids','a:0:{}'),(58947,3538,'mec_location_id','0'),(58948,3538,'mec_additional_location_ids','a:0:{}'),(58949,3538,'mec_organizer_id','0'),(58950,3538,'mec_additional_organizer_ids','a:0:{}'),(58951,3537,'mec_location_id','0'),(58952,3537,'mec_additional_location_ids','a:0:{}'),(58953,3537,'mec_organizer_id','0'),(58954,3537,'mec_additional_organizer_ids','a:0:{}'),(58955,3536,'mec_location_id','0'),(58956,3536,'mec_additional_location_ids','a:0:{}'),(58957,3536,'mec_organizer_id','0'),(58958,3536,'mec_additional_organizer_ids','a:0:{}'),(58959,3535,'mec_location_id','0'),(58960,3535,'mec_additional_location_ids','a:0:{}'),(58961,3535,'mec_organizer_id','0'),(58962,3535,'mec_additional_organizer_ids','a:0:{}'),(58963,3533,'mec_location_id','0'),(58964,3533,'mec_additional_location_ids','a:0:{}'),(58965,3533,'mec_organizer_id','0'),(58966,3533,'mec_additional_organizer_ids','a:0:{}'),(58967,3532,'mec_location_id','0'),(58968,3532,'mec_additional_location_ids','a:0:{}'),(58969,3532,'mec_organizer_id','0'),(58970,3532,'mec_additional_organizer_ids','a:0:{}'),(58971,3531,'mec_location_id','0'),(58972,3531,'mec_additional_location_ids','a:0:{}'),(58973,3531,'mec_organizer_id','0'),(58974,3531,'mec_additional_organizer_ids','a:0:{}'),(58975,3530,'mec_location_id','0'),(58976,3530,'mec_additional_location_ids','a:0:{}'),(58977,3530,'mec_organizer_id','0'),(58978,3530,'mec_additional_organizer_ids','a:0:{}'),(58979,3528,'mec_location_id','0'),(58980,3528,'mec_additional_location_ids','a:0:{}'),(58981,3528,'mec_organizer_id','0'),(58982,3528,'mec_additional_organizer_ids','a:0:{}'),(58983,3526,'mec_location_id','0'),(58984,3526,'mec_additional_location_ids','a:0:{}'),(58985,3526,'mec_organizer_id','0'),(58986,3526,'mec_additional_organizer_ids','a:0:{}'),(58987,3525,'mec_location_id','0'),(58988,3525,'mec_additional_location_ids','a:0:{}'),(58989,3525,'mec_organizer_id','0'),(58990,3525,'mec_additional_organizer_ids','a:0:{}'),(58991,3522,'mec_location_id','0'),(58992,3522,'mec_additional_location_ids','a:0:{}'),(58993,3522,'mec_organizer_id','0'),(58994,3522,'mec_additional_organizer_ids','a:0:{}'),(59000,3752,'_wp_attached_file','2024/05/2023-Viognier-FINAL2.pdf'),(59001,3752,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:28:\"2023-Viognier-FINAL2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:174977;}s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"2023-Viognier-FINAL2-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14402;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"2023-Viognier-FINAL2-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97948;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"2023-Viognier-FINAL2-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6665;}}s:8:\"filesize\";i:266983;}'),(59002,3753,'_wp_attached_file','2024/05/2022-FrenchColombard-final2.pdf'),(59003,3753,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:35:\"2022-FrenchColombard-final2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124934;}s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"2022-FrenchColombard-final2-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10824;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"2022-FrenchColombard-final2-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70672;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"2022-FrenchColombard-final2-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5374;}}s:8:\"filesize\";i:251425;}'),(59006,3521,'mec_location_id','0'),(59007,3521,'mec_additional_location_ids','a:0:{}'),(59008,3521,'mec_organizer_id','0'),(59009,3521,'mec_additional_organizer_ids','a:0:{}'),(59010,3520,'mec_location_id','0'),(59011,3520,'mec_additional_location_ids','a:0:{}'),(59012,3520,'mec_organizer_id','0'),(59013,3520,'mec_additional_organizer_ids','a:0:{}'),(59014,3519,'mec_location_id','0'),(59015,3519,'mec_additional_location_ids','a:0:{}'),(59016,3519,'mec_organizer_id','0'),(59017,3519,'mec_additional_organizer_ids','a:0:{}'),(59018,3516,'mec_location_id','0'),(59019,3516,'mec_additional_location_ids','a:0:{}'),(59020,3516,'mec_organizer_id','0'),(59021,3516,'mec_additional_organizer_ids','a:0:{}'),(59022,3514,'mec_location_id','0'),(59023,3514,'mec_additional_location_ids','a:0:{}'),(59024,3514,'mec_organizer_id','0'),(59025,3514,'mec_additional_organizer_ids','a:0:{}'),(59026,3513,'mec_location_id','0'),(59027,3513,'mec_additional_location_ids','a:0:{}'),(59028,3513,'mec_organizer_id','0'),(59029,3513,'mec_additional_organizer_ids','a:0:{}'),(59030,3511,'mec_location_id','0'),(59031,3511,'mec_additional_location_ids','a:0:{}'),(59032,3511,'mec_organizer_id','0'),(59033,3511,'mec_additional_organizer_ids','a:0:{}'),(59034,3508,'mec_location_id','0'),(59035,3508,'mec_additional_location_ids','a:0:{}'),(59036,3508,'mec_organizer_id','0'),(59037,3508,'mec_additional_organizer_ids','a:0:{}'),(59038,3507,'mec_location_id','0'),(59039,3507,'mec_additional_location_ids','a:0:{}'),(59040,3507,'mec_organizer_id','0'),(59041,3507,'mec_additional_organizer_ids','a:0:{}'),(59042,3506,'mec_location_id','0'),(59043,3506,'mec_additional_location_ids','a:0:{}'),(59044,3506,'mec_organizer_id','0'),(59045,3506,'mec_additional_organizer_ids','a:0:{}'),(59046,3505,'mec_location_id','0'),(59047,3505,'mec_additional_location_ids','a:0:{}'),(59048,3505,'mec_organizer_id','0'),(59049,3505,'mec_additional_organizer_ids','a:0:{}'),(59050,3504,'mec_location_id','0'),(59051,3504,'mec_additional_location_ids','a:0:{}'),(59052,3504,'mec_organizer_id','0'),(59053,3504,'mec_additional_organizer_ids','a:0:{}'),(59054,3503,'mec_location_id','0'),(59055,3503,'mec_additional_location_ids','a:0:{}'),(59056,3503,'mec_organizer_id','0'),(59057,3503,'mec_additional_organizer_ids','a:0:{}'),(59058,3501,'mec_location_id','0'),(59059,3501,'mec_additional_location_ids','a:0:{}'),(59060,3501,'mec_organizer_id','0'),(59061,3501,'mec_additional_organizer_ids','a:0:{}'),(59062,3499,'mec_location_id','0'),(59063,3499,'mec_additional_location_ids','a:0:{}'),(59064,3499,'mec_organizer_id','0'),(59065,3499,'mec_additional_organizer_ids','a:0:{}'),(59066,3497,'mec_location_id','0'),(59067,3497,'mec_additional_location_ids','a:0:{}'),(59068,3497,'mec_organizer_id','0'),(59069,3497,'mec_additional_organizer_ids','a:0:{}'),(59070,3494,'mec_location_id','0'),(59071,3494,'mec_additional_location_ids','a:0:{}'),(59072,3494,'mec_organizer_id','0'),(59073,3494,'mec_additional_organizer_ids','a:0:{}'),(59074,3493,'mec_location_id','0'),(59075,3493,'mec_additional_location_ids','a:0:{}'),(59076,3493,'mec_organizer_id','0'),(59077,3493,'mec_additional_organizer_ids','a:0:{}'),(59078,3492,'mec_location_id','0'),(59079,3492,'mec_additional_location_ids','a:0:{}'),(59080,3492,'mec_organizer_id','0'),(59081,3492,'mec_additional_organizer_ids','a:0:{}'),(59082,3491,'mec_location_id','0'),(59083,3491,'mec_additional_location_ids','a:0:{}'),(59084,3491,'mec_organizer_id','0'),(59085,3491,'mec_additional_organizer_ids','a:0:{}'),(59086,3490,'mec_location_id','0'),(59087,3490,'mec_additional_location_ids','a:0:{}'),(59088,3490,'mec_organizer_id','0'),(59089,3490,'mec_additional_organizer_ids','a:0:{}'),(59090,3488,'mec_location_id','0'),(59091,3488,'mec_additional_location_ids','a:0:{}'),(59092,3488,'mec_organizer_id','0'),(59093,3488,'mec_additional_organizer_ids','a:0:{}'),(59094,3484,'mec_location_id','0'),(59095,3484,'mec_additional_location_ids','a:0:{}'),(59096,3484,'mec_organizer_id','0'),(59097,3484,'mec_additional_organizer_ids','a:0:{}'),(59098,3482,'mec_location_id','0'),(59099,3482,'mec_additional_location_ids','a:0:{}'),(59100,3482,'mec_organizer_id','0'),(59101,3482,'mec_additional_organizer_ids','a:0:{}'),(59102,3481,'mec_location_id','0'),(59103,3481,'mec_additional_location_ids','a:0:{}'),(59104,3481,'mec_organizer_id','0'),(59105,3481,'mec_additional_organizer_ids','a:0:{}'),(59106,3480,'mec_location_id','0'),(59107,3480,'mec_additional_location_ids','a:0:{}'),(59108,3480,'mec_organizer_id','0'),(59109,3480,'mec_additional_organizer_ids','a:0:{}'),(59110,3479,'mec_location_id','0'),(59111,3479,'mec_additional_location_ids','a:0:{}'),(59112,3479,'mec_organizer_id','0'),(59113,3479,'mec_additional_organizer_ids','a:0:{}'),(59114,3477,'mec_location_id','0'),(59115,3477,'mec_additional_location_ids','a:0:{}'),(59116,3477,'mec_organizer_id','0'),(59117,3477,'mec_additional_organizer_ids','a:0:{}'),(59118,3476,'mec_location_id','0'),(59119,3476,'mec_additional_location_ids','a:0:{}'),(59120,3476,'mec_organizer_id','0'),(59121,3476,'mec_additional_organizer_ids','a:0:{}'),(59122,3475,'mec_location_id','0'),(59123,3475,'mec_additional_location_ids','a:0:{}'),(59124,3475,'mec_organizer_id','0'),(59125,3475,'mec_additional_organizer_ids','a:0:{}'),(59126,3474,'mec_location_id','0'),(59127,3474,'mec_additional_location_ids','a:0:{}'),(59128,3474,'mec_organizer_id','0'),(59129,3474,'mec_additional_organizer_ids','a:0:{}'),(59130,3473,'mec_location_id','0'),(59131,3473,'mec_additional_location_ids','a:0:{}'),(59132,3473,'mec_organizer_id','0'),(59133,3473,'mec_additional_organizer_ids','a:0:{}'),(59134,3472,'mec_location_id','0'),(59135,3472,'mec_additional_location_ids','a:0:{}'),(59136,3472,'mec_organizer_id','0'),(59137,3472,'mec_additional_organizer_ids','a:0:{}'),(59138,3469,'mec_location_id','0'),(59139,3469,'mec_additional_location_ids','a:0:{}'),(59140,3469,'mec_organizer_id','0'),(59141,3469,'mec_additional_organizer_ids','a:0:{}'),(59142,3468,'mec_location_id','0'),(59143,3468,'mec_additional_location_ids','a:0:{}'),(59144,3468,'mec_organizer_id','0'),(59145,3468,'mec_additional_organizer_ids','a:0:{}'),(59146,3467,'mec_location_id','0'),(59147,3467,'mec_additional_location_ids','a:0:{}'),(59148,3467,'mec_organizer_id','0'),(59149,3467,'mec_additional_organizer_ids','a:0:{}'),(59150,3466,'mec_location_id','0'),(59151,3466,'mec_additional_location_ids','a:0:{}'),(59152,3466,'mec_organizer_id','0'),(59153,3466,'mec_additional_organizer_ids','a:0:{}'),(59154,3465,'mec_location_id','0'),(59155,3465,'mec_additional_location_ids','a:0:{}'),(59156,3465,'mec_organizer_id','0'),(59157,3465,'mec_additional_organizer_ids','a:0:{}'),(59158,3464,'mec_location_id','0'),(59159,3464,'mec_additional_location_ids','a:0:{}'),(59160,3464,'mec_organizer_id','0'),(59161,3464,'mec_additional_organizer_ids','a:0:{}'),(59162,3460,'mec_location_id','0'),(59163,3460,'mec_additional_location_ids','a:0:{}'),(59164,3460,'mec_organizer_id','0'),(59165,3460,'mec_additional_organizer_ids','a:0:{}'),(59166,3458,'mec_location_id','0'),(59167,3458,'mec_additional_location_ids','a:0:{}'),(59168,3458,'mec_organizer_id','0'),(59169,3458,'mec_additional_organizer_ids','a:0:{}'),(59170,3457,'mec_location_id','0'),(59171,3457,'mec_additional_location_ids','a:0:{}'),(59172,3457,'mec_organizer_id','0'),(59173,3457,'mec_additional_organizer_ids','a:0:{}'),(59174,3456,'mec_location_id','0'),(59175,3456,'mec_additional_location_ids','a:0:{}'),(59176,3456,'mec_organizer_id','0'),(59177,3456,'mec_additional_organizer_ids','a:0:{}'),(59178,3454,'mec_location_id','0'),(59179,3454,'mec_additional_location_ids','a:0:{}'),(59180,3454,'mec_organizer_id','0'),(59181,3454,'mec_additional_organizer_ids','a:0:{}'),(59182,3453,'mec_location_id','0'),(59183,3453,'mec_additional_location_ids','a:0:{}'),(59184,3453,'mec_organizer_id','0'),(59185,3453,'mec_additional_organizer_ids','a:0:{}'),(59186,3452,'mec_location_id','0'),(59187,3452,'mec_additional_location_ids','a:0:{}'),(59188,3452,'mec_organizer_id','0'),(59189,3452,'mec_additional_organizer_ids','a:0:{}'),(59190,3451,'mec_location_id','0'),(59191,3451,'mec_additional_location_ids','a:0:{}'),(59192,3451,'mec_organizer_id','0'),(59193,3451,'mec_additional_organizer_ids','a:0:{}'),(59194,3445,'mec_location_id','0'),(59195,3445,'mec_additional_location_ids','a:0:{}'),(59196,3445,'mec_organizer_id','0'),(59197,3445,'mec_additional_organizer_ids','a:0:{}'),(59198,3755,'web_id','c407b8ee-a88f-4f8e-a991-aecf4cf12487'),(59199,3755,'slug','vineyard-tour-duplicate'),(59200,3755,'title','Platypus Vineyard Tour/Tasting'),(59201,3755,'type','Tasting'),(59202,3755,'image',NULL),(59203,3755,'teaser',NULL),(59204,3755,'content','<p>Meadowcroft Vineyard Tour</p>'),(59205,3755,'subtitle',NULL),(59206,3755,'price','2500'),(59207,3755,'web_status','Not Available'),(59208,3755,'admin_status','Available'),(59209,3755,'collections','a:0:{}'),(59210,3755,'primary_collection',''),(59211,3755,'vendor','Meadowcroft Wines'),(59212,3756,'web_id','bc11ceae-57bc-4417-8478-550579c99b81'),(59213,3756,'slug','2022-sangiovese-speedy-creek-vineyard-duplicate'),(59214,3756,'title','2022 Sangiovese, Speedy Creek Vineyard'),(59215,3756,'type','Wine'),(59216,3756,'image','https://images.commerce7.com/meadowcroft-wines/images/original/sangiovese_speedycreekvineyard_2022-1719520431988.png'),(59217,3756,'teaser',NULL),(59218,3756,'content','<p class=\"p1\"><strong><span class=\"s1\" style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">TASTING NOTES </span></strong></p>\n<p class=\"p1\"><span class=\"s1\" style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">The bucolic Knight&rsquo;s Valley AVA is nestled next to the eastern edges of Alexander Valley and Chalk Hill regions. &nbsp;The 2022 Sangiovese from the Speedy Creek Vineyard is an excellent representation of this noble varietal from Tuscany. &nbsp;On the nose, aromas of ripe cherry, plum, and pastry with notes of cigar box flow from the glass. &nbsp;Flavors of boysenberry, black currant, vanilla, and black pepper please the palate. &nbsp;This wine is round and satisfying offering a lively mouthfeel and a long satisfying finish. Drink now through 2030. &nbsp; </span></p>\n<p class=\"p1\"><strong><span class=\"s1\" style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">SUGGESTED FOOD PAIRING </span></strong></p>\n<p class=\"p1\"><span class=\"s1\" style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">The natural acidity of this varietal lends itself to hearty classic dishes like wood fired pizzas or pasta with rich tomato sauces. &nbsp;Mushrooms have a particular affinity for this varietal and a creamy mushroom risotto will make this wine shine at the dinner table.&nbsp;APPELLATION: </span><span style=\"font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen, Ubuntu, Cantarell, \'Open Sans\', \'Helvetica Neue\', sans-serif;\">Knight&rsquo;s Valley</span></p>\n<p class=\"p1\"><span class=\"s1\"><strong>VARIETAL</strong>:</span> Sangiovese</p>\n<p class=\"p1\"><strong><span class=\"s1\">HARVESTED:</span></strong> September 2022</p>\n<p class=\"p1\"><strong><span class=\"s1\">BOTTLED:</span></strong> May 2024</p>\n<p class=\"p2\"><strong><span class=\"s2\">PRODUCTION:</span></strong><span class=\"s3\"> 142 cases</span></p>\n<p class=\"p2\"><strong><span class=\"s2\">ALCOHOL:</span></strong><span class=\"s3\"> 14.5%</span></p>\n<p class=\"p2\"><strong><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/06/2022-sangiovesetechsheet-FINAL-w-scores.pdf\"><span class=\"s3\">PDF Wine Notes</span></a></strong></p>\n<p class=\"p1\">&nbsp;</p>\n<p class=\"p1\">&nbsp;</p>'),(59219,3756,'subtitle','Knights Valley, Sonoma County'),(59220,3756,'price','5500'),(59221,3756,'web_status','Available'),(59222,3756,'admin_status','Available'),(59223,3756,'varietal','Sangiovese'),(59224,3756,'appellation','Knights Valley'),(59225,3756,'vintage','2022'),(59226,3756,'meta_data_review-text','<div>GOLD |&nbsp;<a href=\"https://winejudging.com/medal_winners_2022/awards_by_winery.php\"\" title=\"\"\"\" target=\"\"\"\">2022 San Francisco Chronicle Wine Judging Competition</a>&nbsp;(2019 Vintage)</div><div>91 pts GOLD |&nbsp;&nbsp;<a href=\"\"https://www.criticschallenge.com/\"\" title=\"\"\"\" target=\"\"\"\">Critics Challenge International Wine Competition</a>&nbsp;<span style=\"\"font-style: italic;\"\">(2019 vintage)</span></div><div><p class=\"\"MsoNormal\"\" style=\"\"margin: 0in;\"\">GOLD |&nbsp; <a href=\"\"http://http://harvestfair.org/professional-wine-competition/\"\" title=\"\"\"\" target=\"\"\"\">Sonoma County Harvest Fair Wine Competition</a> (2019 vintage)</p><p class=\"\"MsoNormal\"\" style=\"\"margin: 0in;\"\"><span style=\"\"font-size: inherit;\"\">92 pts GOLD |&nbsp; <a href=\"\"http://https://sunsetcompetitions.com/sunset-international-wine-competition/\"\" title=\"\"\"\" target=\"\"\"\">Sunset International Wine Competition</a> (2018 vintage)</span><br></p></div>\"'),(59227,3756,'meta_data_feature-text','Knights Valley, Sonoma County'),(59228,3756,'meta_data_wine-notes','$44.00'),(59229,3756,'meta_data_technical-notes','Appellation: Knights Valley, Sonoma County<br><span style=\"line-height: 1.5;\"\">Varietal: Sangiovese<br></span><span style=\"\"line-height: 1.5;\"\">Harvested: September 2020</span><span style=\"\"line-height: 1.5;\"\"><br></span><span style=\"\"line-height: 1.5;\"\">Production: 209 cases<br></span><span style=\"\"line-height: 1.5;\"\">Alcohol: 14.79%</span>\"'),(59230,3756,'collections','a:0:{}'),(59231,3756,'primary_collection',''),(59252,3756,'_wp_old_slug','2021-sangiovese-speedy-creek-vineyard-duplicate'),(59253,3758,'web_id','da273683-d13b-46c5-b269-ca7a5521d859'),(59254,3758,'slug','2021-cabernet-sauvignon-mt-veeder-estate-duplicate'),(59255,3758,'title','2021 Cabernet Sauvignon, Mt. Veeder Estate'),(59256,3758,'type','Wine'),(59257,3758,'image','https://images.commerce7.com/meadowcroft-wines/images/original/2021-mtveeder-1717442085091.png'),(59258,3758,'teaser',NULL),(59259,3758,'content','<p><strong>TASTING NOTES:</strong></p>\n<p>Sourced from high atop the rugged Mt. Veeder AVA, vineyard,&nbsp;this intense and powerful Cabernet is an extraordinary example&nbsp;of the potential that comes from fruit cultivated at a high&nbsp;elevation on volcanic soils. Secondary notes of vanilla and&nbsp;blackberry pie, round out this full-bodied mountain Cabernet<br />Sauvignon. This wine will be best enjoyed now through 2035.</p>\n<p><strong>FOOD PAIRING:</strong></p>\n<p>We recommend this bold, robust Cabernet with the traditional&nbsp;choice of steak, burgers, or slow-braised beef dishes. Anything&nbsp;with a bit of spice or charring will complement the rich fruit&nbsp;flavors and tannins. Full-flavored mushrooms or foraged wild&nbsp;mushrooms, have an intense umami flavor that marries well with&nbsp;the intensity of this wine.</p>\n<p><strong>TECHNICAL DATA:</strong></p>\n<p>Appelation: Mount Veeder, Napa Valley<br />Varietal: Cabernet Sauvignon<br />Harvested: September 2021<br />Bottled: May 2024<br />Production: 221 Cases</p>\n<p><strong><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/06/2021-MtVeeder-Cabernet-TechSheet-FINAL.pdf\">PDF Wine Notes</a></strong></p>'),(59260,3758,'subtitle','Napa Valley'),(59261,3758,'price','13500'),(59262,3758,'web_status','Not Available'),(59263,3758,'admin_status','Available'),(59264,3758,'varietal','Cabernet Sauvignon'),(59265,3758,'appellation','Mt. Veeder'),(59266,3758,'vintage','2021'),(59267,3758,'meta_data_review-text','<div>98 pts GOLD |&nbsp;&nbsp;<a title=\"\" href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\" target=\"\">Sunset Wine Competition</a>&nbsp; |&nbsp; 2016 Mt Veeder Cabernet Sauvignon</div>\n<div>94 pts | &nbsp;<a title=\"\" target=\"\">Wine Enthusiast</a>&nbsp;&nbsp;| &nbsp;2005 Mt Veeder Cabernet Sauvignon</div>\n<div>91 pts | &nbsp;<a title=\"\" target=\"\">Wine Enthusiast</a>&nbsp;&nbsp;| &nbsp;2008 Mt Veeder Cabernet Sauvignon<br />91 pts | &nbsp;<a title=\"\" target=\"\">James Suckling</a>&nbsp;&nbsp;| &nbsp;2013 Mt Veeder Cabernet Sauvignon<br />93 pts |&nbsp;&nbsp;<a title=\"\" target=\"\">Sommelier Company</a>&nbsp;|&nbsp;&nbsp;2016 Mt Veeder Cabernet Sauvignon</div>\n<p>\"</p>'),(59268,3758,'meta_data_feature-text','<p>Mt. Veeder, Napa Valley</p>'),(59269,3758,'meta_data_wine-notes','<p>$211.20</p>'),(59270,3758,'meta_data_technical-notes','<div>Appellation:&nbsp; Mt. Veeder, Napa Valley</div>\n<div>Varietal:&nbsp; Cabernet Sauvignon</div>\n<div>Harvested:&nbsp; September 2021</div>\n<div>Bottle Date:&nbsp; May 2024</div>\n<div>Production:&nbsp; 200 cases</div>'),(59271,3758,'collections','a:0:{}'),(59272,3758,'primary_collection',''),(59273,3758,'_wp_old_slug','2020-cabernet-sauvignon-mt-veeder-estate-duplicate'),(59274,3759,'web_id','eee76a8f-e7b4-4d59-9ed9-89204b28235f'),(59275,3759,'slug','2021-cabernet-sauvignon-mt-veeder-estate-1-5l-duplicate'),(59276,3759,'title','2021 Cabernet Sauvignon, Mt. Veeder Estate 1.5L'),(59277,3759,'type','Wine'),(59278,3759,'image','https://images.commerce7.com/meadowcroft-wines/images/original/mc_veeeder_dh-1663716091832.png'),(59279,3759,'teaser',NULL),(59280,3759,'content','<p style=\"font-weight: 400;\"><strong>LARGE FORMAT - ALMOST SOLD OUT!</strong></p>\n<p style=\"font-weight: 400;\"><strong>TASTING NOTES: </strong><span id=\"page64R_mcid4\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">Sourced from high atop the rugged Mt. Veeder AVA, vineyard,&nbsp;</span></span><span id=\"page64R_mcid5\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">this intense and powerful Cabernet is an extraordinary example&nbsp;</span></span><span id=\"page64R_mcid6\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">of the potential that comes from fruit cultivated at a high&nbsp;</span></span><span id=\"page64R_mcid7\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">elevation on volcanic soils. Secondary notes of vanilla and&nbsp;</span></span><span id=\"page64R_mcid8\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">blackberry pie, round out this full-bodied mountain Cabernet</span></span><span id=\"page64R_mcid9\" class=\"markedContent\"><br role=\"presentation\" /><span dir=\"ltr\" role=\"presentation\">Sauvignon. This wine will be best enjoyed now through 2035.</span></span></p>\n<p style=\"font-weight: 400;\"><strong>FOOD PAIRING: </strong><span id=\"page64R_mcid11\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">We recommend this bold, robust Cabernet with the traditional&nbsp;</span></span><span id=\"page64R_mcid12\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">choice of steak, burgers, or slow-braised beef dishes. Anything&nbsp;</span></span><span id=\"page64R_mcid13\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">with a bit of spice or charring will complement the rich fruit&nbsp;</span></span><span id=\"page64R_mcid14\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">flavors and tannins. Full-flavored mushrooms or foraged wild&nbsp;</span></span><span id=\"page64R_mcid15\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">mushrooms, have an intense umami flavor that marries well with&nbsp;</span></span><span id=\"page64R_mcid16\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">the intensity of this wine.</span></span></p>\n<p style=\"font-weight: 400;\"><strong><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">TECHNICAL DATA:</span></span></strong></p>\n<p style=\"font-weight: 400;\"><span class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\"><span id=\"page64R_mcid19\" class=\"markedContent\">Appelation:</span><span id=\"page64R_mcid20\" class=\"markedContent\"> Mount Veeder, Napa Valley</span><span id=\"page64R_mcid21\" class=\"markedContent\"><br role=\"presentation\" />Varietal:</span><span id=\"page64R_mcid22\" class=\"markedContent\"> Cabernet Sauvignon</span><span id=\"page64R_mcid23\" class=\"markedContent\"><br role=\"presentation\" />Harvested:</span><span id=\"page64R_mcid24\" class=\"markedContent\"> September, 2021</span><span id=\"page64R_mcid25\" class=\"markedContent\"><br role=\"presentation\" />Bottled:</span><span id=\"page64R_mcid26\" class=\"markedContent\"> May 2024</span><span id=\"page64R_mcid27\" class=\"markedContent\"><br role=\"presentation\" />Production:</span><span id=\"page64R_mcid28\" class=\"markedContent\"> 6 Cases</span></span></span></p>'),(59281,3759,'subtitle','Napa Valley'),(59282,3759,'price','26400'),(59283,3759,'web_status','Not Available'),(59284,3759,'admin_status','Available'),(59285,3759,'varietal','Cabernet Sauvignon'),(59286,3759,'appellation','Mt. Veeder'),(59287,3759,'vintage','2021'),(59288,3759,'meta_data_review-text','<div>98 pts GOLD |&nbsp;&nbsp;<a title=\"\" href=\"https://sunsetcompetitions.com/sunset-international-wine-competition/\" target=\"\">Sunset Wine Competition</a>&nbsp; |&nbsp; 2016 Mt Veeder Cabernet Sauvignon</div>\n<div>94 pts | &nbsp;<a title=\"\" target=\"\">Wine Enthusiast</a>&nbsp;&nbsp;| &nbsp;<span>2005 Mt Veeder Cabernet Sauvignon</span></div>\n<div>91 pts | &nbsp;<a title=\"\" target=\"\">Wine Enthusiast</a>&nbsp;&nbsp;| &nbsp;<span>2008 Mt Veeder Cabernet Sauvignon<br /></span>91 pts | &nbsp;<a title=\"\" target=\"\">James Suckling</a>&nbsp;&nbsp;| &nbsp;<span>2013 Mt Veeder Cabernet Sauvignon</span><br />93 pts |&nbsp;&nbsp;<a title=\"\" target=\"\">Sommelier Company</a>&nbsp;|&nbsp;&nbsp;<span>2016 Mt Veeder Cabernet Sauvignon</span></div>\n<p>\"</p>'),(59289,3759,'meta_data_feature-text','<p>Mt. Veeder, Napa Valley</p>'),(59290,3759,'meta_data_wine-notes','<p>$211.20</p>'),(59291,3759,'meta_data_technical-notes','<p>&lt;p class=\"MsoNormal\"\" style=\"\"margin: 0in; font-size: 12pt; font-family: Calibri</p>'),(59292,3759,'collections','a:0:{}'),(59293,3759,'primary_collection',''),(59294,3759,'_wp_old_slug','2020-cabernet-sauvignon-mt-veeder-estate-1-5l-duplicate'),(59295,3760,'web_id','411f4347-0245-46b3-87fe-30d391832f6e'),(59296,3760,'slug','2021-cabernet-sauvignon-atlas-peak'),(59297,3760,'title','2021 Cabernet Sauvignon, Atlas Peak, Napa Valley'),(59298,3760,'type','Wine'),(59299,3760,'image','https://images.commerce7.com/meadowcroft-wines/images/original/sonomabottle_meadowcroft_cabernetsauvignon_atlaspeak_2021-1-1719520026054.png'),(59300,3760,'teaser',NULL),(59301,3760,'content','<p class=\"p4\">Atlas Peak has a long history in the Napa Valley with vineyard plantings dating back to 1870. &nbsp;Located east of Rutherford and Yountville, this AVA sits at 2063&rsquo; elevation. &nbsp;Low rainfall and porous volcanic soils make Atlas Peak a distinct and unique growing region.</p>\n<p class=\"p4\"><strong>TASTING NOTES </strong></p>\n<p class=\"p4\">The Atlas Peak Cabernet is showy and ripe. &nbsp;The glass fills with aromas of dark black cherry, black currant, blueberry with notes of herbs and green pepper. &nbsp;On the palate, rich flavors of dark cherry and blueberry mingle with layers of cocoa, coffee, white pepper and black olive. &nbsp;Drink 2025 thorugh 2040. &nbsp; &nbsp;</p>\n<p class=\"p4\"><strong>SUGGESTED FOOD PAIRING </strong></p>\n<p class=\"p4\">The rich, dark fruit flavors with savory notes make this wine an exquisite choice for hearty dishes. Try it paired with a classic steak au poivre or grilled portobello mushroom. Herbs like fresh rosemary or thyme will beautifully enhance the wine&rsquo;s profile. For a timeless pairing, consider grilled marinated rack of lamb; it&rsquo;s sure to elevate the wine and the food. This wine&rsquo;s robust characteristics also complement flavorful cheeses such as aged Gorgonzola, sharp cheddar, or Parmigiano Reggiano, making it versatile for any setting.</p>\n<p class=\"p4\"><strong>TECHNICAL INFORMATION</strong></p>\n<p class=\"p2\">APPELLATION: Atlas Peak, Napa Valley</p>\n<p class=\"p2\">VARIETAL: Cabernet Sauvignon</p>\n<p class=\"p2\">HARVESTED: September 2021</p>\n<p class=\"p2\">BOTTLED: May 2024</p>\n<p class=\"p2\">PRODUCTION: 39 cases</p>\n<p class=\"p2\">ALCOHOL: 14.5%</p>\n<p class=\"p2\">pH: 3.60</p>\n<p class=\"p2\"><strong><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/06/2021-AtlasPeak-Cabernet-TechSheet-FINAL.pdf\">PDF Wine Notes</a></strong></p>'),(59302,3760,'subtitle','Atlas Peak'),(59303,3760,'price','13500'),(59304,3760,'web_status','Not Available'),(59305,3760,'admin_status','Available'),(59306,3760,'varietal','Cabernet Sauvignon'),(59307,3760,'appellation','Atlas Peak'),(59308,3760,'vintage','2021'),(59309,3760,'meta_data_review-text','<div>90 pt |&nbsp; James Suckling&nbsp; |&nbsp; 2016 vintage</div>\n<div><span style=\"font-style: italic;\">A prototypical, modern Napa red that has the big cassis character of fully ripe cabernet sauvignon, moderate tannins that are already well integrated and nice freshness at the finish.&nbsp; Makes you want to order or cook some Osso Bucco.&nbsp; &nbsp;</span></div>\n<div>&nbsp;</div>\n<p>94 pts | &nbsp;Chris Sawyer, Certified Sommelier&nbsp; |&nbsp; 2014 vintage</p>\n<div><span>&nbsp;On the palate, the generous flavors of black raspberry, dark cherry, cassis, ripe currants, cinnamon, hickory spice and dark chocolate truffle are complemented with a harmonious mixture of smooth, silky texture, chewy tannins, firm structure, and a lingering finish. Overall, an extremely well-crafted wine that is not only approachable when young, but also worthy of cellaring for more 10-15 years.</span></div>\n<p>\"</p>'),(59310,3760,'meta_data_wine-notes','<p>$52.00</p>'),(59311,3760,'meta_data_technical-notes','<div>Appellation: &nbsp;Napa Valley<br />Varietal: &nbsp;Cabernet Sauvignon<br />Harvested:&nbsp; September 2020<br />Bottle Date:&nbsp; March 2022<br />Production: 578 cases</div>'),(59312,3760,'collections','a:0:{}'),(59313,3760,'primary_collection',''),(59314,3760,'_wp_old_slug','2021-cabernet-sauvignon-howell-mountain-duplicate1'),(59317,3762,'_wp_attached_file','2024/05/2021-sangiovese-techsheet-final2.pdf'),(59318,3762,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:40:\"2021-sangiovese-techsheet-final2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:190023;}s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"2021-sangiovese-techsheet-final2-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14613;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"2021-sangiovese-techsheet-final2-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105237;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"2021-sangiovese-techsheet-final2-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6717;}}s:8:\"filesize\";i:284312;}'),(59319,3763,'_wp_attached_file','2024/05/2020-Zinfandel-SpeedyCreek-DRAFT.pdf'),(59320,3763,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:40:\"2020-Zinfandel-SpeedyCreek-DRAFT-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:181857;}s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"2020-Zinfandel-SpeedyCreek-DRAFT-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14005;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"2020-Zinfandel-SpeedyCreek-DRAFT-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96440;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"2020-Zinfandel-SpeedyCreek-DRAFT-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6600;}}s:8:\"filesize\";i:283362;}'),(59321,3764,'_wp_attached_file','2024/05/2022-Pinot-Noir-Son-Coast-Tech-Sheet-DRAFT-1.pdf'),(59322,3764,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:52:\"2022-Pinot-Noir-Son-Coast-Tech-Sheet-DRAFT-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177643;}s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"2022-Pinot-Noir-Son-Coast-Tech-Sheet-DRAFT-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14029;}s:5:\"large\";a:5:{s:4:\"file\";s:61:\"2022-Pinot-Noir-Son-Coast-Tech-Sheet-DRAFT-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98469;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"2022-Pinot-Noir-Son-Coast-Tech-Sheet-DRAFT-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6561;}}s:8:\"filesize\";i:200782;}'),(59323,3765,'_wp_attached_file','2024/05/2022-TheMagi-4.png'),(59324,3765,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1472;s:6:\"height\";i:5352;s:4:\"file\";s:26:\"2024/05/2022-TheMagi-4.png\";s:8:\"filesize\";i:7251404;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"2022-TheMagi-4-83x300.png\";s:5:\"width\";i:83;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30632;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"2022-TheMagi-4-282x1024.png\";s:5:\"width\";i:282;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:240750;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"2022-TheMagi-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33240;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"2022-TheMagi-4-768x2792.png\";s:5:\"width\";i:768;s:6:\"height\";i:2792;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1425616;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:26:\"2022-TheMagi-4-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:105700;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:26:\"2022-TheMagi-4-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:253426;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:26:\"2022-TheMagi-4-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:165817;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:26:\"2022-TheMagi-4-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:115266;}s:8:\"tileview\";a:5:{s:4:\"file\";s:26:\"2022-TheMagi-4-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133722;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"2022-TheMagi-4-422x1536.png\";s:5:\"width\";i:422;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:487285;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:27:\"2022-TheMagi-4-563x2048.png\";s:5:\"width\";i:563;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:811155;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:28:\"2022-TheMagi-4-1200x4363.png\";s:5:\"width\";i:1200;s:6:\"height\";i:4363;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3260385;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(59325,3766,'_wp_attached_file','2024/05/2022-Wyldvin-CabSauv-1.png'),(59326,3766,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1492;s:6:\"height\";i:5299;s:4:\"file\";s:34:\"2024/05/2022-Wyldvin-CabSauv-1.png\";s:8:\"filesize\";i:6281190;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"2022-Wyldvin-CabSauv-1-84x300.png\";s:5:\"width\";i:84;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20006;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"2022-Wyldvin-CabSauv-1-288x1024.png\";s:5:\"width\";i:288;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:202549;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"2022-Wyldvin-CabSauv-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22153;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"2022-Wyldvin-CabSauv-1-768x2728.png\";s:5:\"width\";i:768;s:6:\"height\";i:2728;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1428500;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:34:\"2022-Wyldvin-CabSauv-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:92286;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:34:\"2022-Wyldvin-CabSauv-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:265276;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:34:\"2022-Wyldvin-CabSauv-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:183441;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:34:\"2022-Wyldvin-CabSauv-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122085;}s:8:\"tileview\";a:5:{s:4:\"file\";s:34:\"2022-Wyldvin-CabSauv-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:116242;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"2022-Wyldvin-CabSauv-1-432x1536.png\";s:5:\"width\";i:432;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:457961;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"2022-Wyldvin-CabSauv-1-577x2048.png\";s:5:\"width\";i:577;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:808501;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:36:\"2022-Wyldvin-CabSauv-1-1200x4262.png\";s:5:\"width\";i:1200;s:6:\"height\";i:4262;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3328055;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(59327,3767,'_wp_attached_file','2024/05/2023-Viognier-Wyldvin-5.png'),(59328,3767,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1424;s:6:\"height\";i:5184;s:4:\"file\";s:35:\"2024/05/2023-Viognier-Wyldvin-5.png\";s:8:\"filesize\";i:8282185;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"2023-Viognier-Wyldvin-5-82x300.png\";s:5:\"width\";i:82;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24546;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"2023-Viognier-Wyldvin-5-281x1024.png\";s:5:\"width\";i:281;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:222712;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"2023-Viognier-Wyldvin-5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17499;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"2023-Viognier-Wyldvin-5-768x2796.png\";s:5:\"width\";i:768;s:6:\"height\";i:2796;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1623241;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:35:\"2023-Viognier-Wyldvin-5-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59169;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:35:\"2023-Viognier-Wyldvin-5-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:158720;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:35:\"2023-Viognier-Wyldvin-5-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:94991;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:35:\"2023-Viognier-Wyldvin-5-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63707;}s:8:\"tileview\";a:5:{s:4:\"file\";s:35:\"2023-Viognier-Wyldvin-5-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85308;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"2023-Viognier-Wyldvin-5-422x1536.png\";s:5:\"width\";i:422;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:493019;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:36:\"2023-Viognier-Wyldvin-5-563x2048.png\";s:5:\"width\";i:563;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:871108;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:37:\"2023-Viognier-Wyldvin-5-1200x4369.png\";s:5:\"width\";i:1200;s:6:\"height\";i:4369;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3883880;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(59329,3768,'_wp_attached_file','2024/05/PinotNoir-NoVintage-NapaCarneros.png'),(59330,3768,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:607;s:6:\"height\";i:2048;s:4:\"file\";s:44:\"2024/05/PinotNoir-NoVintage-NapaCarneros.png\";s:8:\"filesize\";i:1239868;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"PinotNoir-NoVintage-NapaCarneros-89x300.png\";s:5:\"width\";i:89;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24231;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"PinotNoir-NoVintage-NapaCarneros-304x1024.png\";s:5:\"width\";i:304;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:243892;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"PinotNoir-NoVintage-NapaCarneros-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14161;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:44:\"PinotNoir-NoVintage-NapaCarneros-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53370;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:44:\"PinotNoir-NoVintage-NapaCarneros-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157521;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:44:\"PinotNoir-NoVintage-NapaCarneros-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90169;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:44:\"PinotNoir-NoVintage-NapaCarneros-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56788;}s:8:\"tileview\";a:5:{s:4:\"file\";s:44:\"PinotNoir-NoVintage-NapaCarneros-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80642;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:45:\"PinotNoir-NoVintage-NapaCarneros-455x1536.png\";s:5:\"width\";i:455;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:569110;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(59331,3769,'_wp_attached_file','2024/05/SonomaBottle_Meadowcroft_Zinfandel_SpeedyCreekVineyard_2020-1.png'),(59332,3769,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1422;s:6:\"height\";i:5316;s:4:\"file\";s:73:\"2024/05/SonomaBottle_Meadowcroft_Zinfandel_SpeedyCreekVineyard_2020-1.png\";s:8:\"filesize\";i:7010936;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:72:\"SonomaBottle_Meadowcroft_Zinfandel_SpeedyCreekVineyard_2020-1-80x300.png\";s:5:\"width\";i:80;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19738;}s:5:\"large\";a:5:{s:4:\"file\";s:74:\"SonomaBottle_Meadowcroft_Zinfandel_SpeedyCreekVineyard_2020-1-274x1024.png\";s:5:\"width\";i:274;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:202650;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:73:\"SonomaBottle_Meadowcroft_Zinfandel_SpeedyCreekVineyard_2020-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23660;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:74:\"SonomaBottle_Meadowcroft_Zinfandel_SpeedyCreekVineyard_2020-1-768x2871.png\";s:5:\"width\";i:768;s:6:\"height\";i:2871;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1614588;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:73:\"SonomaBottle_Meadowcroft_Zinfandel_SpeedyCreekVineyard_2020-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:99220;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:73:\"SonomaBottle_Meadowcroft_Zinfandel_SpeedyCreekVineyard_2020-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:285368;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:73:\"SonomaBottle_Meadowcroft_Zinfandel_SpeedyCreekVineyard_2020-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:195584;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:73:\"SonomaBottle_Meadowcroft_Zinfandel_SpeedyCreekVineyard_2020-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:131520;}s:8:\"tileview\";a:5:{s:4:\"file\";s:73:\"SonomaBottle_Meadowcroft_Zinfandel_SpeedyCreekVineyard_2020-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:126146;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:74:\"SonomaBottle_Meadowcroft_Zinfandel_SpeedyCreekVineyard_2020-1-411x1536.png\";s:5:\"width\";i:411;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:461058;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:74:\"SonomaBottle_Meadowcroft_Zinfandel_SpeedyCreekVineyard_2020-1-548x2048.png\";s:5:\"width\";i:548;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:819775;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:75:\"SonomaBottle_Meadowcroft_Zinfandel_SpeedyCreekVineyard_2020-1-1200x4486.png\";s:5:\"width\";i:1200;s:6:\"height\";i:4486;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3846272;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(59333,3770,'_wp_attached_file','2024/05/SonomaBottle-MeadowcroftWines_CabernetSauvignon_Rutherford_2020-3.png'),(59334,3770,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1554;s:6:\"height\";i:5512;s:4:\"file\";s:77:\"2024/05/SonomaBottle-MeadowcroftWines_CabernetSauvignon_Rutherford_2020-3.png\";s:8:\"filesize\";i:5454186;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:76:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_Rutherford_2020-3-85x300.png\";s:5:\"width\";i:85;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20992;}s:5:\"large\";a:5:{s:4:\"file\";s:78:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_Rutherford_2020-3-289x1024.png\";s:5:\"width\";i:289;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:159414;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:77:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_Rutherford_2020-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15465;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:78:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_Rutherford_2020-3-768x2724.png\";s:5:\"width\";i:768;s:6:\"height\";i:2724;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:900938;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:77:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_Rutherford_2020-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48344;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:77:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_Rutherford_2020-3-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:115880;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:77:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_Rutherford_2020-3-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82193;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:77:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_Rutherford_2020-3-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58496;}s:8:\"tileview\";a:5:{s:4:\"file\";s:77:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_Rutherford_2020-3-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62099;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:78:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_Rutherford_2020-3-433x1536.png\";s:5:\"width\";i:433;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:322060;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:78:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_Rutherford_2020-3-577x2048.png\";s:5:\"width\";i:577;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:536176;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:79:\"SonomaBottle-MeadowcroftWines_CabernetSauvignon_Rutherford_2020-3-1200x4256.png\";s:5:\"width\";i:1200;s:6:\"height\";i:4256;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2034813;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(59335,3771,'_wp_attached_file','2024/05/SonomaBottle-MeadowcroftWines_PinotGris_2022-5.png'),(59336,3771,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1433;s:6:\"height\";i:5168;s:4:\"file\";s:58:\"2024/05/SonomaBottle-MeadowcroftWines_PinotGris_2022-5.png\";s:8:\"filesize\";i:8739094;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"SonomaBottle-MeadowcroftWines_PinotGris_2022-5-83x300.png\";s:5:\"width\";i:83;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27298;}s:5:\"large\";a:5:{s:4:\"file\";s:59:\"SonomaBottle-MeadowcroftWines_PinotGris_2022-5-284x1024.png\";s:5:\"width\";i:284;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:254930;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"SonomaBottle-MeadowcroftWines_PinotGris_2022-5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22617;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:59:\"SonomaBottle-MeadowcroftWines_PinotGris_2022-5-768x2770.png\";s:5:\"width\";i:768;s:6:\"height\";i:2770;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1764756;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:58:\"SonomaBottle-MeadowcroftWines_PinotGris_2022-5-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:88561;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:58:\"SonomaBottle-MeadowcroftWines_PinotGris_2022-5-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:246310;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:58:\"SonomaBottle-MeadowcroftWines_PinotGris_2022-5-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:159768;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:58:\"SonomaBottle-MeadowcroftWines_PinotGris_2022-5-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:106557;}s:8:\"tileview\";a:5:{s:4:\"file\";s:58:\"SonomaBottle-MeadowcroftWines_PinotGris_2022-5-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:111550;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:59:\"SonomaBottle-MeadowcroftWines_PinotGris_2022-5-426x1536.png\";s:5:\"width\";i:426;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:556132;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:59:\"SonomaBottle-MeadowcroftWines_PinotGris_2022-5-568x2048.png\";s:5:\"width\";i:568;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:974502;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:60:\"SonomaBottle-MeadowcroftWines_PinotGris_2022-5-1200x4328.png\";s:5:\"width\";i:1200;s:6:\"height\";i:4328;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4175957;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(59337,3772,'_wp_attached_file','2024/05/NoVintage-PINOTNOIR_SONOMACOASTPINOT.png'),(59338,3772,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1790;s:6:\"height\";i:5069;s:4:\"file\";s:48:\"2024/05/NoVintage-PINOTNOIR_SONOMACOASTPINOT.png\";s:8:\"filesize\";i:6872232;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"NoVintage-PINOTNOIR_SONOMACOASTPINOT-106x300.png\";s:5:\"width\";i:106;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25045;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"NoVintage-PINOTNOIR_SONOMACOASTPINOT-362x1024.png\";s:5:\"width\";i:362;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:242874;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"NoVintage-PINOTNOIR_SONOMACOASTPINOT-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13927;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"NoVintage-PINOTNOIR_SONOMACOASTPINOT-768x2175.png\";s:5:\"width\";i:768;s:6:\"height\";i:2175;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1132360;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:48:\"NoVintage-PINOTNOIR_SONOMACOASTPINOT-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49670;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:48:\"NoVintage-PINOTNOIR_SONOMACOASTPINOT-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:138536;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:48:\"NoVintage-PINOTNOIR_SONOMACOASTPINOT-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72707;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:48:\"NoVintage-PINOTNOIR_SONOMACOASTPINOT-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47414;}s:8:\"tileview\";a:5:{s:4:\"file\";s:48:\"NoVintage-PINOTNOIR_SONOMACOASTPINOT-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75017;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:49:\"NoVintage-PINOTNOIR_SONOMACOASTPINOT-542x1536.png\";s:5:\"width\";i:542;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:553452;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:49:\"NoVintage-PINOTNOIR_SONOMACOASTPINOT-723x2048.png\";s:5:\"width\";i:723;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:999292;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:50:\"NoVintage-PINOTNOIR_SONOMACOASTPINOT-1200x3398.png\";s:5:\"width\";i:1200;s:6:\"height\";i:3398;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2813312;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(59340,3774,'inline_featured_image','0'),(59341,3774,'_edit_lock','1716402327:3'),(59342,3774,'_edit_last','3'),(59343,3774,'allowed_customer_tag_titles','a:0:{}'),(59344,3774,'allowed_customer_club_titles','a:0:{}'),(59345,3774,'linked_brand','3399'),(59346,3774,'_linked_brand','field_59ee2d92496e9'),(59347,3774,'main_image','3681'),(59348,3774,'_main_image','field_59ee319d02900'),(59349,3774,'assets_0_text','Tech Sheet'),(59350,3774,'_assets_0_text','field_59ee31cc02902'),(59351,3774,'assets_0_file_or_url','file'),(59352,3774,'_assets_0_file_or_url','field_59ee31da02903'),(59353,3774,'assets_0_file','3676'),(59354,3774,'_assets_0_file','field_59ee320302905'),(59355,3774,'assets_1_text','Bottle Shot'),(59356,3774,'_assets_1_text','field_59ee31cc02902'),(59357,3774,'assets_1_file_or_url','file'),(59358,3774,'_assets_1_file_or_url','field_59ee31da02903'),(59359,3774,'assets_1_file','3681'),(59360,3774,'_assets_1_file','field_59ee320302905'),(59361,3774,'assets','2'),(59362,3774,'_assets','field_59ee31bc02901'),(59363,3774,'varietal','Cabernet Sauvignon'),(59364,3774,'_varietal','field_59ee660ece2e7'),(59365,3774,'sub_brand',''),(59366,3774,'_sub_brand','field_59ee6623ce2e8'),(59367,3774,'vintage','2022'),(59368,3774,'_vintage','field_59ee6eba9a39a'),(59369,3774,'_yoast_wpseo_estimated-reading-time-minutes','1'),(59370,3774,'_yoast_wpseo_wordproof_timestamp',''),(59371,3775,'inline_featured_image','0'),(59372,3775,'_edit_lock','1735257188:3'),(59373,3775,'_edit_last','3'),(59374,3776,'_wp_attached_file','2024/05/2022-TheMagi-web2-scaled.jpg'),(59375,3776,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:704;s:6:\"height\";i:2560;s:4:\"file\";s:36:\"2024/05/2022-TheMagi-web2-scaled.jpg\";s:8:\"filesize\";i:265697;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"2022-TheMagi-web2-83x300.jpg\";s:5:\"width\";i:83;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9354;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"2022-TheMagi-web2-282x1024.jpg\";s:5:\"width\";i:282;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63521;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"2022-TheMagi-web2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10202;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"2022-TheMagi-web2-768x2792.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2792;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:303506;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:29:\"2022-TheMagi-web2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30167;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:29:\"2022-TheMagi-web2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65809;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:29:\"2022-TheMagi-web2-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45638;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:29:\"2022-TheMagi-web2-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33033;}s:8:\"tileview\";a:5:{s:4:\"file\";s:29:\"2022-TheMagi-web2-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36837;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"2022-TheMagi-web2-422x1536.jpg\";s:5:\"width\";i:422;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120189;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:30:\"2022-TheMagi-web2-563x2048.jpg\";s:5:\"width\";i:563;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:188991;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:9:\"Copyright\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:21:\"2022-TheMagi-web2.jpg\";}'),(59376,3777,'_wp_attached_file','2024/05/2022-TheMagi-web2-1-scaled.jpg'),(59377,3777,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:704;s:6:\"height\";i:2560;s:4:\"file\";s:38:\"2024/05/2022-TheMagi-web2-1-scaled.jpg\";s:8:\"filesize\";i:265697;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"2022-TheMagi-web2-1-83x300.jpg\";s:5:\"width\";i:83;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9354;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"2022-TheMagi-web2-1-282x1024.jpg\";s:5:\"width\";i:282;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63521;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"2022-TheMagi-web2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10202;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"2022-TheMagi-web2-1-768x2792.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2792;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:303506;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:31:\"2022-TheMagi-web2-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30167;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:31:\"2022-TheMagi-web2-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65809;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:31:\"2022-TheMagi-web2-1-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45638;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:31:\"2022-TheMagi-web2-1-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33033;}s:8:\"tileview\";a:5:{s:4:\"file\";s:31:\"2022-TheMagi-web2-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36837;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"2022-TheMagi-web2-1-422x1536.jpg\";s:5:\"width\";i:422;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120189;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:32:\"2022-TheMagi-web2-1-563x2048.jpg\";s:5:\"width\";i:563;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:188991;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:9:\"Copyright\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"2022-TheMagi-web2-1.jpg\";}'),(59378,3778,'_wp_attached_file','2024/05/2022-TheMagi-2.png'),(59379,3778,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:2909;s:4:\"file\";s:26:\"2024/05/2022-TheMagi-2.png\";s:8:\"filesize\";i:485639;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"2022-TheMagi-2-83x300.png\";s:5:\"width\";i:83;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32882;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"2022-TheMagi-2-282x1024.png\";s:5:\"width\";i:282;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:257197;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"2022-TheMagi-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33966;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"2022-TheMagi-2-768x2793.png\";s:5:\"width\";i:768;s:6:\"height\";i:2793;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1617237;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:26:\"2022-TheMagi-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:111299;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:26:\"2022-TheMagi-2-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:276656;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:26:\"2022-TheMagi-2-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:180312;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:26:\"2022-TheMagi-2-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:123486;}s:8:\"tileview\";a:5:{s:4:\"file\";s:26:\"2022-TheMagi-2-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141256;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"2022-TheMagi-2-422x1536.png\";s:5:\"width\";i:422;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:537675;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:27:\"2022-TheMagi-2-563x2048.png\";s:5:\"width\";i:563;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:920633;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(59380,3779,'_wp_attached_file','2024/05/2022-TheMagi-techsheet.pdf'),(59381,3779,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:30:\"2022-TheMagi-techsheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:251758;}s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"2022-TheMagi-techsheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16607;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"2022-TheMagi-techsheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133636;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"2022-TheMagi-techsheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7147;}}s:8:\"filesize\";i:370782;}'),(59382,3775,'allowed_customer_tag_titles','a:0:{}'),(59383,3775,'allowed_customer_club_titles','a:0:{}'),(59384,3775,'linked_brand','3399'),(59385,3775,'_linked_brand','field_59ee2d92496e9'),(59386,3775,'main_image','3778'),(59387,3775,'_main_image','field_59ee319d02900'),(59388,3775,'assets_0_text','Tech Sheet'),(59389,3775,'_assets_0_text','field_59ee31cc02902'),(59390,3775,'assets_0_file_or_url','file'),(59391,3775,'_assets_0_file_or_url','field_59ee31da02903'),(59392,3775,'assets_0_file','3779'),(59393,3775,'_assets_0_file','field_59ee320302905'),(59394,3775,'assets_1_text','Bottle Shot'),(59395,3775,'_assets_1_text','field_59ee31cc02902'),(59396,3775,'assets_1_file_or_url','file'),(59397,3775,'_assets_1_file_or_url','field_59ee31da02903'),(59398,3775,'assets_1_file','3778'),(59399,3775,'_assets_1_file','field_59ee320302905'),(59400,3775,'assets','2'),(59401,3775,'_assets','field_59ee31bc02901'),(59402,3775,'varietal','Red Blend'),(59403,3775,'_varietal','field_59ee660ece2e7'),(59404,3775,'sub_brand',''),(59405,3775,'_sub_brand','field_59ee6623ce2e8'),(59406,3775,'vintage','2022'),(59407,3775,'_vintage','field_59ee6eba9a39a'),(59408,3775,'_yoast_wpseo_estimated-reading-time-minutes','1'),(59409,3775,'_yoast_wpseo_wordproof_timestamp',''),(59410,3780,'inline_featured_image','0'),(59411,3780,'_edit_lock','1716403276:3'),(59412,3780,'_edit_last','3'),(59413,3781,'_wp_attached_file','2024/05/2022-PinotGris-web-scaled.jpg'),(59414,3781,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:710;s:6:\"height\";i:2560;s:4:\"file\";s:37:\"2024/05/2022-PinotGris-web-scaled.jpg\";s:8:\"filesize\";i:193354;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"2022-PinotGris-web-83x300.jpg\";s:5:\"width\";i:83;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7386;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"2022-PinotGris-web-284x1024.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43891;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"2022-PinotGris-web-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6008;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"2022-PinotGris-web-768x2770.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2770;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:219503;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:30:\"2022-PinotGris-web-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15268;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:30:\"2022-PinotGris-web-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33331;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:30:\"2022-PinotGris-web-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21848;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:30:\"2022-PinotGris-web-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16407;}s:8:\"tileview\";a:5:{s:4:\"file\";s:30:\"2022-PinotGris-web-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18055;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:31:\"2022-PinotGris-web-426x1536.jpg\";s:5:\"width\";i:426;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83099;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:31:\"2022-PinotGris-web-568x2048.jpg\";s:5:\"width\";i:568;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133113;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:32:\"2022-PinotGris-web-1200x4328.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:4328;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:458719;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:9:\"Copyright\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:22:\"2022-PinotGris-web.jpg\";}'),(59415,3780,'allowed_customer_tag_titles','a:0:{}'),(59416,3780,'allowed_customer_club_titles','a:0:{}'),(59417,3780,'linked_brand','3399'),(59418,3780,'_linked_brand','field_59ee2d92496e9'),(59419,3780,'main_image','3369'),(59420,3780,'_main_image','field_59ee319d02900'),(59421,3780,'assets_0_text','Tech Sheet'),(59422,3780,'_assets_0_text','field_59ee31cc02902'),(59423,3780,'assets_0_file_or_url','file'),(59424,3780,'_assets_0_file_or_url','field_59ee31da02903'),(59425,3780,'assets_0_file','3195'),(59426,3780,'_assets_0_file','field_59ee320302905'),(59427,3780,'assets_1_text','Bottle Shot'),(59428,3780,'_assets_1_text','field_59ee31cc02902'),(59429,3780,'assets_1_file_or_url','file'),(59430,3780,'_assets_1_file_or_url','field_59ee31da02903'),(59431,3780,'assets_1_file','3781'),(59432,3780,'_assets_1_file','field_59ee320302905'),(59433,3780,'assets','2'),(59434,3780,'_assets','field_59ee31bc02901'),(59435,3780,'varietal','Pinot Gris'),(59436,3780,'_varietal','field_59ee660ece2e7'),(59437,3780,'sub_brand',''),(59438,3780,'_sub_brand','field_59ee6623ce2e8'),(59439,3780,'vintage','2022'),(59440,3780,'_vintage','field_59ee6eba9a39a'),(59441,3780,'_yoast_wpseo_estimated-reading-time-minutes','1'),(59442,3780,'_yoast_wpseo_wordproof_timestamp',''),(59444,3783,'inline_featured_image','0'),(59445,3783,'_edit_lock','1716403408:3'),(59446,3783,'_edit_last','3'),(59447,3783,'allowed_customer_tag_titles','a:0:{}'),(59448,3783,'allowed_customer_club_titles','a:0:{}'),(59449,3783,'linked_brand','3399'),(59450,3783,'_linked_brand','field_59ee2d92496e9'),(59451,3783,'main_image','3768'),(59452,3783,'_main_image','field_59ee319d02900'),(59453,3783,'assets_0_text','Tech Sheet'),(59454,3783,'_assets_0_text','field_59ee31cc02902'),(59455,3783,'assets_0_file_or_url','file'),(59456,3783,'_assets_0_file_or_url','field_59ee31da02903'),(59457,3783,'assets_0_file','3559'),(59458,3783,'_assets_0_file','field_59ee320302905'),(59459,3783,'assets_1_text','Bottle Shot'),(59460,3783,'_assets_1_text','field_59ee31cc02902'),(59461,3783,'assets_1_file_or_url','file'),(59462,3783,'_assets_1_file_or_url','field_59ee31da02903'),(59463,3783,'assets_1_file','3768'),(59464,3783,'_assets_1_file','field_59ee320302905'),(59465,3783,'assets','2'),(59466,3783,'_assets','field_59ee31bc02901'),(59467,3783,'varietal','Pinot Noir'),(59468,3783,'_varietal','field_59ee660ece2e7'),(59469,3783,'sub_brand',''),(59470,3783,'_sub_brand','field_59ee6623ce2e8'),(59471,3783,'vintage','2022'),(59472,3783,'_vintage','field_59ee6eba9a39a'),(59473,3783,'_yoast_wpseo_estimated-reading-time-minutes','1'),(59474,3783,'_yoast_wpseo_wordproof_timestamp',''),(59475,3784,'inline_featured_image','0'),(59476,3784,'_edit_lock','1716403690:3'),(59477,3784,'_edit_last','3'),(59478,3785,'_wp_attached_file','2024/05/2020-RUTHERFORD-CAB.png'),(59479,3785,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:2838;s:4:\"file\";s:31:\"2024/05/2020-RUTHERFORD-CAB.png\";s:8:\"filesize\";i:1298257;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"2020-RUTHERFORD-CAB-85x300.png\";s:5:\"width\";i:85;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20971;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"2020-RUTHERFORD-CAB-289x1024.png\";s:5:\"width\";i:289;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:160615;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"2020-RUTHERFORD-CAB-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15495;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"2020-RUTHERFORD-CAB-768x2724.png\";s:5:\"width\";i:768;s:6:\"height\";i:2724;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:900640;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:31:\"2020-RUTHERFORD-CAB-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49265;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:31:\"2020-RUTHERFORD-CAB-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:117425;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:31:\"2020-RUTHERFORD-CAB-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:83622;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:31:\"2020-RUTHERFORD-CAB-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59105;}s:8:\"tileview\";a:5:{s:4:\"file\";s:31:\"2020-RUTHERFORD-CAB-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63159;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"2020-RUTHERFORD-CAB-433x1536.png\";s:5:\"width\";i:433;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:326799;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:32:\"2020-RUTHERFORD-CAB-577x2048.png\";s:5:\"width\";i:577;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:544890;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(59480,3784,'allowed_customer_tag_titles','a:0:{}'),(59481,3784,'allowed_customer_club_titles','a:0:{}'),(59482,3784,'linked_brand','3399'),(59483,3784,'_linked_brand','field_59ee2d92496e9'),(59484,3784,'main_image','3785'),(59485,3784,'_main_image','field_59ee319d02900'),(59486,3784,'assets_0_text','Tech Sheet'),(59487,3784,'_assets_0_text','field_59ee31cc02902'),(59488,3784,'assets_0_file_or_url','file'),(59489,3784,'_assets_0_file_or_url','field_59ee31da02903'),(59490,3784,'assets_0_file','3138'),(59491,3784,'_assets_0_file','field_59ee320302905'),(59492,3784,'assets','1'),(59493,3784,'_assets','field_59ee31bc02901'),(59494,3784,'varietal','Cabernet Sauvignon'),(59495,3784,'_varietal','field_59ee660ece2e7'),(59496,3784,'sub_brand',''),(59497,3784,'_sub_brand','field_59ee6623ce2e8'),(59498,3784,'vintage','2022'),(59499,3784,'_vintage','field_59ee6eba9a39a'),(59500,3784,'_yoast_wpseo_estimated-reading-time-minutes','1'),(59501,3784,'_yoast_wpseo_wordproof_timestamp',''),(59502,3786,'inline_featured_image','0'),(59503,3786,'_edit_lock','1716404624:3'),(59504,3786,'_edit_last','3'),(59505,3787,'_wp_attached_file','2024/05/2020-Zin-SpeedyCreek.png'),(59506,3787,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:1495;s:4:\"file\";s:32:\"2024/05/2020-Zin-SpeedyCreek.png\";s:8:\"filesize\";i:535171;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"2020-Zin-SpeedyCreek-80x300.png\";s:5:\"width\";i:80;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19184;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"2020-Zin-SpeedyCreek-274x1024.png\";s:5:\"width\";i:274;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:204974;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"2020-Zin-SpeedyCreek-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23527;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:32:\"2020-Zin-SpeedyCreek-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:98512;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:32:\"2020-Zin-SpeedyCreek-400x500.png\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:250007;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:32:\"2020-Zin-SpeedyCreek-400x324.png\";s:5:\"width\";i:400;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:177824;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:32:\"2020-Zin-SpeedyCreek-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:128723;}s:8:\"tileview\";a:5:{s:4:\"file\";s:32:\"2020-Zin-SpeedyCreek-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:125896;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(59507,3786,'allowed_customer_tag_titles','a:0:{}'),(59508,3786,'allowed_customer_club_titles','a:0:{}'),(59509,3786,'linked_brand','3399'),(59510,3786,'_linked_brand','field_59ee2d92496e9'),(59511,3786,'main_image','3787'),(59512,3786,'_main_image','field_59ee319d02900'),(59513,3786,'assets_0_text','Tech Sheet'),(59514,3786,'_assets_0_text','field_59ee31cc02902'),(59515,3786,'assets_0_file_or_url','file'),(59516,3786,'_assets_0_file_or_url','field_59ee31da02903'),(59517,3786,'assets_0_file','3763'),(59518,3786,'_assets_0_file','field_59ee320302905'),(59519,3786,'assets_1_text','Bottle Shot'),(59520,3786,'_assets_1_text','field_59ee31cc02902'),(59521,3786,'assets_1_file_or_url','file'),(59522,3786,'_assets_1_file_or_url','field_59ee31da02903'),(59523,3786,'assets_1_file','3787'),(59524,3786,'_assets_1_file','field_59ee320302905'),(59525,3786,'assets','2'),(59526,3786,'_assets','field_59ee31bc02901'),(59527,3786,'varietal','Zinfandel'),(59528,3786,'_varietal','field_59ee660ece2e7'),(59529,3786,'sub_brand',''),(59530,3786,'_sub_brand','field_59ee6623ce2e8'),(59531,3786,'vintage','2020'),(59532,3786,'_vintage','field_59ee6eba9a39a'),(59533,3786,'_yoast_wpseo_estimated-reading-time-minutes','1'),(59534,3786,'_yoast_wpseo_wordproof_timestamp',''),(59536,3789,'_wp_attached_file','2024/05/2023-Roussanne-FINAL.pdf'),(59537,3789,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:28:\"2023-Roussanne-FINAL-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:191855;}s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"2023-Roussanne-FINAL-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14940;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"2023-Roussanne-FINAL-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106752;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"2023-Roussanne-FINAL-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6799;}}s:8:\"filesize\";i:269287;}'),(59538,3702,'vendor','Meadowcroft Wines'),(59539,3790,'_wp_attached_file','2024/05/2023-roussanne.jpg'),(59540,3790,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:578;s:6:\"height\";i:2048;s:4:\"file\";s:26:\"2024/05/2023-roussanne.jpg\";s:8:\"filesize\";i:130927;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"2023-roussanne-85x300.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6952;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"2023-roussanne-289x1024.jpg\";s:5:\"width\";i:289;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39018;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"2023-roussanne-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4488;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:26:\"2023-roussanne-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10685;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:26:\"2023-roussanne-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21892;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:26:\"2023-roussanne-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12999;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:26:\"2023-roussanne-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9683;}s:8:\"tileview\";a:5:{s:4:\"file\";s:26:\"2023-roussanne-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14587;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"2023-roussanne-434x1536.jpg\";s:5:\"width\";i:434;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76187;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(59541,3791,'inline_featured_image','0'),(59542,3791,'_edit_lock','1716572875:3'),(59543,3791,'_edit_last','3'),(59544,3791,'allowed_customer_tag_titles','a:0:{}'),(59545,3791,'allowed_customer_club_titles','a:0:{}'),(59546,3791,'linked_brand','3399'),(59547,3791,'_linked_brand','field_59ee2d92496e9'),(59548,3791,'main_image','3790'),(59549,3791,'_main_image','field_59ee319d02900'),(59550,3791,'assets_0_text','Tech Sheet'),(59551,3791,'_assets_0_text','field_59ee31cc02902'),(59552,3791,'assets_0_file_or_url','file'),(59553,3791,'_assets_0_file_or_url','field_59ee31da02903'),(59554,3791,'assets_0_file','3789'),(59555,3791,'_assets_0_file','field_59ee320302905'),(59556,3791,'assets_1_text','Bottle Shot'),(59557,3791,'_assets_1_text','field_59ee31cc02902'),(59558,3791,'assets_1_file_or_url','file'),(59559,3791,'_assets_1_file_or_url','field_59ee31da02903'),(59560,3791,'assets_1_file','3790'),(59561,3791,'_assets_1_file','field_59ee320302905'),(59562,3791,'assets','2'),(59563,3791,'_assets','field_59ee31bc02901'),(59564,3791,'varietal','Roussanne'),(59565,3791,'_varietal','field_59ee660ece2e7'),(59566,3791,'sub_brand',''),(59567,3791,'_sub_brand','field_59ee6623ce2e8'),(59568,3791,'vintage','2023'),(59569,3791,'_vintage','field_59ee6eba9a39a'),(59570,3791,'_yoast_wpseo_estimated-reading-time-minutes','1'),(59571,3791,'_yoast_wpseo_wordproof_timestamp',''),(59572,3792,'web_id','5ca75189-c5a2-4fce-b770-d97c5d4b90c5'),(59573,3792,'slug','curious-elixir-mocktail-4-pack'),(59574,3792,'title','Curious Elixir Mocktail 4 Pack'),(59575,3792,'type','General Merchandise'),(59576,3792,'image','https://images.commerce7.com/meadowcroft-wines/images/original/untitled-design-117047467671552-1716589703531.webp'),(59577,3792,'teaser',NULL),(59578,3792,'content',NULL),(59579,3792,'subtitle',NULL),(59580,3792,'price','2000'),(59581,3792,'web_status','Not Available'),(59582,3792,'admin_status','Available'),(59583,3792,'collections','a:0:{}'),(59584,3792,'primary_collection',''),(59585,2946,'vendor','Meadowcroft Wines'),(59587,3794,'_wp_attached_file','2024/06/2021-AtlasPeak-Cabernet-TechSheet-FINAL.pdf'),(59588,3794,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:47:\"2021-AtlasPeak-Cabernet-TechSheet-FINAL-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:237945;}s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"2021-AtlasPeak-Cabernet-TechSheet-FINAL-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17042;}s:5:\"large\";a:5:{s:4:\"file\";s:56:\"2021-AtlasPeak-Cabernet-TechSheet-FINAL-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130577;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"2021-AtlasPeak-Cabernet-TechSheet-FINAL-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7332;}}s:8:\"filesize\";i:303199;}'),(59589,3795,'_wp_attached_file','2024/06/2021-MtVeeder-Cabernet-TechSheet-FINAL.pdf'),(59590,3795,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:46:\"2021-MtVeeder-Cabernet-TechSheet-FINAL-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:228640;}s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"2021-MtVeeder-Cabernet-TechSheet-FINAL-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16207;}s:5:\"large\";a:5:{s:4:\"file\";s:55:\"2021-MtVeeder-Cabernet-TechSheet-FINAL-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123437;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"2021-MtVeeder-Cabernet-TechSheet-FINAL-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7097;}}s:8:\"filesize\";i:302860;}'),(59591,3796,'_wp_attached_file','2024/06/2022-sangiovesetechsheet-FINAL.pdf'),(59592,3796,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:38:\"2022-sangiovesetechsheet-FINAL-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:223402;}s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"2022-sangiovesetechsheet-FINAL-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16196;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"2022-sangiovesetechsheet-FINAL-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120045;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"2022-sangiovesetechsheet-FINAL-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7154;}}s:8:\"filesize\";i:298282;}'),(59593,3797,'_wp_attached_file','2024/06/Sangiovese_SpeedyCreekVineyard_2022.png'),(59594,3797,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1660;s:6:\"height\";i:6341;s:4:\"file\";s:47:\"2024/06/Sangiovese_SpeedyCreekVineyard_2022.png\";s:8:\"filesize\";i:8553457;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"Sangiovese_SpeedyCreekVineyard_2022-79x300.png\";s:5:\"width\";i:79;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18947;}s:5:\"large\";a:5:{s:4:\"file\";s:48:\"Sangiovese_SpeedyCreekVineyard_2022-268x1024.png\";s:5:\"width\";i:268;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:183218;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Sangiovese_SpeedyCreekVineyard_2022-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20304;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"Sangiovese_SpeedyCreekVineyard_2022-768x2934.png\";s:5:\"width\";i:768;s:6:\"height\";i:2934;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1477458;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:47:\"Sangiovese_SpeedyCreekVineyard_2022-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84384;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:47:\"Sangiovese_SpeedyCreekVineyard_2022-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:239346;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:47:\"Sangiovese_SpeedyCreekVineyard_2022-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:168790;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:47:\"Sangiovese_SpeedyCreekVineyard_2022-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:111875;}s:8:\"tileview\";a:5:{s:4:\"file\";s:47:\"Sangiovese_SpeedyCreekVineyard_2022-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:108695;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"Sangiovese_SpeedyCreekVineyard_2022-402x1536.png\";s:5:\"width\";i:402;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:407917;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:48:\"Sangiovese_SpeedyCreekVineyard_2022-536x2048.png\";s:5:\"width\";i:536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:723942;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:49:\"Sangiovese_SpeedyCreekVineyard_2022-1200x4584.png\";s:5:\"width\";i:1200;s:6:\"height\";i:4584;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3477060;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(59595,3798,'_wp_attached_file','2024/06/SonomaBottle_Meadowcroft_CabernetSauvignon_AtlasPeak_2021-1.png'),(59596,3798,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1801;s:6:\"height\";i:6383;s:4:\"file\";s:71:\"2024/06/SonomaBottle_Meadowcroft_CabernetSauvignon_AtlasPeak_2021-1.png\";s:8:\"filesize\";i:8136910;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"SonomaBottle_Meadowcroft_CabernetSauvignon_AtlasPeak_2021-1-85x300.png\";s:5:\"width\";i:85;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22056;}s:5:\"large\";a:5:{s:4:\"file\";s:72:\"SonomaBottle_Meadowcroft_CabernetSauvignon_AtlasPeak_2021-1-289x1024.png\";s:5:\"width\";i:289;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:173588;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:71:\"SonomaBottle_Meadowcroft_CabernetSauvignon_AtlasPeak_2021-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16756;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:72:\"SonomaBottle_Meadowcroft_CabernetSauvignon_AtlasPeak_2021-1-768x2722.png\";s:5:\"width\";i:768;s:6:\"height\";i:2722;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1020507;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:71:\"SonomaBottle_Meadowcroft_CabernetSauvignon_AtlasPeak_2021-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54480;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:71:\"SonomaBottle_Meadowcroft_CabernetSauvignon_AtlasPeak_2021-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:135309;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:71:\"SonomaBottle_Meadowcroft_CabernetSauvignon_AtlasPeak_2021-1-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93793;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:71:\"SonomaBottle_Meadowcroft_CabernetSauvignon_AtlasPeak_2021-1-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63929;}s:8:\"tileview\";a:5:{s:4:\"file\";s:71:\"SonomaBottle_Meadowcroft_CabernetSauvignon_AtlasPeak_2021-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72477;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:72:\"SonomaBottle_Meadowcroft_CabernetSauvignon_AtlasPeak_2021-1-433x1536.png\";s:5:\"width\";i:433;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:355902;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:72:\"SonomaBottle_Meadowcroft_CabernetSauvignon_AtlasPeak_2021-1-578x2048.png\";s:5:\"width\";i:578;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:602337;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:73:\"SonomaBottle_Meadowcroft_CabernetSauvignon_AtlasPeak_2021-1-1200x4253.png\";s:5:\"width\";i:1200;s:6:\"height\";i:4253;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2335689;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(59597,3799,'_wp_attached_file','2024/06/CabernetSauvignon_MtVeeder_2020.png'),(59598,3799,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1801;s:6:\"height\";i:6383;s:4:\"file\";s:43:\"2024/06/CabernetSauvignon_MtVeeder_2020.png\";s:8:\"filesize\";i:8154863;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"CabernetSauvignon_MtVeeder_2020-85x300.png\";s:5:\"width\";i:85;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22070;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"CabernetSauvignon_MtVeeder_2020-289x1024.png\";s:5:\"width\";i:289;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:173946;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"CabernetSauvignon_MtVeeder_2020-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16775;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"CabernetSauvignon_MtVeeder_2020-768x2722.png\";s:5:\"width\";i:768;s:6:\"height\";i:2722;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1023030;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:43:\"CabernetSauvignon_MtVeeder_2020-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54548;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:43:\"CabernetSauvignon_MtVeeder_2020-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:136030;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:43:\"CabernetSauvignon_MtVeeder_2020-474x324.png\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:94987;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:43:\"CabernetSauvignon_MtVeeder_2020-391x260.png\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64581;}s:8:\"tileview\";a:5:{s:4:\"file\";s:43:\"CabernetSauvignon_MtVeeder_2020-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72748;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:44:\"CabernetSauvignon_MtVeeder_2020-433x1536.png\";s:5:\"width\";i:433;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:356371;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:44:\"CabernetSauvignon_MtVeeder_2020-578x2048.png\";s:5:\"width\";i:578;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:603386;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"CabernetSauvignon_MtVeeder_2020-1200x4253.png\";s:5:\"width\";i:1200;s:6:\"height\";i:4253;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2340747;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(59599,3800,'inline_featured_image','0'),(59600,3800,'_edit_lock','1719525952:3'),(59601,3800,'_edit_last','3'),(59602,3801,'_wp_attached_file','2024/06/Sangiovese_SpeedyCreek_2022-web.png'),(59603,3801,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:314;s:6:\"height\";i:1200;s:4:\"file\";s:43:\"2024/06/Sangiovese_SpeedyCreek_2022-web.png\";s:8:\"filesize\";i:335087;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Sangiovese_SpeedyCreek_2022-web-79x300.png\";s:5:\"width\";i:79;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19273;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"Sangiovese_SpeedyCreek_2022-web-268x1024.png\";s:5:\"width\";i:268;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:203273;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Sangiovese_SpeedyCreek_2022-web-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21944;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:43:\"Sangiovese_SpeedyCreek_2022-web-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:92824;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:43:\"Sangiovese_SpeedyCreek_2022-web-314x500.png\";s:5:\"width\";i:314;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:176119;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:43:\"Sangiovese_SpeedyCreek_2022-web-314x324.png\";s:5:\"width\";i:314;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122303;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:43:\"Sangiovese_SpeedyCreek_2022-web-314x260.png\";s:5:\"width\";i:314;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:104939;}s:8:\"tileview\";a:5:{s:4:\"file\";s:43:\"Sangiovese_SpeedyCreek_2022-web-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:120376;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(59604,3800,'allowed_customer_tag_titles','a:0:{}'),(59605,3800,'allowed_customer_club_titles','a:0:{}'),(59606,3800,'linked_brand','3399'),(59607,3800,'_linked_brand','field_59ee2d92496e9'),(59608,3800,'main_image','3801'),(59609,3800,'_main_image','field_59ee319d02900'),(59610,3800,'assets_0_text','Tech Sheet'),(59611,3800,'_assets_0_text','field_59ee31cc02902'),(59612,3800,'assets_0_file_or_url','file'),(59613,3800,'_assets_0_file_or_url','field_59ee31da02903'),(59614,3800,'assets_0_file','3807'),(59615,3800,'_assets_0_file','field_59ee320302905'),(59616,3800,'assets_1_text','Bottle Shot'),(59617,3800,'_assets_1_text','field_59ee31cc02902'),(59618,3800,'assets_1_file_or_url','file'),(59619,3800,'_assets_1_file_or_url','field_59ee31da02903'),(59620,3800,'assets_1_file','3801'),(59621,3800,'_assets_1_file','field_59ee320302905'),(59622,3800,'assets','2'),(59623,3800,'_assets','field_59ee31bc02901'),(59624,3800,'varietal','Sangiovese'),(59625,3800,'_varietal','field_59ee660ece2e7'),(59626,3800,'sub_brand',''),(59627,3800,'_sub_brand','field_59ee6623ce2e8'),(59628,3800,'vintage','2022'),(59629,3800,'_vintage','field_59ee6eba9a39a'),(59630,3800,'_yoast_wpseo_estimated-reading-time-minutes','1'),(59631,3800,'_yoast_wpseo_wordproof_timestamp',''),(59632,3802,'inline_featured_image','0'),(59633,3802,'_edit_lock','1735328333:3'),(59634,3802,'_edit_last','3'),(59635,3803,'_wp_attached_file','2024/06/CabernetSauvignon_AtlasPeak_2021-web.png'),(59636,3803,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:339;s:6:\"height\";i:1200;s:4:\"file\";s:48:\"2024/06/CabernetSauvignon_AtlasPeak_2021-web.png\";s:8:\"filesize\";i:281575;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"CabernetSauvignon_AtlasPeak_2021-web-85x300.png\";s:5:\"width\";i:85;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22657;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"CabernetSauvignon_AtlasPeak_2021-web-289x1024.png\";s:5:\"width\";i:289;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:188805;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"CabernetSauvignon_AtlasPeak_2021-web-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17616;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:48:\"CabernetSauvignon_AtlasPeak_2021-web-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59159;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:48:\"CabernetSauvignon_AtlasPeak_2021-web-339x500.png\";s:5:\"width\";i:339;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:110165;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:48:\"CabernetSauvignon_AtlasPeak_2021-web-339x324.png\";s:5:\"width\";i:339;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73079;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:48:\"CabernetSauvignon_AtlasPeak_2021-web-339x260.png\";s:5:\"width\";i:339;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64500;}s:8:\"tileview\";a:5:{s:4:\"file\";s:48:\"CabernetSauvignon_AtlasPeak_2021-web-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79047;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(59637,3804,'_wp_attached_file','2024/06/CabernetSauvignon_MtVeeder_2020-web.png'),(59638,3804,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:339;s:6:\"height\";i:1200;s:4:\"file\";s:47:\"2024/06/CabernetSauvignon_MtVeeder_2020-web.png\";s:8:\"filesize\";i:282170;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"CabernetSauvignon_MtVeeder_2020-web-85x300.png\";s:5:\"width\";i:85;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22651;}s:5:\"large\";a:5:{s:4:\"file\";s:48:\"CabernetSauvignon_MtVeeder_2020-web-289x1024.png\";s:5:\"width\";i:289;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:189553;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"CabernetSauvignon_MtVeeder_2020-web-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17750;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:47:\"CabernetSauvignon_MtVeeder_2020-web-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59452;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:47:\"CabernetSauvignon_MtVeeder_2020-web-339x500.png\";s:5:\"width\";i:339;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:111066;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:47:\"CabernetSauvignon_MtVeeder_2020-web-339x324.png\";s:5:\"width\";i:339;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73530;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:47:\"CabernetSauvignon_MtVeeder_2020-web-339x260.png\";s:5:\"width\";i:339;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64630;}s:8:\"tileview\";a:5:{s:4:\"file\";s:47:\"CabernetSauvignon_MtVeeder_2020-web-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79644;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(59639,3802,'allowed_customer_tag_titles','a:0:{}'),(59640,3802,'allowed_customer_club_titles','a:0:{}'),(59641,3802,'linked_brand','3399'),(59642,3802,'_linked_brand','field_59ee2d92496e9'),(59643,3802,'main_image','3803'),(59644,3802,'_main_image','field_59ee319d02900'),(59645,3802,'assets_0_text','Tech Sheet'),(59646,3802,'_assets_0_text','field_59ee31cc02902'),(59647,3802,'assets_0_file_or_url','file'),(59648,3802,'_assets_0_file_or_url','field_59ee31da02903'),(59649,3802,'assets_0_file','3794'),(59650,3802,'_assets_0_file','field_59ee320302905'),(59651,3802,'assets_1_text','Bottle Shot'),(59652,3802,'_assets_1_text','field_59ee31cc02902'),(59653,3802,'assets_1_file_or_url','file'),(59654,3802,'_assets_1_file_or_url','field_59ee31da02903'),(59655,3802,'assets_1_file','3803'),(59656,3802,'_assets_1_file','field_59ee320302905'),(59657,3802,'assets','2'),(59658,3802,'_assets','field_59ee31bc02901'),(59659,3802,'varietal','Cabernet Sauvignon'),(59660,3802,'_varietal','field_59ee660ece2e7'),(59661,3802,'sub_brand',''),(59662,3802,'_sub_brand','field_59ee6623ce2e8'),(59663,3802,'vintage','2021'),(59664,3802,'_vintage','field_59ee6eba9a39a'),(59665,3802,'_yoast_wpseo_estimated-reading-time-minutes','1'),(59666,3802,'_yoast_wpseo_wordproof_timestamp',''),(59667,3805,'inline_featured_image','0'),(59668,3805,'_edit_lock','1735327515:3'),(59669,3805,'_edit_last','3'),(59670,3806,'_wp_attached_file','2024/06/CabernetSauvignon_MtVeeder_NV-web.png'),(59671,3806,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:339;s:6:\"height\";i:1200;s:4:\"file\";s:45:\"2024/06/CabernetSauvignon_MtVeeder_NV-web.png\";s:8:\"filesize\";i:280824;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"CabernetSauvignon_MtVeeder_NV-web-85x300.png\";s:5:\"width\";i:85;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22468;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"CabernetSauvignon_MtVeeder_NV-web-289x1024.png\";s:5:\"width\";i:289;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:188352;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"CabernetSauvignon_MtVeeder_NV-web-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17750;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:45:\"CabernetSauvignon_MtVeeder_NV-web-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59452;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:45:\"CabernetSauvignon_MtVeeder_NV-web-339x500.png\";s:5:\"width\";i:339;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:109844;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:45:\"CabernetSauvignon_MtVeeder_NV-web-339x324.png\";s:5:\"width\";i:339;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73530;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:45:\"CabernetSauvignon_MtVeeder_NV-web-339x260.png\";s:5:\"width\";i:339;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64630;}s:8:\"tileview\";a:5:{s:4:\"file\";s:45:\"CabernetSauvignon_MtVeeder_NV-web-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79063;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(59672,3805,'allowed_customer_tag_titles','a:0:{}'),(59673,3805,'allowed_customer_club_titles','a:0:{}'),(59674,3805,'linked_brand','3399'),(59675,3805,'_linked_brand','field_59ee2d92496e9'),(59676,3805,'main_image','3806'),(59677,3805,'_main_image','field_59ee319d02900'),(59678,3805,'assets_0_text','Tech Sheet'),(59679,3805,'_assets_0_text','field_59ee31cc02902'),(59680,3805,'assets_0_file_or_url','file'),(59681,3805,'_assets_0_file_or_url','field_59ee31da02903'),(59682,3805,'assets_0_file','3795'),(59683,3805,'_assets_0_file','field_59ee320302905'),(59684,3805,'assets_1_text','Bottle Shot'),(59685,3805,'_assets_1_text','field_59ee31cc02902'),(59686,3805,'assets_1_file_or_url','file'),(59687,3805,'_assets_1_file_or_url','field_59ee31da02903'),(59688,3805,'assets_1_file','3806'),(59689,3805,'_assets_1_file','field_59ee320302905'),(59690,3805,'assets','2'),(59691,3805,'_assets','field_59ee31bc02901'),(59692,3805,'varietal','Cabernet Sauvignon'),(59693,3805,'_varietal','field_59ee660ece2e7'),(59694,3805,'sub_brand',''),(59695,3805,'_sub_brand','field_59ee6623ce2e8'),(59696,3805,'vintage','2021'),(59697,3805,'_vintage','field_59ee6eba9a39a'),(59698,3805,'_yoast_wpseo_estimated-reading-time-minutes','1'),(59699,3805,'_yoast_wpseo_wordproof_timestamp',''),(59700,3807,'_wp_attached_file','2024/06/2022-sangiovesetechsheet-FINAL-w-scores.pdf'),(59701,3807,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:47:\"2022-sangiovesetechsheet-FINAL-w-scores-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:223402;}s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"2022-sangiovesetechsheet-FINAL-w-scores-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16196;}s:5:\"large\";a:5:{s:4:\"file\";s:56:\"2022-sangiovesetechsheet-FINAL-w-scores-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120045;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"2022-sangiovesetechsheet-FINAL-w-scores-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7154;}}s:8:\"filesize\";i:298280;}'),(59702,3808,'web_id','324291c6-d00e-463d-ac8d-c90778cc269a'),(59703,3808,'slug','half-marathon-wines'),(59704,3808,'type','Manual'),(59705,3808,'content',''),(59706,3808,'web_status','Not Available'),(59707,3808,'admin_status','Available'),(59708,3808,'product_web_ids','a:0:{}'),(59709,3808,'product_post_ids','a:0:{}'),(59710,3808,'is_imported','1'),(59712,3810,'web_id','f29ae105-7bde-4537-8fc0-694571a8fc08'),(59713,3810,'slug','2023-pinot-noir-anderson-valley-shiner-duplicate'),(59714,3810,'title','2023 Pinot Noir, Anderson Valley - 2024 Half Marathon Label'),(59715,3810,'type','Wine'),(59716,3810,'image','https://images.commerce7.com/meadowcroft-wines/images/original/2023-av-pinotnoir-racelabel-1720475008815.png'),(59717,3810,'teaser',NULL),(59718,3810,'content','<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div class=\"ecp-section\" data-ecp-handle=\"technical_notes\">\n<div class=\"ecp-html-content tech-notes\">\n<p class=\"p2\"><strong>TASTING NOTES</strong></p>\n<p class=\"p3\">Anderson Valley is famous for its beautifully aromatic Pinot Noirs, and our 2023 vintage Pinot does not disappoint. Aromas of cherry cordial, vanilla, Amarena cherry and notes of rose petal flow from the glass. Layered complex lavors of sweet cranberry, tart cherry and wild strawberry. This wine exhibits a vibrant acidity and a silky mouthfeel. Drinking Window: 1-6 years</p>\n<p class=\"p4\"><strong>SUGGESTED FOOD PAIRING</strong></p>\n<p class=\"p3\">The concentrated richness and exceptional acidity make thiswine exceptionally food friendly. Mushroom dishes are a natural match. Other favorites include cedar plank grilled salmon, roast lamb or duck. Our cheese recommendations would include smooth triple creme cheeses or aged and salty cheeses like Gouda or sharp cheddar.</p>\n<p class=\"p5\"><strong><span class=\"s2\">APPELLATION: </span></strong>Anderson Valley</p>\n<p class=\"p5\"><strong><span class=\"s2\">VARIETAL: </span></strong>Pinot Noir</p>\n<p class=\"p5\"><span class=\"s2\"><strong>HARVESTED:</strong>&nbsp; </span>September 2023</p>\n<p class=\"p5\"><strong><span class=\"s2\">BOTTLED: </span></strong>March 2024</p>\n<p class=\"p2\"><strong>PRODUCTION:</strong> <span class=\"s3\">687 cases </span></p>\n<p class=\"p2\"><strong>ALCOHOL:</strong> <span class=\"s3\">13.5 </span></p>\n</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"review_notes\">\n<div class=\"ecp-html-content\">&nbsp;</div>\n</div>\n<div class=\"ecp-section\" data-ecp-handle=\"view_pdf\"><strong><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/04/2023-PinotNoir-AndValley-FINAL.pdf\">PDF Tech Sheet</a></strong></div>\n</div>'),(59719,3810,'subtitle',NULL),(59720,3810,'price','5000'),(59721,3810,'web_status','Available'),(59722,3810,'admin_status','Available'),(59723,3810,'varietal','Pinot Noir'),(59724,3810,'appellation','Anderson Valley'),(59725,3810,'vintage','2023'),(59726,3810,'collections','a:0:{}'),(59727,3810,'primary_collection',''),(59728,3811,'web_id','cecb7f76-e437-4040-8775-2b3d8a7c2ead'),(59729,3811,'slug','2023-chardonnay-carneros-duplicate1'),(59730,3811,'title','2023 Chardonnay, Napa Carneros - 2024 Half Marathon Label'),(59731,3811,'type','Wine'),(59732,3811,'image','https://images.commerce7.com/meadowcroft-wines/images/original/2023-nc-chardonnay-racelabel-1720475049717.png'),(59733,3811,'teaser',NULL),(59734,3811,'content','<div class=\"tatsu-section-pad clearfix\" data-padding=\"{&quot;d&quot;:&quot;90px 0px 90px 0px&quot;}\" data-padding-top=\"90px\">\n<div class=\"tatsu-row-wrap  tatsu-wrap tatsu-row-one-col tatsu-row-has-one-cols tatsu-medium-gutter tatsu-reg-cols  tatsu-clearfix tatsu-HJxPYjzn1q\">\n<div class=\"tatsu-row \">\n<div class=\"tatsu-column  tatsu-bg-overlay tatsu-one-col tatsu-column-image-none tatsu-column-effect-none  tatsu-rJDKoGnJq\" data-parallax-speed=\"0\">\n<div class=\"tatsu-column-inner \">\n<div class=\"tatsu-column-pad-wrap\">\n<div class=\"tatsu-column-pad\">\n<div id=\"\" class=\"tatsu-code tatsu-module tatsu-ByuNCz215   \">\n<div class=\"ecp-wrapper epub-locale-en\" data-ecp-wrapper=\"true\">\n<div class=\"ecp-component ecp_ProductDetail \">\n<div data-ecp-id=\"1211\">\n<div class=\"ecp-columns ecp-clearfix\">\n<div class=\"ecp-columns-right\">\n<div class=\"ecp-html-content\" role=\"region\" data-ecp-handle=\"description\" aria-label=\"Product description\">\n<div>\n<p class=\"p2\"><strong>TASTING NOTES</strong></p>\n<p class=\"p3\">A lush and aromatic wine, the 2023 vintage of our Carneros Chardonnay is delightfully complex, with aromatic notes of fresh baked brioche, honeydew melon, crisp green apple and marzipan. The long finish delivers refreshing acidity and subtle toasted oak flavors.</p>\n<p class=\"p2\"><strong>SUGGESTED FOOD PAIRING</strong></p>\n<p class=\"p4\">This wine will carry you through pairings for elegant entertaining, weeknight dinners, and everything in between. Fresh Dungeness crab or seared bacon wrapped scallops make this wine sing.</p>\n<p class=\"p4\"><strong>TECHNICAL INFORMATION</strong></p>\n<p class=\"p2\"><span class=\"s2\">APPELLATION: </span>Carneros, Napa Valley</p>\n<p class=\"p2\"><span class=\"s2\">VARIETAL: </span>Chardonnay</p>\n<p class=\"p2\"><span class=\"s2\">HARVESTED: </span>September 2023</p>\n<p class=\"p2\"><span class=\"s2\">BOTTLED: </span>March 2024</p>\n<p class=\"p2\"><span class=\"s2\">PRODUCTION: </span>1059 750ml cases/ 146 375ml cases</p>\n<p class=\"p3\">ALCOHOL: <span class=\"s3\">13.5% </span></p>\n<p class=\"p4\">pH: <span class=\"s3\">3.60</span></p>\n<p class=\"p4\"><a href=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2023-Napa-Carneros-Chardonnay-Tech-Sheet-FINAL.pdf\"><strong><span class=\"s3\">PDF Wine Notes</span></strong></a></p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>'),(59735,3811,'subtitle',NULL),(59736,3811,'price','4500'),(59737,3811,'web_status','Available'),(59738,3811,'admin_status','Available'),(59739,3811,'varietal','Chardonnay'),(59740,3811,'appellation','Carneros'),(59741,3811,'vintage','2023'),(59742,3811,'collections','a:0:{}'),(59743,3811,'primary_collection',''),(59746,3814,'inline_featured_image','0'),(59747,3814,'_edit_lock','1728068459:2'),(59748,3814,'_edit_last','2'),(59749,3814,'_wp_page_template','default'),(59750,3814,'allowed_customer_tag_titles','a:0:{}'),(59751,3814,'allowed_customer_club_titles','a:0:{}'),(59752,3814,'content_block_0_layout_title',''),(59753,3814,'_content_block_0_layout_title','field_5bc11ca9a0d50-s'),(59754,3814,'content_block_0_hide_this_content_block','1'),(59755,3814,'_content_block_0_hide_this_content_block','field_643884e4df74c7textb'),(59756,3814,'content_block_0_custom_css_class',''),(59757,3814,'_content_block_0_custom_css_class','field_5bbe30b1a4de2-1'),(59758,3814,'content_block_0_text_block_columns','one'),(59759,3814,'_content_block_0_text_block_columns','field_5bbe2f81a4de0'),(59760,3814,'content_block_0_narrow_text_block_content','0'),(59761,3814,'_content_block_0_narrow_text_block_content','field_5bbe342e08360'),(59762,3814,'content_block_0_reverse_colors','0'),(59763,3814,'_content_block_0_reverse_colors','field_5bbe3027a4de1'),(59764,3814,'content_block_0_enable_background_image','0'),(59765,3814,'_content_block_0_enable_background_image','field_5bbe30b1a4de2'),(59766,3814,'content_block_0_text_block_content_col_one','<h1 style=\"text-align: center;\">2024 Half Marathon Wines</h1>'),(59767,3814,'_content_block_0_text_block_content_col_one','field_5bbe313b3920d'),(59768,3814,'content_block_1_layout_title',''),(59769,3814,'_content_block_1_layout_title','field_5bc11ca9a0d50-v'),(59770,3814,'content_block_1_hide_this_content_block','1'),(59771,3814,'_content_block_1_hide_this_content_block','field_643884e4df74c7prodcol'),(59772,3814,'content_block_1_custom_css_class',''),(59773,3814,'_content_block_1_custom_css_class','field_5bc11ca9a0d50-cc'),(59774,3814,'content_block_1_product_row_number','2up'),(59775,3814,'_content_block_1_product_row_number','field_5bc11c6da0d4f'),(59776,3814,'content_block_1_data_collection_slug','half-marathon-wines'),(59777,3814,'_content_block_1_data_collection_slug','field_5bc11ca9a0d50'),(59778,3814,'content_block_1_manually_enter_collection_slug','0'),(59779,3814,'_content_block_1_manually_enter_collection_slug','field_5bc11ca9a0d50-2'),(59780,3814,'content_block_1_product_display_feature','0'),(59781,3814,'_content_block_1_product_display_feature','field_5d1144d5e6922'),(59782,3814,'content_block_1_product_display_teaser','0'),(59783,3814,'_content_block_1_product_display_teaser','field_5d114505e6923'),(59784,3814,'content_block','a:2:{i:0;s:10:\"text_block\";i:1;s:18:\"product_collection\";}'),(59785,3814,'_content_block','field_5bbe19a7efa09'),(59786,3814,'_yoast_wpseo_estimated-reading-time-minutes','1'),(59797,920,'_wp_old_date','2024-04-10'),(59798,456,'_wp_old_date','2024-04-10'),(59800,3692,'_wp_old_date','2024-04-10'),(59801,3179,'_wp_old_date','2024-04-10'),(59802,3178,'_wp_old_date','2024-04-10'),(59803,759,'_wp_old_date','2024-04-10'),(59804,2993,'_wp_old_date','2024-04-10'),(59805,2990,'_wp_old_date','2024-04-10'),(59806,2989,'_wp_old_date','2024-04-10'),(59807,2992,'_wp_old_date','2024-04-10'),(59808,2991,'_wp_old_date','2024-04-10'),(59809,3272,'_wp_old_date','2024-04-10'),(59810,3682,'_wp_old_date','2024-04-10'),(59811,3027,'_wp_old_date','2024-04-10'),(59812,1563,'_wp_old_date','2024-04-10'),(59813,948,'_wp_old_date','2024-04-10'),(59814,949,'_wp_old_date','2024-04-10'),(59815,950,'_wp_old_date','2024-04-10'),(59816,880,'_wp_old_date','2024-04-10'),(59817,1541,'_wp_old_date','2024-04-10'),(59818,3817,'web_id','bb884546-777a-4798-bed6-a29f24044aab'),(59819,3817,'slug','2022-chardonnay-sonoma-coast-duplicate'),(59820,3817,'title','2022 Chardonnay, Sonoma Coast - BEE YOU'),(59821,3817,'type','Wine'),(59822,3817,'image','https://images.commerce7.com/meadowcroft-wines/images/original/2022-sonomacoast-chardonnay-web-1720480908756.png'),(59823,3817,'teaser',NULL),(59824,3817,'content','<p>The Sonoma Coast AVA extends from San Pablo Bay to the border with Mendocino County. The appellation is known for its cool climate and high rainfall relative to other parts of Sonoma County. Close to the Pacific, with more than twice the annual rainfall of its inland neighbors, it&rsquo;s warm enough to ripen wine grapes because most vineyards are above the fog line.</p>\n<p><span style=\"font-weight: bold;\">TASTING NOTES:</span>&nbsp; Showcases vibrant notes of tropical fruit and green apple on the nose. The palate is medium, with fresh flavors of lychee, grapefruit, ripe cantaloupe, and vanilla bean. The finish lingers delightfully with notes of apple strudel and suggestions of baking spice.&nbsp;</p>\n<div>\n<div>&nbsp;</div>\n<div>FOOD PAIRING:&nbsp; We love this clean, complex chardonnay with fresh dishes like ceviche, Ahi tuna tartare, buttered crab, and crusty sourdough bread. Serve chilled with salads and young cheeses, or at room temperature with richer dishes and aged cheeses. A versatile and complex wine is a great cellar staple.</div>\n</div>'),(59825,3817,'subtitle','Sonoma Coast'),(59826,3817,'price','3000'),(59827,3817,'web_status','Not Available'),(59828,3817,'admin_status','Available'),(59829,3817,'varietal','Chardonnay'),(59830,3817,'appellation','Sonoma Coast'),(59831,3817,'vintage','2022'),(59832,3817,'meta_data_feature-text','Sonoma Coast'),(59833,3817,'meta_data_wine-notes','$28.00'),(59834,3817,'meta_data_technical-notes','<div>Appellation: Vino Del Sol Sonoma Coast, Sonoma County</div><div>Varietal: Chardonnay</div><div>Oak Regime: 100% French Oak, 35% New</div><div>Harvested: September 2021</div><div>Bottle Date: April 2022</div><div>Production: 145 Cases</div><div>Alc: 13.5%</div><div><br></div>'),(59835,3817,'collections','a:0:{}'),(59836,3817,'primary_collection',''),(59837,3818,'web_id','6780b9c3-0221-40d0-89ae-ac1a6b3514cf'),(59838,3818,'slug','ice-pack'),(59839,3818,'title','Ice Pack'),(59840,3818,'type','General Merchandise'),(59841,3818,'image',NULL),(59842,3818,'teaser',NULL),(59843,3818,'content',NULL),(59844,3818,'subtitle',NULL),(59845,3818,'price','1000'),(59846,3818,'web_status','Not Available'),(59847,3818,'admin_status','Available'),(59848,3818,'collections','a:0:{}'),(59849,3818,'primary_collection',''),(59850,3819,'web_id','6421f20e-e448-44b3-bb51-6db7544b6917'),(59851,3819,'slug','olives-jar'),(59852,3819,'title','Olives - jar'),(59853,3819,'type','General Merchandise'),(59854,3819,'image','https://images.commerce7.com/meadowcroft-wines/images/original/958e8a1dea475388be6395da27396e3c37ebfbb993b3246b86a5fd549fd86213-1722539298861.webp'),(59855,3819,'teaser',NULL),(59856,3819,'content',NULL),(59857,3819,'subtitle',NULL),(59858,3819,'price','850'),(59859,3819,'web_status','Not Available'),(59860,3819,'admin_status','Available'),(59861,3819,'collections','a:0:{}'),(59862,3819,'primary_collection',''),(59866,3823,'web_id','3734901a-989d-479e-8c8f-e6615357a299'),(59867,3823,'slug','club-newsletter-fall-2024'),(59868,3823,'title','Club Newsletter - FALL 2024'),(59869,3823,'type','Collateral'),(59870,3823,'image','https://images.commerce7.com/meadowcroft-wines/images/original/clubnewsletter2024-1725406772308.jpg'),(59871,3823,'teaser',NULL),(59872,3823,'content',NULL),(59873,3823,'subtitle',NULL),(59874,3823,'price','0'),(59875,3823,'web_status','Not Available'),(59876,3823,'admin_status','Available'),(59877,3823,'collections','a:0:{}'),(59878,3823,'primary_collection',''),(59879,3824,'web_id','be7d3f0a-a61a-4fb4-8a98-5e52f423833b'),(59880,3824,'slug','club-gift-fall-2024'),(59881,3824,'title','Club Gift Fall 2024'),(59882,3824,'type','Collateral'),(59883,3824,'image','https://images.commerce7.com/meadowcroft-wines/images/original/clubgift2024-1725406856334.jpg'),(59884,3824,'teaser',NULL),(59885,3824,'content',NULL),(59886,3824,'subtitle',NULL),(59887,3824,'price','0'),(59888,3824,'web_status','Not Available'),(59889,3824,'admin_status','Available'),(59890,3824,'collections','a:0:{}'),(59891,3824,'primary_collection',''),(59892,3825,'web_id','b0dceeca-08f0-4df8-9bf4-2e38722fd2a6'),(59893,3825,'slug','sip-and-savor-cheese-making-demonstration'),(59894,3825,'title','Sip and Savor cheese making demonstration'),(59895,3825,'type','Event Ticket'),(59896,3825,'image','https://images.commerce7.com/meadowcroft-wines/images/original/cheesemaking-web-1725570090187.jpg'),(59897,3825,'teaser',NULL),(59898,3825,'content','<div>Join us at Meadowcroft Wines for a cheese-making demonstration on Sunday, September 29th. You\'ll start your adventure with a sensory tour of the Cornerstone gardens, followed by a hands-on labneh cheese-making demonstration. You\'ll savor delicious cheese, paired perfectly with a glass of Meadowcroft wine, and even take home your own batch to enjoy at home!</div>\n<div>&nbsp;</div>\n<div>\n<div><span style=\"font-family: Poppins, Helvetica, Arial, sans-serif; font-weight: 400; font-style: normal;\"><strong><span style=\"font-size: 20px;\">When: </span></strong>Sunday, September 28th.&nbsp; 11am-1pm</span></div>\n<div><span style=\"font-family: Poppins, Helvetica, Arial, sans-serif; font-weight: 400; font-style: normal;\"><strong><span style=\"font-size: 20px;\">Where:&nbsp;</span></strong> Meadowcroft Tasting Room | 23574 Arnold Dr., Sonoma</span></div>\n<div><span style=\"font-family: Poppins, Helvetica, Arial, sans-serif; font-weight: 400; font-style: normal;\"><strong><span style=\"font-size: 20px;\">Cost:&nbsp;</span></strong> Club Members - $60 |&nbsp; Non-Members - $75 . Price includes glass of Meadowcroft Wine.&nbsp;</span></div>\n<div><span style=\"font-family: Poppins, Helvetica, Arial, sans-serif; font-weight: 400; font-style: normal;\">&nbsp;</span></div>\n<div><span style=\"font-family: Poppins, Helvetica, Arial, sans-serif; font-weight: 400; font-style: normal;\"><span style=\"font-size: 12px;\">Only 12 seats available, purchase tickets soon!&nbsp; All attendees must be 21 years of age or older.</span>&nbsp;</span></div>\n</div>'),(59899,3825,'subtitle',NULL),(59900,3825,'price','7500'),(59901,3825,'web_status','Not Available'),(59902,3825,'admin_status','Available'),(59903,3825,'collections','a:0:{}'),(59904,3825,'primary_collection',''),(59906,3827,'inline_featured_image','0'),(59907,3827,'_edit_lock','1725571760:3'),(59908,3827,'_edit_last','3'),(59909,3828,'_wp_attached_file','2024/09/CHEESEMAKING-WEB.jpg'),(59910,3828,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"file\";s:28:\"2024/09/CHEESEMAKING-WEB.jpg\";s:8:\"filesize\";i:847319;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"CHEESEMAKING-WEB-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24054;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"CHEESEMAKING-WEB-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:199828;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"CHEESEMAKING-WEB-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8524;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"CHEESEMAKING-WEB-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118350;}s:9:\"thumblist\";a:5:{s:4:\"file\";s:28:\"CHEESEMAKING-WEB-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24054;}s:12:\"thumbrelated\";a:5:{s:4:\"file\";s:28:\"CHEESEMAKING-WEB-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55938;}s:16:\"meccarouselthumb\";a:5:{s:4:\"file\";s:28:\"CHEESEMAKING-WEB-474x324.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37117;}s:10:\"gridsquare\";a:5:{s:4:\"file\";s:28:\"CHEESEMAKING-WEB-391x260.jpg\";s:5:\"width\";i:391;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25052;}s:8:\"tileview\";a:5:{s:4:\"file\";s:28:\"CHEESEMAKING-WEB-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30039;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"CHEESEMAKING-WEB-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:441283;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:30:\"CHEESEMAKING-WEB-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:276407;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(59911,3827,'_thumbnail_id','3828'),(59912,3827,'mec_color','a3b745'),(59913,3827,'allowed_customer_tag_titles','a:0:{}'),(59914,3827,'allowed_customer_club_titles','a:0:{}'),(59915,3827,'mec_location_id','15'),(59916,3827,'mec_dont_show_map','0'),(59917,3827,'mec_organizer_id','1'),(59918,3827,'mec_read_more','https://www.meadowcroftwines.com/product/sip-and-savor-cheese-making-demonstration'),(59919,3827,'mec_more_info',''),(59920,3827,'mec_more_info_title',''),(59921,3827,'mec_more_info_target','_self'),(59922,3827,'mec_cost','75'),(59923,3827,'mec_cost_auto_calculate','0'),(59924,3827,'mec_currency','a:0:{}'),(59925,3827,'mec_additional_organizer_ids','a:0:{}'),(59926,3827,'mec_additional_location_ids','a:0:{}'),(59927,3827,'mec_date','a:4:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2024-09-29\";s:4:\"hour\";s:2:\"11\";s:7:\"minutes\";s:1:\"0\";s:4:\"ampm\";s:2:\"AM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2024-09-29\";s:4:\"hour\";s:1:\"1\";s:7:\"minutes\";s:1:\"0\";s:4:\"ampm\";s:2:\"PM\";}s:7:\"comment\";s:0:\"\";s:6:\"repeat\";a:6:{s:4:\"type\";s:5:\"daily\";s:8:\"interval\";s:1:\"1\";s:8:\"advanced\";s:0:\"\";s:3:\"end\";s:5:\"never\";s:11:\"end_at_date\";s:0:\"\";s:18:\"end_at_occurrences\";s:2:\"10\";}}'),(59928,3827,'mec_repeat','a:6:{s:4:\"type\";s:5:\"daily\";s:8:\"interval\";s:1:\"1\";s:8:\"advanced\";s:0:\"\";s:3:\"end\";s:5:\"never\";s:11:\"end_at_date\";s:0:\"\";s:18:\"end_at_occurrences\";s:2:\"10\";}'),(59929,3827,'mec_certain_weekdays','a:0:{}'),(59930,3827,'mec_allday','0'),(59931,3827,'one_occurrence','0'),(59932,3827,'mec_hide_time','0'),(59933,3827,'mec_hide_end_time','0'),(59934,3827,'mec_comment',''),(59935,3827,'mec_timezone','global'),(59936,3827,'mec_countdown_method','global'),(59937,3827,'mec_style_per_event','global'),(59938,3827,'mec_trailer_url',''),(59939,3827,'mec_trailer_title',''),(59940,3827,'mec_public','1'),(59941,3827,'mec_start_date','2024-09-29'),(59942,3827,'mec_start_time_hour','11'),(59943,3827,'mec_start_time_minutes','0'),(59944,3827,'mec_start_time_ampm','AM'),(59945,3827,'mec_start_day_seconds','39600'),(59946,3827,'mec_start_datetime','2024-09-29 11:00 AM'),(59947,3827,'mec_end_date','2024-09-29'),(59948,3827,'mec_end_time_hour','1'),(59949,3827,'mec_end_time_minutes','0'),(59950,3827,'mec_end_time_ampm','PM'),(59951,3827,'mec_end_day_seconds','46800'),(59952,3827,'mec_end_datetime','2024-09-29 01:00 PM'),(59953,3827,'mec_repeat_status','0'),(59954,3827,'mec_repeat_type',''),(59955,3827,'mec_repeat_interval','1'),(59956,3827,'mec_repeat_end',''),(59957,3827,'mec_repeat_end_at_occurrences','9'),(59958,3827,'mec_repeat_end_at_date',''),(59959,3827,'mec_advanced_days','a:0:{}'),(59960,3827,'mec_sequence','2'),(59961,3827,'mec_in_days',''),(59962,3827,'mec_not_in_days',''),(59963,3827,'mec_hourly_schedules','a:0:{}'),(59964,3827,'mec_booking','a:0:{}'),(59965,3827,'mec_tickets','a:0:{}'),(59966,3827,'mec_global_tickets_applied','1'),(59967,3827,'mec_fees_global_inheritance','1'),(59968,3827,'mec_fees','a:0:{}'),(59969,3827,'mec_ticket_variations_global_inheritance','1'),(59970,3827,'mec_ticket_variations','a:0:{}'),(59971,3827,'mec_reg_fields_global_inheritance','1'),(59972,3827,'mec_reg_fields','a:0:{}'),(59973,3827,'mec_bfixed_fields','a:0:{}'),(59974,3827,'mec_op','a:0:{}'),(59975,3827,'mec_fields','a:0:{}'),(59976,3827,'mec_event_gallery','a:0:{}'),(59977,3827,'mec_related_events','a:0:{}'),(59978,3827,'mec_banner','a:0:{}'),(59979,3827,'mec_new_event_notif_sent','1'),(59980,3827,'mec_event_status','EventScheduled'),(59981,3827,'mec_moved_online_link',''),(59982,3827,'mec_cancelled_reason',''),(59983,3827,'mec_display_cancellation_reason_in_single_page',''),(59984,3827,'_yoast_wpseo_primary_mec_category',''),(59985,3827,'_yoast_wpseo_content_score','90'),(59986,3827,'_yoast_wpseo_estimated-reading-time-minutes','1'),(59988,3830,'web_id','3fb4f4e3-a80e-46fc-8f0f-a14a5cb77ef5'),(59989,3830,'slug','tee-shirt---bee-you-unisex-duplicate1'),(59990,3830,'title','Tee Shirt - Harvest 2024'),(59991,3830,'type','General Merchandise'),(59992,3830,'image','https://images.commerce7.com/meadowcroft-wines/images/original/tee-beeyou-front-1718746777148.png'),(59993,3830,'teaser','Show your Meadowcroft pride!  Our super soft and breathable 2024 harvest tee shirt features a color gradient version of our popular bee logo.'),(59994,3830,'content','<p>Show your Meadowcroft pride! &nbsp;Our super soft and breathable Bee You tee shirt features a color gradient version of our popular bee logo. &nbsp;<br /><br /></p>'),(59995,3830,'subtitle',NULL),(59996,3830,'price','3000'),(59997,3830,'web_status','Not Available'),(59998,3830,'admin_status','Available'),(59999,3830,'vendor','707 Embroidery Zone'),(60000,3830,'collections','a:0:{}'),(60001,3830,'primary_collection',''),(60006,920,'_wp_old_date','2024-07-08'),(60007,456,'_wp_old_date','2024-07-08'),(60009,3692,'_wp_old_date','2024-07-08'),(60010,3179,'_wp_old_date','2024-07-08'),(60011,3178,'_wp_old_date','2024-07-08'),(60012,759,'_wp_old_date','2024-07-08'),(60013,2993,'_wp_old_date','2024-07-08'),(60014,2990,'_wp_old_date','2024-07-08'),(60015,2989,'_wp_old_date','2024-07-08'),(60016,2992,'_wp_old_date','2024-07-08'),(60017,2991,'_wp_old_date','2024-07-08'),(60018,3272,'_wp_old_date','2024-07-08'),(60019,3682,'_wp_old_date','2024-07-08'),(60020,3027,'_wp_old_date','2024-07-08'),(60021,1563,'_wp_old_date','2024-07-08'),(60022,948,'_wp_old_date','2024-07-08'),(60023,949,'_wp_old_date','2024-07-08'),(60024,950,'_wp_old_date','2024-07-08'),(60025,880,'_wp_old_date','2024-07-08'),(60026,1541,'_wp_old_date','2024-07-08'),(60027,3834,'_menu_item_type','custom'),(60028,3834,'_menu_item_menu_item_parent','3027'),(60029,3834,'_menu_item_object_id','3834'),(60030,3834,'_menu_item_object','custom'),(60031,3834,'_menu_item_target',''),(60032,3834,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(60033,3834,'_menu_item_xfn',''),(60034,3834,'_menu_item_url','/wine-gifts/'),(60036,920,'_wp_old_date','2024-10-04'),(60037,456,'_wp_old_date','2024-10-04'),(60039,3692,'_wp_old_date','2024-10-04'),(60040,3179,'_wp_old_date','2024-10-04'),(60041,3178,'_wp_old_date','2024-10-04'),(60042,759,'_wp_old_date','2024-10-04'),(60043,2993,'_wp_old_date','2024-10-04'),(60044,2990,'_wp_old_date','2024-10-04'),(60045,2989,'_wp_old_date','2024-10-04'),(60046,2992,'_wp_old_date','2024-10-04'),(60047,2991,'_wp_old_date','2024-10-04'),(60048,3682,'_wp_old_date','2024-10-04'),(60049,3027,'_wp_old_date','2024-10-04'),(60050,3272,'_wp_old_date','2024-10-04'),(60051,1563,'_wp_old_date','2024-10-04'),(60052,948,'_wp_old_date','2024-10-04'),(60053,949,'_wp_old_date','2024-10-04'),(60054,950,'_wp_old_date','2024-10-04'),(60055,880,'_wp_old_date','2024-10-04'),(60056,1541,'_wp_old_date','2024-10-04'),(60057,3252,'content_block_2_layout_title','Form'),(60058,3252,'_content_block_2_layout_title','field_5bc11ca9a0d50-s'),(60059,3252,'content_block_2_hide_this_content_block','1'),(60060,3252,'_content_block_2_hide_this_content_block','field_643884e4df74c7textb'),(60061,3252,'content_block_2_custom_css_class','narrower-content white-section add-padding-top '),(60062,3252,'_content_block_2_custom_css_class','field_5bbe30b1a4de2-1'),(60063,3252,'content_block_2_text_block_columns','one'),(60064,3252,'_content_block_2_text_block_columns','field_5bbe2f81a4de0'),(60065,3252,'content_block_2_narrow_text_block_content','0'),(60066,3252,'_content_block_2_narrow_text_block_content','field_5bbe342e08360'),(60067,3252,'content_block_2_reverse_colors','0'),(60068,3252,'_content_block_2_reverse_colors','field_5bbe3027a4de1'),(60069,3252,'content_block_2_enable_background_image','0'),(60070,3252,'_content_block_2_enable_background_image','field_5bbe30b1a4de2'),(60071,3252,'content_block_2_text_block_content_col_one','<h2 style=\"text-align: center;\">Inquire Today</h2>\r\n<p style=\"text-align: center;\">Tell us about your project and our team will get in touch.</p>\r\n<p style=\"text-align: center;\">[gravityform id=\"3\" title=\"false\" description=\"false\"]</p>'),(60072,3252,'_content_block_2_text_block_content_col_one','field_5bbe313b3920d'),(60073,3252,'content_block_3_admin_title',''),(60074,3252,'_content_block_3_admin_title','field_1z275012789c2'),(60075,3252,'content_block_3_hide_this_content_block','1'),(60076,3252,'_content_block_3_hide_this_content_block','field_1z3884e4df74f'),(60077,3252,'content_block_3_custom_css_classes','darker-section'),(60078,3252,'_content_block_3_custom_css_classes','field_1z388502df750'),(60079,3252,'content_block_3_spacer_height_desktop','10'),(60080,3252,'_content_block_3_spacer_height_desktop','field_1zf7ac2212937'),(60081,3252,'content_block_3_spacer_height_mobile','3'),(60082,3252,'_content_block_3_spacer_height_mobile','field_1zf7ac4512938'),(60083,3252,'content_block_5_layout_title','Past Project Images'),(60084,3252,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(60085,3252,'content_block_5_hide_this_content_block','1'),(60086,3252,'_content_block_5_hide_this_content_block','field_643884e4df74c7textb'),(60087,3252,'content_block_5_custom_css_class','darker-section'),(60088,3252,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(60089,3252,'content_block_5_text_block_columns','three'),(60090,3252,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(60091,3252,'content_block_5_column_size','equal'),(60092,3252,'_content_block_5_column_size','field_columnsize'),(60093,3252,'content_block_5_narrow_text_block_content','0'),(60094,3252,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(60095,3252,'content_block_5_reverse_colors','0'),(60096,3252,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(60097,3252,'content_block_5_enable_background_image','0'),(60098,3252,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(60099,3252,'content_block_5_text_block_content_col_one','<img class=\"alignnone size-full wp-image-3253\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/12/MiaRyan.png\" alt=\"Mia &amp; Ryan custom wine bottle\" width=\"800\" height=\"1000\" />'),(60100,3252,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(60101,3252,'content_block_5_text_block_content_col_two','<img class=\"alignnone size-full wp-image-3254\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/12/EmmaRyan.png\" alt=\"Emma &amp; Ryan custom wine bottle\" width=\"800\" height=\"1000\" />'),(60102,3252,'_content_block_5_text_block_content_col_two','field_5bbe31593920e'),(60103,3252,'content_block_5_text_block_content_col_three','<img class=\"alignnone size-full wp-image-3255\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/12/Be-You.png\" alt=\"Be You custom wine bottle\" width=\"800\" height=\"1000\" />'),(60104,3252,'_content_block_5_text_block_content_col_three','field_5bbe31793920f'),(60107,3836,'web_id','c8090cd7-b361-43a5-8506-b337487fd2a0'),(60108,3836,'slug','sunglasses-bee'),(60109,3836,'title','Sunglasses - bee'),(60110,3836,'type','General Merchandise'),(60111,3836,'image',NULL),(60112,3836,'teaser',NULL),(60113,3836,'content',NULL),(60114,3836,'subtitle',NULL),(60115,3836,'price','6000'),(60116,3836,'web_status','Not Available'),(60117,3836,'admin_status','Available'),(60118,3836,'collections','a:0:{}'),(60119,3836,'primary_collection',''),(60120,3837,'web_id','70973bf5-dba3-4ddd-a66e-7e6358fa79c9'),(60121,3837,'slug','maisie-jane-s-assorted-nuts'),(60122,3837,'title','Maisie Jane\'s assorted nuts'),(60123,3837,'type','General Merchandise'),(60124,3837,'image','https://images.commerce7.com/meadowcroft-wines/images/original/nuts-c7-1728945023696.webp'),(60125,3837,'teaser',NULL),(60126,3837,'content',NULL),(60127,3837,'subtitle',NULL),(60128,3837,'price','700'),(60129,3837,'web_status','Not Available'),(60130,3837,'admin_status','Available'),(60131,3837,'collections','a:0:{}'),(60132,3837,'primary_collection',''),(60133,3838,'web_id','5e27194a-9715-4940-943f-f2a7d34e0ece'),(60134,3838,'slug','2-bottle-black-gift-box'),(60135,3838,'title','2 bottle black gift box'),(60136,3838,'type','General Merchandise'),(60137,3838,'image',NULL),(60138,3838,'teaser',NULL),(60139,3838,'content','<p>Glossy black two bottle gift box adorned with the Meadowcroft bee logo.&nbsp;&nbsp;</p>'),(60140,3838,'subtitle',NULL),(60141,3838,'price','600'),(60142,3838,'web_status','Not Available'),(60143,3838,'admin_status','Available'),(60144,3838,'collections','a:0:{}'),(60145,3838,'primary_collection',''),(60146,3839,'web_id','5b10c65d-cca6-4df7-91d3-7ca36e7e7f33'),(60147,3839,'slug','holiday-celebration-pinot-noir-2-bottle-gift-pack'),(60148,3839,'title','Holiday celebration Pinot Noir 2 bottle gift pack'),(60149,3839,'type','Bundle'),(60150,3839,'image','https://images.commerce7.com/meadowcroft-wines/images/original/pinotnoirgiftpack2024-c7-1729117880757.jpg'),(60151,3839,'teaser',NULL),(60152,3839,'content','<p>A handsome two bottle Pinot Noir gift box that is perfect for any holiday gathering or for gifting.&nbsp; Pinot Noir is known for being a very food friendly wine that tends to be a great choice to suit almost any palate.&nbsp;&nbsp;</p>\n<p>Each gift box is packed in a handsome 2 bottle glossy container adorned with the Meadowcroft bee logo.&nbsp; Each package contains one bottle each:&nbsp;</p>\n<ul>\n<li>2023 Anderson Valley Pinot Noir</li>\n<li>2023 Russian River Valley Pinot Noir</li>\n</ul>'),(60153,3839,'subtitle',NULL),(60154,3839,'price','8400'),(60155,3839,'web_status','Available'),(60156,3839,'admin_status','Available'),(60157,3839,'collections','a:0:{}'),(60158,3839,'primary_collection',''),(60159,3840,'web_id','59c3480f-3b6a-489e-85a0-50ac312b0ee9'),(60160,3840,'slug','socks-pollinator'),(60161,3840,'title','Socks- pollinator'),(60162,3840,'type','General Merchandise'),(60163,3840,'image',NULL),(60164,3840,'teaser',NULL),(60165,3840,'content','<p>Keep your toes warm in style!&nbsp; Dedicated to supporting one of our favorite pollinators, meet our Honey Bee Crew Socks! A portion of all sales from these socks will be donated to Pollinator Partnership, a non-profit whose mission is to promote the health of pollinators, critical to food and ecosystems, through conservation, education, and research. Signature initiatives include the North American Pollinator Protection Campaign, National Pollinator Week, and the Eco-regional Planting Guides.&nbsp;</p>'),(60166,3840,'subtitle',NULL),(60167,3840,'price','1800'),(60168,3840,'web_status','Not Available'),(60169,3840,'admin_status','Available'),(60170,3840,'collections','a:0:{}'),(60171,3840,'primary_collection',''),(60172,3841,'web_id','2311b44c-c8dc-4765-b269-1148109ad6f4'),(60173,3841,'slug','beeswax-lotion-bar'),(60174,3841,'title','Beeswax lotion bar'),(60175,3841,'type','General Merchandise'),(60176,3841,'image','https://images.commerce7.com/meadowcroft-wines/images/original/cocobee-1729275943734.webp'),(60177,3841,'teaser',NULL),(60178,3841,'content',NULL),(60179,3841,'subtitle',NULL),(60180,3841,'price','900'),(60181,3841,'web_status','Not Available'),(60182,3841,'admin_status','Available'),(60183,3841,'collections','a:0:{}'),(60184,3841,'primary_collection',''),(60185,3842,'web_id','eab17099-a770-4f1a-a582-1d7ea1fa5ea4'),(60186,3842,'slug','fall-tasting-room-party-2024'),(60187,3842,'title','Fall Tasting Room Party 2024'),(60188,3842,'type','Event Ticket'),(60189,3842,'image','https://images.commerce7.com/meadowcroft-wines/images/original/tr-event-square-1729277757055.jpg'),(60190,3842,'teaser',NULL),(60191,3842,'content','<p>Autumn has arrived, and we\'re thrilled to invite you to come celebrate harvest with us at Meadowcroft!&nbsp; &nbsp;Join us as we toast to a bountiful season and celebrate the richness of fall with good company, delicious food, and your favorite Meadowcroft wines.</p>\n<p><span style=\"font-family: Poppins, Helvetica, Arial, sans-serif; font-weight: 400; font-style: normal;\"><strong><span style=\"font-size: 20px;\">WHEN:</span></strong> Saturday, November 9th, 4-7 PM &nbsp;</span><br /><span style=\"font-family: Poppins, Helvetica, Arial, sans-serif; font-weight: 400; font-style: normal;\"><strong><span style=\"font-size: 20px;\">WHERE:</span></strong> Meadowcroft Tasting Room &nbsp;</span><br /><span style=\"font-family: Poppins, Helvetica, Arial, sans-serif; font-weight: 400; font-style: normal;\"><span style=\"font-size: 20px;\"><strong>COST:</strong> </span>$45 | Club Members: $25 (two tickets per membership at this price)</span></p>\n<div>Chef Dan Lucia will be praring some delicious autumn comfort foods for you to enjoy alongside your favorite wines. Enjoy gourmet grilled cheese sandwiches paired with seasonal soups, chill out with our refreshing sangria, and satisfy your sweet tooth at our caramel apple bar.&nbsp; And don\'t miss the chance to get your feet dirty with some good old-fashioned grape stomping!</div>\n<div>&nbsp;</div>\n<div>Only 60 tickets available, so don\'t delay!</div>\n<div>&nbsp;</div>'),(60192,3842,'subtitle',NULL),(60193,3842,'price','4500'),(60194,3842,'web_status','Not Available'),(60195,3842,'admin_status','Available'),(60196,3842,'collections','a:0:{}'),(60197,3842,'primary_collection',''),(60198,3843,'web_id','6538f34c-1288-46b2-b27a-c5cd71e5e585'),(60199,3843,'slug','crackers-flatbreads--rosemary--olive-oil-duplicate'),(60200,3843,'title','Cheese Coins'),(60201,3843,'type','General Merchandise'),(60202,3843,'image','https://images.commerce7.com/meadowcroft-wines/images/original/cheesecoins-1729283650589.webp'),(60203,3843,'teaser',NULL),(60204,3843,'content',NULL),(60205,3843,'subtitle',NULL),(60206,3843,'price','700'),(60207,3843,'web_status','Not Available'),(60208,3843,'admin_status','Available'),(60209,3843,'collections','a:0:{}'),(60210,3843,'primary_collection',''),(60211,3844,'web_id','26dc7666-23f8-4be0-9788-8fa445186c19'),(60212,3844,'slug','wine-chips-small-1-oz-'),(60213,3844,'title','Wine Chips- small (1 oz)'),(60214,3844,'type','General Merchandise'),(60215,3844,'image',NULL),(60216,3844,'teaser',NULL),(60217,3844,'content',NULL),(60218,3844,'subtitle',NULL),(60219,3844,'price','600'),(60220,3844,'web_status','Not Available'),(60221,3844,'admin_status','Available'),(60222,3844,'collections','a:0:{}'),(60223,3844,'primary_collection',''),(60224,3845,'web_id','c218aa7f-34d2-41f2-911f-2800265ca467'),(60225,3845,'slug','wine-chips--small-1-oz-duplicate'),(60226,3845,'title','Wine Chips- large (3oz)'),(60227,3845,'type','General Merchandise'),(60228,3845,'image','https://images.commerce7.com/meadowcroft-wines/images/original/winechips-lg-1729287510535.webp'),(60229,3845,'teaser',NULL),(60230,3845,'content',NULL),(60231,3845,'subtitle',NULL),(60232,3845,'price','800'),(60233,3845,'web_status','Not Available'),(60234,3845,'admin_status','Available'),(60235,3845,'collections','a:0:{}'),(60236,3845,'primary_collection',''),(60239,3848,'web_id','12db2848-711f-4b87-9b4c-f452fb4d353e'),(60240,3848,'slug','chocolate-truffles-6-pack'),(60241,3848,'title','Chocolate Truffles 6 pack'),(60242,3848,'type','General Merchandise'),(60243,3848,'image','https://images.commerce7.com/meadowcroft-wines/images/original/truffles-6pk-1730242464766.jpg'),(60244,3848,'teaser','Selection of 6 premium truffles from Birrn Chocolates from Vermont.'),(60245,3848,'content','<p>Selection of 6 premium dark chocolate truffles from Birrn Chocolates in Vermont.&nbsp; The selection includes one each:&nbsp;</p>\n<ul>\n<li>Salted Caramel</li>\n<li>Black Forest</li>\n<li>Tiramisu</li>\n<li>Cappucino</li>\n<li>Champagne</li>\n<li>Vanilla</li>\n</ul>'),(60246,3848,'subtitle',NULL),(60247,3848,'price','1200'),(60248,3848,'web_status','Not Available'),(60249,3848,'admin_status','Available'),(60250,3848,'collections','a:0:{}'),(60251,3848,'primary_collection',''),(60252,3849,'web_id','52934049-a165-4049-af66-145ea90f35d5'),(60253,3849,'slug','all-she-wrote-port-and-chocolate-truffle-gift-box'),(60254,3849,'title','All She Wrote Port and Chocolate Truffle Gift Box'),(60255,3849,'type','Bundle'),(60256,3849,'image','https://images.commerce7.com/meadowcroft-wines/images/original/port-truffles-1730242854259.jpg'),(60257,3849,'teaser','Perfect for an evening around the fireplace!  This handsome gift box includes a bottle of our All She Wrote Port style wine and a selection of dark chocolate truffles from Birnn Chocolates of Vermont.'),(60258,3849,'content','<p>Perfect for an evening around the fireplace!&nbsp; This handsome gift box includes a bottle of our All She Wrote Port style wine and a selection of dark chocolate truffles from Birnn Chocolates of Vermont.&nbsp; Each gift box contains the following:&nbsp;</p>\n<ul>\n<li>One bottle All She Wrote Port Style Wine</li>\n<li>One each dark chocolate truffles: Cappucino, Vanilla, Sea Salt Caramel, Black Forest, Tiramisu &amp; Champagne.&nbsp;</li>\n</ul>'),(60259,3849,'subtitle',NULL),(60260,3849,'price','5000'),(60261,3849,'web_status','Available'),(60262,3849,'admin_status','Available'),(60263,3849,'collections','a:0:{}'),(60264,3849,'primary_collection',''),(60265,920,'_wp_old_date','2024-10-08'),(60266,456,'_wp_old_date','2024-10-08'),(60267,3692,'_wp_old_date','2024-10-08'),(60268,3179,'_wp_old_date','2024-10-08'),(60269,3178,'_wp_old_date','2024-10-08'),(60270,759,'_wp_old_date','2024-10-08'),(60271,2993,'_wp_old_date','2024-10-08'),(60272,2990,'_wp_old_date','2024-10-08'),(60273,2989,'_wp_old_date','2024-10-08'),(60274,2992,'_wp_old_date','2024-10-08'),(60275,2991,'_wp_old_date','2024-10-08'),(60276,3682,'_wp_old_date','2024-10-08'),(60277,3027,'_wp_old_date','2024-10-08'),(60278,3834,'_wp_old_date','2024-10-08'),(60279,3272,'_wp_old_date','2024-10-08'),(60280,1563,'_wp_old_date','2024-10-08'),(60281,948,'_wp_old_date','2024-10-08'),(60282,949,'_wp_old_date','2024-10-08'),(60283,950,'_wp_old_date','2024-10-08'),(60284,880,'_wp_old_date','2024-10-08'),(60285,1541,'_wp_old_date','2024-10-08'),(60286,3850,'web_id','456616c1-138f-4aaf-84a7-b0c24ed322d4'),(60287,3850,'slug','caramel-salted-honey-dark-chocolate'),(60288,3850,'title','Caramel - salted honey dark chocolate'),(60289,3850,'type','General Merchandise'),(60290,3850,'image','https://images.commerce7.com/meadowcroft-wines/images/original/caramel-1730323436990.webp'),(60291,3850,'teaser',NULL),(60292,3850,'content',NULL),(60293,3850,'subtitle',NULL),(60294,3850,'price','1000'),(60295,3850,'web_status','Not Available'),(60296,3850,'admin_status','Available'),(60297,3850,'collections','a:0:{}'),(60298,3850,'primary_collection',''),(60299,3851,'web_id','33d2d8a7-a2fa-4eef-b218-27e8a948a35e'),(60300,3851,'slug','bordeaux-lovers-gift-box'),(60301,3851,'title','Bordeaux Lovers Gift Box'),(60302,3851,'type','Bundle'),(60303,3851,'image','https://images.commerce7.com/meadowcroft-wines/images/original/bordeaux-giftbox-1730400905715.jpg'),(60304,3851,'teaser','The perfect gift for lovers of bold red wines and contains one bottle each NV 20 Year Anniversary Cuvee and 2022 Napa Valley Cabernet Sauvignon.'),(60305,3851,'content','<p>The perfect gift for lovers of blod red wines.&nbsp; This special selection comes packaged in a sleek two bottle gift box and makes a great gift for anyone who enjoys Cabernet Sauvignon.&nbsp; Wines included in this package are one bottle each:&nbsp;</p>\n<ul>\n<li><a href=\"https://www.meadowcroftwines.com/product/anniversary-cuv-e-\"><strong>NV 20 Year Annversary Cuvee</strong></a> <em>(94pts International Wine Review)</em>&nbsp;</li>\n<li><a href=\"https://www.meadowcroftwines.com/product/2022-cabernet-sauvignon-napa-valley\"><strong>2022 Napa Valley Cabernet Sauvignon</strong></a> <em>(92pts Wine Enthusiast)</em>&nbsp;</li>\n</ul>'),(60306,3851,'subtitle',NULL),(60307,3851,'price','12600'),(60308,3851,'web_status','Available'),(60309,3851,'admin_status','Available'),(60310,3851,'collections','a:0:{}'),(60311,3851,'primary_collection',''),(60312,3852,'web_id','67ee9d80-2652-4c6d-b593-43c0af0fb167'),(60313,3852,'slug','grateful-gatherings-gift-box'),(60314,3852,'title','Grateful Gatherings Gift Box'),(60315,3852,'type','Bundle'),(60316,3852,'image','https://images.commerce7.com/meadowcroft-wines/images/original/gratefulgatherings-1730401749250.jpg'),(60317,3852,'teaser','A curated selection of six delicious wines that promise to please every palate and make any celebration memorable. This gift box is perfectly suited for holiday hosts, whether for yourself or someone else, and ensures that your holiday entertaining is both effortless and unforgettable.'),(60318,3852,'content','<p class=\"text-body font-regular leading-[24px] pt-[9px] pb-[2px]\" dir=\"ltr\">Elevate your holiday gatherings with the <strong><strong class=\"font-bold\">Grateful Gatherings Gift Box</strong></strong>, a curated selection of six delicious wines that promise to please every palate and make any celebration memorable. This gift box is perfectly suited for holiday hosts, whether for yourself or someone else, and ensures that your holiday entertaining is both effortless and unforgettable.</p>\n<h3 class=\"font-bold text-h4 leading-[30px] pt-[15px] pb-[2px] [&amp;_a]:underline-offset-[6px] [&amp;_.underline]:underline-offset-[6px]\" dir=\"ltr\">What\'s Inside:</h3>\n<ul class=\"pt-[9px] pb-[2px] pl-[24px] list-disc [&amp;_ul]:pt-[5px] pt-[5px]\">\n<li class=\"text-body font-regular leading-[24px] my-[5px] [&amp;&gt;ol]:!pt-0 [&amp;&gt;ol]:!pb-0 [&amp;&gt;ul]:!pt-0 [&amp;&gt;ul]:!pb-0\" value=\"1\"><a href=\"https://www.meadowcroftwines.com/product/blanc-de-noir-rose\"><strong><strong class=\"font-bold\">NV Sparkling Blanc de Noirs</strong></strong></a> - Start your festivities with a touch of sparkle. This elegant bubbly is perfect for toasting to joyful moments.</li>\n<li class=\"text-body font-regular leading-[24px] my-[5px] [&amp;&gt;ol]:!pt-0 [&amp;&gt;ol]:!pb-0 [&amp;&gt;ul]:!pt-0 [&amp;&gt;ul]:!pb-0\" value=\"2\"><a href=\"https://www.meadowcroftwines.com/product/2023-sauvignon-blanc-sonoma-coast\"><strong><strong class=\"font-bold\">2023 Sauvignon Blanc</strong></strong></a> - Crisp and refreshing, this wine pairs beautifully with light appetizers and salads, bringing a zing to your gathering.</li>\n<li class=\"text-body font-regular leading-[24px] my-[5px] [&amp;&gt;ol]:!pt-0 [&amp;&gt;ol]:!pb-0 [&amp;&gt;ul]:!pt-0 [&amp;&gt;ul]:!pb-0\" value=\"3\"><a href=\"https://www.meadowcroftwines.com/product/2022-river-trace-ros\"><strong><strong class=\"font-bold\">2022 River Trace Ros&eacute;</strong></strong></a> - With its delicate notes and blush hue, this ros&eacute; complements a range of dishes, adding a splash of color and flavor to your table.</li>\n<li class=\"text-body font-regular leading-[24px] my-[5px] [&amp;&gt;ol]:!pt-0 [&amp;&gt;ol]:!pb-0 [&amp;&gt;ul]:!pt-0 [&amp;&gt;ul]:!pb-0\" value=\"4\"><a href=\"https://www.meadowcroftwines.com/product/2022-sangiovese-speedy-creek-vineyard-duplicate\"><strong><strong class=\"font-bold\">2022 Sangiovese</strong></strong></a> - A versatile red that pleases both casual drinkers and connoisseurs alike, it&rsquo;s a hearty addition to any meal.</li>\n<li class=\"text-body font-regular leading-[24px] my-[5px] [&amp;&gt;ol]:!pt-0 [&amp;&gt;ol]:!pb-0 [&amp;&gt;ul]:!pt-0 [&amp;&gt;ul]:!pb-0\" value=\"5\"><a href=\"https://www.meadowcroftwines.com/product/2022-cabernet-sauvignon-napa-valley\"><strong><strong class=\"font-bold\">2022 Napa Valley Cabernet Sauvignon</strong></strong></a> - Rich, bold, and full-bodied, this wine is the perfect partner for your main course, particularly meats and savory dishes.</li>\n<li class=\"text-body font-regular leading-[24px] my-[5px] [&amp;&gt;ol]:!pt-0 [&amp;&gt;ol]:!pb-0 [&amp;&gt;ul]:!pt-0 [&amp;&gt;ul]:!pb-0\" value=\"6\"><a href=\"https://www.meadowcroftwines.com/product/all-she-wrote\"><strong><strong class=\"font-bold\">NV All She Wrote Port Style Wine</strong></strong></a> - Conclude your evening with this decadent, sweet port, ideal for sipping alongside dessert or simply enjoying on its own.</li>\n</ul>'),(60319,3852,'subtitle',NULL),(60320,3852,'price','27500'),(60321,3852,'web_status','Available'),(60322,3852,'admin_status','Available'),(60323,3852,'collections','a:0:{}'),(60324,3852,'primary_collection',''),(60325,3853,'web_id','a2513f82-b0c9-40a5-bdec-34a5fcc35757'),(60326,3853,'slug','celebration-noir-six-bottle-box'),(60327,3853,'title','Celebration Noir Six Bottle Box'),(60328,3853,'type','Bundle'),(60329,3853,'image','https://images.commerce7.com/meadowcroft-wines/images/original/celebration-noir-1730403002877.jpg'),(60330,3853,'teaser','A curated selection that captures the spirit of the holidays and the elegance of Pinot Noir. Packaged in a handsome gloss black gift box, this gift contains 2 bottles each of Pinot Noir -  \'23 Anderson Valley, \'23 Sonoma Coast and \'23 Russian River.'),(60331,3853,'content','<p class=\"text-body font-regular leading-[24px] pt-[9px] pb-[2px]\" dir=\"ltr\">Introducing the Celebration Noir Gift Box&mdash;a curated selection that captures the spirit of the holidays and the elegance of Pinot Noir. All six bottles are packaged in a handsome gloss black gift box, making it an impressive gift that will stand out under the tree or at your holiday gatherings.&nbsp; Pinot Noir is known for its versatility, making it the ideal choice for any holiday occasion.</p>\n<p class=\"text-body font-regular leading-[24px] pt-[9px] pb-[2px]\" dir=\"ltr\"><strong><strong class=\"font-bold\">Inside the Box</strong></strong></p>\n<ul class=\"pt-[9px] pb-[2px] pl-[24px] list-disc [&amp;_ul]:pt-[5px] pt-[5px]\">\n<li class=\"text-body font-regular leading-[24px] my-[5px] [&amp;&gt;ol]:!pt-0 [&amp;&gt;ol]:!pb-0 [&amp;&gt;ul]:!pt-0 [&amp;&gt;ul]:!pb-0\" value=\"1\"><a href=\"https://www.meadowcroftwines.com/product/2023-pinot-noir-anderson-valley\"><strong><strong class=\"font-bold\">2023 Anderson Valley Pinot Noir</strong></strong></a> - RIch and vibrant fruit flavors from the renowned Anderson Valley appellation.&nbsp;</li>\n<li class=\"text-body font-regular leading-[24px] my-[5px] [&amp;&gt;ol]:!pt-0 [&amp;&gt;ol]:!pb-0 [&amp;&gt;ul]:!pt-0 [&amp;&gt;ul]:!pb-0\" value=\"2\"><a href=\"https://www.meadowcroftwines.com/product/2023-pinot-noir-sonoma-coast-\"><strong><strong class=\"font-bold\">2023 Sonoma Coast Pinot Noir</strong></strong></a> - Coastal freshness and complexity are signatures from the Sonoma Coast AVA.</li>\n<li class=\"text-body font-regular leading-[24px] my-[5px] [&amp;&gt;ol]:!pt-0 [&amp;&gt;ol]:!pb-0 [&amp;&gt;ul]:!pt-0 [&amp;&gt;ul]:!pb-0\" value=\"3\"><a href=\"https://www.meadowcroftwines.com/product/2023-pinot-noir-russian-river-valley\"><strong><strong class=\"font-bold\">2023 Russian River Pinot Noir</strong></strong></a> - Bold fruit flavors and silky texture from the renowned Russian River region.</li>\n</ul>'),(60332,3853,'subtitle',NULL),(60333,3853,'price','25000'),(60334,3853,'web_status','Available'),(60335,3853,'admin_status','Available'),(60336,3853,'collections','a:0:{}'),(60337,3853,'primary_collection',''),(60338,3854,'web_id','ed712d28-597c-440a-99ba-f77b59f87b04'),(60339,3854,'slug','duck-rillettes'),(60340,3854,'title','Duck Rillettes'),(60341,3854,'type','General Merchandise'),(60342,3854,'image',NULL),(60343,3854,'teaser',NULL),(60344,3854,'content',NULL),(60345,3854,'subtitle',NULL),(60346,3854,'price','1100'),(60347,3854,'web_status','Not Available'),(60348,3854,'admin_status','Available'),(60349,3854,'collections','a:0:{}'),(60350,3854,'primary_collection',''),(60351,3855,'web_id','174c3e8d-d812-4db6-9e67-e84d52c70432'),(60352,3855,'slug','duck-rillettes-duplicate'),(60353,3855,'title','Duck & Pork Pate'),(60354,3855,'type','General Merchandise'),(60355,3855,'image','https://images.commerce7.com/meadowcroft-wines/images/original/duck--pork-pate-1730408495145.jpg'),(60356,3855,'teaser',NULL),(60357,3855,'content',NULL),(60358,3855,'subtitle',NULL),(60359,3855,'price','1100'),(60360,3855,'web_status','Not Available'),(60361,3855,'admin_status','Available'),(60362,3855,'collections','a:0:{}'),(60363,3855,'primary_collection',''),(60364,3856,'web_id','7111f769-fa4b-4b20-982c-98d8afe78616'),(60365,3856,'slug','duck--pork-pate-duplicate'),(60366,3856,'title','Flatbread Crackers'),(60367,3856,'type','General Merchandise'),(60368,3856,'image','https://images.commerce7.com/meadowcroft-wines/images/original/flatbread-crackers-1730408579338.jpg'),(60369,3856,'teaser',NULL),(60370,3856,'content',NULL),(60371,3856,'subtitle',NULL),(60372,3856,'price','600'),(60373,3856,'web_status','Not Available'),(60374,3856,'admin_status','Available'),(60375,3856,'collections','a:0:{}'),(60376,3856,'primary_collection',''),(60377,3857,'web_id','fabd3ad9-2467-4df6-a229-55bb6e9f7e01'),(60378,3857,'slug','sip-and-savor-gift-box'),(60379,3857,'title','Sip and Savor Gift Box'),(60380,3857,'type','Bundle'),(60381,3857,'image','https://images.commerce7.com/meadowcroft-wines/images/original/sipsavorgiftbox-1730408791419.jpg'),(60382,3857,'teaser','Indulge in a luxurious culinary experience with the Sip and Savor Gift Box, perfect for wine enthusiasts, foodies, and those seeking the perfect wine and food gift.'),(60383,3857,'content','<p class=\"text-body font-regular leading-[24px] pt-[9px] pb-[2px]\" dir=\"ltr\"><strong><strong class=\"font-bold\">Sip and Savor Gift Box</strong></strong></p>\n<p class=\"text-body font-regular leading-[24px] pt-[9px] pb-[2px]\" dir=\"ltr\">Indulge in a luxurious culinary experience with the Sip and Savor Gift Box, perfect for wine enthusiasts, foodies, and those seeking the perfect wine and food gift.&nbsp; Packaged in a sleek black gift box, the Sip and Savor Gift Box is not just a present, but an invitation to a delectable sensory experience. Perfect for special occasions or simply to treat someone to a taste of luxury.</p>\n<p class=\"text-body font-regular leading-[24px] pt-[9px] pb-[2px]\" dir=\"ltr\"><strong><strong class=\"font-bold\">What\'s Inside?</strong></strong></p>\n<ul class=\"pt-[9px] pb-[2px] pl-[24px] list-disc [&amp;_ul]:pt-[5px] pt-[5px]\">\n<li class=\"text-body font-regular leading-[24px] my-[5px] [&amp;&gt;ol]:!pt-0 [&amp;&gt;ol]:!pb-0 [&amp;&gt;ul]:!pt-0 [&amp;&gt;ul]:!pb-0\" value=\"1\"><strong><strong class=\"font-bold\">2022 Meadowcroft Napa Valley Cabernet Sauvignon</strong></strong></li>\n<li class=\"text-body font-regular leading-[24px] my-[5px] [&amp;&gt;ol]:!pt-0 [&amp;&gt;ol]:!pb-0 [&amp;&gt;ul]:!pt-0 [&amp;&gt;ul]:!pb-0\" value=\"1\"><strong><strong class=\"font-bold\">Duck Rillettes</strong></strong></li>\n<li class=\"text-body font-regular leading-[24px] my-[5px] [&amp;&gt;ol]:!pt-0 [&amp;&gt;ol]:!pb-0 [&amp;&gt;ul]:!pt-0 [&amp;&gt;ul]:!pb-0\" value=\"1\"><strong><strong class=\"font-bold\">Duck and Pork P&acirc;t&eacute;</strong></strong></li>\n<li class=\"text-body font-regular leading-[24px] my-[5px] [&amp;&gt;ol]:!pt-0 [&amp;&gt;ol]:!pb-0 [&amp;&gt;ul]:!pt-0 [&amp;&gt;ul]:!pb-0\" value=\"1\"><strong><strong class=\"font-bold\">Flatbread Crackers</strong></strong></li>\n</ul>'),(60384,3857,'subtitle',NULL),(60385,3857,'price','9600'),(60386,3857,'web_status','Available'),(60387,3857,'admin_status','Available'),(60388,3857,'collections','a:0:{}'),(60389,3857,'primary_collection',''),(60390,3858,'web_id','2501c777-06c0-4bec-83e9-61f7fd06617a'),(60391,3858,'slug','meadowcroft-black-box-of-bubbles'),(60392,3858,'title','Black Box of Bubbles'),(60393,3858,'type','Bundle'),(60394,3858,'image','https://images.commerce7.com/meadowcroft-wines/images/original/blackbox-bubbles-1730409786784.jpg'),(60395,3858,'teaser','This elegant gift box features two exquisite bottles of sparkling wine from Meadowcroft - NV Blanc de Blancs and NV Blanc de Noirs.  Let\'s celebrate!'),(60396,3858,'content','<p>Elevate your celebrations with the Meadowcroft Duet: Black Box of Bubbles. This elegant gift box features two exquisite bottles of sparkling wine from Meadowcroft, crafted to perfection for wine enthusiasts and special occasion hosts alike. Inside, you\'ll discover the crisp and refreshing Blanc de Blancs, alongside the rich and complex Blanc de Noirs&mdash;each offering a unique tasting experience. Whether it\'s a gift for a loved one or a treat for yourself, this luxurious black box adds sophistication to any event. Cheers to memorable moments!</p>\n<p><strong>Gift Box Contains:&nbsp;</strong></p>\n<ul>\n<li>One bottle NV Blanc de Blancs</li>\n<li>One bottle NV Blanc de Noirs</li>\n</ul>'),(60397,3858,'subtitle',NULL),(60398,3858,'price','8800'),(60399,3858,'web_status','Available'),(60400,3858,'admin_status','Available'),(60401,3858,'collections','a:0:{}'),(60402,3858,'primary_collection',''),(60406,3862,'_wp_attached_file','2024/11/2023-SauvignonBlanc-FINAL.pdf'),(60407,3862,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:33:\"2023-SauvignonBlanc-FINAL-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166874;}s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"2023-SauvignonBlanc-FINAL-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13750;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"2023-SauvignonBlanc-FINAL-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92331;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"2023-SauvignonBlanc-FINAL-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6418;}}s:8:\"filesize\";i:271824;}'),(60408,3863,'web_id','3b397b13-dadb-47d9-85ad-0f8c5987417f'),(60409,3863,'slug','2024-holiday-gift-bundles'),(60410,3863,'type','Manual'),(60411,3863,'content',''),(60412,3863,'web_status','Available'),(60413,3863,'admin_status','Available'),(60414,3863,'product_web_ids','a:0:{}'),(60415,3863,'product_post_ids','a:0:{}'),(60416,3863,'is_imported','1'),(60417,3864,'web_id','2201615f-ded1-422d-b3f2-4fefb07d0684'),(60418,3864,'slug','private-label-gift-box-mclellan'),(60419,3864,'title','Private Label Gift Box- McLellan'),(60420,3864,'type','Wine'),(60421,3864,'image',NULL),(60422,3864,'teaser',NULL),(60423,3864,'content',NULL),(60424,3864,'subtitle',NULL),(60425,3864,'price','9000'),(60426,3864,'web_status','Not Available'),(60427,3864,'admin_status','Available'),(60428,3864,'varietal',NULL),(60429,3864,'appellation',NULL),(60430,3864,'vintage',NULL),(60431,3864,'collections','a:0:{}'),(60432,3864,'primary_collection',''),(60434,3866,'_wp_attached_file','2024/11/ALL-SHE-WROTE_techsheet.pdf'),(60435,3866,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:31:\"ALL-SHE-WROTE_techsheet-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171740;}s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"ALL-SHE-WROTE_techsheet-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15723;}s:5:\"large\";a:5:{s:4:\"file\";s:40:\"ALL-SHE-WROTE_techsheet-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97604;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"ALL-SHE-WROTE_techsheet-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6662;}}s:8:\"filesize\";i:5515168;}'),(60436,3867,'_wp_attached_file','2024/11/ALL-SHE-WROTE_techsheet-1.pdf'),(60437,3867,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:33:\"ALL-SHE-WROTE_techsheet-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171740;}s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"ALL-SHE-WROTE_techsheet-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15723;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"ALL-SHE-WROTE_techsheet-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97604;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"ALL-SHE-WROTE_techsheet-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6662;}}s:8:\"filesize\";i:5515168;}'),(60438,3868,'web_id','8b2b342e-0c23-4266-a16c-4e16b41ef483'),(60439,3868,'slug','let-it-bee-white-port-style-wine'),(60440,3868,'title','Let It Bee White Port Style Wine'),(60441,3868,'type','Wine'),(60442,3868,'image','https://images.commerce7.com/meadowcroft-wines/images/original/letitbee2020-c7-1733435881595.jpg'),(60443,3868,'teaser',NULL),(60444,3868,'content','<p class=\"p1\"><strong><span class=\"s1\">TASTING NOTES</span></strong></p>\n<p class=\"p2\">Aromas of honey, baked apple melon and fresh baked pineapple upside down cake.<span class=\"Apple-converted-space\">&nbsp; </span>Layered flavors of caramel, pear tart, vanilla with subtle tropical notes.<span class=\"Apple-converted-space\">&nbsp; </span>The rich luscious texture of the wine is nicely balanced on the palate with pronounced acidity brightening the mouthfeel.<span class=\"Apple-converted-space\">&nbsp; &nbsp; </span></p>\n<p class=\"p3\"><strong><span class=\"s1\">SUGGESTED FOOD PAIRING</span></strong></p>\n<p class=\"p2\">This dessert wine boasts a surprising versatility when it comes to food pairings. Its balanced sweetness and acidity make it an exceptional match for savory dishes like roast chicken, foie gras, aged prosciutto, and shellfish. Cheese lovers will find it pairs beautifully with options such as Roquefort, fresh ch&egrave;vre, and creamy Brie. For those with a sweet tooth, it complements fresh, sliced stone fruits, strawberries and cream, or caramelized fruit tarts.&nbsp;</p>\n<p class=\"p2\">&nbsp;</p>\n<p class=\"p1\"><strong><span class=\"s1\">APPELLATION: </span></strong>Silvaspoon Vineyard, Lodi</p>\n<p class=\"p1\"><strong><span class=\"s1\">VARIETAL:</span></strong> 100% Verdelho</p>\n<p class=\"p1\"><strong><span class=\"s1\">HARVESTED:</span></strong> September 13, 2020</p>\n<p class=\"p1\"><strong><span class=\"s1\">BOTTLED:</span></strong> December 12, 2024</p>\n<p class=\"p2\"><strong><span class=\"s2\">PRODUCTION:</span></strong><span class=\"s3\"> 190 cases</span></p>\n<p class=\"p1\"><strong><span class=\"s1\">ALCOHOL:</span></strong> 19% abv</p>\n<p class=\"p1\"><strong><span class=\"s1\">pH:</span></strong> 3.34</p>'),(60445,3868,'subtitle',NULL),(60446,3868,'price','4200'),(60447,3868,'web_status','Available'),(60448,3868,'admin_status','Available'),(60449,3868,'varietal','Other'),(60450,3868,'appellation','Lodi'),(60451,3868,'vintage','2020'),(60452,3868,'collections','a:0:{}'),(60453,3868,'primary_collection',''),(60454,3869,'web_id','ba55baf0-9285-4461-a0c1-b22cdea5dc83'),(60455,3869,'slug','let-it-bee-release-fondue-party'),(60456,3869,'title','Let It Bee release & Fondue Party'),(60457,3869,'type','Event Ticket'),(60458,3869,'image','https://images.commerce7.com/meadowcroft-wines/images/original/fondue-party-web-event-1732563443720.jpg'),(60459,3869,'teaser',NULL),(60460,3869,'content','<div>We&rsquo;re hosting a cozy fondue party to celebrate the release of our new Let It Bee white Port-style wine. &nbsp;Indulge in a tasty selection of treats paired with your favorite Meadowcroft wines. Plus, join the fun with a festive white elephant gift exchange&mdash;gifts provided, so just bring yourself!</div>\n<div>&nbsp;</div>\n<div>Owner and winemaker Tom Meadowcroft will be on hand sharing stories from the cellar and chatting about the wines. &nbsp;</div>\n<div>&nbsp;</div>\n<h2 style=\"line-height: 125%; text-align: left;\"><strong>Saturday, December 7th, 7-9PM</strong><br /><strong>$40 per person</strong></h2>\n<div>This event is limited to 24 guests, get your tickets soon!&nbsp; All event attendees must be 21 years of age or older.&nbsp;</div>'),(60461,3869,'subtitle',NULL),(60462,3869,'price','4000'),(60463,3869,'web_status','Not Available'),(60464,3869,'admin_status','Available'),(60465,3869,'collections','a:0:{}'),(60466,3869,'primary_collection',''),(60468,447,'allowed_customer_tag_titles','a:0:{}'),(60469,447,'allowed_customer_club_titles','a:0:{}'),(60470,447,'content_block_0_hide_this_content_block','1'),(60471,447,'_content_block_0_hide_this_content_block','field_643884e4df74c7textb'),(60474,3873,'_wp_attached_file','2024/12/2020-LetItBee-FINAL.pdf'),(60475,3873,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:27:\"2020-LetItBee-FINAL-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:201312;}s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"2020-LetItBee-FINAL-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14963;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"2020-LetItBee-FINAL-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107360;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"2020-LetItBee-FINAL-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6560;}}s:8:\"filesize\";i:378738;}'),(60476,3874,'_wp_attached_file','2024/12/let-it-bee-web.jpg'),(60477,3874,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:856;s:6:\"height\";i:2048;s:4:\"file\";s:26:\"2024/12/let-it-bee-web.jpg\";s:8:\"filesize\";i:281352;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"let-it-bee-web-125x300.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10893;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"let-it-bee-web-428x1024.jpg\";s:5:\"width\";i:428;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78103;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"let-it-bee-web-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6940;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"let-it-bee-web-768x1837.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1837;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:213492;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"let-it-bee-web-642x1536.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:157404;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:26:\"let-it-bee-web-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18516;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:26:\"let-it-bee-web-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29763;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:26:\"let-it-bee-web-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59480;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(60478,3875,'inline_featured_image','0'),(60479,3875,'_edit_lock','1733784834:3'),(60480,3875,'_edit_last','3'),(60481,3874,'_wp_attachment_image_alt','Let It Bee White Port Style Wine'),(60482,3875,'allowed_customer_tag_titles','a:0:{}'),(60483,3875,'allowed_customer_club_titles','a:0:{}'),(60484,3875,'linked_brand','3399'),(60485,3875,'_linked_brand','field_59ee2d92496e9'),(60486,3875,'main_image','3874'),(60487,3875,'_main_image','field_59ee319d02900'),(60488,3875,'assets_0_text','Tech Sheet'),(60489,3875,'_assets_0_text','field_59ee31cc02902'),(60490,3875,'assets_0_file_or_url','file'),(60491,3875,'_assets_0_file_or_url','field_59ee31da02903'),(60492,3875,'assets_0_file','3873'),(60493,3875,'_assets_0_file','field_59ee320302905'),(60494,3875,'assets_1_text','Bottle Shot'),(60495,3875,'_assets_1_text','field_59ee31cc02902'),(60496,3875,'assets_1_file_or_url','file'),(60497,3875,'_assets_1_file_or_url','field_59ee31da02903'),(60498,3875,'assets_1_file','3874'),(60499,3875,'_assets_1_file','field_59ee320302905'),(60500,3875,'assets','2'),(60501,3875,'_assets','field_59ee31bc02901'),(60502,3875,'varietal','Verdelho'),(60503,3875,'_varietal','field_59ee660ece2e7'),(60504,3875,'sub_brand',''),(60505,3875,'_sub_brand','field_59ee6623ce2e8'),(60506,3875,'vintage','2020'),(60507,3875,'_vintage','field_59ee6eba9a39a'),(60508,3875,'_yoast_wpseo_estimated-reading-time-minutes','1'),(60509,3876,'inline_featured_image','0'),(60510,3876,'_edit_lock','1733910124:5'),(60511,3876,'_edit_last','5'),(60512,3877,'inline_featured_image','0'),(60513,3877,'_edit_lock','1733975746:9'),(60514,3877,'_edit_last','5'),(60515,3878,'_wp_attached_file','2024/12/2E9A8594-scaled.jpg'),(60516,3878,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:27:\"2024/12/2E9A8594-scaled.jpg\";s:8:\"filesize\";i:609967;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"2E9A8594-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34444;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"2E9A8594-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140208;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"2E9A8594-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25581;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"2E9A8594-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92510;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"2E9A8594-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:260206;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"2E9A8594-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:419000;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:21:\"2E9A8594-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177958;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:20:\"2E9A8594-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39083;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:20:\"2E9A8594-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50495;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:20:\"2E9A8594-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81430;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"14\";s:6:\"credit\";s:10:\"MJ WICKHAM\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1728989684\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"100\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"2E9A8594.jpg\";}'),(60517,3879,'_wp_attached_file','2024/12/2E9A8548-scaled.webp'),(60518,3879,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1845;s:6:\"height\";i:2560;s:4:\"file\";s:28:\"2024/12/2E9A8548-scaled.webp\";s:8:\"filesize\";i:268194;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"2E9A8548-216x300.webp\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:21182;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"2E9A8548-738x1024.webp\";s:5:\"width\";i:738;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:75598;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"2E9A8548-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16360;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"2E9A8548-768x1066.webp\";s:5:\"width\";i:768;s:6:\"height\";i:1066;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:79578;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"2E9A8548-1107x1536.webp\";s:5:\"width\";i:1107;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:131522;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:23:\"2E9A8548-1476x2048.webp\";s:5:\"width\";i:1476;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:200248;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:23:\"2E9A8548-1200x1665.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:1665;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:147306;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:21:\"2E9A8548-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:23544;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:21:\"2E9A8548-400x400.webp\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:30478;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:21:\"2E9A8548-600x600.webp\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:46978;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"2E9A8548.webp\";}'),(60519,3879,'_wp_attachment_image_alt','Meadowcroft Black Box of Bubbles'),(60520,3880,'_wp_attached_file','2024/12/2E9A8601-1-scaled.webp'),(60521,3880,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1845;s:6:\"height\";i:2560;s:4:\"file\";s:30:\"2024/12/2E9A8601-1-scaled.webp\";s:8:\"filesize\";i:192576;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"2E9A8601-1-216x300.webp\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18684;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"2E9A8601-1-738x1024.webp\";s:5:\"width\";i:738;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:55034;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"2E9A8601-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:15082;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"2E9A8601-1-768x1066.webp\";s:5:\"width\";i:768;s:6:\"height\";i:1066;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:57218;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"2E9A8601-1-1107x1536.webp\";s:5:\"width\";i:1107;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:92044;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:25:\"2E9A8601-1-1476x2048.webp\";s:5:\"width\";i:1476;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:137918;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:25:\"2E9A8601-1-1200x1665.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:1665;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:103020;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:23:\"2E9A8601-1-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:20030;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:23:\"2E9A8601-1-400x400.webp\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:24400;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:23:\"2E9A8601-1-600x600.webp\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:35394;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"2E9A8601-1.webp\";}'),(60522,3880,'_wp_attachment_image_alt','Meadowcroft’s Holiday Celebration Pinot Noir 2-Bottle Gift Pack'),(60523,3881,'_wp_attached_file','2024/12/port-truffles-1730242854259.avif'),(60524,3881,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:40:\"2024/12/port-truffles-1730242854259.avif\";s:8:\"filesize\";i:20599;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"port-truffles-1730242854259-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14223;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"port-truffles-1730242854259-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4899;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:39:\"port-truffles-1730242854259-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14223;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:39:\"port-truffles-1730242854259-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22902;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(60525,3881,'_wp_attachment_image_alt','All She Wrote Port and Chocolate Truffle Gift Box'),(60526,3882,'_wp_attached_file','2024/12/2E9A8813-scaled.webp'),(60527,3882,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2322;s:6:\"height\";i:2560;s:4:\"file\";s:28:\"2024/12/2E9A8813-scaled.webp\";s:8:\"filesize\";i:288074;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"2E9A8813-272x300.webp\";s:5:\"width\";i:272;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:23208;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"2E9A8813-929x1024.webp\";s:5:\"width\";i:929;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:82016;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"2E9A8813-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17426;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"2E9A8813-768x847.webp\";s:5:\"width\";i:768;s:6:\"height\";i:847;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:64320;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"2E9A8813-1393x1536.webp\";s:5:\"width\";i:1393;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:144224;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:23:\"2E9A8813-1858x2048.webp\";s:5:\"width\";i:1858;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:211246;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:23:\"2E9A8813-1200x1323.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:1323;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:115198;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:21:\"2E9A8813-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:24720;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:21:\"2E9A8813-400x400.webp\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:31154;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:21:\"2E9A8813-600x600.webp\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:48242;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"2E9A8813.webp\";}'),(60528,3882,'_wp_attachment_image_alt','Sip and Savor Gift Box'),(60529,3883,'_wp_attached_file','2024/12/2E9A8570-1-scaled.webp'),(60530,3883,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1845;s:6:\"height\";i:2560;s:4:\"file\";s:30:\"2024/12/2E9A8570-1-scaled.webp\";s:8:\"filesize\";i:198366;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"2E9A8570-1-216x300.webp\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19268;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"2E9A8570-1-738x1024.webp\";s:5:\"width\";i:738;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:57558;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"2E9A8570-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:15688;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"2E9A8570-1-768x1066.webp\";s:5:\"width\";i:768;s:6:\"height\";i:1066;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:60230;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"2E9A8570-1-1107x1536.webp\";s:5:\"width\";i:1107;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:95586;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:25:\"2E9A8570-1-1476x2048.webp\";s:5:\"width\";i:1476;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:142456;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:25:\"2E9A8570-1-1200x1665.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:1665;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:105638;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:23:\"2E9A8570-1-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:21658;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:23:\"2E9A8570-1-400x400.webp\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:26348;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:23:\"2E9A8570-1-600x600.webp\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:40496;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"2E9A8570-1.webp\";}'),(60531,3883,'_wp_attachment_image_alt','Meadowcroft’s Bordeaux Lovers Gift Box'),(60532,3884,'_wp_attached_file','2024/12/2E9A8594-2-scaled.webp'),(60533,3884,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:30:\"2024/12/2E9A8594-2-scaled.webp\";s:8:\"filesize\";i:373682;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"2E9A8594-2-300x200.webp\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:24994;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"2E9A8594-2-1024x683.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:94736;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"2E9A8594-2-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18564;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"2E9A8594-2-768x512.webp\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:63742;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"2E9A8594-2-1536x1024.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:169704;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:25:\"2E9A8594-2-2048x1365.webp\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:262964;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:24:\"2E9A8594-2-1200x800.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:118670;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:23:\"2E9A8594-2-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:27338;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:23:\"2E9A8594-2-400x400.webp\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:34602;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:23:\"2E9A8594-2-600x600.webp\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:55352;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"2E9A8594-2.webp\";}'),(60534,3884,'_wp_attachment_image_alt','Grateful Gatherings Gift Box'),(60535,3885,'_wp_attached_file','2024/12/2E9A8614-1-scaled.webp'),(60536,3885,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:30:\"2024/12/2E9A8614-1-scaled.webp\";s:8:\"filesize\";i:262194;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"2E9A8614-1-300x200.webp\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:22396;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"2E9A8614-1-1024x683.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:75466;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"2E9A8614-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16860;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"2E9A8614-1-768x512.webp\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:52508;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"2E9A8614-1-1536x1024.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:130676;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:25:\"2E9A8614-1-2048x1365.webp\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:195748;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:24:\"2E9A8614-1-1200x800.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:92306;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:23:\"2E9A8614-1-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:23702;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:23:\"2E9A8614-1-400x400.webp\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:29702;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:23:\"2E9A8614-1-600x600.webp\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:44862;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"2E9A8614-1.webp\";}'),(60537,3885,'_wp_attachment_image_alt','Celebration Noir Six-Bottle Box'),(60539,3877,'allowed_customer_tag_titles','a:0:{}'),(60540,3877,'allowed_customer_club_titles','a:0:{}'),(60541,3877,'hide_post_title','0'),(60542,3877,'_hide_post_title','field_5bbe18c8efa0ac'),(60543,3877,'custom_title',''),(60544,3877,'_custom_title','field_5bbe1b83pfa0c'),(60545,3877,'the_teaser','<span style=\"font-weight: 400;\">The holidays are upon us, and finding the perfect gift for the wine enthusiast in your life can be as delightful as it is daunting. Whether you are shopping for a seasoned sommelier or someone who is just starting their wine journey, Meadowcroft Wines offers an impressive selection of thoughtfully curated gift sets that cater to every palate and occasion. </span>'),(60546,3877,'_the_teaser','field_5c1d78f88e54c'),(60547,3877,'hero_image','3884'),(60548,3877,'_hero_image','field_5d138e7f31334'),(60549,3877,'enable_banner','0'),(60550,3877,'_enable_banner','field_5bbe19c8efa0acb'),(60551,3877,'banner_full_width','0'),(60552,3877,'_banner_full_width','field_5bbe19c8efa0ac'),(60553,3877,'banner_size','normal'),(60554,3877,'_banner_size','field_5bbe232929ec9c'),(60555,3877,'add_parallax_effect','0'),(60556,3877,'_add_parallax_effect','field_5bbe219ccb6a9'),(60557,3877,'add_veil_over_banner','0'),(60558,3877,'_add_veil_over_banner','field_5bbe333f39212'),(60559,3877,'banner_content_position','centered'),(60560,3877,'_banner_content_position','field_5bbe259b02b62'),(60561,3877,'banner_title',''),(60562,3877,'_banner_title','field_5bbe1b78efa0b'),(60563,3877,'banner_subtitle',''),(60564,3877,'_banner_subtitle','field_5bbe1b83efa0c'),(60565,3877,'banner_button_link',''),(60566,3877,'_banner_button_link','field_5bbe1b8cefa0d'),(60567,3877,'banner_button_new_tab','0'),(60568,3877,'_banner_button_new_tab','field_5bbe1e6d18fae'),(60569,3877,'show_down_arrow','0'),(60570,3877,'_show_down_arrow','field_5bbe24f721165'),(60571,3877,'banner_image',''),(60572,3877,'_banner_image','field_5bbe201718fafa'),(60573,3877,'banner_image_position','center center'),(60574,3877,'_banner_image_position','field_5bbe278f9fb97'),(60575,3877,'banner_image_mobile',''),(60576,3877,'_banner_image_mobile','field_5bbe202818fb0b'),(60577,3877,'banner_image_mobile_position','center center'),(60578,3877,'_banner_image_mobile_position','field_5bbe279c9fb98'),(60579,3877,'content_block',''),(60580,3877,'_content_block','field_5bbe19a7efa09'),(60581,3877,'_yoast_wpseo_primary_category',''),(60582,3877,'_yoast_wpseo_focuskw','Holiday Wine Gift'),(60583,3877,'_yoast_wpseo_title','Perfect Holiday Wine Gifts for Wine Lovers | Meadowcroft Wines'),(60584,3877,'_yoast_wpseo_metadesc','Find the best holiday wine gifts for every wine lover. Explore curated wine gift sets from Meadowcroft Wines for a memorable holiday season.'),(60585,3877,'_yoast_wpseo_linkdex','65'),(60586,3877,'_yoast_wpseo_content_score','90'),(60587,3877,'_yoast_wpseo_estimated-reading-time-minutes','6'),(60630,3887,'content_block_0_layout_title',''),(60631,3887,'_content_block_0_layout_title','field_5bc11ca9a0d50-c'),(60632,3887,'content_block_0_hide_this_content_block','1'),(60633,3887,'_content_block_0_hide_this_content_block','field_643884e4df74banner'),(60634,3887,'content_block_0_custom_css_class',''),(60635,3887,'_content_block_0_custom_css_class','field_5bbf30b1a4de2-1'),(60636,3887,'content_block_0_banner_full_width','1'),(60637,3887,'_content_block_0_banner_full_width','field_5bbe19c8efa0a'),(60638,3887,'content_block_0_banner_size','normal'),(60639,3887,'_content_block_0_banner_size','field_5bbe232929ec9'),(60640,3887,'content_block_0_add_parallax_effect','0'),(60641,3887,'_content_block_0_add_parallax_effect','field_5bbe219ccb6a9'),(60642,3887,'content_block_0_add_veil_over_banner','1'),(60643,3887,'_content_block_0_add_veil_over_banner','field_5bbe333f39212'),(60644,3887,'content_block_0_banner_content_position','centered'),(60645,3887,'_content_block_0_banner_content_position','field_5bbe259b02b62'),(60646,3887,'content_block_0_banner_title','Visit Meadowcroft Wines'),(60647,3887,'_content_block_0_banner_title','field_5bbe1b78efa0b'),(60648,3887,'content_block_0_banner_subtitle',''),(60649,3887,'_content_block_0_banner_subtitle','field_5bbe1b83efa0c'),(60650,3887,'content_block_0_banner_button_link',''),(60651,3887,'_content_block_0_banner_button_link','field_5bbe1b8cefa0d'),(60652,3887,'content_block_0_banner_button_new_tab','0'),(60653,3887,'_content_block_0_banner_button_new_tab','field_5bbe1e6d18fae'),(60654,3887,'content_block_0_show_down_arrow','0'),(60655,3887,'_content_block_0_show_down_arrow','field_5bbe24f721165'),(60656,3887,'content_block_0_banner_image_description',''),(60657,3887,'_content_block_0_banner_image_description','field_5bbf30b1a4de2-1a'),(60658,3887,'content_block_0_banner_image','881'),(60659,3887,'_content_block_0_banner_image','field_5bbe201718faf'),(60660,3887,'content_block_0_banner_image_position','center center'),(60661,3887,'_content_block_0_banner_image_position','field_5bbe278f9fb97'),(60662,3887,'content_block_0_banner_image_mobile','882'),(60663,3887,'_content_block_0_banner_image_mobile','field_5bbe202818fb0'),(60664,3887,'content_block_0_banner_image_mobile_position','center center'),(60665,3887,'_content_block_0_banner_image_mobile_position','field_5bbe279c9fb98'),(60666,3887,'content_block_1_layout_title',''),(60667,3887,'_content_block_1_layout_title','field_5bc11ca9a0d50-s'),(60668,3887,'content_block_1_hide_this_content_block','1'),(60669,3887,'_content_block_1_hide_this_content_block','field_643884e4df74c7textb'),(60670,3887,'content_block_1_custom_css_class',''),(60671,3887,'_content_block_1_custom_css_class','field_5bbe30b1a4de2-1'),(60672,3887,'content_block_1_text_block_columns','one'),(60673,3887,'_content_block_1_text_block_columns','field_5bbe2f81a4de0'),(60674,3887,'content_block_1_narrow_text_block_content','1'),(60675,3887,'_content_block_1_narrow_text_block_content','field_5bbe342e08360'),(60676,3887,'content_block_1_reverse_colors','0'),(60677,3887,'_content_block_1_reverse_colors','field_5bbe3027a4de1'),(60678,3887,'content_block_1_enable_background_image','0'),(60679,3887,'_content_block_1_enable_background_image','field_5bbe30b1a4de2'),(60680,3887,'content_block_1_text_block_content_col_one','&nbsp;\r\n<p class=\"metatitle\" style=\"text-align: center;\">OPEN DAILY</p>\r\n\r\n<h2 style=\"text-align: center;\">THE TASTING ROOM</h2>\r\nExplore a diverse selection of wines crafted to suit every palate at <a href=\"https://www.meadowcroftwines.com/tasting-room/\">Meadowcroft Tasting Room</a>, located in Sonoma’s Cornerstone Marketplace. From bold reds and crisp whites to elegant sparkling wines, we offer something for everyone in a welcoming and relaxed atmosphere.\r\n\r\nOur <a href=\"https://www.meadowcroftwines.com/tasting-room/\">tasting room</a> is open daily from 10:00 a.m. to 5:00 p.m., offering indoor and outdoor wine tastings. While <a href=\"https://www.meadowcroftwines.com/tasting-room/\">reservations</a> are recommended, <strong>walk-ins are welcome, and no appointment is necessary for small groups</strong>. For parties of 8 or more, please call ahead to arrange your tasting experience.\r\n\r\nVisit us at <a href=\"https://maps.app.goo.gl/pG7HZG6LATZ1d2qg8\">23574 Arnold Drive in Sonoma, CA</a>, or call 707.934.4090 for last-minute reservations.\r\n<p style=\"text-align: center;\">CHOOSE YOUR EXPERIENCE  BELOW</p>\r\n&nbsp;'),(60681,3887,'_content_block_1_text_block_content_col_one','field_5bbe313b3920d'),(60682,3887,'content_block_2_layout_title',''),(60683,3887,'_content_block_2_layout_title','field_5bc11ca9a0d50-c'),(60684,3887,'content_block_2_hide_this_content_block','1'),(60685,3887,'_content_block_2_hide_this_content_block','field_643884e4df74banner'),(60686,3887,'content_block_2_custom_css_class',''),(60687,3887,'_content_block_2_custom_css_class','field_5bbf30b1a4de2-1'),(60688,3887,'content_block_2_banner_full_width','1'),(60689,3887,'_content_block_2_banner_full_width','field_5bbe19c8efa0a'),(60690,3887,'content_block_2_banner_size','normal'),(60691,3887,'_content_block_2_banner_size','field_5bbe232929ec9'),(60692,3887,'content_block_2_add_parallax_effect','1'),(60693,3887,'_content_block_2_add_parallax_effect','field_5bbe219ccb6a9'),(60694,3887,'content_block_2_add_veil_over_banner','0'),(60695,3887,'_content_block_2_add_veil_over_banner','field_5bbe333f39212'),(60696,3887,'content_block_2_banner_content_position','centered'),(60697,3887,'_content_block_2_banner_content_position','field_5bbe259b02b62'),(60698,3887,'content_block_2_banner_title',''),(60699,3887,'_content_block_2_banner_title','field_5bbe1b78efa0b'),(60700,3887,'content_block_2_banner_subtitle',''),(60701,3887,'_content_block_2_banner_subtitle','field_5bbe1b83efa0c'),(60702,3887,'content_block_2_banner_button_link',''),(60703,3887,'_content_block_2_banner_button_link','field_5bbe1b8cefa0d'),(60704,3887,'content_block_2_banner_button_new_tab','0'),(60705,3887,'_content_block_2_banner_button_new_tab','field_5bbe1e6d18fae'),(60706,3887,'content_block_2_show_down_arrow','0'),(60707,3887,'_content_block_2_show_down_arrow','field_5bbe24f721165'),(60708,3887,'content_block_2_banner_image_description',''),(60709,3887,'_content_block_2_banner_image_description','field_5bbf30b1a4de2-1a'),(60710,3887,'content_block_2_banner_image','1521'),(60711,3887,'_content_block_2_banner_image','field_5bbe201718faf'),(60712,3887,'content_block_2_banner_image_position','center center'),(60713,3887,'_content_block_2_banner_image_position','field_5bbe278f9fb97'),(60714,3887,'content_block_2_banner_image_mobile','1522'),(60715,3887,'_content_block_2_banner_image_mobile','field_5bbe202818fb0'),(60716,3887,'content_block_2_banner_image_mobile_position','center center'),(60717,3887,'_content_block_2_banner_image_mobile_position','field_5bbe279c9fb98'),(60718,3887,'content_block_3_layout_title','Experiences Sub-Title'),(60719,3887,'_content_block_3_layout_title','field_5bc11ca9a0d50-s'),(60720,3887,'content_block_3_hide_this_content_block','1'),(60721,3887,'_content_block_3_hide_this_content_block','field_643884e4df74c7textb'),(60722,3887,'content_block_3_custom_css_class','no-padding'),(60723,3887,'_content_block_3_custom_css_class','field_5bbe30b1a4de2-1'),(60724,3887,'content_block_3_text_block_columns','one'),(60725,3887,'_content_block_3_text_block_columns','field_5bbe2f81a4de0'),(60726,3887,'content_block_3_narrow_text_block_content','0'),(60727,3887,'_content_block_3_narrow_text_block_content','field_5bbe342e08360'),(60728,3887,'content_block_3_reverse_colors','0'),(60729,3887,'_content_block_3_reverse_colors','field_5bbe3027a4de1'),(60730,3887,'content_block_3_enable_background_image','0'),(60731,3887,'_content_block_3_enable_background_image','field_5bbe30b1a4de2'),(60732,3887,'content_block_3_text_block_content_col_one','<hr />\r\n<p class=\"metatitle\" style=\"text-align: center;\">SONOMA VALLEY</p>\r\n\r\n<h2 style=\"text-align: center;\">WINE TASTING EXPERIENCES</h2>\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/09/DigitalGeneralBrochure.pdf\">PDF Brochure</a></p>'),(60733,3887,'_content_block_3_text_block_content_col_one','field_5bbe313b3920d'),(60734,3887,'content_block_4_layout_title','Seated Tastings'),(60735,3887,'_content_block_4_layout_title','field_5bc11ca9a0d50-s'),(60736,3887,'content_block_4_hide_this_content_block','1'),(60737,3887,'_content_block_4_hide_this_content_block','field_643884e4df74c7textb'),(60738,3887,'content_block_4_custom_css_class','no-padding'),(60739,3887,'_content_block_4_custom_css_class','field_5bbe30b1a4de2-1'),(60740,3887,'content_block_4_text_block_columns','two'),(60741,3887,'_content_block_4_text_block_columns','field_5bbe2f81a4de0'),(60742,3887,'content_block_4_column_size','equal'),(60743,3887,'_content_block_4_column_size','field_columnsize'),(60744,3887,'content_block_4_narrow_text_block_content','0'),(60745,3887,'_content_block_4_narrow_text_block_content','field_5bbe342e08360'),(60746,3887,'content_block_4_reverse_colors','0'),(60747,3887,'_content_block_4_reverse_colors','field_5bbe3027a4de1'),(60748,3887,'content_block_4_enable_background_image','0'),(60749,3887,'_content_block_4_enable_background_image','field_5bbe30b1a4de2'),(60750,3887,'content_block_4_text_block_content_col_one','<img class=\"wp-image-885 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/seated-300x212.jpg\" alt=\"Woman pouring red wine into glass\" width=\"500\" height=\"353\" />'),(60751,3887,'_content_block_4_text_block_content_col_one','field_5bbe313b3920d'),(60752,3887,'content_block_4_text_block_content_col_two','<h3 style=\"text-align: center;\"><span class=\"h4\">SEATED TASTINGS</span></h3>\r\nEnjoy a serene setting in the heart of Sonoma Valley as you taste a flight of 4 wines, poured tableside by your designated wine expert. Wine selections vary seasonally.\r\n<p style=\"text-align: center;\">ADVANCED RESERVATIONS RECOMMENDED\r\n$25/person (up to 6 guests)</p>\r\n<p style=\"text-align: center;\"><strong>Walk-Ins welcome as possible.  Please call us at (707)934-4090 for last minute or same-day appointments.</strong></p>\r\n\r\n<div class=\"c7-reservation-availability\" style=\"text-align: center;\" data-reservation-type-slug=\"seated-tasting\"></div>'),(60753,3887,'_content_block_4_text_block_content_col_two','field_5bbe31593920e'),(60754,3887,'content_block_5_layout_title','Member Tastings'),(60755,3887,'_content_block_5_layout_title','field_5bc11ca9a0d50-s'),(60756,3887,'content_block_5_hide_this_content_block','1'),(60757,3887,'_content_block_5_hide_this_content_block','field_643884e4df74c7textb'),(60758,3887,'content_block_5_custom_css_class','no-padding'),(60759,3887,'_content_block_5_custom_css_class','field_5bbe30b1a4de2-1'),(60760,3887,'content_block_5_text_block_columns','two'),(60761,3887,'_content_block_5_text_block_columns','field_5bbe2f81a4de0'),(60762,3887,'content_block_5_column_size','equal'),(60763,3887,'_content_block_5_column_size','field_columnsize'),(60764,3887,'content_block_5_narrow_text_block_content','0'),(60765,3887,'_content_block_5_narrow_text_block_content','field_5bbe342e08360'),(60766,3887,'content_block_5_reverse_colors','0'),(60767,3887,'_content_block_5_reverse_colors','field_5bbe3027a4de1'),(60768,3887,'content_block_5_enable_background_image','0'),(60769,3887,'_content_block_5_enable_background_image','field_5bbe30b1a4de2'),(60770,3887,'content_block_5_text_block_content_col_one','<img class=\"wp-image-886 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/member-300x212.jpg\" alt=\"Lineup of Meadowcroft wine bottles\" width=\"500\" height=\"353\" />'),(60771,3887,'_content_block_5_text_block_content_col_one','field_5bbe313b3920d'),(60772,3887,'content_block_5_text_block_content_col_two','<h3 style=\"text-align: center;\"><span class=\"h4\">MEMBER TASTINGS</span></h3>\r\nOur Bee Team will guide you through a selection of 4 special wines, chosen specifically for our members. Wine selections vary seasonally.\r\n<p style=\"text-align: center;\">ADVANCED RESERVATIONS ARE RECOMMENDED\r\nMembers Receive Complimentary Tastings</p>\r\n<p style=\"text-align: center;\"><strong>Please call us at (707)934-4090 for last minute or same-day appointments.</strong></p>\r\n\r\n<div class=\"c7-reservation-availability\" style=\"text-align: center;\" data-reservation-type-slug=\"seated-tasting\"></div>'),(60773,3887,'_content_block_5_text_block_content_col_two','field_5bbe31593920e'),(60774,3887,'content_block_6_layout_title','A Perfect Blend'),(60775,3887,'_content_block_6_layout_title','field_5bc11ca9a0d50-s'),(60776,3887,'content_block_6_hide_this_content_block','1'),(60777,3887,'_content_block_6_hide_this_content_block','field_643884e4df74c7textb'),(60778,3887,'content_block_6_custom_css_class','no-padding'),(60779,3887,'_content_block_6_custom_css_class','field_5bbe30b1a4de2-1'),(60780,3887,'content_block_6_text_block_columns','two'),(60781,3887,'_content_block_6_text_block_columns','field_5bbe2f81a4de0'),(60782,3887,'content_block_6_column_size','equal'),(60783,3887,'_content_block_6_column_size','field_columnsize'),(60784,3887,'content_block_6_narrow_text_block_content','0'),(60785,3887,'_content_block_6_narrow_text_block_content','field_5bbe342e08360'),(60786,3887,'content_block_6_reverse_colors','0'),(60787,3887,'_content_block_6_reverse_colors','field_5bbe3027a4de1'),(60788,3887,'content_block_6_enable_background_image','0'),(60789,3887,'_content_block_6_enable_background_image','field_5bbe30b1a4de2'),(60790,3887,'content_block_6_text_block_content_col_one','<img class=\"wp-image-888 aligncenter\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/blend-240x300.jpg\" alt=\"Red wine being poured into two glasses\" width=\"500\" height=\"625\" />'),(60791,3887,'_content_block_6_text_block_content_col_one','field_5bbe313b3920d'),(60792,3887,'content_block_6_text_block_content_col_two','<h3 style=\"text-align: center;\"><a href=\"#a-perfect-blend\"><span class=\"h4\">A PERFECT BLEND</span></a></h3>\r\nLearn the art and science of winemaking! Start with a stroll through the stunning <a href=\"https://www.cornerstonesonoma.com/\">Cornerstone Gardens</a> to learn about Meadowcroft’s unique winemaking perspective, along with the special history of Sonoma. Then, we’ll blend wines that have been aged in separate oak barrels to make a classic red Bordeaux style blend of cabernet sauvignon, cabernet franc, and merlot. Experiment putting together different blending components using your 5 senses. When your blend is just right, you’ll label and cork your own 750ml bottle of your perfect blend to take home. This is an experience that you’ll never forget! Includes a selection of locally sourced cheese &amp; accompaniments.\r\n\r\nWe welcome corporate groups, team building events and large parties.  <a href=\"mailto:tastingroom@meadowcroftwines.com\">Contact us</a> to discuss your needs and we will help you to plan the perfect experience.\r\n<p style=\"text-align: center;\">3 DAYS ADVANCED RESERVATIONS ARE REQUIRED\r\n$125/person | $100/member</p>\r\n\r\n<div class=\"c7-reservation-availability\" style=\"text-align: center;\" data-reservation-type-slug=\"a-perfect-blend\"></div>'),(60793,3887,'_content_block_6_text_block_content_col_two','field_5bbe31593920e'),(60794,3887,'content_block_7_layout_title','Balloon & Blending'),(60795,3887,'_content_block_7_layout_title','field_5bc11ca9a0d50-s'),(60796,3887,'content_block_7_hide_this_content_block','1'),(60797,3887,'_content_block_7_hide_this_content_block','field_643884e4df74c7textb'),(60798,3887,'content_block_7_custom_css_class','no-padding'),(60799,3887,'_content_block_7_custom_css_class','field_5bbe30b1a4de2-1'),(60800,3887,'content_block_7_text_block_columns','two'),(60801,3887,'_content_block_7_text_block_columns','field_5bbe2f81a4de0'),(60802,3887,'content_block_7_column_size','equal'),(60803,3887,'_content_block_7_column_size','field_columnsize'),(60804,3887,'content_block_7_narrow_text_block_content','0'),(60805,3887,'_content_block_7_narrow_text_block_content','field_5bbe342e08360'),(60806,3887,'content_block_7_reverse_colors','0'),(60807,3887,'_content_block_7_reverse_colors','field_5bbe3027a4de1'),(60808,3887,'content_block_7_enable_background_image','0'),(60809,3887,'_content_block_7_enable_background_image','field_5bbe30b1a4de2'),(60810,3887,'content_block_7_text_block_content_col_one','<img class=\"size-full wp-image-1546 aligncenter\" src=\"/wp-content/uploads/2023/02/balloon-2.jpg\" alt=\"Balloon over vineyard \" width=\"500\" height=\"1000\" />'),(60811,3887,'_content_block_7_text_block_content_col_one','field_5bbe313b3920d'),(60812,3887,'content_block_7_text_block_content_col_two','<h3 style=\"text-align: center;\"><span class=\"h4\">BALLOON &amp; BLENDING</span></h3>\r\nWe’ve partnered with <a href=\"https://sonomaballooning.com/\">Sonoma Ballooning</a> in Sonoma Valley to bring a unique, cultural experience your way! Enjoy a magical sunrise join-in flight with <a href=\"https://sonomaballooning.com/\">Sonoma Ballooning</a>, and after your post-flight champagne toast, continue your Sonoma wine country adventure with Meadowcroft Wines’ Blending Seminar.\r\n\r\nSince no two hot air balloon rides are ever the same and you’ll be creating your own special blend of wine afterward, it’s safe to say that this is truly a one-of-a-kind experience that you’ll be sharing with your friends and family for years to come. Expect to be with <a href=\"https://sonomaballooning.com/\">Sonoma Ballooning</a> for 3-4 hours and Meadowcroft Wines for approximately 2-2.5 hours.\r\n\r\n<strong><a href=\"https://sonomaballooning.com/\">Sonoma Ballooning</a> Tour Includes:</strong>\r\n• Light Refreshments Pre-flight (coffee, tea, pre-packaged snacks)\r\n• 45 Minute to 1 Hour Balloon Flight\r\n• Post-flight Champagne Toast\r\n• Flight Certificate (upon request)\r\n\r\n<strong>Meadowcroft Blending Seminar Includes:</strong>\r\n• Tour of Cornerstone Gardens\r\n• Wine Blending\r\n• Cheese Plate\r\n• Label &amp; Cork Your Own “Perfect Blend” 750ml Bottle To Take Home\r\n\r\n*This package is for ages 21+. After booking is confirmed, you will receive a separate email confirmation from each respective company. <strong>Each company will also charge you separately</strong>.\r\n<p style=\"text-align: center;\">ADVANCED RESERVATIONS ARE REQUIRED\r\n$380/person <em>(Includes flight and blending)</em></p>\r\n<p style=\"text-align: center;\">Contact Sonoma Ballooning by clicking the button below.  Once your flight is booked, they will reach out to us to confirm your wine blending.  Have a happy flight!</p>\r\n<p style=\"text-align: center;\"><a class=\"button\" href=\"https://sonomaballooning.com/balloon-ride-packages/#balloon-blending\" aria-label=\"Arrange your flight directly with Sonoma Ballonning\">ARRANGE YOUR FLIGHT</a></p>'),(60813,3887,'_content_block_7_text_block_content_col_two','field_5bbe31593920e'),(60814,3887,'content_block_8_layout_title','Wine by the glass'),(60815,3887,'_content_block_8_layout_title','field_5bc11ca9a0d50-s'),(60816,3887,'content_block_8_hide_this_content_block','1'),(60817,3887,'_content_block_8_hide_this_content_block','field_643884e4df74c7textb'),(60818,3887,'content_block_8_custom_css_class',''),(60819,3887,'_content_block_8_custom_css_class','field_5bbe30b1a4de2-1'),(60820,3887,'content_block_8_text_block_columns','two'),(60821,3887,'_content_block_8_text_block_columns','field_5bbe2f81a4de0'),(60822,3887,'content_block_8_column_size','equal'),(60823,3887,'_content_block_8_column_size','field_columnsize'),(60824,3887,'content_block_8_narrow_text_block_content','0'),(60825,3887,'_content_block_8_narrow_text_block_content','field_5bbe342e08360'),(60826,3887,'content_block_8_reverse_colors','0'),(60827,3887,'_content_block_8_reverse_colors','field_5bbe3027a4de1'),(60828,3887,'content_block_8_enable_background_image','0'),(60829,3887,'_content_block_8_enable_background_image','field_5bbe30b1a4de2'),(60830,3887,'content_block_8_text_block_content_col_one','<img class=\"aligncenter\" src=\"/wp-content/uploads/2022/12/rose-1.jpg\" width=\"500\" height=\"373\" />'),(60831,3887,'_content_block_8_text_block_content_col_one','field_5bbe313b3920d'),(60832,3887,'content_block_8_text_block_content_col_two','<h3 style=\"text-align: center;\"><span class=\"h4\"> WINE BY THE GLASS AND BY THE BOTTLE</span></h3>\r\n<p style=\"text-align: center;\">We encourage guests to come in to purchase wine by the glass or by the bottle. There are wonderful picnic opportunities in the gardens of <a href=\"https://www.cornerstonesonoma.com/\">Cornerstone Sonoma</a> and enjoy the Sonoma sunshine.</p>\r\n<p style=\"text-align: center;\">NO RESERVATIONS NEED | TO-GO SERVICE</p>'),(60833,3887,'_content_block_8_text_block_content_col_two','field_5bbe31593920e'),(60834,3887,'content_block_9_layout_title','Cornerstone Title'),(60835,3887,'_content_block_9_layout_title','field_5bc11ca9a0d50-s'),(60836,3887,'content_block_9_hide_this_content_block','1'),(60837,3887,'_content_block_9_hide_this_content_block','field_643884e4df74c7textb'),(60838,3887,'content_block_9_custom_css_class','no-padding'),(60839,3887,'_content_block_9_custom_css_class','field_5bbe30b1a4de2-1'),(60840,3887,'content_block_9_text_block_columns','one'),(60841,3887,'_content_block_9_text_block_columns','field_5bbe2f81a4de0'),(60842,3887,'content_block_9_narrow_text_block_content','0'),(60843,3887,'_content_block_9_narrow_text_block_content','field_5bbe342e08360'),(60844,3887,'content_block_9_reverse_colors','0'),(60845,3887,'_content_block_9_reverse_colors','field_5bbe3027a4de1'),(60846,3887,'content_block_9_enable_background_image','0'),(60847,3887,'_content_block_9_enable_background_image','field_5bbe30b1a4de2'),(60848,3887,'content_block_9_text_block_content_col_one','&nbsp;\r\n<h2 style=\"text-align: center;\"><span class=\"h3\">MEADOWCROFT TASTING ROOM AT <a href=\"https://www.cornerstonesonoma.com/\">CORNERSTONE</a></span></h2>'),(60849,3887,'_content_block_9_text_block_content_col_one','field_5bbe313b3920d'),(60850,3887,'content_block_10_layout_title','Testimonials'),(60851,3887,'_content_block_10_layout_title','field_5bc11ca9a0d50-s'),(60852,3887,'content_block_10_hide_this_content_block','1'),(60853,3887,'_content_block_10_hide_this_content_block','field_643884e4df74c7textb'),(60854,3887,'content_block_10_custom_css_class','medium-width'),(60855,3887,'_content_block_10_custom_css_class','field_5bbe30b1a4de2-1'),(60856,3887,'content_block_10_text_block_columns','two'),(60857,3887,'_content_block_10_text_block_columns','field_5bbe2f81a4de0'),(60858,3887,'content_block_10_column_size','equal'),(60859,3887,'_content_block_10_column_size','field_columnsize'),(60860,3887,'content_block_10_narrow_text_block_content','0'),(60861,3887,'_content_block_10_narrow_text_block_content','field_5bbe342e08360'),(60862,3887,'content_block_10_reverse_colors','0'),(60863,3887,'_content_block_10_reverse_colors','field_5bbe3027a4de1'),(60864,3887,'content_block_10_enable_background_image','0'),(60865,3887,'_content_block_10_enable_background_image','field_5bbe30b1a4de2'),(60866,3887,'content_block_10_text_block_content_col_one','&nbsp;\r\n<p class=\"metatitle\" style=\"text-align: center;\">OPEN DAILY</p>\r\n\r\n<h3 style=\"text-align: center;\">TESTIMONIALS</h3>\r\n[slick-slider category=\"29\" loop=\"true\" hover_pause=\"true\" dots=\"false\" arrows=\"false\" show_content=\"true\" show_title=\"false\" autoplay_interval=\"4000\" speed=\"300\" extra_class=\"tasting-room\" design=\"design-5\"]'),(60867,3887,'_content_block_10_text_block_content_col_one','field_5bbe313b3920d'),(60868,3887,'content_block_10_text_block_content_col_two','<img class=\"wp-image-896 aligncenter\" src=\"/wp-content/uploads/2023/02/testimonials.jpg\" alt=\"Bottle of Meadowcroft wine in lavender field\" width=\"861\" height=\"610\" />'),(60869,3887,'_content_block_10_text_block_content_col_two','field_5bbe31593920e'),(60870,3887,'content_block','a:11:{i:0;s:6:\"banner\";i:1;s:10:\"text_block\";i:2;s:6:\"banner\";i:3;s:10:\"text_block\";i:4;s:10:\"text_block\";i:5;s:10:\"text_block\";i:6;s:10:\"text_block\";i:7;s:10:\"text_block\";i:8;s:10:\"text_block\";i:9;s:10:\"text_block\";i:10;s:10:\"text_block\";}'),(60871,3887,'_content_block','field_5bbe19a7efa09'),(60877,1554,'allowed_customer_tag_titles','a:0:{}'),(60878,1554,'allowed_customer_club_titles','a:0:{}'),(60879,1554,'content_block_0_hide_this_content_block','1'),(60880,1554,'_content_block_0_hide_this_content_block','field_643884e4df74banner'),(60881,1554,'content_block_1_hide_this_content_block','1'),(60882,1554,'_content_block_1_hide_this_content_block','field_643884e4df74c7textb'),(60883,1554,'content_block_2_hide_this_content_block','1'),(60884,1554,'_content_block_2_hide_this_content_block','field_643884e4df74c7textb'),(60885,1554,'content_block_3_hide_this_content_block','1'),(60886,1554,'_content_block_3_hide_this_content_block','field_643884e4df74c7textb'),(60887,1554,'content_block_4_hide_this_content_block','1'),(60888,1554,'_content_block_4_hide_this_content_block','field_643884e4df74c7textb'),(60889,1554,'content_block_5_hide_this_content_block','1'),(60890,1554,'_content_block_5_hide_this_content_block','field_643884e4df74c7textb'),(60891,1554,'content_block_6_hide_this_content_block','1'),(60892,1554,'_content_block_6_hide_this_content_block','field_643884e4df74c7textb'),(60893,3893,'web_id','e84190fd-1a4b-403a-8945-f249d9522c9a'),(60894,3893,'slug','comp-tasting-duplicate'),(60895,3893,'title','Offsite Private Tasting Fee'),(60896,3893,'type','Tasting'),(60897,3893,'image','https://images.commerce7.com/meadowcroft-wines/images/original/club-tastiing-1730407630754.jpg'),(60898,3893,'teaser',NULL),(60899,3893,'content','<p>Offsite wine tasting fee</p>'),(60900,3893,'subtitle',NULL),(60901,3893,'price','2500'),(60902,3893,'web_status','Not Available'),(60903,3893,'admin_status','Available'),(60904,3893,'collections','a:0:{}'),(60905,3893,'primary_collection',''),(60906,3894,'web_id','7cc3880f-e2ed-4c56-a94c-e67727e25d0b'),(60907,3894,'slug','chocolate-pairing-set'),(60908,3894,'title','Chocolate Pairing Set'),(60909,3894,'type','General Merchandise'),(60910,3894,'image','https://images.commerce7.com/meadowcroft-wines/images/original/pairing-chocolate-1734806843903.webp'),(60911,3894,'teaser',NULL),(60912,3894,'content',NULL),(60913,3894,'subtitle',NULL),(60914,3894,'price','1000'),(60915,3894,'web_status','Not Available'),(60916,3894,'admin_status','Available'),(60917,3894,'collections','a:0:{}'),(60918,3894,'primary_collection',''),(60919,3151,'content_block_0_hide_this_content_block','1'),(60920,3151,'_content_block_0_hide_this_content_block','field_643884e4df74banner'),(60921,3151,'content_block_1_hide_this_content_block','1'),(60922,3151,'_content_block_1_hide_this_content_block','field_643884e4df74c7textb'),(60923,3151,'content_block_2_hide_this_content_block','1'),(60924,3151,'_content_block_2_hide_this_content_block','field_643884e4df74c7vidleg'),(60925,3151,'content_block_3_hide_this_content_block','1'),(60926,3151,'_content_block_3_hide_this_content_block','field_643884e4df74c7textb'),(60927,3151,'content_block_4_hide_this_content_block','1'),(60928,3151,'_content_block_4_hide_this_content_block','field_643884e4df74c7textb'),(60929,3895,'inline_featured_image','0'),(60933,3898,'inline_featured_image','0'),(60934,3899,'inline_featured_image','0'),(60935,3899,'_edit_lock','1735257381:3'),(60936,3900,'inline_featured_image','0'),(60937,3901,'inline_featured_image','0'),(60938,3901,'_edit_lock','1735257616:3'),(60939,3902,'inline_featured_image','0'),(60940,3903,'inline_featured_image','0'),(60942,3904,'inline_featured_image','0'),(60943,3904,'_edit_lock','1735328319:3'),(60944,3904,'_edit_last','3'),(60945,3905,'_wp_attached_file','2024/12/Meadowcroft.PinotBlanc.2024-web.png'),(60946,3905,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:2240;s:4:\"file\";s:43:\"2024/12/Meadowcroft.PinotBlanc.2024-web.png\";s:8:\"filesize\";i:1379574;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"Meadowcroft.PinotBlanc.2024-web-107x300.png\";s:5:\"width\";i:107;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28035;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"Meadowcroft.PinotBlanc.2024-web-366x1024.png\";s:5:\"width\";i:366;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:254559;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Meadowcroft.PinotBlanc.2024-web-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14375;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"Meadowcroft.PinotBlanc.2024-web-768x2150.png\";s:5:\"width\";i:768;s:6:\"height\";i:2150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1058794;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:44:\"Meadowcroft.PinotBlanc.2024-web-549x1536.png\";s:5:\"width\";i:549;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:557732;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:44:\"Meadowcroft.PinotBlanc.2024-web-731x2048.png\";s:5:\"width\";i:731;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:964775;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:43:\"Meadowcroft.PinotBlanc.2024-web-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50058;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:43:\"Meadowcroft.PinotBlanc.2024-web-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85956;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:43:\"Meadowcroft.PinotBlanc.2024-web-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:191223;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(60947,3906,'_wp_attached_file','2024/12/2022-OakvilleCabernet-TechSheet-DRAFT.pdf'),(60948,3906,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:45:\"2022-OakvilleCabernet-TechSheet-DRAFT-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:216074;}s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"2022-OakvilleCabernet-TechSheet-DRAFT-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16101;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"2022-OakvilleCabernet-TechSheet-DRAFT-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118167;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"2022-OakvilleCabernet-TechSheet-DRAFT-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7302;}}s:8:\"filesize\";i:310208;}'),(60949,3907,'_wp_attached_file','2024/12/2022-StagsLeapCabernet-TechSheet-DRAFT.pdf'),(60950,3907,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:46:\"2022-StagsLeapCabernet-TechSheet-DRAFT-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:218472;}s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"2022-StagsLeapCabernet-TechSheet-DRAFT-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16276;}s:5:\"large\";a:5:{s:4:\"file\";s:55:\"2022-StagsLeapCabernet-TechSheet-DRAFT-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119258;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"2022-StagsLeapCabernet-TechSheet-DRAFT-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7124;}}s:8:\"filesize\";i:328922;}'),(60951,3908,'_wp_attached_file','2024/12/2024-PinotBlanc-TechSheet-DRAFT.pdf'),(60952,3908,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:39:\"2024-PinotBlanc-TechSheet-DRAFT-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:197707;}s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"2024-PinotBlanc-TechSheet-DRAFT-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15197;}s:5:\"large\";a:5:{s:4:\"file\";s:48:\"2024-PinotBlanc-TechSheet-DRAFT-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109832;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"2024-PinotBlanc-TechSheet-DRAFT-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6950;}}s:8:\"filesize\";i:297039;}'),(60953,3909,'_wp_attached_file','2024/12/Meadowcroft.CabSauv.Oakville.2022-web.png'),(60954,3909,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:2240;s:4:\"file\";s:49:\"2024/12/Meadowcroft.CabSauv.Oakville.2022-web.png\";s:8:\"filesize\";i:1054967;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Meadowcroft.CabSauv.Oakville.2022-web-107x300.png\";s:5:\"width\";i:107;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25836;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"Meadowcroft.CabSauv.Oakville.2022-web-366x1024.png\";s:5:\"width\";i:366;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:214200;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"Meadowcroft.CabSauv.Oakville.2022-web-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16114;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"Meadowcroft.CabSauv.Oakville.2022-web-768x2150.png\";s:5:\"width\";i:768;s:6:\"height\";i:2150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:826023;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"Meadowcroft.CabSauv.Oakville.2022-web-549x1536.png\";s:5:\"width\";i:549;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:448137;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:50:\"Meadowcroft.CabSauv.Oakville.2022-web-731x2048.png\";s:5:\"width\";i:731;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:754962;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:49:\"Meadowcroft.CabSauv.Oakville.2022-web-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52509;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:49:\"Meadowcroft.CabSauv.Oakville.2022-web-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:86588;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:49:\"Meadowcroft.CabSauv.Oakville.2022-web-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:179869;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(60955,3910,'_wp_attached_file','2024/12/Meadowcroft.CabSauv.StagsLeap.2022-web.png'),(60956,3910,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:2240;s:4:\"file\";s:50:\"2024/12/Meadowcroft.CabSauv.StagsLeap.2022-web.png\";s:8:\"filesize\";i:1217889;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Meadowcroft.CabSauv.StagsLeap.2022-web-107x300.png\";s:5:\"width\";i:107;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28840;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"Meadowcroft.CabSauv.StagsLeap.2022-web-366x1024.png\";s:5:\"width\";i:366;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:245325;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Meadowcroft.CabSauv.StagsLeap.2022-web-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19785;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"Meadowcroft.CabSauv.StagsLeap.2022-web-768x2150.png\";s:5:\"width\";i:768;s:6:\"height\";i:2150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:952177;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:51:\"Meadowcroft.CabSauv.StagsLeap.2022-web-549x1536.png\";s:5:\"width\";i:549;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:516531;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:51:\"Meadowcroft.CabSauv.StagsLeap.2022-web-731x2048.png\";s:5:\"width\";i:731;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:872139;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:50:\"Meadowcroft.CabSauv.StagsLeap.2022-web-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67562;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:50:\"Meadowcroft.CabSauv.StagsLeap.2022-web-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:112415;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:50:\"Meadowcroft.CabSauv.StagsLeap.2022-web-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:236932;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(60957,3911,'_wp_attached_file','2024/12/Meadowcroft.PinotBlanc.2024-web-1.png'),(60958,3911,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:2240;s:4:\"file\";s:45:\"2024/12/Meadowcroft.PinotBlanc.2024-web-1.png\";s:8:\"filesize\";i:1379574;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"Meadowcroft.PinotBlanc.2024-web-1-107x300.png\";s:5:\"width\";i:107;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28035;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"Meadowcroft.PinotBlanc.2024-web-1-366x1024.png\";s:5:\"width\";i:366;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:254559;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"Meadowcroft.PinotBlanc.2024-web-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14375;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"Meadowcroft.PinotBlanc.2024-web-1-768x2150.png\";s:5:\"width\";i:768;s:6:\"height\";i:2150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1058794;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"Meadowcroft.PinotBlanc.2024-web-1-549x1536.png\";s:5:\"width\";i:549;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:557732;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:46:\"Meadowcroft.PinotBlanc.2024-web-1-731x2048.png\";s:5:\"width\";i:731;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:964775;}s:21:\"gform-image-choice-sm\";a:5:{s:4:\"file\";s:45:\"Meadowcroft.PinotBlanc.2024-web-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50058;}s:21:\"gform-image-choice-md\";a:5:{s:4:\"file\";s:45:\"Meadowcroft.PinotBlanc.2024-web-1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85956;}s:21:\"gform-image-choice-lg\";a:5:{s:4:\"file\";s:45:\"Meadowcroft.PinotBlanc.2024-web-1-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:191223;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(60959,3904,'allowed_customer_tag_titles','a:0:{}'),(60960,3904,'allowed_customer_club_titles','a:0:{}'),(60961,3904,'linked_brand','3399'),(60962,3904,'_linked_brand','field_59ee2d92496e9'),(60963,3904,'main_image','3911'),(60964,3904,'_main_image','field_59ee319d02900'),(60965,3904,'assets_0_text','Tech Sheet'),(60966,3904,'_assets_0_text','field_59ee31cc02902'),(60967,3904,'assets_0_file_or_url','file'),(60968,3904,'_assets_0_file_or_url','field_59ee31da02903'),(60969,3904,'assets_0_file','3908'),(60970,3904,'_assets_0_file','field_59ee320302905'),(60971,3904,'assets_1_text','Bottle Shot'),(60972,3904,'_assets_1_text','field_59ee31cc02902'),(60973,3904,'assets_1_file_or_url','file'),(60974,3904,'_assets_1_file_or_url','field_59ee31da02903'),(60975,3904,'assets_1_file','3911'),(60976,3904,'_assets_1_file','field_59ee320302905'),(60977,3904,'assets','2'),(60978,3904,'_assets','field_59ee31bc02901'),(60979,3904,'varietal','Pinot Blanc'),(60980,3904,'_varietal','field_59ee660ece2e7'),(60981,3904,'sub_brand',''),(60982,3904,'_sub_brand','field_59ee6623ce2e8'),(60983,3904,'vintage','2024'),(60984,3904,'_vintage','field_59ee6eba9a39a'),(60985,3904,'_yoast_wpseo_estimated-reading-time-minutes','1'),(60986,3912,'inline_featured_image','0'),(60987,3912,'_edit_lock','1735328615:3'),(60988,3912,'_edit_last','3'),(60989,3912,'allowed_customer_tag_titles','a:0:{}'),(60990,3912,'allowed_customer_club_titles','a:0:{}'),(60991,3912,'linked_brand','3399'),(60992,3912,'_linked_brand','field_59ee2d92496e9'),(60993,3912,'main_image','3910'),(60994,3912,'_main_image','field_59ee319d02900'),(60995,3912,'assets_0_text','Tech Sheet'),(60996,3912,'_assets_0_text','field_59ee31cc02902'),(60997,3912,'assets_0_file_or_url','file'),(60998,3912,'_assets_0_file_or_url','field_59ee31da02903'),(60999,3912,'assets_0_file','3907'),(61000,3912,'_assets_0_file','field_59ee320302905'),(61001,3912,'assets_1_text','Bottle Shot'),(61002,3912,'_assets_1_text','field_59ee31cc02902'),(61003,3912,'assets_1_file_or_url','file'),(61004,3912,'_assets_1_file_or_url','field_59ee31da02903'),(61005,3912,'assets_1_file','3910'),(61006,3912,'_assets_1_file','field_59ee320302905'),(61007,3912,'assets','2'),(61008,3912,'_assets','field_59ee31bc02901'),(61009,3912,'varietal','Cabernet Sauvignon'),(61010,3912,'_varietal','field_59ee660ece2e7'),(61011,3912,'sub_brand',''),(61012,3912,'_sub_brand','field_59ee6623ce2e8'),(61013,3912,'vintage','2022'),(61014,3912,'_vintage','field_59ee6eba9a39a'),(61015,3912,'_yoast_wpseo_estimated-reading-time-minutes','1'),(61016,3913,'inline_featured_image','0'),(61017,3913,'_edit_lock','1735329210:3'),(61018,3913,'_edit_last','3'),(61019,3913,'allowed_customer_tag_titles','a:0:{}'),(61020,3913,'allowed_customer_club_titles','a:0:{}'),(61021,3913,'linked_brand','3399'),(61022,3913,'_linked_brand','field_59ee2d92496e9'),(61023,3913,'main_image','3909'),(61024,3913,'_main_image','field_59ee319d02900'),(61025,3913,'assets_0_text','Tech Sheet'),(61026,3913,'_assets_0_text','field_59ee31cc02902'),(61027,3913,'assets_0_file_or_url','file'),(61028,3913,'_assets_0_file_or_url','field_59ee31da02903'),(61029,3913,'assets_0_file','3906'),(61030,3913,'_assets_0_file','field_59ee320302905'),(61031,3913,'assets_1_text','Bottle Shot'),(61032,3913,'_assets_1_text','field_59ee31cc02902'),(61033,3913,'assets_1_file_or_url','file'),(61034,3913,'_assets_1_file_or_url','field_59ee31da02903'),(61035,3913,'assets_1_file','3909'),(61036,3913,'_assets_1_file','field_59ee320302905'),(61037,3913,'assets','2'),(61038,3913,'_assets','field_59ee31bc02901'),(61039,3913,'varietal','Cabernet Sauvignon'),(61040,3913,'_varietal','field_59ee660ece2e7'),(61041,3913,'sub_brand',''),(61042,3913,'_sub_brand','field_59ee6623ce2e8'),(61043,3913,'vintage','2022'),(61044,3913,'_vintage','field_59ee6eba9a39a'),(61045,3913,'_yoast_wpseo_estimated-reading-time-minutes','1'),(61046,3914,'inline_featured_image','0'),(61047,3915,'web_id','a5261c64-8436-4835-b605-bb1bd108c31a'),(61048,3915,'slug','soap-honey-body-bar'),(61049,3915,'title','Soap - Honey Body Bar'),(61050,3915,'type','General Merchandise'),(61051,3915,'image',NULL),(61052,3915,'teaser',NULL),(61053,3915,'content',NULL),(61054,3915,'subtitle',NULL),(61055,3915,'price','700'),(61056,3915,'web_status','Not Available'),(61057,3915,'admin_status','Available'),(61058,3915,'collections','a:0:{}'),(61059,3915,'primary_collection',''),(61060,3916,'web_id','d22be68f-d76c-448b-b6bf-c55aa92c38b4'),(61061,3916,'slug','spice-blends-calicutt-assorted'),(61062,3916,'title','Spice Blends - Calicutt assorted'),(61063,3916,'type','General Merchandise'),(61064,3916,'image',NULL),(61065,3916,'teaser',NULL),(61066,3916,'content',NULL),(61067,3916,'subtitle',NULL),(61068,3916,'price','1200'),(61069,3916,'web_status','Not Available'),(61070,3916,'admin_status','Available'),(61071,3916,'collections','a:0:{}'),(61072,3916,'primary_collection',''),(61073,3917,'web_id','e20e99e4-0bf8-4036-bf34-69565eb56a30'),(61074,3917,'slug','2023-sonoma-county-rose'),(61075,3917,'title','2023 Sonoma County Rose'),(61076,3917,'type','Wine'),(61077,3917,'image','https://images.commerce7.com/meadowcroft-wines/images/original/meadowcroft-rose-2023-1-1735602758520.png'),(61078,3917,'teaser',NULL),(61079,3917,'content','<p class=\"p1\"><strong>TASTING NOTES</strong></p>\n<p class=\"p1\">Elegant and refined, this vibrant wine features aromas of fresh pomegranate, raspberries, ambrosia salad and candies fruit.<span class=\"Apple-converted-space\">&nbsp; </span>Notes of wet stone minerality.<span class=\"Apple-converted-space\">&nbsp; </span>The palate is driven by sweet cranberry, fresh strawberry with hints of raspberry. This delightfully fruity and delicate wine, with a refreshing and bright finish, evokes the spirit of traditional Provence ros&eacute;s.</p>\n<p class=\"p1\"><strong><span class=\"s1\">SUGGESTED FOOD PAIRING</span></strong></p>\n<p class=\"p2\">This wine is a great match for a variety of food pairings like ch&egrave;vre, oysters, and is beautifully matched with any recipes featuring fresh herbs like tarragon or mint. This refreshing sauvignon blanc is also delicious on its own as an ap&eacute;ritif &agrave; la maison (aperitif at home).</p>\n<p class=\"p2\">&nbsp;</p>\n<p class=\"p2\"><strong>TECHNICAL INFO</strong></p>\n<p class=\"p1\"><span class=\"s1\">APPELLATION: </span>Sonoma County <span class=\"s1\">VARIETAL:</span> Pinot Noir</p>\n<p class=\"p1\"><span class=\"s1\">HARVESTED:</span> September 2023</p>\n<p class=\"p1\"><span class=\"s1\">BOTTLED:</span> August 2024</p>\n<p class=\"p2\"><span class=\"s2\">PRODUCTION:</span><span class=\"s3\"> 109 cases</span></p>\n<p class=\"p2\"><span class=\"s2\">ALCOHOL:</span><span class=\"s3\"> 13.5%</span></p>'),(61080,3917,'subtitle',NULL),(61081,3917,'price','3000'),(61082,3917,'web_status','Available'),(61083,3917,'admin_status','Available'),(61084,3917,'varietal',NULL),(61085,3917,'appellation',NULL),(61086,3917,'vintage',NULL),(61087,3917,'collections','a:0:{}'),(61088,3917,'primary_collection',''),(61089,3918,'inline_featured_image','0');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (52,2,'2018-10-10 15:33:01','2018-10-10 15:33:01','a:11:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:79:\"Turn this switch on or off to toggle if this banner fills the entire page width\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:13:\"5bbe19b88cd97\";s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Make Banner Full Width?','banner_full_width','publish','closed','closed','','field_5bbe19c8efa0a','','','2018-10-10 15:33:01','2018-10-10 15:33:01','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=52',1,'acf-field','',0),(53,2,'2018-10-10 15:33:01','2018-10-10 15:33:01','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:13:\"5bbe19b88cd97\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Banner Title','banner_title','publish','closed','closed','','field_5bbe1b78efa0b','','','2018-10-10 15:33:01','2018-10-10 15:33:01','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=53',7,'acf-field','',0),(54,2,'2018-10-10 15:33:01','2018-10-10 15:33:01','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:13:\"5bbe19b88cd97\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Banner Subtitle','banner_subtitle','publish','closed','closed','','field_5bbe1b83efa0c','','','2018-10-10 15:33:01','2018-10-10 15:33:01','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=54',8,'acf-field','',0),(55,2,'2018-10-10 15:33:01','2018-10-10 15:33:01','a:7:{s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:13:\"5bbe19b88cd97\";s:13:\"return_format\";s:3:\"url\";}','Banner Button Link','banner_button_link','publish','closed','closed','','field_5bbe1b8cefa0d','','','2018-10-10 15:33:01','2018-10-10 15:33:01','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=55',9,'acf-field','',0),(56,2,'2018-10-10 15:33:01','2018-10-10 15:33:01','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:13:\"5bbe19b88cd97\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:2:{s:5:\"field\";s:19:\"field_5bbe1b8cefa0d\";s:8:\"operator\";s:7:\"!=empty\";}}}}','Banner Button Text','banner_button_text','publish','closed','closed','','field_5bbe1ba0efa0e','','','2018-10-10 15:33:01','2018-10-10 15:33:01','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=56',10,'acf-field','',0),(59,2,'2018-10-10 15:54:10','2018-10-10 15:54:10','a:11:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:13:\"5bbe19b88cd97\";s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Banner Button - Open Link in New Tab?','banner_button_new_tab','publish','closed','closed','','field_5bbe1e6d18fae','','','2018-10-10 15:54:10','2018-10-10 15:54:10','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=59',11,'acf-field','',0),(60,2,'2018-10-10 15:54:10','2018-10-10 15:54:10','a:16:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:100:\"Upload the banner image that will be seen on large screens.<br>\nRecommended image size: 1920 x 1280\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:13:\"5bbe19b88cd97\";s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:4:\"full\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Banner Image','banner_image','publish','closed','closed','','field_5bbe201718faf','','','2018-10-10 15:54:10','2018-10-10 15:54:10','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=60',14,'acf-field','',0),(61,2,'2018-10-10 15:54:10','2018-10-10 15:54:10','a:16:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:101:\"Upload the banner image that will be seen on smaller screens.<br>\nRecommended image size: 1280 x 850\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:13:\"5bbe19b88cd97\";s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:4:\"full\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Banner Image Mobile','banner_image_mobile','publish','closed','closed','','field_5bbe202818fb0','','','2018-10-10 15:54:10','2018-10-10 15:54:10','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=61',17,'acf-field','',0),(66,2,'2018-10-10 16:02:05','2018-10-10 16:02:05','a:11:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:81:\"Turn this switch on or off to add or remove a parallax effect on the banner image\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:13:\"5bbe19b88cd97\";s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Add Parallax Effect to Banner?','add_parallax_effect','publish','closed','closed','','field_5bbe219ccb6a9','','','2018-10-10 16:02:05','2018-10-10 16:02:05','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=66',3,'acf-field','',0),(67,2,'2018-10-10 16:05:52','2018-10-10 16:05:52','a:14:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:69:\"Choose between three different banner sizes: normal, short, and long.\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:13:\"5bbe19b88cd97\";s:7:\"choices\";a:3:{s:6:\"normal\";s:6:\"normal\";s:5:\"short\";s:5:\"short\";s:4:\"long\";s:4:\"long\";}s:13:\"default_value\";a:1:{i:0;s:6:\"normal\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:13:\"return_format\";s:5:\"value\";s:4:\"ajax\";i:0;s:11:\"placeholder\";s:0:\"\";}','Banner Size','banner_size','publish','closed','closed','','field_5bbe232929ec9','','','2018-10-10 16:05:52','2018-10-10 16:05:52','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=67',2,'acf-field','',0),(75,2,'2018-10-10 16:10:40','2018-10-10 16:10:40','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:13:\"5bbe19b88cd97\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Banner Styles','banner_styles','publish','closed','closed','','field_5bbe243a531ba','','','2018-10-10 16:10:40','2018-10-10 16:10:40','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=75',0,'acf-field','',0),(76,2,'2018-10-10 16:10:40','2018-10-10 16:10:40','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:13:\"5bbe19b88cd97\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Banner Content','banner_styles_copy','publish','closed','closed','','field_5bbe2449531bb','','','2018-10-10 16:10:40','2018-10-10 16:10:40','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=76',5,'acf-field','',0),(80,2,'2018-10-10 16:13:31','2018-10-10 16:13:31','a:11:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:159:\"Turn this switch on to show a down arrow at the bottom of the banner.<br>\nWhen the user clicks on taps on the arrow, the page will scroll to the next section.\";s:8:\"required\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:13:\"5bbe19b88cd97\";s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_5bbe259b02b62\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"bottom\";}}}}','Show Down Arrow?','show_down_arrow','publish','closed','closed','','field_5bbe24f721165','','','2018-10-10 16:13:31','2018-10-10 16:13:31','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=80',12,'acf-field','',0),(82,2,'2018-10-10 16:20:18','2018-10-10 16:20:18','a:14:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:88:\"Choose the position of the banner\'s content.<br>\nThe default position is in the center.\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:13:\"5bbe19b88cd97\";s:7:\"choices\";a:9:{s:8:\"centered\";s:8:\"centered\";s:11:\"center-left\";s:11:\"middle left\";s:12:\"center-right\";s:12:\"middle right\";s:8:\"top-left\";s:8:\"top left\";s:3:\"top\";s:10:\"top center\";s:9:\"top-right\";s:9:\"top right\";s:11:\"bottom-left\";s:11:\"bottom left\";s:6:\"bottom\";s:13:\"bottom center\";s:12:\"bottom-right\";s:12:\"bottom right\";}s:13:\"default_value\";a:0:{}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:13:\"return_format\";s:5:\"value\";s:4:\"ajax\";i:0;s:11:\"placeholder\";s:0:\"\";}','Banner Content Position','banner_content_position','publish','closed','closed','','field_5bbe259b02b62','','','2018-10-10 16:20:18','2018-10-10 16:20:18','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=82',6,'acf-field','',0),(83,2,'2018-10-10 16:27:06','2018-10-10 16:27:06','a:14:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:103:\"Choose a focal point / position for the mobile banner image<br>\nThe default image position is centered\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:13:\"5bbe19b88cd97\";s:7:\"choices\";a:9:{s:13:\"center center\";s:8:\"centered\";s:11:\"left center\";s:11:\"middle left\";s:12:\"right center\";s:12:\"middle right\";s:8:\"left top\";s:8:\"top left\";s:10:\"center top\";s:10:\"top center\";s:9:\"right top\";s:9:\"top right\";s:11:\"left bottom\";s:11:\"bottom left\";s:13:\"center bottom\";s:13:\"bottom center\";s:12:\"right bottom\";s:12:\"bottom right\";}s:13:\"default_value\";a:1:{i:0;s:13:\"center center\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:13:\"return_format\";s:5:\"value\";s:4:\"ajax\";i:0;s:11:\"placeholder\";s:0:\"\";}','Banner Image Position','banner_image_position','publish','closed','closed','','field_5bbe278f9fb97','','','2018-10-10 16:27:06','2018-10-10 16:27:06','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=83',15,'acf-field','',0),(84,2,'2018-10-10 16:27:07','2018-10-10 16:27:07','a:14:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:103:\"Choose a focal point / position for the mobile banner image<br>\nThe default image position is centered\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:13:\"5bbe19b88cd97\";s:7:\"choices\";a:9:{s:13:\"center center\";s:8:\"centered\";s:11:\"left center\";s:11:\"middle left\";s:12:\"right center\";s:12:\"middle right\";s:8:\"left top\";s:8:\"top left\";s:10:\"center top\";s:10:\"top center\";s:9:\"right top\";s:9:\"top right\";s:11:\"left bottom\";s:11:\"bottom left\";s:13:\"center bottom\";s:13:\"bottom center\";s:12:\"right bottom\";s:12:\"bottom right\";}s:13:\"default_value\";a:1:{i:0;s:13:\"center center\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:13:\"return_format\";s:5:\"value\";s:4:\"ajax\";i:0;s:11:\"placeholder\";s:0:\"\";}','Banner Image Mobile Position','banner_image_mobile_position','publish','closed','closed','','field_5bbe279c9fb98','','','2018-10-10 16:27:07','2018-10-10 16:27:07','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=84',18,'acf-field','',0),(85,2,'2018-10-10 16:28:12','2018-10-10 16:28:12','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:13:\"5bbe19b88cd97\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Banner Image','_copy','publish','closed','closed','','field_5bbe287feb12a','','','2018-10-10 16:28:12','2018-10-10 16:28:12','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=85',13,'acf-field','',0),(99,2,'2018-10-10 16:36:35','2018-10-10 16:36:35','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:13:\"5bbe19b88cd97\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Banner Image Mobile','_copy','publish','closed','closed','','field_5bbe2a81dc31c','','','2018-10-10 16:36:35','2018-10-10 16:36:35','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=99',16,'acf-field','',0),(100,2,'2018-10-10 17:03:59','2018-10-10 17:03:59','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe2eb0a4dcd\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Text Block Styles','text_block_styles','publish','closed','closed','','field_5bbe2eb1a4dce','','','2018-10-10 17:03:59','2018-10-10 17:03:59','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=100',0,'acf-field','',0),(101,2,'2018-10-10 17:03:59','2018-10-10 17:03:59','a:14:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:81:\"Choose how many columns this text block contains.<br>\nThe default is one column.\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe2eb0a4dcd\";s:7:\"choices\";a:3:{s:3:\"one\";s:3:\"one\";s:3:\"two\";s:3:\"two\";s:5:\"three\";s:5:\"three\";}s:13:\"default_value\";a:1:{i:0;s:3:\"one\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:13:\"return_format\";s:5:\"value\";s:4:\"ajax\";i:0;s:11:\"placeholder\";s:0:\"\";}','Text Block Columns','text_block_columns','publish','closed','closed','','field_5bbe2f81a4de0','','','2018-10-10 17:03:59','2018-10-10 17:03:59','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=101',1,'acf-field','',0),(102,2,'2018-10-10 17:03:59','2018-10-10 17:03:59','a:11:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:370:\"Toggle this switch to reverse the default colors of the text block.<br>\nIf this switch is set to \"yes\", the text block will have a black background with white text.<br>\nIf this switch is set to \"no\" (default), the text block will have a white background with black text.<br>\nIf you upload a background image for this text block, the text color will still be reversed.\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe2eb0a4dcd\";s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Reverse Colors?','reverse_colors','publish','closed','closed','','field_5bbe3027a4de1','','','2018-10-10 17:03:59','2018-10-10 17:03:59','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=102',3,'acf-field','',0),(103,2,'2018-10-10 17:03:59','2018-10-10 17:03:59','a:11:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:98:\"Toggling this switch will turn on/off the ability to upload a background image for this text block\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe2eb0a4dcd\";s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Enable Background Image?','enable_background_image','publish','closed','closed','','field_5bbe30b1a4de2','','','2018-10-10 17:03:59','2018-10-10 17:03:59','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=103',4,'acf-field','',0),(104,2,'2018-10-10 17:03:59','2018-10-10 17:03:59','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe2eb0a4dcd\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Text Block Content','text_block_content','publish','closed','closed','','field_5bbe2eb1a4dd2','','','2018-10-10 17:03:59','2018-10-10 17:03:59','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=104',6,'acf-field','',0),(106,2,'2018-10-10 17:03:59','2018-10-10 17:03:59','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe2eb0a4dcd\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_5bbe30b1a4de2\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}}','Banner Background Image','','publish','closed','closed','','field_5bbe2eb1a4dda','','','2018-10-10 17:03:59','2018-10-10 17:03:59','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=106',10,'acf-field','',0),(107,2,'2018-10-10 17:03:59','2018-10-10 17:03:59','a:16:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:126:\"Upload the background image for this text block.<br>\nThe recommended image size is dependant on how much text this block has.\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe2eb0a4dcd\";s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:4:\"full\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Background Image','background_image','publish','closed','closed','','field_5bbe2eb1a4ddb','','','2018-10-10 17:03:59','2018-10-10 17:03:59','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=107',11,'acf-field','',0),(108,2,'2018-10-10 17:03:59','2018-10-10 17:03:59','a:14:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:107:\"Choose a focal point / position for the mobile background image<br>\nThe default image position is centered\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe2eb0a4dcd\";s:7:\"choices\";a:9:{s:13:\"center center\";s:8:\"centered\";s:11:\"left center\";s:11:\"middle left\";s:12:\"right center\";s:12:\"middle right\";s:8:\"left top\";s:8:\"top left\";s:10:\"center top\";s:10:\"top center\";s:9:\"right top\";s:9:\"top right\";s:11:\"left bottom\";s:11:\"bottom left\";s:13:\"center bottom\";s:13:\"bottom center\";s:12:\"right bottom\";s:12:\"bottom right\";}s:13:\"default_value\";a:1:{i:0;s:13:\"center center\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:13:\"return_format\";s:5:\"value\";s:4:\"ajax\";i:0;s:11:\"placeholder\";s:0:\"\";}','Background Image Position','background_image_position','publish','closed','closed','','field_5bbe2eb1a4ddc','','','2018-10-10 17:03:59','2018-10-10 17:03:59','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=108',12,'acf-field','',0),(109,2,'2018-10-10 17:14:04','2018-10-10 17:14:04','a:11:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:75:\"Turn this switch on or off to add or remove a dark veil on the banner image\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:13:\"5bbe19b88cd97\";s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Add Veil Over Banner?','add_veil_over_banner','publish','closed','closed','','field_5bbe333f39212','','','2018-10-10 17:14:04','2018-10-10 17:14:04','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=109',4,'acf-field','',0),(110,2,'2018-10-10 17:14:04','2018-10-10 17:14:04','a:11:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe2eb0a4dcd\";s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Text Block Content (Column One)','text_block_content_col_one','publish','closed','closed','','field_5bbe313b3920d','','','2018-10-10 17:14:04','2018-10-10 17:14:04','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=110',7,'acf-field','',0),(111,2,'2018-10-10 17:14:04','2018-10-10 17:14:04','a:11:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe2eb0a4dcd\";s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_5bbe2f81a4de0\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"one\";}}}}','Text Block Content (Column Two)','text_block_content_col_two','publish','closed','closed','','field_5bbe31593920e','','','2018-10-10 17:14:04','2018-10-10 17:14:04','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=111',8,'acf-field','',0),(112,2,'2018-10-10 17:14:04','2018-10-10 17:14:04','a:11:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe2eb0a4dcd\";s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_5bbe2f81a4de0\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"three\";}}}}','Text Block Content (Column Three)','text_block_content_col_three','publish','closed','closed','','field_5bbe31793920f','','','2018-10-10 17:14:04','2018-10-10 17:14:04','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=112',9,'acf-field','',0),(113,2,'2018-10-10 17:14:04','2018-10-10 17:14:04','a:11:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:85:\"Toggle this switch to enable a parallax effect on the background image when scrolling\";s:8:\"required\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe2eb0a4dcd\";s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_5bbe30b1a4de2\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}}','Parallax Effect on Image?','parallax_effect_on_image','publish','closed','closed','','field_5bbe319b39211','','','2018-10-10 17:14:04','2018-10-10 17:14:04','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=113',5,'acf-field','',0),(116,2,'2018-10-10 17:18:34','2018-10-10 17:18:34','a:11:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:73:\"Enabling this switch will set this text block\'s content width to \"narrow\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe2eb0a4dcd\";s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Narrow Text Block Content','narrow_text_block_content','publish','closed','closed','','field_5bbe342e08360','','','2018-10-10 17:18:34','2018-10-10 17:18:34','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=116',2,'acf-field','',0),(125,2,'2018-10-10 17:55:00','2018-10-10 17:55:00','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe2eb0a4dcd\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_5bbe30b1a4de2\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}}','Banner Background Image Mobile','_copy','publish','closed','closed','','field_5bbe3b3a5f6f7','','','2018-10-10 17:55:00','2018-10-10 17:55:00','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=125',13,'acf-field','',0),(126,2,'2018-10-10 17:55:00','2018-10-10 17:55:00','a:16:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:126:\"Upload the background image for this text block.<br>\nThe recommended image size is dependant on how much text this block has.\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe2eb0a4dcd\";s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:4:\"full\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Background Image Mobile','background_image_mobile','publish','closed','closed','','field_5bbe3b5e5f6f8','','','2018-10-10 17:55:00','2018-10-10 17:55:00','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=126',14,'acf-field','',0),(127,2,'2018-10-10 17:55:00','2018-10-10 17:55:00','a:14:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:107:\"Choose a focal point / position for the mobile background image<br>\nThe default image position is centered\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe2eb0a4dcd\";s:7:\"choices\";a:9:{s:13:\"center center\";s:8:\"centered\";s:11:\"left center\";s:11:\"middle left\";s:12:\"right center\";s:12:\"middle right\";s:8:\"left top\";s:8:\"top left\";s:10:\"center top\";s:10:\"top center\";s:9:\"right top\";s:9:\"top right\";s:11:\"left bottom\";s:11:\"bottom left\";s:13:\"center bottom\";s:13:\"bottom center\";s:12:\"right bottom\";s:12:\"bottom right\";}s:13:\"default_value\";a:1:{i:0;s:13:\"center center\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:13:\"return_format\";s:5:\"value\";s:4:\"ajax\";i:0;s:11:\"placeholder\";s:0:\"\";}','Background Image Position Mobile','background_image_position_mobile','publish','closed','closed','','field_5bbe3b695f6f9','','','2018-10-10 17:55:00','2018-10-10 17:55:00','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=127',15,'acf-field','',0),(135,2,'2018-10-10 18:31:37','2018-10-10 18:31:37','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe4037ae57f\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Style Options','style_options','publish','closed','closed','','field_5bbe447bae586','','','2018-10-10 18:31:37','2018-10-10 18:31:37','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=135',0,'acf-field','',0),(136,2,'2018-10-10 18:31:37','2018-10-10 18:31:37','a:11:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:66:\"Turn this switch on to have a gap between the two featured columns\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe4037ae57f\";s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Gap Between Columns?','gap_between_columns','publish','closed','closed','','field_5bbe44a5ae587','','','2018-10-10 18:31:37','2018-10-10 18:31:37','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=136',1,'acf-field','',0),(137,2,'2018-10-10 18:31:37','2018-10-10 18:31:37','a:11:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:136:\"Turn this switch on to have the columns expand the full width of the page.<br>\nIf this is turned off, the columns will be a fixed width\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe4037ae57f\";s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Full Width Columns?','full_width_columns','publish','closed','closed','','field_5bbe44c7ae588','','','2018-10-10 18:31:37','2018-10-10 18:31:37','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=137',2,'acf-field','',0),(138,2,'2018-10-10 18:31:37','2018-10-10 18:31:37','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe4037ae57f\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Left Column','left_column','publish','closed','closed','','field_5bbe4384ae580','','','2018-10-10 18:31:37','2018-10-10 18:31:37','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=138',4,'acf-field','',0),(139,2,'2018-10-10 18:31:37','2018-10-10 18:31:37','a:16:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:47:\"Suggested Image Size: 960px Wide x 640px Height\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe4037ae57f\";s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Left Column Background Image','left_column_background_image','publish','closed','closed','','field_5bbe4452ae585','','','2018-10-10 18:31:37','2018-10-10 18:31:37','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=139',5,'acf-field','',0),(140,2,'2018-10-10 18:31:38','2018-10-10 18:31:38','a:11:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe4037ae57f\";s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Left Column Content','left_column_content','publish','closed','closed','','field_5bbe4414ae582','','','2018-10-10 18:31:38','2018-10-10 18:31:38','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=140',6,'acf-field','',0),(141,2,'2018-10-10 18:31:38','2018-10-10 18:31:38','a:11:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:144:\"If this is switched to \"yes\", the whole column is clickable as a link.<br>\nIf this is switched to \"no\" (default), just the button is clickable.\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe4037ae57f\";s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Whole Column Clickable?','left_whole_column_clickable','publish','closed','closed','','field_5bbe44f3ae589','','','2018-10-10 18:31:38','2018-10-10 18:31:38','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=141',7,'acf-field','',0),(142,2,'2018-10-10 18:31:38','2018-10-10 18:31:38','a:7:{s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe4037ae57f\";s:13:\"return_format\";s:3:\"url\";}','Left Column Button Link','left_column_button_link','publish','closed','closed','','field_5bbe442fae583','','','2018-10-10 18:31:38','2018-10-10 18:31:38','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=142',8,'acf-field','',0),(143,2,'2018-10-10 18:31:38','2018-10-10 18:31:38','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe4037ae57f\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Left Column Button Text','left_column_button_text','publish','closed','closed','','field_5bbe443dae584','','','2018-10-10 18:31:38','2018-10-10 18:31:38','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=143',9,'acf-field','',0),(144,2,'2018-10-10 18:31:38','2018-10-10 18:31:38','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe4037ae57f\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Right Column','left_column_copy','publish','closed','closed','','field_5bbe453fae58a','','','2018-10-10 18:31:38','2018-10-10 18:31:38','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=144',10,'acf-field','',0),(145,2,'2018-10-10 18:31:38','2018-10-10 18:31:38','a:16:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:47:\"Suggested Image Size: 960px Wide x 640px Height\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe4037ae57f\";s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Right Column Background Image','right_column_background_image','publish','closed','closed','','field_5bbe4547ae58b','','','2018-10-10 18:31:38','2018-10-10 18:31:38','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=145',11,'acf-field','',0),(146,2,'2018-10-10 18:31:38','2018-10-10 18:31:38','a:11:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe4037ae57f\";s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Right Column Content','right_column_content','publish','closed','closed','','field_5bbe4550ae58c','','','2018-10-10 18:31:38','2018-10-10 18:31:38','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=146',12,'acf-field','',0),(148,2,'2018-10-10 18:31:38','2018-10-10 18:31:38','a:7:{s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe4037ae57f\";s:13:\"return_format\";s:5:\"array\";}','Right Column Button Link','right_column_button_link','publish','closed','closed','','field_5bbe456bae58e','','','2018-10-10 18:31:38','2018-10-10 18:31:38','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=148',14,'acf-field','',0),(149,2,'2018-10-10 18:31:38','2018-10-10 18:31:38','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe4037ae57f\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Right Column Button Text','right_column_button_text','publish','closed','closed','','field_5bbe4577ae58f','','','2018-10-10 18:31:38','2018-10-10 18:31:38','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=149',15,'acf-field','',0),(153,2,'2018-10-10 19:20:51','2018-10-10 19:20:51','a:11:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:83:\"Turn this switch on to have a veil over the images, which makes text easier to read\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe4037ae57f\";s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Veil Over Images?','veil_over_images','publish','closed','closed','','field_5bbe4f8f88a8a','','','2018-10-10 19:20:51','2018-10-10 19:20:51','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=153',3,'acf-field','',0),(160,2,'2018-10-10 20:03:03','2018-10-10 20:03:03','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe5a0e54757\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Style Options','','publish','closed','closed','','field_5bbe5a0e54758','','','2018-10-10 20:03:03','2018-10-10 20:03:03','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=160',0,'acf-field','',0),(161,2,'2018-10-10 20:03:03','2018-10-10 20:03:03','a:11:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:66:\"Turn this switch on to have a gap between the two featured columns\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe5a0e54757\";s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Gap Between Columns?','gap_between_columns','publish','closed','closed','','field_5bbe5a0e54759','','','2018-10-10 20:03:03','2018-10-10 20:03:03','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=161',1,'acf-field','',0),(162,2,'2018-10-10 20:03:03','2018-10-10 20:03:03','a:11:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:136:\"Turn this switch on to have the columns expand the full width of the page.<br>\nIf this is turned off, the columns will be a fixed width\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe5a0e54757\";s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Full Width Columns?','full_width_columns','publish','closed','closed','','field_5bbe5a0e5475a','','','2018-10-10 20:03:03','2018-10-10 20:03:03','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=162',2,'acf-field','',0),(163,2,'2018-10-10 20:03:03','2018-10-10 20:03:03','a:11:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:83:\"Turn this switch on to have a veil over the images, which makes text easier to read\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe5a0e54757\";s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Veil Over Images?','veil_over_images','publish','closed','closed','','field_5bbe5a0e5475b','','','2018-10-10 20:03:03','2018-10-10 20:03:03','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=163',3,'acf-field','',0),(164,2,'2018-10-10 20:03:03','2018-10-10 20:03:03','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe5a0e54757\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','First Column','first_column','publish','closed','closed','','field_5bbe5a0e5475c','','','2018-10-10 20:03:03','2018-10-10 20:03:03','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=164',4,'acf-field','',0),(165,2,'2018-10-10 20:03:03','2018-10-10 20:03:03','a:16:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:47:\"Suggested Image Size: 640px Wide x 480px Height\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe5a0e54757\";s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','First Column Background Image','first_column_background_image','publish','closed','closed','','field_5bbe5a0e5475d','','','2018-10-10 20:03:03','2018-10-10 20:03:03','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=165',5,'acf-field','',0),(166,2,'2018-10-10 20:03:03','2018-10-10 20:03:03','a:11:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe5a0e54757\";s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','First Column Content','first_column_content','publish','closed','closed','','field_5bbe5a0e5475e','','','2018-10-10 20:03:03','2018-10-10 20:03:03','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=166',6,'acf-field','',0),(167,2,'2018-10-10 20:03:03','2018-10-10 20:03:03','a:11:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:144:\"If this is switched to \"yes\", the whole column is clickable as a link.<br>\nIf this is switched to \"no\" (default), just the button is clickable.\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe5a0e54757\";s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Whole Column Clickable?','first_whole_column_clickable','publish','closed','closed','','field_5bbe5a0e5475f','','','2018-10-10 20:03:03','2018-10-10 20:03:03','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=167',7,'acf-field','',0),(168,2,'2018-10-10 20:03:03','2018-10-10 20:03:03','a:7:{s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe5a0e54757\";s:13:\"return_format\";s:3:\"url\";}','First Column Button Link','first_column_button_url','publish','closed','closed','','field_5bbe5a0e54760','','','2018-10-10 20:03:03','2018-10-10 20:03:03','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=168',8,'acf-field','',0),(169,2,'2018-10-10 20:03:03','2018-10-10 20:03:03','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe5a0e54757\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','First Column Button Text','first_column_button_text','publish','closed','closed','','field_5bbe5a0e54761','','','2018-10-10 20:03:03','2018-10-10 20:03:03','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=169',9,'acf-field','',0),(170,2,'2018-10-10 20:03:03','2018-10-10 20:03:03','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe5a0e54757\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Second Column','second_column','publish','closed','closed','','field_5bbe5a0e54762','','','2018-10-10 20:03:03','2018-10-10 20:03:03','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=170',10,'acf-field','',0),(171,2,'2018-10-10 20:03:03','2018-10-10 20:03:03','a:16:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:47:\"Suggested Image Size: 640px Wide x 480px Height\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe5a0e54757\";s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Second Column Background Image','second_column_background_image','publish','closed','closed','','field_5bbe5a0e54763','','','2018-10-10 20:03:03','2018-10-10 20:03:03','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=171',11,'acf-field','',0),(172,2,'2018-10-10 20:03:03','2018-10-10 20:03:03','a:11:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe5a0e54757\";s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Second Column Content','second_column_content','publish','closed','closed','','field_5bbe5a0e54764','','','2018-10-10 20:03:03','2018-10-10 20:03:03','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=172',12,'acf-field','',0),(174,2,'2018-10-10 20:03:03','2018-10-10 20:03:03','a:7:{s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe5a0e54757\";s:13:\"return_format\";s:3:\"url\";}','Second Column Button Link','second_column_button_link','publish','closed','closed','','field_5bbe5a0e54766','','','2018-10-10 20:03:03','2018-10-10 20:03:03','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=174',14,'acf-field','',0),(175,2,'2018-10-10 20:03:03','2018-10-10 20:03:03','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe5a0e54757\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Second Column Button Text','second_column_button_text','publish','closed','closed','','field_5bbe5a0e54767','','','2018-10-10 20:03:03','2018-10-10 20:03:03','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=175',15,'acf-field','',0),(176,2,'2018-10-10 20:03:04','2018-10-10 20:03:04','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe5a0e54757\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Third Column','second_column_copy','publish','closed','closed','','field_5bbe5a9c54768','','','2018-10-10 20:03:04','2018-10-10 20:03:04','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=176',16,'acf-field','',0),(177,2,'2018-10-10 20:03:04','2018-10-10 20:03:04','a:16:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:47:\"Suggested Image Size: 640px Wide x 480px Height\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe5a0e54757\";s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Third Column Background Image','third_column_background_image','publish','closed','closed','','field_5bbe5aa254769','','','2018-10-10 20:03:04','2018-10-10 20:03:04','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=177',17,'acf-field','',0),(178,2,'2018-10-10 20:03:04','2018-10-10 20:03:04','a:11:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe5a0e54757\";s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Third Column Content','third_column_content','publish','closed','closed','','field_5bbe5aae5476a','','','2018-10-10 20:03:04','2018-10-10 20:03:04','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=178',18,'acf-field','',0),(179,2,'2018-10-10 20:03:04','2018-10-10 20:03:04','a:11:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:144:\"If this is switched to \"yes\", the whole column is clickable as a link.<br>\nIf this is switched to \"no\" (default), just the button is clickable.\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe5a0e54757\";s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Whole Column Clickable?','third_whole_column_clickable','publish','closed','closed','','field_5bbe5ae25476e','','','2018-10-10 20:03:04','2018-10-10 20:03:04','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=179',19,'acf-field','',0),(180,2,'2018-10-10 20:03:04','2018-10-10 20:03:04','a:7:{s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe5a0e54757\";s:13:\"return_format\";s:3:\"url\";}','Third Column Button Link','third_column_button_link','publish','closed','closed','','field_5bbe5ac15476c','','','2018-10-10 20:03:04','2018-10-10 20:03:04','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=180',20,'acf-field','',0),(181,2,'2018-10-10 20:03:04','2018-10-10 20:03:04','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe5a0e54757\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Third Column Button Text','third_column_button_text','publish','closed','closed','','field_5bbe5aca5476d','','','2018-10-10 20:03:04','2018-10-10 20:03:04','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=181',21,'acf-field','',0),(196,2,'2018-10-10 20:58:10','2018-10-10 20:58:10','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe658610060\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Style Options','','publish','closed','closed','','field_5bbe658610061','','','2018-10-10 20:58:10','2018-10-10 20:58:10','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=196',0,'acf-field','',0),(197,2,'2018-10-10 20:58:10','2018-10-10 20:58:10','a:11:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:66:\"Turn this switch on to have a gap between the two featured columns\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe658610060\";s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Gap Between Columns?','gap_between_columns','publish','closed','closed','','field_5bbe658610062','','','2018-10-10 20:58:10','2018-10-10 20:58:10','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=197',1,'acf-field','',0),(198,2,'2018-10-10 20:58:10','2018-10-10 20:58:10','a:11:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:136:\"Turn this switch on to have the columns expand the full width of the page.<br>\nIf this is turned off, the columns will be a fixed width\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe658610060\";s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Full Width Columns?','full_width_columns','publish','closed','closed','','field_5bbe658610063','','','2018-10-10 20:58:10','2018-10-10 20:58:10','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=198',2,'acf-field','',0),(199,2,'2018-10-10 20:58:10','2018-10-10 20:58:10','a:11:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:83:\"Turn this switch on to have a veil over the images, which makes text easier to read\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe658610060\";s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Veil Over Images?','veil_over_images','publish','closed','closed','','field_5bbe658610064','','','2018-10-10 20:58:10','2018-10-10 20:58:10','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=199',3,'acf-field','',0),(200,2,'2018-10-10 20:58:10','2018-10-10 20:58:10','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe658610060\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','First Column','','publish','closed','closed','','field_5bbe658610065','','','2018-10-10 20:58:10','2018-10-10 20:58:10','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=200',4,'acf-field','',0),(201,2,'2018-10-10 20:58:10','2018-10-10 20:58:10','a:16:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:47:\"Suggested Image Size: 640px Wide x 480px Height\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe658610060\";s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','First Column Background Image','first_column_background_image','publish','closed','closed','','field_5bbe658610066','','','2018-10-10 20:58:10','2018-10-10 20:58:10','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=201',5,'acf-field','',0),(202,2,'2018-10-10 20:58:10','2018-10-10 20:58:10','a:11:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe658610060\";s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','First Column Content','first_column_content','publish','closed','closed','','field_5bbe658610067','','','2018-10-10 20:58:10','2018-10-10 20:58:10','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=202',6,'acf-field','',0),(203,2,'2018-10-10 20:58:10','2018-10-10 20:58:10','a:11:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:144:\"If this is switched to \"yes\", the whole column is clickable as a link.<br>\nIf this is switched to \"no\" (default), just the button is clickable.\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe658610060\";s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Whole Column Clickable?','first_whole_column_clickable','publish','closed','closed','','field_5bbe658610068','','','2018-10-10 20:58:10','2018-10-10 20:58:10','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=203',7,'acf-field','',0),(204,2,'2018-10-10 20:58:10','2018-10-10 20:58:10','a:7:{s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe658610060\";s:13:\"return_format\";s:3:\"url\";}','First Column Button Link','first_column_button_url','publish','closed','closed','','field_5bbe658610069','','','2018-10-10 20:58:10','2018-10-10 20:58:10','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=204',8,'acf-field','',0),(205,2,'2018-10-10 20:58:10','2018-10-10 20:58:10','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe658610060\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','First Column Button Text','first_column_button_text','publish','closed','closed','','field_5bbe65861006a','','','2018-10-10 20:58:10','2018-10-10 20:58:10','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=205',9,'acf-field','',0),(206,2,'2018-10-10 20:58:10','2018-10-10 20:58:10','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe658610060\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Second Column','','publish','closed','closed','','field_5bbe65861006b','','','2018-10-10 20:58:10','2018-10-10 20:58:10','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=206',10,'acf-field','',0),(207,2,'2018-10-10 20:58:10','2018-10-10 20:58:10','a:16:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:47:\"Suggested Image Size: 640px Wide x 480px Height\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe658610060\";s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Second Column Background Image','second_column_background_image','publish','closed','closed','','field_5bbe65861006c','','','2018-10-10 20:58:10','2018-10-10 20:58:10','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=207',11,'acf-field','',0),(208,2,'2018-10-10 20:58:10','2018-10-10 20:58:10','a:11:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe658610060\";s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Second Column Content','second_column_content','publish','closed','closed','','field_5bbe65861006d','','','2018-10-10 20:58:10','2018-10-10 20:58:10','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=208',12,'acf-field','',0),(210,2,'2018-10-10 20:58:10','2018-10-10 20:58:10','a:7:{s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe658610060\";s:13:\"return_format\";s:3:\"url\";}','Second Column Button Link','second_column_button_link','publish','closed','closed','','field_5bbe65861006f','','','2018-10-10 20:58:10','2018-10-10 20:58:10','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=210',14,'acf-field','',0),(211,2,'2018-10-10 20:58:10','2018-10-10 20:58:10','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe658610060\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Second Column Button Text','second_column_button_text','publish','closed','closed','','field_5bbe658610070','','','2018-10-10 20:58:10','2018-10-10 20:58:10','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=211',15,'acf-field','',0),(212,2,'2018-10-10 20:58:10','2018-10-10 20:58:10','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe658610060\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Third Column','','publish','closed','closed','','field_5bbe658610071','','','2018-10-10 20:58:10','2018-10-10 20:58:10','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=212',16,'acf-field','',0),(213,2,'2018-10-10 20:58:10','2018-10-10 20:58:10','a:16:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:47:\"Suggested Image Size: 640px Wide x 480px Height\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe658610060\";s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Third Column Background Image','third_column_background_image','publish','closed','closed','','field_5bbe658610072','','','2018-10-10 20:58:10','2018-10-10 20:58:10','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=213',17,'acf-field','',0),(214,2,'2018-10-10 20:58:10','2018-10-10 20:58:10','a:11:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe658610060\";s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Third Column Content','third_column_content','publish','closed','closed','','field_5bbe658610073','','','2018-10-10 20:58:10','2018-10-10 20:58:10','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=214',18,'acf-field','',0),(216,2,'2018-10-10 20:58:10','2018-10-10 20:58:10','a:7:{s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe658610060\";s:13:\"return_format\";s:3:\"url\";}','Third Column Button Link','third_column_button_link','publish','closed','closed','','field_5bbe658610075','','','2018-10-10 20:58:10','2018-10-10 20:58:10','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=216',20,'acf-field','',0),(217,2,'2018-10-10 20:58:10','2018-10-10 20:58:10','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe658610060\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Third Column Button Text','third_column_button_text','publish','closed','closed','','field_5bbe658610076','','','2018-10-10 20:58:10','2018-10-10 20:58:10','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=217',21,'acf-field','',0),(218,2,'2018-10-10 20:58:10','2018-10-10 20:58:10','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe658610060\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Fourth Column','_copy','publish','closed','closed','','field_5bbe659510077','','','2018-10-10 20:58:10','2018-10-10 20:58:10','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=218',22,'acf-field','',0),(219,2,'2018-10-10 20:58:10','2018-10-10 20:58:10','a:16:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:47:\"Suggested Image Size: 640px Wide x 480px Height\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe658610060\";s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Fourth Column Background Image','fourth_column_background_image','publish','closed','closed','','field_5bbe659d10078','','','2018-10-10 20:58:10','2018-10-10 20:58:10','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=219',23,'acf-field','',0),(220,2,'2018-10-10 20:58:10','2018-10-10 20:58:10','a:11:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe658610060\";s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Fourth Column Content','fourth_column_content','publish','closed','closed','','field_5bbe65bb10079','','','2018-10-10 20:58:10','2018-10-10 20:58:10','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=220',24,'acf-field','',0),(222,2,'2018-10-10 20:58:10','2018-10-10 20:58:10','a:7:{s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe658610060\";s:13:\"return_format\";s:3:\"url\";}','Fourth Column Button Link','fourth_column_button_link','publish','closed','closed','','field_5bbe65d41007b','','','2018-10-10 20:58:10','2018-10-10 20:58:10','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=222',26,'acf-field','',0),(223,2,'2018-10-10 20:58:10','2018-10-10 20:58:10','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe658610060\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Fourth Column Button Text','fourth_column_button_text','publish','closed','closed','','field_5bbe65e11007c','','','2018-10-10 20:58:10','2018-10-10 20:58:10','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=223',27,'acf-field','',0),(227,2,'2018-10-10 21:31:39','2018-10-10 21:31:39','a:16:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:49:\"Recommended image size: 720px Wide x 640px Height\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe6d56c96bf\";s:13:\"return_format\";s:2:\"id\";s:12:\"preview_size\";s:4:\"full\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";i:720;s:10:\"min_height\";i:640;s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_5bbe6eb3c96c0','','','2018-10-10 21:31:39','2018-10-10 21:31:39','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=227',3,'acf-field','',0),(228,2,'2018-10-10 21:31:39','2018-10-10 21:31:39','a:11:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe6d56c96bf\";s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Text Content','text_content','publish','closed','closed','','field_5bbe6f90c96c1','','','2018-10-10 21:31:39','2018-10-10 21:31:39','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=228',5,'acf-field','',0),(229,2,'2018-10-10 21:31:39','2018-10-10 21:31:39','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:168:\"Buttons are optional. If you would like to add a button to this content block, please start by filling out this field, and then fill out the button link once it appears\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe6d56c96bf\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Button Text','button_text','publish','closed','closed','','field_5bbe6fa4c96c2','','','2018-10-10 21:31:39','2018-10-10 21:31:39','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=229',6,'acf-field','',0),(230,2,'2018-10-10 21:31:39','2018-10-10 21:31:39','a:7:{s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe6d56c96bf\";s:13:\"return_format\";s:3:\"url\";s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:2:{s:5:\"field\";s:19:\"field_5bbe6fa4c96c2\";s:8:\"operator\";s:7:\"!=empty\";}}}}','Button Link','button_link','publish','closed','closed','','field_5bbe6faac96c3','','','2018-10-10 21:31:39','2018-10-10 21:31:39','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=230',7,'acf-field','',0),(231,2,'2018-10-10 21:36:05','2018-10-10 21:36:05','a:11:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:259:\"If this switch is toggled \"on\", the image will show on the right side and the text will display to the left of the image.<br>\nIf this switch is toggled \"off\" (default), the image will show on the left side and the text will display to the right of the image.\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe6d56c96bf\";s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:5:\"Right\";s:11:\"ui_off_text\";s:4:\"Left\";}','Image Side','image_side','publish','closed','closed','','field_5bbe7070c2491','','','2018-10-10 21:36:05','2018-10-10 21:36:05','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=231',1,'acf-field','',0),(232,2,'2018-10-10 21:37:08','2018-10-10 21:37:08','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe6d56c96bf\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Layout','layout','publish','closed','closed','','field_5bbe70df3a272','','','2018-10-10 21:37:08','2018-10-10 21:37:08','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=232',0,'acf-field','',0),(233,2,'2018-10-10 21:37:08','2018-10-10 21:37:08','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe6d56c96bf\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Image','layout_copy','publish','closed','closed','','field_5bbe70e93a273','','','2018-10-10 21:37:08','2018-10-10 21:37:08','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=233',2,'acf-field','',0),(234,2,'2018-10-10 21:37:08','2018-10-10 21:37:08','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe6d56c96bf\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Content','layout_copy2','publish','closed','closed','','field_5bbe70f03a274','','','2018-10-10 21:37:08','2018-10-10 21:37:08','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=234',4,'acf-field','',0),(238,2,'2018-10-10 22:00:47','2018-10-10 22:00:47','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe74913d31c\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Style Options','style_options','publish','closed','closed','','field_5bbe75683d321','','','2018-10-10 22:00:47','2018-10-10 22:00:47','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=238',0,'acf-field','',0),(239,2,'2018-10-10 22:00:47','2018-10-10 22:00:47','a:14:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:71:\"Please choose if the video player will be full width, or regular width.\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe74913d31c\";s:7:\"choices\";a:2:{s:7:\"regular\";s:13:\"Regular Width\";s:4:\"full\";s:10:\"Full Width\";}s:13:\"default_value\";a:0:{}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:13:\"return_format\";s:5:\"value\";s:4:\"ajax\";i:0;s:11:\"placeholder\";s:0:\"\";}','Video Width','video_width','publish','closed','closed','','field_5bbe75793d323','','','2018-10-10 22:00:47','2018-10-10 22:00:47','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=239',1,'acf-field','',0),(240,2,'2018-10-10 22:00:47','2018-10-10 22:00:47','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe74913d31c\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Video Content','style_options_copy','publish','closed','closed','','field_5bbe75723d322','','','2018-10-10 22:00:47','2018-10-10 22:00:47','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=240',3,'acf-field','',0),(241,2,'2018-10-10 22:00:47','2018-10-10 22:00:47','a:14:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:128:\"Please choose where this video is coming from.<br>\nIf this is a file on your computer you want to upload, please choose \"Local\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe74913d31c\";s:7:\"choices\";a:3:{s:5:\"Local\";s:5:\"Local\";s:7:\"YouTube\";s:7:\"YouTube\";s:5:\"Vimeo\";s:5:\"Vimeo\";}s:13:\"default_value\";a:1:{i:0;s:5:\"Local\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:13:\"return_format\";s:5:\"value\";s:4:\"ajax\";i:0;s:11:\"placeholder\";s:0:\"\";}','Video Source','video_source','publish','closed','closed','','field_5bbe74973d31d','','','2018-10-10 22:00:47','2018-10-10 22:00:47','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=241',4,'acf-field','',0),(242,2,'2018-10-10 22:00:47','2018-10-10 22:00:47','a:11:{s:4:\"type\";s:4:\"file\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe74913d31c\";s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:8:\"min_size\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_5bbe74973d31d\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"Local\";}}}}','Local Video','local_video','publish','closed','closed','','field_5bbe74c83d31e','','','2018-10-10 22:00:47','2018-10-10 22:00:47','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=242',5,'acf-field','',0),(243,2,'2018-10-10 22:00:47','2018-10-10 22:00:47','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:240:\"Please copy and paste the YouTube video ID here.<br>\nHere is an example youtube link:<br>\nhttps://www.youtube.com/watch?v=dQw4w9WgXcQ<br>\nIn this example, you would copy everything after the equals sign:<br>\n<strong>dQw4w9WgXcQ</strong>\";s:8:\"required\";i:1;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe74913d31c\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_5bbe74973d31d\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:7:\"YouTube\";}}}}','YouTube Video ID','youtube_video_id','publish','closed','closed','','field_5bbe74e43d31f','','','2018-10-10 22:00:47','2018-10-10 22:00:47','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=243',6,'acf-field','',0),(244,2,'2018-10-10 22:00:47','2018-10-10 22:00:47','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:211:\"Please copy and paste the Vimeo video ID here.<br>\nHere is an example vimeo link:<br>\nhttps://vimeo.com/121712712<br>\nIn this example, you would copy everything after the .com/<br>\n<strong>121712712</strong>\";s:8:\"required\";i:1;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe74913d31c\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_5bbe74973d31d\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"Vimeo\";}}}}','Vimeo Video ID','vimeo_video_id','publish','closed','closed','','field_5bbe753d3d320','','','2018-10-10 22:00:47','2018-10-10 22:00:47','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=244',7,'acf-field','',0),(245,2,'2018-10-10 22:00:47','2018-10-10 22:00:47','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe74913d31c\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Video Cover Image','video_cover_image','publish','closed','closed','','field_5bbe75bd3d324','','','2018-10-10 22:00:47','2018-10-10 22:00:47','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=245',8,'acf-field','',0),(247,2,'2018-10-10 22:00:47','2018-10-10 22:00:47','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe74913d31c\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Video Cover Image Mobile','video_cover_image_copy','publish','closed','closed','','field_5bbe75cd3d325','','','2018-10-10 22:00:47','2018-10-10 22:00:47','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=247',10,'acf-field','',0),(266,2,'2018-10-10 22:39:42','2018-10-10 22:39:42','a:11:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:70:\"Please choose if the video will play automatically once the page loads\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bbe74913d31c\";s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Autoplay Video?','autoplay_video','publish','closed','closed','','field_5bbe7f869a2a7','','','2018-10-10 22:39:42','2018-10-10 22:39:42','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=266',2,'acf-field','',0),(272,2,'2018-10-12 19:58:24','2018-10-12 19:58:24','a:11:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc0fbc256368\";s:9:\"collapsed\";s:19:\"field_5bc0fcaa5636e\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:5:\"block\";s:12:\"button_label\";s:9:\"Add Event\";}','Event','event','publish','closed','closed','','field_5bc0fbc656369','','','2018-10-12 19:58:24','2018-10-12 19:58:24','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=272',0,'acf-field','',0),(273,2,'2018-10-12 19:58:24','2018-10-12 19:58:24','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Event Title','event_title','publish','closed','closed','','field_5bc0fcaa5636e','','','2018-10-12 19:58:24','2018-10-12 19:58:24','',272,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=273',0,'acf-field','',0),(274,2,'2018-10-12 19:58:24','2018-10-12 19:58:24','a:12:{s:4:\"type\";s:6:\"number\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:3:\"min\";i:1;s:3:\"max\";i:31;s:4:\"step\";i:1;}','Day of Event','day_of_event','publish','closed','closed','','field_5bc0fc275636a','','','2018-10-12 19:58:24','2018-10-12 19:58:24','',272,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=274',1,'acf-field','',0),(275,2,'2018-10-12 19:58:24','2018-10-12 19:58:24','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:99:\"Please write the 3 letter abbreviation for the month.<br>\nExample: <strong>AUG</strong> for August\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";i:3;}','Month of Event','month_of_event','publish','closed','closed','','field_5bc0fc3a5636b','','','2018-10-12 19:58:24','2018-10-12 19:58:24','',272,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=275',3,'acf-field','',0),(276,2,'2018-10-12 19:58:24','2018-10-12 19:58:24','a:12:{s:4:\"type\";s:6:\"number\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:3:\"min\";i:2018;s:3:\"max\";i:9999;s:4:\"step\";i:1;}','Year of Event','year_of_event','publish','closed','closed','','field_5bc0fc535636c','','','2018-10-12 19:58:24','2018-10-12 19:58:24','',272,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=276',4,'acf-field','',0),(277,2,'2018-10-12 19:58:24','2018-10-12 19:58:24','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:56:\"Recommended image dimensions: 720px Width x 640px Height\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Event Photo','event_photo','publish','closed','closed','','field_5bc0fc795636d','','','2018-10-12 19:58:24','2018-10-12 19:58:24','',272,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=277',8,'acf-field','',0),(278,2,'2018-10-12 19:58:24','2018-10-12 19:58:24','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Event Description','event_description','publish','closed','closed','','field_5bc0fcb35636f','','','2018-10-12 19:58:24','2018-10-12 19:58:24','',272,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=278',9,'acf-field','',0),(279,2,'2018-10-12 19:58:24','2018-10-12 19:58:24','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:10:\"(Optional)\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Button Link','button_link','publish','closed','closed','','field_5bc0fcbf56370','','','2018-10-12 19:58:24','2018-10-12 19:58:24','',272,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=279',10,'acf-field','',0),(280,2,'2018-10-12 19:58:24','2018-10-12 19:58:24','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:2:{s:5:\"field\";s:19:\"field_5bc0fcbf56370\";s:8:\"operator\";s:7:\"!=empty\";}}}}','Button Text','button_text','publish','closed','closed','','field_5bc0fcc656371','','','2018-10-12 19:58:24','2018-10-12 19:58:24','',272,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=280',11,'acf-field','',0),(283,2,'2018-10-12 21:58:09','2018-10-12 21:58:09','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:145:\"Please write the 3 letter abbreviation for the day of the week that the event takes place.<br>\nExample: write <strong>SAT</strong> for Saturday.\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";i:3;}','Day of the Week','day_of_the_week','publish','closed','closed','','field_5bc118c1b9202','','','2018-10-12 21:58:09','2018-10-12 21:58:09','',272,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=283',2,'acf-field','',0),(284,2,'2018-10-12 21:58:09','2018-10-12 21:58:09','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Start Time','start_time','publish','closed','closed','','field_5bc11839b91ff','','','2018-10-12 21:58:09','2018-10-12 21:58:09','',272,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=284',5,'acf-field','',0),(285,2,'2018-10-12 21:58:09','2018-10-12 21:58:09','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','End Time','end_time','publish','closed','closed','','field_5bc11840b9200','','','2018-10-12 21:58:09','2018-10-12 21:58:09','',272,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=285',6,'acf-field','',0),(286,2,'2018-10-12 21:58:09','2018-10-12 21:58:09','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Venue / Location','location','publish','closed','closed','','field_5bc11848b9201','','','2018-10-12 21:58:09','2018-10-12 21:58:09','',272,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=286',7,'acf-field','',0),(289,2,'2018-10-12 22:14:33','2018-10-12 22:14:33','a:14:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:72:\"Please choose how many products you would like to see displayed per row.\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc11bdfa0d4e\";s:7:\"choices\";a:3:{s:3:\"3up\";s:1:\"3\";s:3:\"2up\";s:1:\"2\";s:3:\"1up\";s:1:\"1\";}s:13:\"default_value\";a:1:{i:0;s:3:\"3up\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:13:\"return_format\";s:5:\"value\";s:4:\"ajax\";i:0;s:11:\"placeholder\";s:0:\"\";}','Items Displayed per Row','product_row_number','publish','closed','closed','','field_5bc11c6da0d4f','','','2018-10-12 22:14:33','2018-10-12 22:14:33','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=289',0,'acf-field','',0),(290,2,'2018-10-12 22:14:33','2018-10-12 22:14:33','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:74:\"Please copy & paste the collection \"slug\" from your Commerce7 admin panel.\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc11bdfa0d4e\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Collection Slug','data_collection_slug','publish','closed','closed','','field_5bc11ca9a0d50','','','2018-10-12 22:14:33','2018-10-12 22:14:33','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=290',1,'acf-field','',0),(294,2,'2018-10-12 22:22:17','2018-10-12 22:22:17','a:11:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc11d82d7b1c\";s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:5:\"block\";s:12:\"button_label\";s:17:\"Add Timeline Item\";}','Timeline Item','timeline_item','publish','closed','closed','','field_5bc11df7d7b1d','','','2018-10-12 22:22:17','2018-10-12 22:22:17','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=294',0,'acf-field','',0),(295,2,'2018-10-12 22:22:17','2018-10-12 22:22:17','a:12:{s:4:\"type\";s:6:\"number\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:4:\"step\";i:1;}','Year','year','publish','closed','closed','','field_5bc11e0cd7b1e','','','2018-10-12 22:22:17','2018-10-12 22:22:17','',294,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=295',0,'acf-field','',0),(296,2,'2018-10-12 22:22:17','2018-10-12 22:22:17','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Description','description','publish','closed','closed','','field_5bc11e27d7b1f','','','2018-10-12 22:22:17','2018-10-12 22:22:17','',294,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=296',1,'acf-field','',0),(297,2,'2018-10-12 22:22:17','2018-10-12 22:22:17','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:53:\"Recommended image size of 640px Width by 480px Height\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_5bc11e2dd7b20','','','2018-10-12 22:22:17','2018-10-12 22:22:17','',294,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=297',2,'acf-field','',0),(314,2,'2018-10-12 23:14:08','2018-10-12 23:14:08','a:9:{s:4:\"type\";s:7:\"message\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc12a8a000b4\";s:7:\"message\";s:216:\"There is nothing to edit here. Team members will be displayed here. <br>To edit or add/remove team members, please click on the <strong>Team Members</strong> navigation link in the WordPress menu located to the left.\";s:9:\"new_lines\";s:7:\"wpautop\";s:8:\"esc_html\";i:0;}','Team Members','','publish','closed','closed','','field_5bc12a8f000b5','','','2018-10-12 23:14:08','2018-10-12 23:14:08','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=314',0,'acf-field','',0),(322,2,'2018-10-15 19:24:40','2018-10-15 19:24:40','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Ingredient','ingredient','publish','closed','closed','','field_5bc4e7354c204','','','2018-10-15 19:24:40','2018-10-15 19:24:40','',317,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=322',0,'acf-field','',0),(332,2,'2018-10-15 19:24:40','2018-10-15 19:24:40','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";i:2;s:9:\"new_lines\";s:0:\"\";}','Direction','direction','publish','closed','closed','','field_5bc4e93a4c211','','','2018-10-15 19:24:40','2018-10-15 19:24:40','',317,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=332',0,'acf-field','',0),(337,2,'2018-10-15 19:36:54','2018-10-15 19:36:54','','Butternut Squash Soup','','publish','closed','closed','','butternut-squash-soup','','','2018-11-01 09:45:32','2018-11-01 16:45:32','',0,'http://wp-commerce7template:8888/?post_type=recipe&#038;p=337',0,'recipe','',0),(345,2,'2018-10-15 22:43:09','2018-10-15 22:43:09','a:14:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:71:\"Please select how you would like the recipes to be laid out on the page\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc5141fb723e\";s:7:\"choices\";a:3:{s:9:\"fullwidth\";s:10:\"full-width\";s:10:\"restricted\";s:10:\"restricted\";s:9:\"withspace\";s:18:\"with space between\";}s:13:\"default_value\";a:0:{}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:13:\"return_format\";s:5:\"value\";s:4:\"ajax\";i:0;s:11:\"placeholder\";s:0:\"\";}','Recipes Layout','recipes_layout','publish','closed','closed','','field_5bc51424b723f','','','2018-10-15 22:43:09','2018-10-15 22:43:09','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=345',0,'acf-field','',0),(346,2,'2018-10-15 22:43:09','2018-10-15 22:43:09','a:11:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:89:\"If this is turned on, recipes will have a veil over them, making the text easier to read.\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc5141fb723e\";s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Recipes Have Veil?','recipes_have_veil','publish','closed','closed','','field_5bc5145db7240','','','2018-10-15 22:43:09','2018-10-15 22:43:09','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=346',1,'acf-field','',0),(350,2,'2018-10-15 22:53:52','2018-10-15 22:53:52','a:14:{s:4:\"type\";s:8:\"taxonomy\";s:12:\"instructions\";s:139:\"Check off which categories you would like to hide from showing. If you do not check off any categories, then all recipes will be displayed.\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc5141fb723e\";s:8:\"taxonomy\";s:15:\"recipe_category\";s:10:\"field_type\";s:8:\"checkbox\";s:8:\"add_term\";i:1;s:10:\"save_terms\";i:0;s:10:\"load_terms\";i:0;s:13:\"return_format\";s:2:\"id\";s:8:\"multiple\";i:0;s:10:\"allow_null\";i:0;}','Hide Certain Categories','hide_certain_categories','publish','closed','closed','','field_5bc51a51d17ed','','','2018-10-15 22:53:52','2018-10-15 22:53:52','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=350',2,'acf-field','',0),(351,2,'2018-10-15 23:00:00','2018-10-15 23:00:00','','Chocolate Raspberry Brownie','','publish','closed','closed','','chocolate-brownie','','','2018-11-01 09:44:45','2018-11-01 16:44:45','',0,'http://wp-commerce7template:8888/?post_type=recipe&#038;p=351',0,'recipe','',0),(364,2,'2018-10-16 17:16:07','2018-10-16 17:16:07','a:11:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc6192823bc9\";s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:9:\"Add Slide\";}','Slide','slide','publish','closed','closed','','field_5bc61a6523bca','','','2018-10-16 17:16:07','2018-10-16 17:16:07','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=364',6,'acf-field','',0),(365,2,'2018-10-16 17:16:07','2018-10-16 17:16:07','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:4:\"full\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_5bc61ac123bcb','','','2018-10-16 17:16:07','2018-10-16 17:16:07','',364,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=365',0,'acf-field','',0),(366,2,'2018-10-16 17:16:07','2018-10-16 17:16:07','a:6:{s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";}','Link','link','publish','closed','closed','','field_5bc61bda23bcc','','','2018-10-16 17:16:07','2018-10-16 17:16:07','',364,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=366',1,'acf-field','',0),(368,2,'2018-10-16 17:28:53','2018-10-16 17:28:53','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc6192823bc9\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Carousel Options','carousel_options','publish','closed','closed','','field_5bc61faa3a3b4','','','2018-10-16 17:28:53','2018-10-16 17:28:53','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=368',0,'acf-field','',0),(369,2,'2018-10-16 17:28:53','2018-10-16 17:28:53','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:61:\"(Optional) Enter a title that will display above the carousel\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc6192823bc9\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Carousel Title','carousel_title','publish','closed','closed','','field_5bc61efc3a3b2','','','2018-10-16 17:28:53','2018-10-16 17:28:53','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=369',1,'acf-field','',0),(370,2,'2018-10-16 17:28:53','2018-10-16 17:28:53','a:13:{s:4:\"type\";s:6:\"number\";s:12:\"instructions\";s:163:\"Please enter the number of slides you wish to see before clicking an arrow to activate the carousel <strong> on desktop/laptop/large sized devices/screens</strong>\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc6192823bc9\";s:13:\"default_value\";i:5;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:4:\"Show\";s:6:\"append\";s:6:\"Slides\";s:3:\"min\";i:1;s:3:\"max\";s:0:\"\";s:4:\"step\";i:1;}','Slides Shown on Desktop','slides_shown','publish','closed','closed','','field_5bc61f563a3b3','','','2018-10-16 17:28:53','2018-10-16 17:28:53','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=370',2,'acf-field','',0),(371,2,'2018-10-16 17:28:53','2018-10-16 17:28:53','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc6192823bc9\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Slides','carousel_options_copy','publish','closed','closed','','field_5bc61fcd3a3b5','','','2018-10-16 17:28:53','2018-10-16 17:28:53','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=371',5,'acf-field','',0),(372,2,'2018-10-16 18:29:05','2018-10-16 18:29:05','a:13:{s:4:\"type\";s:6:\"number\";s:12:\"instructions\";s:149:\"Please enter the number of slides you wish to see before clicking an arrow to activate the carousel <strong> on tablet sized devices/screens</strong>\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc6192823bc9\";s:13:\"default_value\";i:3;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:4:\"Show\";s:6:\"append\";s:6:\"Slides\";s:3:\"min\";i:1;s:3:\"max\";s:0:\"\";s:4:\"step\";i:1;}','Slides Shown on Tablet','slides_shown_on_tablet','publish','closed','closed','','field_5bc62d7d46c3d','','','2018-10-16 18:29:05','2018-10-16 18:29:05','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=372',3,'acf-field','',0),(373,2,'2018-10-16 18:29:05','2018-10-16 18:29:05','a:13:{s:4:\"type\";s:6:\"number\";s:12:\"instructions\";s:149:\"Please enter the number of slides you wish to see before clicking an arrow to activate the carousel <strong> on mobile sized devices/screens</strong>\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc6192823bc9\";s:13:\"default_value\";i:1;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:4:\"Show\";s:6:\"append\";s:6:\"Slides\";s:3:\"min\";i:1;s:3:\"max\";s:0:\"\";s:4:\"step\";i:1;}','Slides Shown on Mobile','slides_shown_on_mobile','publish','closed','closed','','field_5bc62dc346c3e','','','2018-10-16 18:29:05','2018-10-16 18:29:05','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=373',4,'acf-field','',0),(374,2,'2018-10-16 19:02:57','2018-10-16 19:02:57','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc63415e4a44\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Large Image','large_image','publish','closed','closed','','field_5bc6345ae4a45','','','2018-10-16 19:02:57','2018-10-16 19:02:57','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=374',0,'acf-field','',0),(375,2,'2018-10-16 19:02:57','2018-10-16 19:02:57','a:14:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:86:\"Please choose if you would like the large image on the left or right side of the block\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc63415e4a44\";s:7:\"choices\";a:2:{s:4:\"left\";s:4:\"left\";s:5:\"right\";s:5:\"right\";}s:13:\"default_value\";a:1:{i:0;s:4:\"left\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:13:\"return_format\";s:5:\"value\";s:4:\"ajax\";i:0;s:11:\"placeholder\";s:0:\"\";}','Large Image - Left or Right?','large_image_left_or_right','publish','closed','closed','','field_5bc63468e4a47','','','2018-10-16 19:02:57','2018-10-16 19:02:57','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=375',1,'acf-field','',0),(377,2,'2018-10-16 19:02:57','2018-10-16 19:02:57','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc63415e4a44\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','2 Smaller Images','large_image_copy','publish','closed','closed','','field_5bc63462e4a46','','','2018-10-16 19:02:57','2018-10-16 19:02:57','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=377',3,'acf-field','',0),(378,2,'2018-10-16 19:02:57','2018-10-16 19:02:57','a:16:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:53:\"Recommended image size is 620px Height by 620px Width\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc63415e4a44\";s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:4:\"full\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','First Smaller Image','first_smaller_image','publish','closed','closed','','field_5bc634cbe4a4b','','','2018-10-16 19:02:57','2018-10-16 19:02:57','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=378',4,'acf-field','',0),(379,2,'2018-10-16 19:02:57','2018-10-16 19:02:57','a:16:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:53:\"Recommended image size is 620px Height by 620px Width\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc63415e4a44\";s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:4:\"full\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Second Smaller Image','second_smaller_image','publish','closed','closed','','field_5bc634e0e4a4c','','','2018-10-16 19:02:57','2018-10-16 19:02:57','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=379',5,'acf-field','',0),(384,2,'2018-10-16 19:32:43','2018-10-16 19:32:43','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc638080f612\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Styling Options','styling_options','publish','closed','closed','','field_5bc6386d0f613','','','2018-10-16 19:32:43','2018-10-16 19:32:43','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=384',0,'acf-field','',0),(385,2,'2018-10-16 19:32:43','2018-10-16 19:32:43','a:14:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:52:\"Choose which side you want the larger image to be on\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc638080f612\";s:7:\"choices\";a:2:{s:4:\"left\";s:4:\"left\";s:5:\"right\";s:5:\"right\";}s:13:\"default_value\";a:1:{i:0;s:4:\"left\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:13:\"return_format\";s:5:\"value\";s:4:\"ajax\";i:0;s:11:\"placeholder\";s:0:\"\";}','Large Image Position','large_image_position','publish','closed','closed','','field_5bc638760f614','','','2018-10-16 19:32:43','2018-10-16 19:32:43','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=385',1,'acf-field','',0),(386,2,'2018-10-16 19:32:43','2018-10-16 19:32:43','a:14:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc638080f612\";s:7:\"choices\";a:2:{s:9:\"fullwidth\";s:10:\"full width\";s:12:\"notfullwidth\";s:14:\"not full width\";}s:13:\"default_value\";a:1:{i:0;s:9:\"fullwidth\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:13:\"return_format\";s:5:\"value\";s:4:\"ajax\";i:0;s:11:\"placeholder\";s:0:\"\";}','Display Width','display_width','publish','closed','closed','','field_5bc638930f615','','','2018-10-16 19:32:43','2018-10-16 19:32:43','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=386',2,'acf-field','',0),(387,2,'2018-10-16 19:32:43','2018-10-16 19:32:43','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc638080f612\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Large Image','styling_options_copy','publish','closed','closed','','field_5bc638bf0f616','','','2018-10-16 19:32:43','2018-10-16 19:32:43','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=387',3,'acf-field','',0),(389,2,'2018-10-16 19:32:43','2018-10-16 19:32:43','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc638080f612\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Smaller Image','styling_options_copy2','publish','closed','closed','','field_5bc638c50f617','','','2018-10-16 19:32:43','2018-10-16 19:32:43','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=389',5,'acf-field','',0),(398,2,'2018-10-16 20:09:42','2018-10-16 20:09:42','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc6423972b72\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Large Image','','publish','closed','closed','','field_5bc6423972b73','','','2018-10-16 20:09:42','2018-10-16 20:09:42','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=398',0,'acf-field','',0),(399,2,'2018-10-16 20:09:42','2018-10-16 20:09:42','a:14:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:86:\"Please choose if you would like the large image on the left or right side of the block\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc6423972b72\";s:7:\"choices\";a:2:{s:4:\"left\";s:4:\"left\";s:5:\"right\";s:5:\"right\";}s:13:\"default_value\";a:1:{i:0;s:4:\"left\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:13:\"return_format\";s:5:\"value\";s:11:\"placeholder\";s:0:\"\";}','Large Image - Left or Right?','large_image_left_or_right','publish','closed','closed','','field_5bc6423972b74','','','2018-10-16 20:09:42','2018-10-16 20:09:42','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=399',1,'acf-field','',0),(401,2,'2018-10-16 20:09:42','2018-10-16 20:09:42','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc6423972b72\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Smaller Image','smaller_image','publish','closed','closed','','field_5bc6423972b76','','','2018-10-16 20:09:42','2018-10-16 20:09:42','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=401',3,'acf-field','',0),(404,2,'2018-10-16 20:09:42','2018-10-16 20:09:42','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_5bc6423972b72\";s:9:\"placement\";s:4:\"left\";s:8:\"endpoint\";i:0;}','Content','','publish','closed','closed','','field_5bc6456e72b79','','','2018-10-16 20:09:42','2018-10-16 20:09:42','',50,'http://wp-commerce7template:8888/?post_type=acf-field&amp;p=404',5,'acf-field','',0),(410,2,'2018-08-06 08:30:34','2018-08-06 08:30:34','<h2>Who we are</h2>\r\nOur website address is: http://wp-commerce7template:8888/.\r\n<h2>What personal data we collect and why we collect it</h2>\r\n<h3>Comments</h3>\r\nWhen visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.\r\n\r\nAn anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.\r\n<h3>Media</h3>\r\nIf you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.\r\n<h3>Contact forms</h3>\r\n<h3>Cookies</h3>\r\nIf you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.\r\n\r\nIf you have an account and you log in to this site, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.\r\n\r\nWhen you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select \"Remember Me\", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.\r\n\r\nIf you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.\r\n<h3>Embedded content from other websites</h3>\r\nArticles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.\r\n\r\nThese websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.\r\n<h3>Analytics</h3>\r\n<h2>Who we share your data with</h2>\r\n<h2>How long we retain your data</h2>\r\nIf you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.\r\n\r\nFor users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.\r\n<h2>What rights you have over your data</h2>\r\nIf you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.\r\n<h2>Where we send your data</h2>\r\nVisitor comments may be checked through an automated spam detection service.\r\n<h2>Your contact information</h2>\r\n<h2>Additional information</h2>\r\n<h3>How we protect your data</h3>\r\n<h3>What data breach procedures we have in place</h3>\r\n<h3>What third parties we receive data from</h3>\r\n<h3>What automated decision making and/or profiling we do with user data</h3>\r\n<h3>Industry regulatory disclosure requirements</h3>','Privacy Policy','','publish','closed','open','','privacy-policy','','','2018-11-06 10:58:05','2018-11-06 18:58:05','',0,'http://wp-commerce7template:8888/?page_id=3',0,'page','',0),(412,2,'2018-10-16 20:38:56','2018-10-17 03:38:56','','Home','','publish','closed','closed','','homepage-1','','','2024-04-04 14:15:22','2024-04-04 21:15:22','',0,'http://wp-commerce7template:8888/?page_id=410',0,'page','',0),(431,2,'2018-10-16 22:48:29','2018-10-17 05:48:29','','Virtual Experiences','','publish','closed','closed','','virtual-experiences','','','2022-12-12 10:55:48','2022-12-12 18:55:48','',0,'http://wp-commerce7template:8888/?page_id=431',0,'page','',0),(440,2,'2018-10-23 10:50:05','2018-10-23 17:50:05','','logo','','inherit','open','closed','','logo','','','2022-11-07 15:53:03','2022-11-07 23:53:03','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2018/10/logo.svg',0,'attachment','image/svg+xml',0),(443,2,'2018-10-23 11:02:16','2018-10-23 18:02:16','','Wine Club Old','','draft','closed','closed','','wine-club-old','','','2023-09-19 07:28:52','2023-09-19 14:28:52','',0,'https://www.meadowcroftwines.com/?page_id=443',0,'page','',0),(444,2,'2018-10-23 11:02:24','2018-10-23 18:02:24','','About','','publish','closed','closed','','about','','','2023-12-21 09:58:23','2023-12-21 17:58:23','',0,'https://www.meadowcroftwines.com/?page_id=444',0,'page','',0),(445,2,'2018-10-23 11:02:32','2018-10-23 18:02:32','','Tasting Room','','publish','closed','closed','','tasting-room','','','2024-12-11 13:23:44','2024-12-11 21:23:44','',0,'https://www.meadowcroftwines.com/?page_id=445',0,'page','',0),(446,2,'2018-10-23 11:02:42','2018-10-23 18:02:42','','Contact Us','','publish','closed','closed','','contact-us','','','2021-10-12 10:57:12','2021-10-12 17:57:12','',0,'https://www.meadowcroftwines.com/?page_id=446',0,'page','',0),(447,2,'2018-10-23 11:03:12','2018-10-23 18:03:12','','Shipping Policies','','publish','closed','closed','','shipping-faq','','','2024-11-26 09:38:55','2024-11-26 17:38:55','',0,'https://www.meadowcroftwines.com/?page_id=447',0,'page','',0),(449,2,'2018-10-23 11:03:43','2018-10-23 18:03:43','','Newsletters','','publish','closed','closed','','newsletters','','','2023-02-07 02:58:26','2023-02-07 10:58:26','',0,'https://www.meadowcroftwines.com/?page_id=449',0,'page','',0),(456,2,'2024-10-30 14:16:36','2018-10-23 18:06:36','','Tasting Room at Cornerstone','','publish','closed','closed','','456','','','2024-10-30 14:16:36','2024-10-30 21:16:36','',0,'https://www.meadowcroftwines.com/?p=456',2,'nav_menu_item','',0),(461,2,'2018-10-23 11:07:14','2018-10-23 18:07:14','','Inquiry','','publish','closed','closed','','inquiry','','','2022-11-29 16:45:30','2022-11-30 00:45:30','',0,'https://www.meadowcroftwines.com/?page_id=461',0,'page','',0),(501,2,'2018-10-23 16:27:57','2018-10-23 23:27:57','','Shop Wines','','publish','closed','closed','','wines','','','2023-03-20 17:17:20','2023-03-21 00:17:20','',0,'https://www.meadowcroftwines.com/?page_id=501',0,'page','',0),(504,2,'2018-10-23 16:41:25','2018-10-23 23:41:25','','Red Wines','','publish','closed','closed','','red-wines','','','2024-02-13 02:27:34','2024-02-13 10:27:34','',0,'https://www.meadowcroftwines.com/?page_id=504',0,'page','',0),(506,2,'2018-10-23 16:47:57','2018-10-23 23:47:57','','White Wines','','publish','closed','closed','','white-wines','','','2024-02-13 02:27:43','2024-02-13 10:27:43','',0,'https://www.meadowcroftwines.com/?page_id=506',0,'page','',0),(508,2,'2018-10-23 16:51:25','2018-10-23 23:51:25','','Trade & Media - Old','','draft','closed','closed','','trade-and-media','','','2024-04-01 17:42:29','2024-04-02 00:42:29','',0,'https://www.meadowcroftwines.com/?page_id=508',0,'page','',0),(516,2,'2018-10-24 15:35:36','2018-10-24 22:35:36','','Our Vineyards','','publish','closed','closed','','our-vineyards','','','2022-11-15 09:52:41','2022-11-15 17:52:41','',444,'https://www.meadowcroftwines.com/?page_id=516',0,'page','',0),(517,2,'2018-10-24 15:36:09','2018-10-24 22:36:09','','Our Team','','publish','closed','closed','','our-team','','','2019-09-13 11:51:40','2019-09-13 18:51:40','',444,'https://www.meadowcroftwines.com/?page_id=517',0,'page','',0),(518,2,'2018-10-24 15:36:32','2018-10-24 22:36:32','','Policies','','publish','closed','closed','','policies','','','2022-12-09 15:12:40','2022-12-09 23:12:40','',0,'https://www.meadowcroftwines.com/?page_id=518',0,'page','',0),(554,2,'2018-10-25 13:08:48','2018-10-25 20:08:48','','Grilled Lemon Chicken','','publish','closed','closed','','grilled-lemon-chicken','','','2018-11-01 09:44:16','2018-11-01 16:44:16','',0,'https://www.meadowcroftwines.com/?post_type=recipe&#038;p=554',0,'recipe','',0),(567,2,'2018-10-29 13:43:05','2018-10-29 20:43:05','','Product','','publish','closed','closed','','product-2','','','2023-05-02 10:55:16','2023-05-02 17:55:16','',0,'https://www.meadowcroftwines.com/?page_id=567',0,'page','',0),(604,2,'2018-12-07 11:46:37','2018-12-07 19:46:37','h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, p, li { \n	font-family: \'Crimson Text\', serif;\n}\nh6,.h6 {\n	font-weight: bold;\n	letter-spacing: 2px;\n}\n.button, button {\n  font-family: \'Poppins\', sans-serif;\n	font-weight: 500;\n	font-size: 12px;\n	letter-spacing: 1px;\n}\nh1 strong, .h1 strong, h2 strong, .h2 strong, h3  strong, .h3  strong { \n	font-family: \'Poppins\', sans-serif;\n}\nbody {\n  background-color: #f6f8f7;\n	font-family: \'Crimson Text\', serif;\n}\n.c7t-template-width {\n    max-width: 73.125rem;\n	  margin: 0 auto;\n}\np, .p {\n     font-size: 18px;\n}\nh1, .h1 {\n     font-size: 50px;\n	   letter-spacing: 8px;\n	   color: #ae9f65;\n	   text-transform: uppercase;\n}\nh2, .h2 {\n     font-size: 40px;\n	   letter-spacing: 8px;\n	   color: #ae9f65;\n}\nh3, .h3 {\n     font-size: 30px;\n	   color: #ae9f65;\n	   letter-spacing: 8px;\n	   text-transform: uppercase;\n}\nh4, .h4 {\n     font-size: 18.6667px;\n	   font-weight: 700;\n	   letter-spacing: 8px;\n	   color: #ae9f65;\n	   text-transform: uppercase;\n}\n.wide-content .c7t-content {\n	max-width: 99%\n}\n.c7t-banner__content h1 { \n color: #ae9f65;\n}\n.c7t-content--narrow {\n    max-width: 49rem;\n    padding: 0 1rem;\n    position: relative;\n}\n.metatitle {\n	font-family: \"Poppins\";\n	font-size: 14px;\n	color: #999794;\n	letter-spacing: 8px;\n	text-transform: uppercase;\n}\n.callout {\n	font-family: \"Poppins\";\n	font-size: 14px;\n	color: #6f6c68;\n	letter-spacing: 2px;\n	text-transform: uppercase;\n}\n.testimonial {\n	font-family: \"Poppins\";\n	font-size: 18px;\n	color: #6f6c68;\n	letter-spacing: 2px;\n	text-transform: uppercase;\n	margin-bottom: 0.8em;\n}\n.c7t-text-block--reverse {\n  background-color: #000000;\n}\n.white-section { \n    background-color: #ffffff; \n} \n.hr {\n	color: #EFEFEF\n}\n.c7-club-join-button {\n	text-align: center;\n}\n.gold-section { \n    background-color: #ae9f65; \n}\na {\n     color: #ae9f65;\n	text-decoration: none !important;\n}\n\n	','wp-spectratheme','','publish','closed','closed','','wp-spectratheme','','','2022-11-18 11:55:15','2022-11-18 19:55:15','',0,'https://www.meadowcroftwines.com/wp-spectratheme/',0,'custom_css','',0),(637,2,'2019-06-26 14:07:18','2019-06-26 21:07:18','','Blog','','publish','closed','closed','','blog','','','2019-06-26 14:07:18','2019-06-26 21:07:18','',0,'https://www.meadowcroftwines.com/?page_id=637',0,'page','',0),(642,2,'2019-07-05 09:16:21','2019-07-05 16:16:21','','Sustainable Wines','','publish','closed','closed','','sustainable-wines','','','2022-11-15 09:51:41','2022-11-15 17:51:41','',0,'https://www.meadowcroftwines.com/?page_id=642',0,'page','',0),(646,2,'2019-07-17 14:41:16','2019-07-17 21:41:16','','Spectra Vineyard','','publish','closed','closed','','spectra-vineyard','','','2019-07-17 14:41:16','2019-07-17 21:41:16','',0,'https://www.meadowcroftwines.com/venue/spectra-vineyard/',0,'tribe_venue','',0),(670,2,'2019-09-09 15:52:24','2019-09-09 22:52:24','','Awards and News','','publish','closed','closed','','awards-and-news','','','2022-11-17 15:55:19','2022-11-17 23:55:19','',0,'https://www.meadowcroftwines.com/?page_id=670',0,'page','',0),(726,2,'2019-12-10 13:29:13','2019-12-10 21:29:13','','Winery Events','','draft','closed','closed','','upcoming-events','','','2024-10-30 14:20:56','2024-10-30 21:20:56','',0,'https://www.meadowcroftwines.com/?page_id=726',0,'page','',0),(759,2,'2024-10-30 14:16:36','2020-04-03 19:15:22',' ','','','publish','closed','closed','','759','','','2024-10-30 14:16:36','2024-10-30 21:16:36','',0,'https://www.meadowcroftwines.com/?p=759',6,'nav_menu_item','',0),(853,2,'2022-11-02 16:44:00','2022-11-02 23:44:00','','bee','','inherit','closed','closed','','bee','','','2022-11-02 16:44:22','2022-11-02 23:44:22','',412,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/bee.jpg',0,'attachment','image/jpeg',0),(854,2,'2022-11-02 16:44:32','2022-11-02 23:44:32','','visit','','inherit','closed','closed','','visit-2','','','2022-11-02 16:44:40','2022-11-02 23:44:40','',412,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/visit.jpg',0,'attachment','image/jpeg',0),(855,2,'2022-11-02 16:44:51','2022-11-02 23:44:51','','vineyard-work','','inherit','closed','closed','','vineyard-work','','','2022-11-02 16:45:02','2022-11-02 23:45:02','',412,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/vineyard-work.jpg',0,'attachment','image/jpeg',0),(863,2,'2022-11-03 09:58:11','2022-11-03 16:58:11','','Meadowcroft Vineyard Video','','inherit','closed','closed','','meadowcroft-wines-short-vineyard-opt','','','2022-11-03 09:58:32','2022-11-03 16:58:32','',412,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-Wines-Short-Vineyard-opt.mp4',0,'attachment','video/mp4',0),(864,2,'2022-11-03 10:05:02','2022-11-03 17:05:02','','harvest','','inherit','closed','closed','','harvest','','','2022-11-03 10:05:16','2022-11-03 17:05:16','',412,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/harvest.jpg',0,'attachment','image/jpeg',0),(865,2,'2022-11-03 10:05:26','2022-11-03 17:05:26','','harvest-mobile','','inherit','closed','closed','','harvest-mobile','','','2022-11-03 10:05:30','2022-11-03 17:05:30','',412,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/harvest-mobile.jpg',0,'attachment','image/jpeg',0),(866,2,'2022-11-03 10:09:43','2022-11-03 17:09:43','','Top_100_Winner_Gold-1-1','','inherit','closed','closed','','top_100_winner_gold-1-1','','','2022-11-03 10:09:50','2022-11-03 17:09:50','',412,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Top_100_Winner_Gold-1-1.png',0,'attachment','image/png',0),(867,2,'2022-11-03 10:13:16','2022-11-03 17:13:16','','footer','','inherit','closed','closed','','footer','','','2022-11-03 10:13:54','2022-11-03 17:13:54','',412,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/footer.jpg',0,'attachment','image/jpeg',0),(880,2,'2024-10-30 14:16:36','2022-11-03 17:39:30','','News','','publish','closed','closed','','news','','','2024-10-30 14:16:36','2024-10-30 21:16:36','',0,'https://www.meadowcroftwines.com/?p=880',20,'nav_menu_item','',0),(881,2,'2022-11-03 10:50:17','2022-11-03 17:50:17','','visit','','inherit','closed','closed','','visit-3','','','2022-11-03 10:50:31','2022-11-03 17:50:31','',445,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/visit-1.jpg',0,'attachment','image/jpeg',0),(882,2,'2022-11-03 10:50:39','2022-11-03 17:50:39','','visit-mobile','','inherit','closed','closed','','visit-mobile','','','2022-11-03 10:50:42','2022-11-03 17:50:42','',445,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/visit-mobile.jpg',0,'attachment','image/jpeg',0),(883,2,'2022-11-03 10:55:02','2022-11-03 17:55:02','','tasting-room','','inherit','closed','closed','','tasting-room','','','2022-11-03 10:55:10','2022-11-03 17:55:10','',445,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/tasting-room.jpg',0,'attachment','image/jpeg',0),(885,2,'2022-11-03 11:11:42','2022-11-03 18:11:42','','seated','','inherit','closed','closed','','seated','','','2022-11-03 11:11:46','2022-11-03 18:11:46','',445,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/seated.jpg',0,'attachment','image/jpeg',0),(886,2,'2022-11-03 11:12:02','2022-11-03 18:12:02','','member','','inherit','closed','closed','','member','','','2022-11-03 11:12:15','2022-11-03 18:12:15','',445,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/member.jpg',0,'attachment','image/jpeg',0),(887,2,'2022-11-03 11:14:57','2022-11-03 18:14:57','','taste','','inherit','closed','closed','','taste','','','2022-11-03 11:15:07','2022-11-03 18:15:07','',445,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/taste.jpg',0,'attachment','image/jpeg',0),(888,2,'2022-11-03 11:18:22','2022-11-03 18:18:22','','blend','','inherit','closed','closed','','blend','','','2022-11-03 11:18:39','2022-11-03 18:18:39','',445,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/blend.jpg',0,'attachment','image/jpeg',0),(895,2,'2022-11-03 11:43:39','2022-11-03 18:43:39','','balloon-sized','','inherit','closed','closed','','balloon-sized','','','2022-11-03 11:44:22','2022-11-03 18:44:22','',445,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/balloon-sized.png',0,'attachment','image/png',0),(896,2,'2022-11-03 11:48:01','2022-11-03 18:48:01','','testimonials','','inherit','closed','closed','','testimonials','','','2022-11-03 11:48:15','2022-11-03 18:48:15','',445,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/testimonials.jpg',0,'attachment','image/jpeg',0),(920,2,'2024-10-30 14:16:36','2022-11-03 23:07:05','','Visit','','publish','closed','closed','','visit','','','2024-10-30 14:16:36','2024-10-30 21:16:36','',0,'https://www.meadowcroftwines.com/?p=920',1,'nav_menu_item','',0),(924,2,'2022-11-03 16:24:18','2022-11-03 23:24:18','','bottles','','inherit','closed','closed','','bottles','','','2022-11-03 16:25:17','2022-11-03 23:25:17','',431,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/bottles.jpg',0,'attachment','image/jpeg',0),(925,2,'2022-11-03 16:25:30','2022-11-03 23:25:30','','bottles-mobile','','inherit','closed','closed','','bottles-mobile','','','2022-11-03 16:25:34','2022-11-03 23:25:34','',431,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/bottles-mobile.jpg',0,'attachment','image/jpeg',0),(928,2,'2022-11-03 16:52:17','2022-11-03 23:52:17','','blind-tasting','','inherit','closed','closed','','blind-tasting','','','2022-11-03 16:52:32','2022-11-03 23:52:32','',431,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/blind-tasting.jpg',0,'attachment','image/jpeg',0),(929,2,'2022-11-03 16:55:07','2022-11-03 23:55:07','','hosted-trivia-tasting','','inherit','closed','closed','','hosted-trivia-tasting','','','2022-11-03 16:55:14','2022-11-03 23:55:14','',431,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/hosted-trivia-tasting.jpg',0,'attachment','image/jpeg',0),(930,2,'2022-11-03 16:57:44','2022-11-03 23:57:44','','curated-tasting','','inherit','closed','closed','','curated-tasting','','','2022-11-03 16:57:49','2022-11-03 23:57:49','',431,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/curated-tasting.jpg',0,'attachment','image/jpeg',0),(931,2,'2022-11-04 09:18:51','2022-11-04 16:18:51','','honeycomb-background','','inherit','closed','closed','','honeycomb-background','','','2022-11-04 09:19:02','2022-11-04 16:19:02','',431,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/honeycomb-background.jpg',0,'attachment','image/jpeg',0),(932,2,'2022-11-04 09:19:10','2022-11-04 16:19:10','','honeycomb-mobile','','inherit','closed','closed','','honeycomb-mobile','','','2022-11-04 09:19:19','2022-11-04 16:19:19','',431,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/honeycomb-mobile.jpg',0,'attachment','image/jpeg',0),(933,2,'2022-11-04 09:23:14','2022-11-04 16:23:14','','texture','','inherit','closed','closed','','texture','','','2022-11-08 09:15:14','2022-11-08 17:15:14','',431,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/texture.jpg',0,'attachment','image/jpeg',0),(934,2,'2022-11-04 09:41:02','2022-11-04 16:41:02','','quotation marks','','inherit','closed','closed','','quotation-marks','','','2022-11-04 09:41:16','2022-11-04 16:41:16','',431,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/quotation-marks.png',0,'attachment','image/png',0),(943,2,'2022-11-04 10:47:08','2022-11-04 17:47:08','','lavender','','inherit','closed','closed','','lavender','','','2022-11-04 10:47:24','2022-11-04 17:47:24','',443,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/lavender.jpg',0,'attachment','image/jpeg',0),(947,2,'2022-11-04 12:26:55','2022-11-04 19:26:55','','crest','','inherit','closed','closed','','crest','','','2022-11-04 12:27:32','2022-11-04 19:27:32','',443,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/crest.jpg',0,'attachment','image/jpeg',0),(948,2,'2024-10-30 14:16:36','2022-11-04 20:15:26','','Membership & Benefits','','publish','closed','closed','','membership-benefits','','','2024-10-30 14:16:36','2024-10-30 21:16:36','',0,'https://www.meadowcroftwines.com/?p=948',17,'nav_menu_item','',0),(949,2,'2024-10-30 14:16:36','2022-11-04 20:15:26','','Member Login','','publish','closed','closed','','member-login','','','2024-10-30 14:16:36','2024-10-30 21:16:36','',0,'https://www.meadowcroftwines.com/?p=949',18,'nav_menu_item','',0),(950,2,'2024-10-30 14:16:36','2022-11-04 20:18:07','','Our Story','','publish','closed','closed','','our-story','','','2024-10-30 14:16:36','2024-10-30 21:16:36','',0,'https://www.meadowcroftwines.com/?p=950',19,'nav_menu_item','',0),(951,2,'2022-11-04 13:45:46','2022-11-04 20:45:46','','team','','inherit','closed','closed','','team','','','2022-11-04 13:46:10','2022-11-04 20:46:10','',444,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/team.jpg',0,'attachment','image/jpeg',0),(952,2,'2022-11-04 13:50:17','2022-11-04 20:50:17','','signature','','inherit','closed','closed','','signature','','','2022-11-04 13:50:26','2022-11-04 20:50:26','',444,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/signature.png',0,'attachment','image/png',0),(953,2,'2022-11-04 13:51:30','2022-11-04 20:51:30','','grapes','','inherit','closed','closed','','grapes','','','2022-11-04 13:51:48','2022-11-04 20:51:48','',444,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/grapes.jpg',0,'attachment','image/jpeg',0),(954,2,'2022-11-04 14:00:41','2022-11-04 21:00:41','','TOM MEADOWCROFT','','publish','closed','closed','','tom-meadowcroft','','','2023-02-07 01:52:03','2023-02-07 09:52:03','',0,'https://www.meadowcroftwines.com/?post_type=teammember&#038;p=954',0,'teammember','',0),(955,2,'2022-11-04 13:59:27','2022-11-04 20:59:27','','tom-medowncroft','','inherit','closed','closed','','tom-medowncroft','','','2022-11-04 13:59:54','2022-11-04 20:59:54','',954,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/tom-medowncroft.jpg',0,'attachment','image/jpeg',0),(956,2,'2022-11-04 14:02:19','2022-11-04 21:02:19','','tom-bw','','inherit','closed','closed','','tom-bw','','','2022-11-04 14:02:19','2022-11-04 21:02:19','',954,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/tom-bw.jpg',0,'attachment','image/jpeg',0),(957,2,'2022-11-04 14:08:39','2022-11-04 21:08:39','','PETAR KIRILOV','','publish','closed','closed','','petar-kirilov','','','2023-02-06 05:33:07','2023-02-06 13:33:07','',0,'https://www.meadowcroftwines.com/?post_type=teammember&#038;p=957',0,'teammember','',0),(958,2,'2022-11-04 14:08:00','2022-11-04 21:08:00','','petar-kirilov','','inherit','closed','closed','','petar-kirilov','','','2022-11-04 14:08:07','2022-11-04 21:08:07','',957,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/petar-kirilov.jpg',0,'attachment','image/jpeg',0),(959,2,'2022-11-04 14:08:20','2022-11-04 21:08:20','','petar-bw','','inherit','closed','closed','','petar-bw','','','2022-11-04 14:08:36','2022-11-04 21:08:36','',957,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/petar-bw.jpg',0,'attachment','image/jpeg',0),(966,2,'2022-11-04 15:10:11','2022-11-04 22:10:11','','petar-circle','','inherit','closed','closed','','petar-circle','','','2022-11-04 15:10:20','2022-11-04 22:10:20','',444,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/petar-circle.png',0,'attachment','image/png',0),(968,2,'2022-11-04 16:59:32','2022-11-04 23:59:32','','summer-pairings','','inherit','closed','closed','','summer-pairings','','','2022-11-04 16:59:50','2022-11-04 23:59:50','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2019/06/summer-pairings.jpg',0,'attachment','image/jpeg',0),(969,2,'2022-11-07 09:13:53','2022-11-07 17:13:53','','C6FA8ABF-6F75-41E7-9464-B2E5D431EBCF_1_105_c-768x625','','inherit','closed','closed','','c6fa8abf-6f75-41e7-9464-b2e5d431ebcf_1_105_c-768x625','','','2022-11-07 09:14:00','2022-11-07 17:14:00','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2019/06/C6FA8ABF-6F75-41E7-9464-B2E5D431EBCF_1_105_c-768x625-1.jpg',0,'attachment','image/jpeg',0),(971,2,'2022-11-07 09:35:52','2022-11-07 17:35:52','','mexican-corn','','inherit','closed','closed','','mexican-corn','','','2022-11-07 09:35:59','2022-11-07 17:35:59','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2019/06/mexican-corn.jpg',0,'attachment','image/jpeg',0),(972,2,'2022-11-07 09:42:33','2022-11-07 17:42:33','','8F91B552-937E-42EE-B0B7-D73550497AFF_1_105_c-330x270','','inherit','closed','closed','','8f91b552-937e-42ee-b0b7-d73550497aff_1_105_c-330x270','','','2022-11-07 09:42:53','2022-11-07 17:42:53','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2019/06/8F91B552-937E-42EE-B0B7-D73550497AFF_1_105_c-330x270-1.jpg',0,'attachment','image/jpeg',0),(974,2,'2022-11-07 10:30:00','2022-11-07 18:30:00','','50BC9338-8BBA-46F5-A89F-93812BAAE8D6_1_105_c-768x625','','inherit','closed','closed','','50bc9338-8bba-46f5-a89f-93812baae8d6_1_105_c-768x625','','','2022-11-07 10:30:07','2022-11-07 18:30:07','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2019/06/50BC9338-8BBA-46F5-A89F-93812BAAE8D6_1_105_c-768x625-1.jpg',0,'attachment','image/jpeg',0),(975,2,'2022-11-07 14:21:27','2022-11-07 22:21:27','','Tom-Signature_Hi-2-copy-300x100','','inherit','closed','closed','','tom-signature_hi-2-copy-300x100','','','2022-11-07 14:21:36','2022-11-07 22:21:36','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2018/08/Tom-Signature_Hi-2-copy-300x100-1.png',0,'attachment','image/png',0),(976,2,'2022-11-07 14:23:26','2022-11-07 22:23:26','','vineyard','','inherit','closed','closed','','vineyard-2','','','2022-11-07 14:23:51','2022-11-07 22:23:51','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2018/08/vineyard.jpg',0,'attachment','image/jpeg',0),(977,2,'2022-11-07 14:25:22','2022-11-07 22:25:22','','vineyard-thumb','','inherit','closed','closed','','vineyard-thumb','','','2022-11-07 14:25:30','2022-11-07 22:25:30','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2018/08/vineyard-thumb.jpg',0,'attachment','image/jpeg',0),(978,2,'2022-11-07 14:28:18','2022-11-07 22:28:18','','tom','','inherit','closed','closed','','tom','','','2022-11-07 14:28:31','2022-11-07 22:28:31','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2018/08/tom.jpg',0,'attachment','image/jpeg',0),(979,2,'2022-11-07 14:28:42','2022-11-07 22:28:42','','harvest','','inherit','closed','closed','','harvest-2','','','2022-11-07 14:28:54','2022-11-07 22:28:54','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2018/08/harvest.jpg',0,'attachment','image/jpeg',0),(980,2,'2022-11-07 15:15:42','2022-11-07 23:15:42','','Meadowcroft-2019_Cabernet_Oakville_Bottleshot','','inherit','closed','closed','','meadowcroft-2019_cabernet_oakville_bottleshot','','','2022-11-07 15:17:28','2022-11-07 23:17:28','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-2019_Cabernet_Oakville_Bottleshot.png',0,'attachment','image/png',0),(981,2,'2022-11-07 15:17:39','2022-11-07 23:17:39','','2019 Oakville Napa Valley Cabernet Sauvignon Tech Sheet','','inherit','closed','closed','','meadowcroft-2019_cabernet_oakville_techsheet','','','2022-11-08 08:42:18','2022-11-08 16:42:18','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-2019_Cabernet_Oakville_Techsheet.pdf',0,'attachment','application/pdf',0),(982,2,'2022-11-07 15:20:02','2022-11-07 23:20:02','','Meadowcroft-2019_Cabernet_Oakville_Thumb','','inherit','closed','closed','','meadowcroft-2019_cabernet_oakville_thumb','','','2022-11-07 15:20:09','2022-11-07 23:20:09','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-2019_Cabernet_Oakville_Thumb.png',0,'attachment','image/png',0),(983,2,'2022-11-07 15:24:54','2022-11-07 23:24:54','','Meadowcroft-2018_Cabernet_SpringMT_BottleShot','','inherit','closed','closed','','meadowcroft-2018_cabernet_springmt_bottleshot','','','2022-11-07 15:27:48','2022-11-07 23:27:48','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-2018_Cabernet_SpringMT_BottleShot.png',0,'attachment','image/png',0),(984,2,'2022-11-07 15:26:11','2022-11-07 23:26:11','','2018 Spring Mountain District Napa Valley Cabernet Sauvignon Tech Sheet','','inherit','closed','closed','','meadowcroft_2018cabernetsauvignonspringmt_techsheet','','','2022-11-08 08:43:40','2022-11-08 16:43:40','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018CabernetSauvignonSpringMT_TECHSheet.pdf',0,'attachment','application/pdf',0),(985,2,'2022-11-07 15:27:43','2022-11-07 23:27:43','','Meadowcroft-2018_Cabernet_SM_Bottleshot','','inherit','closed','closed','','meadowcroft-2018_cabernet_sm_bottleshot','','','2022-11-07 15:28:04','2022-11-07 23:28:04','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-2018_Cabernet_SM_Bottleshot.png',0,'attachment','image/png',0),(986,2,'2022-11-07 15:33:57','2022-11-07 23:33:57','','2012-Napa-College-Vineyard-Cab-Sauv','','inherit','closed','closed','','2012-napa-college-vineyard-cab-sauv','','','2022-11-07 15:34:17','2022-11-07 23:34:17','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2012-Napa-College-Vineyard-Cab-Sauv.png',0,'attachment','image/png',0),(987,2,'2022-11-07 15:36:02','2022-11-07 23:36:02','','Meadowcroft-2014-Napa-Valley-Cab-BottleShot','','inherit','closed','closed','','meadowcroft-2014-napa-valley-cab-bottleshot','','','2022-11-07 15:36:38','2022-11-07 23:36:38','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-2014-Napa-Valley-Cab-BottleShot.png',0,'attachment','image/png',0),(988,2,'2022-11-07 15:37:20','2022-11-07 23:37:20','','Meadowcroft 2015 Napa Valley Cabernet Sauvignon Tech Sheet','','inherit','closed','closed','','meadowcroft_2015cabernetsauvignonnapavalley_techsheet','','','2022-11-08 08:46:12','2022-11-08 16:46:12','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2015CabernetSauvignonNapaValley_TECHSheet.pdf',0,'attachment','application/pdf',0),(989,2,'2022-11-07 15:39:54','2022-11-07 23:39:54','','Meadowcroft-2015-Napa-Valley-Cab-BottleShot-copy','','inherit','closed','closed','','meadowcroft-2015-napa-valley-cab-bottleshot-copy','','','2022-11-07 15:40:26','2022-11-07 23:40:26','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-2015-Napa-Valley-Cab-BottleShot-copy.png',0,'attachment','image/png',0),(990,2,'2022-11-07 15:40:54','2022-11-07 23:40:54','','Meadowcroft_2016CabernetSauvignonNapaValley_TECHSheet','','inherit','closed','closed','','meadowcroft_2016cabernetsauvignonnapavalley_techsheet','','','2022-11-08 08:46:12','2022-11-08 16:46:12','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2016CabernetSauvignonNapaValley_TECHSheet.pdf',0,'attachment','application/pdf',0),(991,2,'2022-11-07 15:42:06','2022-11-07 23:42:06','','16CSNVNC_1','','inherit','closed','closed','','16csnvnc_1','','','2022-11-07 15:42:12','2022-11-07 23:42:12','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/16CSNVNC_1.png',0,'attachment','image/png',0),(992,2,'2022-11-07 15:42:29','2022-11-07 23:42:29','','Meadowcroft_2017CabernetSauvignonNapaValley_TECHSheet','','inherit','closed','closed','','meadowcroft_2017cabernetsauvignonnapavalley_techsheet','','','2022-11-08 08:46:12','2022-11-08 16:46:12','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017CabernetSauvignonNapaValley_TECHSheet.pdf',0,'attachment','application/pdf',0),(993,2,'2022-11-07 15:44:44','2022-11-07 23:44:44','','Meadowcroft_2017_NapaValley_CabernetSauvignon','','inherit','closed','closed','','meadowcroft_2017_napavalley_cabernetsauvignon','','','2022-11-07 15:45:04','2022-11-07 23:45:04','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017_NapaValley_CabernetSauvignon.png',0,'attachment','image/png',0),(994,2,'2022-11-07 15:44:46','2022-11-07 23:44:46','','Meadowcroft_NapaValley_CabernetSauvignon_2018_small','','inherit','closed','closed','','meadowcroft_napavalley_cabernetsauvignon_2018_small','','','2022-11-07 15:45:48','2022-11-07 23:45:48','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_NapaValley_CabernetSauvignon_2018_small.png',0,'attachment','image/png',0),(997,2,'2022-11-07 15:47:28','2022-11-07 23:47:28','','Meadowcroft_2018CabernetSauvignonNapaValley_TECHSheet','','inherit','closed','closed','','meadowcroft_2018cabernetsauvignonnapavalley_techsheet','','','2022-11-08 08:46:12','2022-11-08 16:46:12','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018CabernetSauvignonNapaValley_TECHSheet.pdf',0,'attachment','application/pdf',0),(998,2,'2022-11-07 15:47:30','2022-11-07 23:47:30','','Meadowcroft_2019CabernetSauvignonNapaValley_TECHSheet','','inherit','closed','closed','','meadowcroft_2019cabernetsauvignonnapavalley_techsheet','','','2022-11-08 08:46:12','2022-11-08 16:46:12','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2019CabernetSauvignonNapaValley_TECHSheet.pdf',0,'attachment','application/pdf',0),(999,2,'2022-11-07 15:47:33','2022-11-07 23:47:33','','Meadowcroft_2020CabernetSauvignonNapaValley_TECHSheet','','inherit','closed','closed','','meadowcroft_2020cabernetsauvignonnapavalley_techsheet','','','2022-11-08 08:46:12','2022-11-08 16:46:12','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2020CabernetSauvignonNapaValley_TECHSheet.pdf',0,'attachment','application/pdf',0),(1006,2,'2022-11-08 09:14:05','2022-11-08 17:14:05','','vineyard','','inherit','closed','closed','','vineyard-3','','','2022-11-08 09:14:14','2022-11-08 17:14:14','',461,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/vineyard-1.jpg',0,'attachment','image/jpeg',0),(1007,2,'2024-04-02 08:33:58','2022-11-08 17:39:05','','General Inquiries','','publish','closed','closed','','1007','','','2024-04-02 08:33:58','2024-04-02 15:33:58','',0,'https://www.meadowcroftwines.com/?p=1007',1,'nav_menu_item','',0),(1009,2,'2024-04-02 08:33:58','2022-11-08 17:39:41','','Privacy Policy','','publish','closed','closed','','privacy-policy','','','2024-04-02 08:33:58','2024-04-02 15:33:58','',0,'https://www.meadowcroftwines.com/?p=1009',5,'nav_menu_item','',0),(1012,2,'2024-04-02 08:33:58','2022-11-08 21:25:06',' ','','','publish','closed','closed','','1012','','','2024-04-02 08:33:58','2024-04-02 15:33:58','',0,'https://www.meadowcroftwines.com/?p=1012',6,'nav_menu_item','',0),(1015,2,'2022-11-08 13:33:20','2022-11-08 21:33:20','','Fall 2022 Newsletter','','inherit','closed','closed','','fall-2022-newsletter','','','2022-11-08 13:38:52','2022-11-08 21:38:52','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Fall-2022-Newsletter.pdf',0,'attachment','application/pdf',0),(1016,2,'2022-11-08 13:35:54','2022-11-08 21:35:54','','fall-2022-newsletter-thumb@2x','','inherit','closed','closed','','fall-2022-newsletter-thumb2x','','','2022-11-08 13:35:59','2022-11-08 21:35:59','',449,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/fall-2022-newsletter-thumb@2x.jpg',0,'attachment','image/jpeg',0),(1017,2,'2022-11-08 13:37:03','2022-11-08 21:37:03','','fall-2022-newsletter-cover@3x','','inherit','closed','closed','','fall-2022-newsletter-cover3x','','','2022-11-08 13:37:03','2022-11-08 21:37:03','',449,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/fall-2022-newsletter-cover@3x.jpg',0,'attachment','image/jpeg',0),(1018,2,'2022-11-08 13:39:12','2022-11-08 21:39:12','','Spring-2022-Newsletter-3','','inherit','closed','closed','','spring-2022-newsletter-3','','','2022-11-08 13:39:12','2022-11-08 21:39:12','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Spring-2022-Newsletter-3.pdf',0,'attachment','application/pdf',0),(1019,2,'2022-11-08 13:43:09','2022-11-08 21:43:09','','Spring-2022-Newsletter-Thumb@3x','','inherit','closed','closed','','spring-2022-newsletter-thumb3x','','','2022-11-08 13:43:38','2022-11-08 21:43:38','',449,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Spring-2022-Newsletter-Thumb@3x.jpg',0,'attachment','image/jpeg',0),(1020,2,'2022-11-08 13:46:52','2022-11-08 21:46:52','','Meadowcroft-Winter-2022-Newsletter-3','','inherit','closed','closed','','meadowcroft-winter-2022-newsletter-3','','','2022-11-08 13:46:52','2022-11-08 21:46:52','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-Winter-2022-Newsletter-3.pdf',0,'attachment','application/pdf',0),(1021,2,'2022-11-08 13:47:47','2022-11-08 21:47:47','','Screen-Shot-2022-02-21-at-1.54.05-PM','','inherit','closed','closed','','screen-shot-2022-02-21-at-1-54-05-pm','','','2022-11-08 13:48:11','2022-11-08 21:48:11','',449,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Screen-Shot-2022-02-21-at-1.54.05-PM.jpg',0,'attachment','image/jpeg',0),(1022,2,'2024-04-02 08:33:58','2022-11-08 22:00:57',' ','','','publish','closed','closed','','1022','','','2024-04-02 08:33:58','2024-04-02 15:33:58','',0,'https://www.meadowcroftwines.com/?p=1022',4,'nav_menu_item','',0),(1034,2,'2022-11-10 08:20:20','2022-11-10 16:20:20','','Meadowcroft-Logo-Horizontal-Bee-Lighter3','','inherit','closed','closed','','meadowcroft-logo-horizontal-bee-lighter3','','','2022-11-10 08:20:31','2022-11-10 16:20:31','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-Logo-Horizontal-Bee-Lighter3.png',0,'attachment','image/png',0),(1035,2,'2022-11-10 08:20:38','2022-11-10 16:20:38','','Meadowcroft-Logo-Horizontal-Bee-Lighter3','','inherit','closed','closed','','meadowcroft-logo-horizontal-bee-lighter3-2','','','2022-11-10 08:20:38','2022-11-10 16:20:38','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-Logo-Horizontal-Bee-Lighter3-1.png',0,'attachment','image/png',0),(1036,2,'2022-11-10 08:25:02','2022-11-10 16:25:02','','favicon','','inherit','closed','closed','','favicon','','','2022-11-10 08:25:08','2022-11-10 16:25:08','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/favicon.png',0,'attachment','image/png',0),(1037,2,'2022-11-10 08:25:15','2022-11-10 16:25:15','','apple-touch-icon','','inherit','closed','closed','','apple-touch-icon','','','2022-11-10 08:25:20','2022-11-10 16:25:20','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/apple-touch-icon.png',0,'attachment','image/png',0),(1042,2,'2024-04-02 08:33:58','2022-11-17 19:09:25','','Awards & News','','publish','closed','closed','','awards-news','','','2024-04-02 08:33:58','2024-04-02 15:33:58','',0,'https://www.meadowcroftwines.com/?p=1042',3,'nav_menu_item','',0),(1051,2,'2022-11-17 12:51:46','2022-11-17 20:51:46','','club','','inherit','closed','closed','','club-2','','','2022-11-17 12:51:59','2022-11-17 20:51:59','',412,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/club.jpg',0,'attachment','image/jpeg',0),(1052,2,'2022-11-17 15:03:08','2022-11-17 23:03:08','We’re decking out the Cornerstone Gardens with a sprinkling of white light and Christmas magic! This self-guided tour offers uniquely curated touches of seasonal cheer and plenty of thoughtful details to get you in the mood for Christmas. Sonoma’s Best Kiosk will be open to serve hot drinks and sweet treats for the perfect ending to a holiday stroll around the gardens. Join us from 6:00 PM – 7:30 PM.\r\n\r\nTickets are FREE and everyone is invited and welcome!','12 DAYS OF CHRISTMAS, DAY 1 – GARDEN LIGHT SHOW','','publish','closed','closed','','12-days-of-christmas-day-1-garden-light-show','','','2022-11-17 15:03:08','2022-11-17 23:03:08','',0,'https://www.meadowcroftwines.com/?post_type=tribe_events&#038;p=1052',0,'tribe_events','',0),(1053,2,'2022-11-18 11:03:11','2022-11-18 19:03:11','','Meadowcroft-Logo-Horizontal-Bee-Lighter3','','inherit','closed','closed','','meadowcroft-logo-horizontal-bee-lighter3-3','','','2022-11-18 11:03:20','2022-11-18 19:03:20','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-Logo-Horizontal-Bee-Lighter3-2.png',0,'attachment','image/png',0),(1070,2,'2022-11-18 11:57:25','2022-11-18 19:57:25','','2011-Bottle-Shot-500','','inherit','closed','closed','','2011-bottle-shot-500','','','2022-11-18 11:57:53','2022-11-18 19:57:53','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2011-Bottle-Shot-500.jpg',0,'attachment','image/jpeg',0),(1071,2,'2022-11-18 13:02:26','2022-11-18 21:02:26','','Meadowcroft-2019_Cabernet_Oakville_Bottleshot-77x300','','inherit','closed','closed','','meadowcroft-2019_cabernet_oakville_bottleshot-77x300','','','2022-11-18 13:02:42','2022-11-18 21:02:42','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-2019_Cabernet_Oakville_Bottleshot-77x300-1.jpg',0,'attachment','image/jpeg',0),(1072,2,'2022-11-18 13:03:55','2022-11-18 21:03:55','','2011-Bottle-Shot-500','','inherit','closed','closed','','2011-bottle-shot-500-2','','','2022-11-18 13:13:23','2022-11-18 21:13:23','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2011-Bottle-Shot-500-1.jpg',0,'attachment','image/jpeg',0),(1073,2,'2022-11-18 13:12:50','2022-11-18 21:12:50','','13CSNVEG_1','','inherit','closed','closed','','13csnveg_1','','','2022-11-18 13:13:29','2022-11-18 21:13:29','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/13CSNVEG_1.png',0,'attachment','image/png',0),(1074,2,'2022-11-18 13:14:23','2022-11-18 21:14:23','','14CSNVEG_1','','inherit','closed','closed','','14csnveg_1','','','2022-11-18 13:14:44','2022-11-18 21:14:44','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/14CSNVEG_1.png',0,'attachment','image/png',0),(1075,2,'2022-11-18 13:15:17','2022-11-18 21:15:17','','15CSNVEG_1','','inherit','closed','closed','','15csnveg_1','','','2022-11-18 13:15:23','2022-11-18 21:15:23','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/15CSNVEG_1.png',0,'attachment','image/png',0),(1076,2,'2022-11-18 13:16:03','2022-11-18 21:16:03','','16CSNVEG_1','','inherit','closed','closed','','16csnveg_1','','','2022-11-18 13:16:10','2022-11-18 21:16:10','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/16CSNVEG_1.png',0,'attachment','image/png',0),(1077,2,'2022-11-18 13:16:59','2022-11-18 21:16:59','','MC2017_CS_MV_BottleShot-scaled','','inherit','closed','closed','','mc2017_cs_mv_bottleshot-scaled','','','2022-11-18 13:17:06','2022-11-18 21:17:06','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC2017_CS_MV_BottleShot-scaled-1.jpeg',0,'attachment','image/jpeg',0),(1078,2,'2022-11-18 13:17:40','2022-11-18 21:17:40','','MC_Veeeder_2018_Bottleshot_png','','inherit','closed','closed','','mc_veeeder_2018_bottleshot_png','','','2022-11-18 13:17:49','2022-11-18 21:17:49','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_Veeeder_2018_Bottleshot_png.png',0,'attachment','image/png',0),(1079,2,'2022-11-18 13:18:33','2022-11-18 21:18:33','','MC_Veeder_2019_Bottleshot_png-2','','inherit','closed','closed','','mc_veeder_2019_bottleshot_png-2','','','2022-11-18 13:18:47','2022-11-18 21:18:47','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_Veeder_2019_Bottleshot_png-2.png',0,'attachment','image/png',0),(1081,2,'2022-11-22 10:47:40','2022-11-22 18:47:40','','Meadowcroft_2016CabernetSauvignon_MountVeederNapaValley_TECHSheet','','inherit','closed','closed','','meadowcroft_2016cabernetsauvignon_mountveedernapavalley_techsheet','','','2022-11-22 10:47:40','2022-11-22 18:47:40','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2016CabernetSauvignon_MountVeederNapaValley_TECHSheet.pdf',0,'attachment','application/pdf',0),(1082,2,'2022-11-22 10:49:38','2022-11-22 18:49:38','','Meadowcroft_2015CabernetSauvignon_MountVeederNapaValley_TECHSheet','','inherit','closed','closed','','meadowcroft_2015cabernetsauvignon_mountveedernapavalley_techsheet','','','2022-11-22 10:49:38','2022-11-22 18:49:38','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2015CabernetSauvignon_MountVeederNapaValley_TECHSheet.pdf',0,'attachment','application/pdf',0),(1083,2,'2022-11-22 10:50:15','2022-11-22 18:50:15','','Meadowcroft_2017CabernetSauvignon_MountVeederNapaValley_TECHSheet','','inherit','closed','closed','','meadowcroft_2017cabernetsauvignon_mountveedernapavalley_techsheet','','','2022-11-22 10:50:15','2022-11-22 18:50:15','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017CabernetSauvignon_MountVeederNapaValley_TECHSheet.pdf',0,'attachment','application/pdf',0),(1084,2,'2022-11-22 10:51:32','2022-11-22 18:51:32','','Meadowcroft_2018CabernetSauvignon_MountVeederNapaValley_TECHSheet','','inherit','closed','closed','','meadowcroft_2018cabernetsauvignon_mountveedernapavalley_techsheet','','','2022-11-22 10:51:32','2022-11-22 18:51:32','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018CabernetSauvignon_MountVeederNapaValley_TECHSheet.pdf',0,'attachment','application/pdf',0),(1085,2,'2022-11-22 10:52:12','2022-11-22 18:52:12','','Meadowcroft_2019CabernetSauvignon_MountVeederNapaValley_TECHSheet','','inherit','closed','closed','','meadowcroft_2019cabernetsauvignon_mountveedernapavalley_techsheet','','','2022-11-22 10:52:12','2022-11-22 18:52:12','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2019CabernetSauvignon_MountVeederNapaValley_TECHSheet.pdf',0,'attachment','application/pdf',0),(1086,2,'2022-11-22 10:53:50','2022-11-22 18:53:50','','Meadowcroft_NapaValley_CabernetSauvignon_2020_Bottleshot','','inherit','closed','closed','','meadowcroft_napavalley_cabernetsauvignon_2020_bottleshot','','','2022-11-22 10:54:26','2022-11-22 18:54:26','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_NapaValley_CabernetSauvignon_2020_Bottleshot.png',0,'attachment','image/png',0),(1087,2,'2022-11-22 10:57:52','2022-11-22 18:57:52','','2013-Zin','','inherit','closed','closed','','2013-zin','','','2022-11-22 10:57:52','2022-11-22 18:57:52','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2013-Zin.jpeg',0,'attachment','image/jpeg',0),(1088,2,'2022-11-22 11:01:01','2022-11-22 19:01:01','','2015-Louveau-Cab','','inherit','closed','closed','','2015-louveau-cab','','','2022-11-22 11:01:20','2022-11-22 19:01:20','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2015-Louveau-Cab.png',0,'attachment','image/png',0),(1089,2,'2022-11-22 11:30:36','2022-11-22 19:30:36','','15CSSCLV_1','','inherit','closed','closed','','15cssclv_1','','','2022-11-22 11:30:53','2022-11-22 19:30:53','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/15CSSCLV_1.png',0,'attachment','image/png',0),(1090,2,'2022-11-22 11:31:26','2022-11-22 19:31:26','','16CSNVNC_1','','inherit','closed','closed','','16csnvnc_1-2','','','2022-11-22 11:31:34','2022-11-22 19:31:34','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/16CSNVNC_1-1.png',0,'attachment','image/png',0),(1091,2,'2022-11-22 11:32:27','2022-11-22 19:32:27','','MC_2017_CABSAUV_LOUVAU','','inherit','closed','closed','','mc_2017_cabsauv_louvau','','','2022-11-22 11:32:43','2022-11-22 19:32:43','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_2017_CABSAUV_LOUVAU.png',0,'attachment','image/png',0),(1092,2,'2022-11-22 11:33:25','2022-11-22 19:33:25','','MC_2018_CABSAUV_LOUVAU','','inherit','closed','closed','','mc_2018_cabsauv_louvau','','','2022-11-22 11:34:21','2022-11-22 19:34:21','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_2018_CABSAUV_LOUVAU.png',0,'attachment','image/png',0),(1093,2,'2022-11-22 11:35:04','2022-11-22 19:35:04','','MC_2019_WYLDVIN_CABERNET_Bottleshot','','inherit','closed','closed','','mc_2019_wyldvin_cabernet_bottleshot','','','2022-11-22 11:35:21','2022-11-22 19:35:21','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_2019_WYLDVIN_CABERNET_Bottleshot.png',0,'attachment','image/png',0),(1094,2,'2022-11-22 11:36:54','2022-11-22 19:36:54','','MC_2020_WYLDVIN_CABERNET_Bottleshot','','inherit','closed','closed','','mc_2020_wyldvin_cabernet_bottleshot','','','2022-11-22 11:37:12','2022-11-22 19:37:12','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_2020_WYLDVIN_CABERNET_Bottleshot.png',0,'attachment','image/png',0),(1095,2,'2022-11-22 11:39:26','2022-11-22 19:39:26','','Meadowcroft_2015CabernetSauvignonDCV_TECHSheet','','inherit','closed','closed','','meadowcroft_2015cabernetsauvignondcv_techsheet','','','2022-11-22 11:39:26','2022-11-22 19:39:26','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2015CabernetSauvignonDCV_TECHSheet.pdf',0,'attachment','application/pdf',0),(1096,2,'2022-11-22 11:39:28','2022-11-22 19:39:28','','Meadowcroft_2016CabernetSauvignonDCV_TECHSheet','','inherit','closed','closed','','meadowcroft_2016cabernetsauvignondcv_techsheet','','','2022-11-22 11:39:28','2022-11-22 19:39:28','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2016CabernetSauvignonDCV_TECHSheet.pdf',0,'attachment','application/pdf',0),(1097,2,'2022-11-22 11:39:30','2022-11-22 19:39:30','','Meadowcroft_2017CabernetSauvignonDCV_TECHSheet-1','','inherit','closed','closed','','meadowcroft_2017cabernetsauvignondcv_techsheet-1','','','2022-11-22 11:39:30','2022-11-22 19:39:30','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017CabernetSauvignonDCV_TECHSheet-1.pdf',0,'attachment','application/pdf',0),(1098,2,'2022-11-22 11:39:32','2022-11-22 19:39:32','','Meadowcroft_2018CabernetSauvignonDCV_TECHSheet','','inherit','closed','closed','','meadowcroft_2018cabernetsauvignondcv_techsheet','','','2022-11-22 11:39:32','2022-11-22 19:39:32','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018CabernetSauvignonDCV_TECHSheet.pdf',0,'attachment','application/pdf',0),(1099,2,'2022-11-22 11:41:15','2022-11-22 19:41:15','','Meadowcroft-MC_DRYCREEKZIN_19_Techsheet','','inherit','closed','closed','','meadowcroft-mc_drycreekzin_19_techsheet','','','2022-11-22 11:41:15','2022-11-22 19:41:15','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-MC_DRYCREEKZIN_19_Techsheet.pdf',0,'attachment','application/pdf',0),(1100,2,'2022-11-22 11:41:18','2022-11-22 19:41:18','','Meadowcroft-MC_DRYCREEKZIN_20_Techsheet','','inherit','closed','closed','','meadowcroft-mc_drycreekzin_20_techsheet','','','2022-11-22 11:41:18','2022-11-22 19:41:18','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-MC_DRYCREEKZIN_20_Techsheet.pdf',0,'attachment','application/pdf',0),(1101,2,'2022-11-22 11:44:32','2022-11-22 19:44:32','','Nelson-Cab','','inherit','closed','closed','','nelson-cab','','','2022-11-22 11:50:25','2022-11-22 19:50:25','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Nelson-Cab.png',0,'attachment','image/png',0),(1102,2,'2022-11-22 11:50:34','2022-11-22 19:50:34','','Meadowcroft_2015_CabSauv_Mendo','','inherit','closed','closed','','meadowcroft_2015_cabsauv_mendo','','','2022-11-22 11:50:55','2022-11-22 19:50:55','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2015_CabSauv_Mendo.png',0,'attachment','image/png',0),(1103,2,'2022-11-22 11:53:06','2022-11-22 19:53:06','','19_Cab_NelsonRanch_Mendo_Bottleshot','','inherit','closed','closed','','19_cab_nelsonranch_mendo_bottleshot','','','2022-11-22 11:56:00','2022-11-22 19:56:00','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/19_Cab_NelsonRanch_Mendo_Bottleshot.png',0,'attachment','image/png',0),(1104,2,'2022-11-22 11:53:23','2022-11-22 19:53:23','','Meadowcroft_2016_CabSauv_Mendo','','inherit','closed','closed','','meadowcroft_2016_cabsauv_mendo','','','2022-11-22 11:55:27','2022-11-22 19:55:27','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2016_CabSauv_Mendo.png',0,'attachment','image/png',0),(1105,2,'2022-11-22 11:53:35','2022-11-22 19:53:35','','Meadowcroft_2017CabSauv_Mendocino_NelsonRanch','','inherit','closed','closed','','meadowcroft_2017cabsauv_mendocino_nelsonranch','','','2022-11-22 11:55:04','2022-11-22 19:55:04','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017CabSauv_Mendocino_NelsonRanch.png',0,'attachment','image/png',0),(1106,2,'2022-11-22 11:53:41','2022-11-22 19:53:41','','Meadowcroft_2018CabSauv_Mendocino_NelsonRanch','','inherit','closed','closed','','meadowcroft_2018cabsauv_mendocino_nelsonranch','','','2022-11-22 11:54:36','2022-11-22 19:54:36','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018CabSauv_Mendocino_NelsonRanch.png',0,'attachment','image/png',0),(1107,2,'2022-11-22 11:57:06','2022-11-22 19:57:06','','19_Cab_NelsonRanch_Mendo_Techsheet','','inherit','closed','closed','','19_cab_nelsonranch_mendo_techsheet','','','2022-11-22 11:57:06','2022-11-22 19:57:06','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/19_Cab_NelsonRanch_Mendo_Techsheet.pdf',0,'attachment','application/pdf',0),(1108,2,'2022-11-22 11:57:09','2022-11-22 19:57:09','','Meadowcroft_2017CabernetSauvignonMendoCo_TECHSheet','','inherit','closed','closed','','meadowcroft_2017cabernetsauvignonmendoco_techsheet','','','2022-11-22 11:57:09','2022-11-22 19:57:09','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017CabernetSauvignonMendoCo_TECHSheet.pdf',0,'attachment','application/pdf',0),(1109,2,'2022-11-22 11:57:11','2022-11-22 19:57:11','','Meadowcroft_2018CabernetSauvignonMendoCo_TECHSheet','','inherit','closed','closed','','meadowcroft_2018cabernetsauvignonmendoco_techsheet','','','2022-11-22 11:57:11','2022-11-22 19:57:11','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018CabernetSauvignonMendoCo_TECHSheet.pdf',0,'attachment','application/pdf',0),(1110,2,'2022-11-22 12:33:49','2022-11-22 20:33:49','','Meadowcroft-Red-Hills-2020-CabSauv-376x1024','','inherit','closed','closed','','meadowcroft-red-hills-2020-cabsauv-376x1024','','','2022-11-22 12:35:49','2022-11-22 20:35:49','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-Red-Hills-2020-CabSauv-376x1024-1.png',0,'attachment','image/png',0),(1111,2,'2022-11-22 12:36:24','2022-11-22 20:36:24','','MC_2020_WYLDVIN_CABERNET_Bottleshot','','inherit','closed','closed','','mc_2020_wyldvin_cabernet_bottleshot-2','','','2022-11-22 12:36:45','2022-11-22 20:36:45','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_2020_WYLDVIN_CABERNET_Bottleshot-1.png',0,'attachment','image/png',0),(1112,2,'2022-11-22 12:37:10','2022-11-22 20:37:10','','Meadowcroft_2020CabernetSauvignonRedHills_TECHSheet','','inherit','closed','closed','','meadowcroft_2020cabernetsauvignonredhills_techsheet','','','2022-11-22 12:37:10','2022-11-22 20:37:10','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2020CabernetSauvignonRedHills_TECHSheet.pdf',0,'attachment','application/pdf',0),(1114,2,'2022-11-22 12:45:13','2022-11-22 20:45:13','','GSM','','inherit','closed','closed','','gsm','','','2022-11-22 12:45:16','2022-11-22 20:45:16','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/GSM.png',0,'attachment','image/png',0),(1115,2,'2022-11-22 12:45:58','2022-11-22 20:45:58','','Meadowcroft_2016_River-Trace_ChalkHill_GSM_TECHSheet','','inherit','closed','closed','','meadowcroft_2016_river-trace_chalkhill_gsm_techsheet','','','2022-11-22 12:45:58','2022-11-22 20:45:58','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2016_River-Trace_ChalkHill_GSM_TECHSheet.pdf',0,'attachment','application/pdf',0),(1116,2,'2022-11-22 12:46:00','2022-11-22 20:46:00','','Meadowcroft_2017_River-Trace_ChalkHill_GSM_TECHSheet','','inherit','closed','closed','','meadowcroft_2017_river-trace_chalkhill_gsm_techsheet','','','2022-11-22 12:46:00','2022-11-22 20:46:00','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017_River-Trace_ChalkHill_GSM_TECHSheet.pdf',0,'attachment','application/pdf',0),(1117,2,'2022-11-22 12:46:02','2022-11-22 20:46:02','','Meadowcroft_2019_River-Trace_ChalkHill_GSM_TECHSheet','','inherit','closed','closed','','meadowcroft_2019_river-trace_chalkhill_gsm_techsheet','','','2022-11-22 12:46:02','2022-11-22 20:46:02','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2019_River-Trace_ChalkHill_GSM_TECHSheet.pdf',0,'attachment','application/pdf',0),(1118,2,'2022-11-22 12:46:04','2022-11-22 20:46:04','','Meadowcroft_2020_River-Trace_CA_GSM_TECHSheet','','inherit','closed','closed','','meadowcroft_2020_river-trace_ca_gsm_techsheet','','','2022-11-22 12:46:04','2022-11-22 20:46:04','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2020_River-Trace_CA_GSM_TECHSheet.pdf',0,'attachment','application/pdf',0),(1119,2,'2022-11-22 12:46:07','2022-11-22 20:46:07','','Meadowcroft-River-Trace-2016','','inherit','closed','closed','','meadowcroft-river-trace-2016','','','2022-11-22 12:47:49','2022-11-22 20:47:49','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-River-Trace-2016.png',0,'attachment','image/png',0),(1120,2,'2022-11-22 12:46:18','2022-11-22 20:46:18','','Meadowcroft-River-Trace-2017','','inherit','closed','closed','','meadowcroft-river-trace-2017','','','2022-11-22 12:48:13','2022-11-22 20:48:13','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-River-Trace-2017.png',0,'attachment','image/png',0),(1121,2,'2022-11-22 12:46:27','2022-11-22 20:46:27','','Meadowcroft-River-Trace-2019','','inherit','closed','closed','','meadowcroft-river-trace-2019','','','2022-11-22 12:49:09','2022-11-22 20:49:09','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-River-Trace-2019.png',0,'attachment','image/png',0),(1122,2,'2022-11-22 12:46:36','2022-11-22 20:46:36','','Meadowcroft-River-Trace-2020_Bottleshot','','inherit','closed','closed','','meadowcroft-river-trace-2020_bottleshot','','','2022-11-22 12:49:00','2022-11-22 20:49:00','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-River-Trace-2020_Bottleshot.png',0,'attachment','image/png',0),(1123,2,'2022-11-22 12:51:34','2022-11-22 20:51:34','','Anniversary-Blend','','inherit','closed','closed','','anniversary-blend','','','2022-11-22 12:51:47','2022-11-22 20:51:47','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Anniversary-Blend.png',0,'attachment','image/png',0),(1124,2,'2022-11-22 12:52:31','2022-11-22 20:52:31','','Meadowcroft_AnnivCuvee_Bottleshot','','inherit','closed','closed','','meadowcroft_annivcuvee_bottleshot','','','2022-11-22 12:52:54','2022-11-22 20:52:54','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_AnnivCuvee_Bottleshot.png',0,'attachment','image/png',0),(1125,2,'2022-11-22 12:53:42','2022-11-22 20:53:42','','Meadowcroft_NVNapaValleyAnniversayCuvee2022_TECHSheet','','inherit','closed','closed','','meadowcroft_nvnapavalleyanniversaycuvee2022_techsheet','','','2022-11-22 12:53:42','2022-11-22 20:53:42','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_NVNapaValleyAnniversayCuvee2022_TECHSheet.pdf',0,'attachment','application/pdf',0),(1126,2,'2022-11-22 12:57:37','2022-11-22 20:57:37','','Panorama','','inherit','closed','closed','','panorama','','','2022-11-22 12:57:43','2022-11-22 20:57:43','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Panorama.png',0,'attachment','image/png',0),(1127,2,'2022-11-22 12:58:16','2022-11-22 20:58:16','','17ThePanorama_1','','inherit','closed','closed','','17thepanorama_1','','','2022-11-22 13:07:43','2022-11-22 21:07:43','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/17ThePanorama_1.png',0,'attachment','image/png',0),(1128,2,'2022-11-22 12:58:18','2022-11-22 20:58:18','','2017_ThePanorama_StagsLeapDistrict_Napa_RedBlend','','inherit','closed','closed','','2017_thepanorama_stagsleapdistrict_napa_redblend','','','2022-11-22 13:07:53','2022-11-22 21:07:53','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2017_ThePanorama_StagsLeapDistrict_Napa_RedBlend.png',0,'attachment','image/png',0),(1129,2,'2022-11-22 13:08:38','2022-11-22 21:08:38','','2017_Panorama_NV_CabSauvBlend_v1','','inherit','closed','closed','','2017_panorama_nv_cabsauvblend_v1','','','2022-11-22 13:08:38','2022-11-22 21:08:38','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2017_Panorama_NV_CabSauvBlend_v1.pdf',0,'attachment','application/pdf',0),(1130,2,'2022-11-22 13:08:41','2022-11-22 21:08:41','','2017_StagsLeapDistrcit_ThePanorama_MC_v1','','inherit','closed','closed','','2017_stagsleapdistrcit_thepanorama_mc_v1','','','2022-11-22 13:08:41','2022-11-22 21:08:41','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2017_StagsLeapDistrcit_ThePanorama_MC_v1.pdf',0,'attachment','application/pdf',0),(1131,2,'2022-11-23 13:51:04','2022-11-23 21:51:04','','2010_MC_Zinfandel-lg','','inherit','closed','closed','','2010_mc_zinfandel-lg','','','2022-11-23 13:52:35','2022-11-23 21:52:35','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2010_MC_Zinfandel-lg.png',0,'attachment','image/png',0),(1132,2,'2022-11-23 13:51:10','2022-11-23 21:51:10','','2011_MC_KnightsValley_Zinfandel','','inherit','closed','closed','','2011_mc_knightsvalley_zinfandel','','','2022-11-23 13:53:05','2022-11-23 21:53:05','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2011_MC_KnightsValley_Zinfandel.png',0,'attachment','image/png',0),(1133,2,'2022-11-23 13:51:14','2022-11-23 21:51:14','','Meadowcroft_Zin_Speedy_12-scaled','','inherit','closed','closed','','meadowcroft_zin_speedy_12-scaled','','','2022-11-23 13:53:27','2022-11-23 21:53:27','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_Zin_Speedy_12-scaled-1.jpeg',0,'attachment','image/jpeg',0),(1134,2,'2022-11-23 13:51:19','2022-11-23 21:51:19','','Meadowcroft_Zin_Speedy_13','','inherit','closed','closed','','meadowcroft_zin_speedy_13','','','2022-11-23 13:53:48','2022-11-23 21:53:48','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_Zin_Speedy_13.png',0,'attachment','image/png',0),(1135,2,'2022-11-23 13:51:32','2022-11-23 21:51:32','','Meadowcroft_Zinfandel_2014_SpeedyCreek','','inherit','closed','closed','','meadowcroft_zinfandel_2014_speedycreek','','','2022-11-23 13:54:13','2022-11-23 21:54:13','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_Zinfandel_2014_SpeedyCreek.png',0,'attachment','image/png',0),(1136,2,'2022-11-23 13:51:48','2022-11-23 21:51:48','','Meadowcroft_Zinfandel_2018_SpeedyCreek','','inherit','closed','closed','','meadowcroft_zinfandel_2018_speedycreek','','','2022-11-23 13:54:39','2022-11-23 21:54:39','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_Zinfandel_2018_SpeedyCreek.png',0,'attachment','image/png',0),(1137,2,'2022-11-23 13:52:01','2022-11-23 21:52:01','','Meadowcroft_Zinfandel_2019_SpeedyCreek-1','','inherit','closed','closed','','meadowcroft_zinfandel_2019_speedycreek-1','','','2022-11-23 13:55:03','2022-11-23 21:55:03','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_Zinfandel_2019_SpeedyCreek-1.png',0,'attachment','image/png',0),(1138,2,'2022-11-23 13:56:01','2022-11-23 21:56:01','','2012_Speedy-Creek-Zin_Tasting-Notes','','inherit','closed','closed','','2012_speedy-creek-zin_tasting-notes','','','2022-11-23 13:56:01','2022-11-23 21:56:01','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2012_Speedy-Creek-Zin_Tasting-Notes.pdf',0,'attachment','application/pdf',0),(1139,2,'2022-11-23 13:56:05','2022-11-23 21:56:05','','Meadowcroft_2013SpeedyCreekZin_TECHSheet','','inherit','closed','closed','','meadowcroft_2013speedycreekzin_techsheet','','','2022-11-23 13:56:05','2022-11-23 21:56:05','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2013SpeedyCreekZin_TECHSheet.pdf',0,'attachment','application/pdf',0),(1140,2,'2022-11-23 13:56:08','2022-11-23 21:56:08','','Meadowcroft_2014_SpeedyCreek_Zin_TECHSheet','','inherit','closed','closed','','meadowcroft_2014_speedycreek_zin_techsheet','','','2022-11-23 13:56:08','2022-11-23 21:56:08','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2014_SpeedyCreek_Zin_TECHSheet.pdf',0,'attachment','application/pdf',0),(1141,2,'2022-11-23 13:56:10','2022-11-23 21:56:10','','Meadowcroft_2018_SpeedyCreek_Zin_TECHSheet (1)','','inherit','closed','closed','','meadowcroft_2018_speedycreek_zin_techsheet-1','','','2022-11-23 13:56:10','2022-11-23 21:56:10','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018_SpeedyCreek_Zin_TECHSheet-1.pdf',0,'attachment','application/pdf',0),(1144,2,'2022-11-23 13:59:26','2022-11-23 21:59:26','','TastingSheet-2010-Meadowcroft-Son-Zinfandel','','inherit','closed','closed','','tastingsheet-2010-meadowcroft-son-zinfandel','','','2022-11-23 13:59:26','2022-11-23 21:59:26','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/TastingSheet-2010-Meadowcroft-Son-Zinfandel.pdf',0,'attachment','application/pdf',0),(1145,2,'2022-11-23 13:59:28','2022-11-23 21:59:28','','TastingSheet-2011-Meadowcroft-Zinfandel','','inherit','closed','closed','','tastingsheet-2011-meadowcroft-zinfandel','','','2022-11-23 13:59:28','2022-11-23 21:59:28','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/TastingSheet-2011-Meadowcroft-Zinfandel.pdf',0,'attachment','application/pdf',0),(1146,2,'2022-11-23 14:02:52','2022-11-23 22:02:52','','Speedy-Creek-Zin','','inherit','closed','closed','','speedy-creek-zin','','','2022-11-23 14:03:00','2022-11-23 22:03:00','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Speedy-Creek-Zin.png',0,'attachment','image/png',0),(1147,2,'2022-11-23 14:04:47','2022-11-23 22:04:47','','Meadowcroft-MC_DRYCREEKZIN_20_Techsheet-1','','inherit','closed','closed','','meadowcroft-mc_drycreekzin_20_techsheet-1','','','2022-11-23 14:04:47','2022-11-23 22:04:47','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-MC_DRYCREEKZIN_20_Techsheet-1.pdf',0,'attachment','application/pdf',0),(1148,2,'2022-11-23 14:04:53','2022-11-23 22:04:53','','Meadowcroft-MC_DRYCREEKZIN_20','','inherit','closed','closed','','meadowcroft-mc_drycreekzin_20','','','2022-11-23 14:08:37','2022-11-23 22:08:37','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-MC_DRYCREEKZIN_20.png',0,'attachment','image/png',0),(1149,2,'2022-11-23 14:05:54','2022-11-23 22:05:54','','Meadowcroft-MC_DRYCREEKZIN_20-1000x2722','','inherit','closed','closed','','meadowcroft-mc_drycreekzin_20-1000x2722','','','2022-11-23 14:06:18','2022-11-23 22:06:18','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-MC_DRYCREEKZIN_20-1000x2722-1.png',0,'attachment','image/png',0),(1150,2,'2022-11-23 14:10:44','2022-11-23 22:10:44','','18ZNOLDVINE_1-1','','inherit','closed','closed','','18znoldvine_1-1','','','2022-11-23 14:11:26','2022-11-23 22:11:26','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/18ZNOLDVINE_1-1.png',0,'attachment','image/png',0),(1151,2,'2022-11-23 14:10:52','2022-11-23 22:10:52','','2013-Speedy-Creek','','inherit','closed','closed','','2013-speedy-creek','','','2022-11-23 14:11:59','2022-11-23 22:11:59','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2013-Speedy-Creek.jpeg',0,'attachment','image/jpeg',0),(1152,2,'2022-11-23 14:10:53','2022-11-23 22:10:53','','Meadowcroft_2016Zinfandel_Amador_TECHSheet_v1','','inherit','closed','closed','','meadowcroft_2016zinfandel_amador_techsheet_v1','','','2022-11-23 14:10:53','2022-11-23 22:10:53','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2016Zinfandel_Amador_TECHSheet_v1.pdf',0,'attachment','application/pdf',0),(1153,2,'2022-11-23 14:10:55','2022-11-23 22:10:55','','Meadowcroft_2018Zinfandel_Amador_TECHSheet','','inherit','closed','closed','','meadowcroft_2018zinfandel_amador_techsheet','','','2022-11-23 14:10:55','2022-11-23 22:10:55','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018Zinfandel_Amador_TECHSheet.pdf',0,'attachment','application/pdf',0),(1154,2,'2022-11-23 14:13:34','2022-11-23 22:13:34','','Old-Vine','','inherit','closed','closed','','old-vine','','','2022-11-23 14:13:42','2022-11-23 22:13:42','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Old-Vine.png',0,'attachment','image/png',0),(1155,2,'2022-11-23 14:17:04','2022-11-23 22:17:04','','2014-Malbec','','inherit','closed','closed','','2014-malbec','','','2022-11-23 14:19:30','2022-11-23 22:19:30','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2014-Malbec.jpeg',0,'attachment','image/jpeg',0),(1156,2,'2022-11-23 14:17:07','2022-11-23 22:17:07','','MC_2019_Malbec_Clements_Hill_Bottleshot','','inherit','closed','closed','','mc_2019_malbec_clements_hill_bottleshot','','','2022-11-23 14:19:06','2022-11-23 22:19:06','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_2019_Malbec_Clements_Hill_Bottleshot.png',0,'attachment','image/png',0),(1157,2,'2022-11-23 14:17:16','2022-11-23 22:17:16','','Meadowcroft_2014ZinfandelDCV_TECHSheet','','inherit','closed','closed','','meadowcroft_2014zinfandeldcv_techsheet','','','2022-11-23 14:17:16','2022-11-23 22:17:16','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2014ZinfandelDCV_TECHSheet.pdf',0,'attachment','application/pdf',0),(1158,2,'2022-11-23 14:17:20','2022-11-23 22:17:20','','Meadowcroft_2016_Malbec_BottleShot.jpg','','inherit','closed','closed','','meadowcroft_2016_malbec_bottleshot-jpg','','','2022-11-23 14:18:12','2022-11-23 22:18:12','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2016_Malbec_BottleShot.jpg.png',0,'attachment','image/png',0),(1159,2,'2022-11-23 14:17:29','2022-11-23 22:17:29','','Meadowcroft_2016CruDeLaRucheMalbec_TECHSheet','','inherit','closed','closed','','meadowcroft_2016crudelaruchemalbec_techsheet','','','2022-11-23 14:17:29','2022-11-23 22:17:29','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2016CruDeLaRucheMalbec_TECHSheet.pdf',0,'attachment','application/pdf',0),(1160,2,'2022-11-23 14:17:32','2022-11-23 22:17:32','','Meadowcroft_2017_Malbec_BottleShot_v2','','inherit','closed','closed','','meadowcroft_2017_malbec_bottleshot_v2','','','2022-11-23 14:18:39','2022-11-23 22:18:39','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017_Malbec_BottleShot_v2.png',0,'attachment','image/png',0),(1161,2,'2022-11-23 14:17:41','2022-11-23 22:17:41','','Meadowcroft_2017CruDeLaRucheMalbec_TECHSheet_Awards','','inherit','closed','closed','','meadowcroft_2017crudelaruchemalbec_techsheet_awards','','','2022-11-23 14:17:41','2022-11-23 22:17:41','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017CruDeLaRucheMalbec_TECHSheet_Awards.pdf',0,'attachment','application/pdf',0),(1162,2,'2022-11-23 14:17:43','2022-11-23 22:17:43','','Meadowcroft_2018CruDeLaRucheMalbec_TECHSheet_Awards','','inherit','closed','closed','','meadowcroft_2018crudelaruchemalbec_techsheet_awards','','','2022-11-23 14:17:43','2022-11-23 22:17:43','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018CruDeLaRucheMalbec_TECHSheet_Awards.pdf',0,'attachment','application/pdf',0),(1163,2,'2022-11-23 14:17:45','2022-11-23 22:17:45','','Meadowcroft_2019CruDeLaRucheMalbec_TECHSheet','','inherit','closed','closed','','meadowcroft_2019crudelaruchemalbec_techsheet','','','2022-11-23 14:17:45','2022-11-23 22:17:45','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2019CruDeLaRucheMalbec_TECHSheet.pdf',0,'attachment','application/pdf',0),(1164,2,'2022-11-23 14:17:47','2022-11-23 22:17:47','','Meadowcroft_2020CruDeLaRucheMalbec_TECHSheet (1)','','inherit','closed','closed','','meadowcroft_2020crudelaruchemalbec_techsheet-1','','','2022-11-23 14:17:47','2022-11-23 22:17:47','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2020CruDeLaRucheMalbec_TECHSheet-1.pdf',0,'attachment','application/pdf',0),(1165,2,'2022-11-23 14:17:49','2022-11-23 22:17:49','','Meadowcroft_2020CruDeLaRucheMalbec_TECHSheet','','inherit','closed','closed','','meadowcroft_2020crudelaruchemalbec_techsheet','','','2022-11-23 14:17:49','2022-11-23 22:17:49','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2020CruDeLaRucheMalbec_TECHSheet.pdf',0,'attachment','application/pdf',0),(1166,2,'2022-11-23 14:22:57','2022-11-23 22:22:57','','20_Malbec_Clements_Hill_Bottleshot-376x1024','','inherit','closed','closed','','20_malbec_clements_hill_bottleshot-376x1024','','','2022-11-23 14:23:08','2022-11-23 22:23:08','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/20_Malbec_Clements_Hill_Bottleshot-376x1024-1.png',0,'attachment','image/png',0),(1167,2,'2022-11-23 14:25:55','2022-11-23 22:25:55','','2014-Syrah','','inherit','closed','closed','','2014-syrah','','','2022-11-23 14:26:04','2022-11-23 22:26:04','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2014-Syrah.jpeg',0,'attachment','image/jpeg',0),(1168,2,'2022-11-23 14:26:24','2022-11-23 22:26:24','','Meadowcroft_2018_SyrahCalifornia_TECHSheet','','inherit','closed','closed','','meadowcroft_2018_syrahcalifornia_techsheet','','','2022-11-23 14:26:24','2022-11-23 22:26:24','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018_SyrahCalifornia_TECHSheet.pdf',0,'attachment','application/pdf',0),(1169,2,'2022-11-23 14:26:27','2022-11-23 22:26:27','','Meadowcroft_Syrah_2014_BottleShot-1','','inherit','closed','closed','','meadowcroft_syrah_2014_bottleshot-1','','','2022-11-23 14:28:37','2022-11-23 22:28:37','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_Syrah_2014_BottleShot-1.jpeg',0,'attachment','image/jpeg',0),(1170,2,'2022-11-23 14:26:34','2022-11-23 22:26:34','','Meadowcroft_Syrah_California_2018','','inherit','closed','closed','','meadowcroft_syrah_california_2018','','','2022-11-23 14:28:15','2022-11-23 22:28:15','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_Syrah_California_2018.png',0,'attachment','image/png',0),(1171,2,'2022-11-23 14:40:31','2022-11-23 22:40:31','','19_PinotNoir_Cornerstone','','inherit','closed','closed','','19_pinotnoir_cornerstone','','','2022-11-23 14:46:15','2022-11-23 22:46:15','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/19_PinotNoir_Cornerstone.png',0,'attachment','image/png',0),(1172,2,'2022-11-23 14:40:40','2022-11-23 22:40:40','','Meadowcroft_2015_PinotNoir_Cornerstone_BottleShot','','inherit','closed','closed','','meadowcroft_2015_pinotnoir_cornerstone_bottleshot','','','2022-11-23 14:46:41','2022-11-23 22:46:41','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2015_PinotNoir_Cornerstone_BottleShot.jpeg',0,'attachment','image/jpeg',0),(1173,2,'2022-11-23 14:40:45','2022-11-23 22:40:45','','Meadowcroft_2015_PinotNoir_Cornerstone_TECHSheet','','inherit','closed','closed','','meadowcroft_2015_pinotnoir_cornerstone_techsheet','','','2022-11-23 14:40:45','2022-11-23 22:40:45','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2015_PinotNoir_Cornerstone_TECHSheet.pdf',0,'attachment','application/pdf',0),(1174,2,'2022-11-23 14:40:48','2022-11-23 22:40:48','','Meadowcroft_2016CornerstoneVineyard_PinotNoir_TECHSheet','','inherit','closed','closed','','meadowcroft_2016cornerstonevineyard_pinotnoir_techsheet','','','2022-11-23 14:40:48','2022-11-23 22:40:48','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2016CornerstoneVineyard_PinotNoir_TECHSheet.pdf',0,'attachment','application/pdf',0),(1175,2,'2022-11-23 14:40:50','2022-11-23 22:40:50','','Meadowcroft_2018_CornerstoneVineyard_Pinotnoir_TECHSheet','','inherit','closed','closed','','meadowcroft_2018_cornerstonevineyard_pinotnoir_techsheet','','','2022-11-23 14:40:50','2022-11-23 22:40:50','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018_CornerstoneVineyard_Pinotnoir_TECHSheet.pdf',0,'attachment','application/pdf',0),(1176,2,'2022-11-23 14:40:53','2022-11-23 22:40:53','','Meadowcroft_2019_CornerstoneVineyard_Pinotnoir_TECHSheet','','inherit','closed','closed','','meadowcroft_2019_cornerstonevineyard_pinotnoir_techsheet','','','2022-11-23 14:40:53','2022-11-23 22:40:53','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2019_CornerstoneVineyard_Pinotnoir_TECHSheet.pdf',0,'attachment','application/pdf',0),(1177,2,'2022-11-23 14:40:57','2022-11-23 22:40:57','','Meadowcroft_2020_Cornerstone_Pinotnoir_Bottleshotpng','','inherit','closed','closed','','meadowcroft_2020_cornerstone_pinotnoir_bottleshotpng','','','2022-11-23 14:47:11','2022-11-23 22:47:11','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2020_Cornerstone_Pinotnoir_Bottleshotpng.png',0,'attachment','image/png',0),(1178,2,'2022-11-23 14:41:07','2022-11-23 22:41:07','','Meadowcroft_2020_Cornerstone_Pinotnoir_TECHSheet','','inherit','closed','closed','','meadowcroft_2020_cornerstone_pinotnoir_techsheet','','','2022-11-23 14:41:07','2022-11-23 22:41:07','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2020_Cornerstone_Pinotnoir_TECHSheet.pdf',0,'attachment','application/pdf',0),(1179,2,'2022-11-23 14:41:13','2022-11-23 22:41:13','','Meadowcroft_PinotNoir_Cornerstone_LosCarneros_2018','','inherit','closed','closed','','meadowcroft_pinotnoir_cornerstone_loscarneros_2018','','','2022-11-23 14:47:34','2022-11-23 22:47:34','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_PinotNoir_Cornerstone_LosCarneros_2018.png',0,'attachment','image/png',0),(1180,2,'2022-11-23 14:50:36','2022-11-23 22:50:36','','2015-Cornerstone-Vineyard-Pinot-Noir','','inherit','closed','closed','','2015-cornerstone-vineyard-pinot-noir','','','2022-11-23 14:50:43','2022-11-23 22:50:43','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2015-Cornerstone-Vineyard-Pinot-Noir.jpeg',0,'attachment','image/jpeg',0),(1181,2,'2022-11-23 14:55:11','2022-11-23 22:55:11','','16PNSCSO_1','','inherit','closed','closed','','16pnscso_1','','','2022-11-23 14:57:24','2022-11-23 22:57:24','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/16PNSCSO_1.png',0,'attachment','image/png',0),(1182,2,'2022-11-23 14:55:13','2022-11-23 22:55:13','','17PNSCSC_1','','inherit','closed','closed','','17pnscsc_1','','','2022-11-23 14:57:45','2022-11-23 22:57:45','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/17PNSCSC_1.png',0,'attachment','image/png',0),(1183,2,'2022-11-23 14:55:15','2022-11-23 22:55:15','','2018-Meadowcroft-Sonoma-Coast-Pinot-noir','','inherit','closed','closed','','2018-meadowcroft-sonoma-coast-pinot-noir','','','2022-11-23 14:55:15','2022-11-23 22:55:15','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2018-Meadowcroft-Sonoma-Coast-Pinot-noir.pdf',0,'attachment','application/pdf',0),(1184,2,'2022-11-23 14:55:18','2022-11-23 22:55:18','','2019-Meadowcroft-Sonoma-Coast-Pinot-noir-1','','inherit','closed','closed','','2019-meadowcroft-sonoma-coast-pinot-noir-1','','','2022-11-23 14:55:18','2022-11-23 22:55:18','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2019-Meadowcroft-Sonoma-Coast-Pinot-noir-1.pdf',0,'attachment','application/pdf',0),(1185,2,'2022-11-23 14:55:22','2022-11-23 22:55:22','','2021-Meadowcroft-Sonoma-Coast-Pinot_Bottleshot','','inherit','closed','closed','','2021-meadowcroft-sonoma-coast-pinot_bottleshot','','','2022-11-23 14:58:09','2022-11-23 22:58:09','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2021-Meadowcroft-Sonoma-Coast-Pinot_Bottleshot.png',0,'attachment','image/png',0),(1186,2,'2022-11-23 14:55:30','2022-11-23 22:55:30','','2021-Meadowcroft-Sonoma-Coast-Pinot-noir','','inherit','closed','closed','','2021-meadowcroft-sonoma-coast-pinot-noir','','','2022-11-23 14:55:30','2022-11-23 22:55:30','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2021-Meadowcroft-Sonoma-Coast-Pinot-noir.pdf',0,'attachment','application/pdf',0),(1187,2,'2022-11-23 14:55:33','2022-11-23 22:55:33','','MC_SONOMACOASTPINOT_2018','','inherit','closed','closed','','mc_sonomacoastpinot_2018','','','2022-11-23 14:58:33','2022-11-23 22:58:33','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_SONOMACOASTPINOT_2018.png',0,'attachment','image/png',0),(1188,2,'2022-11-23 14:55:41','2022-11-23 22:55:41','','MC_SONOMACOASTPINOT_2019-1','','inherit','closed','closed','','mc_sonomacoastpinot_2019-1','','','2022-11-23 14:59:03','2022-11-23 22:59:03','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_SONOMACOASTPINOT_2019-1.png',0,'attachment','image/png',0),(1189,2,'2022-11-23 14:55:49','2022-11-23 22:55:49','','Meadowcroft_2015SonomaCoastPinot_TECHSheet','','inherit','closed','closed','','meadowcroft_2015sonomacoastpinot_techsheet','','','2022-11-23 14:55:49','2022-11-23 22:55:49','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2015SonomaCoastPinot_TECHSheet.pdf',0,'attachment','application/pdf',0),(1190,2,'2022-11-23 14:55:51','2022-11-23 22:55:51','','Meadowcroft_2016SonomaCoastPinotNoir_TECHSheet','','inherit','closed','closed','','meadowcroft_2016sonomacoastpinotnoir_techsheet','','','2022-11-23 14:55:51','2022-11-23 22:55:51','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2016SonomaCoastPinotNoir_TECHSheet.pdf',0,'attachment','application/pdf',0),(1191,2,'2022-11-23 14:55:53','2022-11-23 22:55:53','','Meadowcroft_2017SonomaCoastPinotNoir_TECHSheet','','inherit','closed','closed','','meadowcroft_2017sonomacoastpinotnoir_techsheet','','','2022-11-23 14:55:53','2022-11-23 22:55:53','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017SonomaCoastPinotNoir_TECHSheet.pdf',0,'attachment','application/pdf',0),(1192,2,'2022-11-23 14:55:55','2022-11-23 22:55:55','','Meadowcroft_PinotNoir_SonomaCoast_15_BottleShot','','inherit','closed','closed','','meadowcroft_pinotnoir_sonomacoast_15_bottleshot','','','2022-11-23 15:12:20','2022-11-23 23:12:20','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_PinotNoir_SonomaCoast_15_BottleShot.jpeg',0,'attachment','image/jpeg',0),(1193,2,'2022-11-23 15:17:32','2022-11-23 23:17:32','','16CSNVNC_1','','inherit','closed','closed','','16csnvnc_1-3','','','2022-11-23 15:17:32','2022-11-23 23:17:32','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/16CSNVNC_1-2.png',0,'attachment','image/png',0),(1194,2,'2022-11-23 15:17:33','2022-11-23 23:17:33','','17PNSCRR_1','','inherit','closed','closed','','17pnscrr_1','','','2022-11-23 15:18:11','2022-11-23 23:18:11','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/17PNSCRR_1.png',0,'attachment','image/png',0),(1195,2,'2022-11-23 15:17:35','2022-11-23 23:17:35','','19PIINOTNOIR_RRValley_Screwcap','','inherit','closed','closed','','19piinotnoir_rrvalley_screwcap','','','2022-11-23 15:18:45','2022-11-23 23:18:45','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/19PIINOTNOIR_RRValley_Screwcap.png',0,'attachment','image/png',0),(1196,2,'2022-11-23 15:17:44','2022-11-23 23:17:44','','21_Pinot_RRV_bottleshot','','inherit','closed','closed','','21_pinot_rrv_bottleshot','','','2022-11-23 15:19:12','2022-11-23 23:19:12','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/21_Pinot_RRV_bottleshot.png',0,'attachment','image/png',0),(1197,2,'2022-11-23 15:17:52','2022-11-23 23:17:52','','Meadowcroft_2016RussianRiverPinotNoir_TECHSheet','','inherit','closed','closed','','meadowcroft_2016russianriverpinotnoir_techsheet','','','2022-11-23 15:17:52','2022-11-23 23:17:52','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2016RussianRiverPinotNoir_TECHSheet.pdf',0,'attachment','application/pdf',0),(1198,2,'2022-11-23 15:17:54','2022-11-23 23:17:54','','Meadowcroft_2017_RussianRiverValley_Pinotnoir_TECHSheet','','inherit','closed','closed','','meadowcroft_2017_russianrivervalley_pinotnoir_techsheet','','','2022-11-23 15:17:54','2022-11-23 23:17:54','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017_RussianRiverValley_Pinotnoir_TECHSheet.pdf',0,'attachment','application/pdf',0),(1199,2,'2022-11-23 15:17:56','2022-11-23 23:17:56','','Meadowcroft_2018_RussianRiverValley_Pinotnoir_TECHSheet (1)','','inherit','closed','closed','','meadowcroft_2018_russianrivervalley_pinotnoir_techsheet-1','','','2022-11-23 15:17:56','2022-11-23 23:17:56','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018_RussianRiverValley_Pinotnoir_TECHSheet-1.pdf',0,'attachment','application/pdf',0),(1200,2,'2022-11-23 15:17:59','2022-11-23 23:17:59','','Meadowcroft_2018_RussianRiverValley_Pinotnoir_TECHSheet','','inherit','closed','closed','','meadowcroft_2018_russianrivervalley_pinotnoir_techsheet','','','2022-11-23 15:17:59','2022-11-23 23:17:59','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018_RussianRiverValley_Pinotnoir_TECHSheet.pdf',0,'attachment','application/pdf',0),(1201,2,'2022-11-23 15:18:01','2022-11-23 23:18:01','','Meadowcroft_2019_RussianRiverValley_Pinotnoir_TECHSheet','','inherit','closed','closed','','meadowcroft_2019_russianrivervalley_pinotnoir_techsheet','','','2022-11-23 15:18:01','2022-11-23 23:18:01','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2019_RussianRiverValley_Pinotnoir_TECHSheet.pdf',0,'attachment','application/pdf',0),(1202,2,'2022-11-23 15:18:03','2022-11-23 23:18:03','','Meadowcroft_2020_PinotNoir_RussianriverValley_Bottleshot','','inherit','closed','closed','','meadowcroft_2020_pinotnoir_russianrivervalley_bottleshot','','','2022-11-23 15:19:37','2022-11-23 23:19:37','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2020_PinotNoir_RussianriverValley_Bottleshot.png',0,'attachment','image/png',0),(1203,2,'2022-11-23 15:18:12','2022-11-23 23:18:12','','Meadowcroft_2020_RussianRiverValley_Pinotnoir_TECHSheet','','inherit','closed','closed','','meadowcroft_2020_russianrivervalley_pinotnoir_techsheet','','','2022-11-23 15:18:12','2022-11-23 23:18:12','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2020_RussianRiverValley_Pinotnoir_TECHSheet.pdf',0,'attachment','application/pdf',0),(1204,2,'2022-11-23 15:18:14','2022-11-23 23:18:14','','Meadowcroft_2021_RussianRiverValley_Pinotnoir_TECHSheet','','inherit','closed','closed','','meadowcroft_2021_russianrivervalley_pinotnoir_techsheet','','','2022-11-23 15:18:14','2022-11-23 23:18:14','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2021_RussianRiverValley_Pinotnoir_TECHSheet.pdf',0,'attachment','application/pdf',0),(1205,2,'2022-11-23 15:18:16','2022-11-23 23:18:16','','Meadowcroft_Pinot_Noir_RRV_15_TECHSHEET','','inherit','closed','closed','','meadowcroft_pinot_noir_rrv_15_techsheet','','','2022-11-23 15:18:16','2022-11-23 23:18:16','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_Pinot_Noir_RRV_15_TECHSHEET.pdf',0,'attachment','application/pdf',0),(1206,2,'2022-11-23 15:18:18','2022-11-23 23:18:18','','Meadowcroft_PinotNoir_RRV15_BotteShot','','inherit','closed','closed','','meadowcroft_pinotnoir_rrv15_botteshot','','','2022-11-23 15:20:05','2022-11-23 23:20:05','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_PinotNoir_RRV15_BotteShot.jpeg',0,'attachment','image/jpeg',0),(1207,2,'2022-11-23 15:18:26','2022-11-23 23:18:26','','Meadowcroft_PinotNoir_RRV18_BotteShot','','inherit','closed','closed','','meadowcroft_pinotnoir_rrv18_botteshot','','','2022-11-23 15:20:27','2022-11-23 23:20:27','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_PinotNoir_RRV18_BotteShot.png',0,'attachment','image/png',0),(1208,2,'2022-11-23 15:24:11','2022-11-23 23:24:11','','2015-Russian-River-Pinot','','inherit','closed','closed','','2015-russian-river-pinot','','','2022-11-23 15:24:17','2022-11-23 23:24:17','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2015-Russian-River-Pinot.jpeg',0,'attachment','image/jpeg',0),(1209,2,'2022-11-23 15:26:26','2022-11-23 23:26:26','','Meadowcroft-_21_Pinot_Noir_AndersonValley-362x1024','','inherit','closed','closed','','meadowcroft-_21_pinot_noir_andersonvalley-362x1024','','','2022-11-23 15:26:49','2022-11-23 23:26:49','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-_21_Pinot_Noir_AndersonValley-362x1024-1.png',0,'attachment','image/png',0),(1210,2,'2022-11-23 15:28:33','2022-11-23 23:28:33','','MC_AndersonPinot2020','','inherit','closed','closed','','mc_andersonpinot2020','','','2022-11-23 15:29:45','2022-11-23 23:29:45','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_AndersonPinot2020.png',0,'attachment','image/png',0),(1211,2,'2022-11-23 15:28:41','2022-11-23 23:28:41','','Meadowcroft_Pinot_Noir_Anderson-Valley_15_bottleshot','','inherit','closed','closed','','meadowcroft_pinot_noir_anderson-valley_15_bottleshot','','','2022-11-23 15:30:09','2022-11-23 23:30:09','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_Pinot_Noir_Anderson-Valley_15_bottleshot.png',0,'attachment','image/png',0),(1212,2,'2022-11-23 15:28:51','2022-11-23 23:28:51','','Meadowcroft_Pinot_Noir_Anderson-Valley_16_bottleshot','','inherit','closed','closed','','meadowcroft_pinot_noir_anderson-valley_16_bottleshot','','','2022-11-23 15:30:32','2022-11-23 23:30:32','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_Pinot_Noir_Anderson-Valley_16_bottleshot.png',0,'attachment','image/png',0),(1213,2,'2022-11-23 15:29:02','2022-11-23 23:29:02','','Meadowcroft_PinotNoir_AndersonValley_2019','','inherit','closed','closed','','meadowcroft_pinotnoir_andersonvalley_2019','','','2022-11-23 15:30:51','2022-11-23 23:30:51','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_PinotNoir_AndersonValley_2019.png',0,'attachment','image/png',0),(1214,2,'2022-11-23 15:29:13','2022-11-23 23:29:13','','Meadowcroft_PiontNoir_AndersonValley_2018','','inherit','closed','closed','','meadowcroft_piontnoir_andersonvalley_2018','','','2022-11-23 15:31:11','2022-11-23 23:31:11','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_PiontNoir_AndersonValley_2018.png',0,'attachment','image/png',0),(1215,2,'2022-11-23 15:29:22','2022-11-23 23:29:22','','Meadowcroft-_21_Pinot_Noir_AndersonValley','','inherit','closed','closed','','meadowcroft-_21_pinot_noir_andersonvalley','','','2022-11-23 15:31:32','2022-11-23 23:31:32','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-_21_Pinot_Noir_AndersonValley.png',0,'attachment','image/png',0),(1216,2,'2022-11-23 15:31:57','2022-11-23 23:31:57','','MC_2021_AndersonValley_PinotNoir_TECHSheet','','inherit','closed','closed','','mc_2021_andersonvalley_pinotnoir_techsheet','','','2022-11-23 15:31:57','2022-11-23 23:31:57','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_2021_AndersonValley_PinotNoir_TECHSheet.pdf',0,'attachment','application/pdf',0),(1217,2,'2022-11-23 15:32:04','2022-11-23 23:32:04','','MC_AndersonPinot2020','','inherit','closed','closed','','mc_andersonpinot2020-2','','','2022-11-23 15:32:04','2022-11-23 23:32:04','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_AndersonPinot2020-1.png',0,'attachment','image/png',0),(1218,2,'2022-11-23 15:32:13','2022-11-23 23:32:13','','Meadowcroft_2018_PinotAnderson_TECHSheet','','inherit','closed','closed','','meadowcroft_2018_pinotanderson_techsheet','','','2022-11-23 15:32:13','2022-11-23 23:32:13','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018_PinotAnderson_TECHSheet.pdf',0,'attachment','application/pdf',0),(1219,2,'2022-11-23 15:32:15','2022-11-23 23:32:15','','Meadowcroft_2019PinotAnderson_TECHSheet (1)','','inherit','closed','closed','','meadowcroft_2019pinotanderson_techsheet-1','','','2022-11-23 15:32:15','2022-11-23 23:32:15','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2019PinotAnderson_TECHSheet-1.pdf',0,'attachment','application/pdf',0),(1220,2,'2022-11-23 15:32:17','2022-11-23 23:32:17','','Meadowcroft_2019PinotAnderson_TECHSheet','','inherit','closed','closed','','meadowcroft_2019pinotanderson_techsheet','','','2022-11-23 15:32:17','2022-11-23 23:32:17','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2019PinotAnderson_TECHSheet.pdf',0,'attachment','application/pdf',0),(1221,2,'2022-11-23 15:34:46','2022-11-23 23:34:46','','16PNNVLCv2_1','','inherit','closed','closed','','16pnnvlcv2_1','','','2022-11-23 15:36:33','2022-11-23 23:36:33','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/16PNNVLCv2_1.png',0,'attachment','image/png',0),(1222,2,'2022-11-23 15:34:50','2022-11-23 23:34:50','','2017_Cornerstone_CarnerosSonoma_PinotNoir','','inherit','closed','closed','','2017_cornerstone_carnerossonoma_pinotnoir','','','2022-11-23 15:36:55','2022-11-23 23:36:55','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2017_Cornerstone_CarnerosSonoma_PinotNoir.png',0,'attachment','image/png',0),(1223,2,'2022-11-23 15:34:59','2022-11-23 23:34:59','','Meadowcroft_Pinot_Noir_CarnerosNapa_15_bottleshot-1','','inherit','closed','closed','','meadowcroft_pinot_noir_carnerosnapa_15_bottleshot-1','','','2022-11-23 15:39:48','2022-11-23 23:39:48','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_Pinot_Noir_CarnerosNapa_15_bottleshot-1.png',0,'attachment','image/png',0),(1224,2,'2022-11-23 15:35:09','2022-11-23 23:35:09','','Meadowcroft_PinotNoir_Carneros_Napa_2021','','inherit','closed','closed','','meadowcroft_pinotnoir_carneros_napa_2021','','','2023-02-06 02:50:45','2023-02-06 10:50:45','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_PinotNoir_Carneros_Napa_2021.png',0,'attachment','image/png',0),(1225,2,'2022-11-23 15:35:41','2022-11-23 23:35:41','','Meadowcroft_2015NapaPinotnoir_TECHSheet','','inherit','closed','closed','','meadowcroft_2015napapinotnoir_techsheet','','','2022-11-23 15:35:41','2022-11-23 23:35:41','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2015NapaPinotnoir_TECHSheet.pdf',0,'attachment','application/pdf',0),(1226,2,'2022-11-23 15:35:43','2022-11-23 23:35:43','','Meadowcroft_2016NapaPinotnoir_TECHSheet','','inherit','closed','closed','','meadowcroft_2016napapinotnoir_techsheet','','','2022-11-23 15:35:43','2022-11-23 23:35:43','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2016NapaPinotnoir_TECHSheet.pdf',0,'attachment','application/pdf',0),(1227,2,'2022-11-23 15:35:45','2022-11-23 23:35:45','','Meadowcroft_2017_CornerstoneVineyard_Pinotnoir_TECHSheet','','inherit','closed','closed','','meadowcroft_2017_cornerstonevineyard_pinotnoir_techsheet','','','2022-11-23 15:35:45','2022-11-23 23:35:45','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017_CornerstoneVineyard_Pinotnoir_TECHSheet.pdf',0,'attachment','application/pdf',0),(1228,2,'2022-11-23 15:35:47','2022-11-23 23:35:47','','Meadowcroft_2021_NapaPinotnoir_TECHSheet','','inherit','closed','closed','','meadowcroft_2021_napapinotnoir_techsheet','','','2022-11-23 15:35:47','2022-11-23 23:35:47','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2021_NapaPinotnoir_TECHSheet.pdf',0,'attachment','application/pdf',0),(1229,2,'2022-11-23 15:41:46','2022-11-23 23:41:46','','Carneros-15','','inherit','closed','closed','','carneros-15','','','2022-11-23 15:41:56','2022-11-23 23:41:56','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Carneros-15.png',0,'attachment','image/png',0),(1230,2,'2022-11-23 15:43:24','2022-11-23 23:43:24','','Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024','','inherit','closed','closed','','meadowcroft_cabernetfranc_rivino_mendocino_2018-376x1024','','','2022-11-23 15:43:49','2022-11-23 23:43:49','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024-1.png',0,'attachment','image/png',0),(1231,2,'2022-11-23 15:44:32','2022-11-23 23:44:32','','Meadowcroft_2018CabernetFrancRivinoMendo_TECHSheet','','inherit','closed','closed','','meadowcroft_2018cabernetfrancrivinomendo_techsheet','','','2022-11-23 15:44:32','2022-11-23 23:44:32','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018CabernetFrancRivinoMendo_TECHSheet.pdf',0,'attachment','application/pdf',0),(1232,2,'2022-11-23 15:44:40','2022-11-23 23:44:40','','Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018','','inherit','closed','closed','','meadowcroft_cabernetfranc_rivino_mendocino_2018','','','2022-11-23 15:45:02','2022-11-23 23:45:02','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018.png',0,'attachment','image/png',0),(1233,2,'2022-11-23 15:46:08','2022-11-23 23:46:08','','16CHSCLC_T','','inherit','closed','closed','','16chsclc_t','','','2022-11-23 15:46:12','2022-11-23 23:46:12','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/16CHSCLC_T.png',0,'attachment','image/png',0),(1234,2,'2022-11-23 15:49:26','2022-11-23 23:49:26','','chard','','inherit','closed','closed','','chard','','','2022-11-23 15:49:26','2022-11-23 23:49:26','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/chard.png',0,'attachment','image/png',0),(1235,2,'2022-11-23 15:51:16','2022-11-23 23:51:16','','20_Chard_Sonoma_TaylorsCrown_TechSheet','','inherit','closed','closed','','20_chard_sonoma_taylorscrown_techsheet','','','2022-11-23 15:51:16','2022-11-23 23:51:16','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/20_Chard_Sonoma_TaylorsCrown_TechSheet.pdf',0,'attachment','application/pdf',0),(1236,2,'2022-11-23 15:51:19','2022-11-23 23:51:19','','20_Chard_TaylorsCrown_Bottleshot','','inherit','closed','closed','','20_chard_taylorscrown_bottleshot','','','2022-11-23 15:52:13','2022-11-23 23:52:13','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/20_Chard_TaylorsCrown_Bottleshot.png',0,'attachment','image/png',0),(1237,2,'2022-11-23 15:51:28','2022-11-23 23:51:28','','21_Chard_Sonoma_VinoDelSol_TechSheet','','inherit','closed','closed','','21_chard_sonoma_vinodelsol_techsheet','','','2022-11-23 15:51:28','2022-11-23 23:51:28','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/21_Chard_Sonoma_VinoDelSol_TechSheet.pdf',0,'attachment','application/pdf',0),(1238,2,'2022-11-23 15:51:31','2022-11-23 23:51:31','','21_Chard_Vinodelsol_SonomaCoast_bottleshot','','inherit','closed','closed','','21_chard_vinodelsol_sonomacoast_bottleshot','','','2022-11-23 15:52:36','2022-11-23 23:52:36','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/21_Chard_Vinodelsol_SonomaCoast_bottleshot.png',0,'attachment','image/png',0),(1239,2,'2022-11-23 15:51:41','2022-11-23 23:51:41','','MC2015_CH_SC_BottleShot','','inherit','closed','closed','','mc2015_ch_sc_bottleshot','','','2022-11-23 15:52:56','2022-11-23 23:52:56','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC2015_CH_SC_BottleShot.png',0,'attachment','image/png',0),(1240,2,'2022-11-23 15:51:47','2022-11-23 23:51:47','','Meadowcroft_2015SonomaCoastChard_TECHSheet','','inherit','closed','closed','','meadowcroft_2015sonomacoastchard_techsheet','','','2022-11-23 15:51:47','2022-11-23 23:51:47','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2015SonomaCoastChard_TECHSheet.pdf',0,'attachment','application/pdf',0),(1241,2,'2022-11-23 15:56:29','2022-11-23 23:56:29','','carneros-chard','','inherit','closed','closed','','carneros-chard','','','2022-11-23 15:56:44','2022-11-23 23:56:44','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/carneros-chard.png',0,'attachment','image/png',0),(1242,2,'2022-11-23 15:57:06','2022-11-23 23:57:06','','Meadowcroft_Chardonnay_NapaValley_Carneros_2019','','inherit','closed','closed','','meadowcroft_chardonnay_napavalley_carneros_2019','','','2022-11-23 15:57:28','2022-11-23 23:57:28','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_Chardonnay_NapaValley_Carneros_2019.png',0,'attachment','image/png',0),(1243,2,'2022-11-23 15:58:28','2022-11-23 23:58:28','','Meadowcroft_20_Chard_Napa_Carneros_BottleShot-','','inherit','closed','closed','','meadowcroft_20_chard_napa_carneros_bottleshot','','','2022-11-23 15:58:59','2022-11-23 23:58:59','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_20_Chard_Napa_Carneros_BottleShot-.png',0,'attachment','image/png',0),(1244,2,'2022-11-23 15:58:38','2022-11-23 23:58:38','','Meadowcroft_21_Chard_Napa_Carneros_BottleShot-','','inherit','closed','closed','','meadowcroft_21_chard_napa_carneros_bottleshot','','','2022-11-23 15:59:20','2022-11-23 23:59:20','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_21_Chard_Napa_Carneros_BottleShot-.png',0,'attachment','image/png',0),(1245,2,'2022-11-23 15:58:47','2022-11-23 23:58:47','','Meadowcroft_2019LosCarneros_NapaChard_TECHSheet','','inherit','closed','closed','','meadowcroft_2019loscarneros_napachard_techsheet','','','2022-11-23 15:58:47','2022-11-23 23:58:47','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2019LosCarneros_NapaChard_TECHSheet.pdf',0,'attachment','application/pdf',0),(1246,2,'2022-11-23 15:58:49','2022-11-23 23:58:49','','Meadowcroft_2020LosCarneros_NapaChard_TECHSheet','','inherit','closed','closed','','meadowcroft_2020loscarneros_napachard_techsheet','','','2022-11-23 15:58:49','2022-11-23 23:58:49','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2020LosCarneros_NapaChard_TECHSheet.pdf',0,'attachment','application/pdf',0),(1247,2,'2022-11-23 15:58:51','2022-11-23 23:58:51','','Meadowcroft_2021LosCarneros_NapaChard_TECHSheet','','inherit','closed','closed','','meadowcroft_2021loscarneros_napachard_techsheet','','','2022-11-23 15:58:51','2022-11-23 23:58:51','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2021LosCarneros_NapaChard_TECHSheet.pdf',0,'attachment','application/pdf',0),(1248,2,'2022-11-23 16:02:16','2022-11-24 00:02:16','','2015-Chardonnay','','inherit','closed','closed','','2015-chardonnay','','','2022-11-23 16:02:31','2022-11-24 00:02:31','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2015-Chardonnay.jpeg',0,'attachment','image/jpeg',0),(1249,2,'2022-11-23 16:04:49','2022-11-24 00:04:49','','MC2016_CH_SCTY_BottleShot-1','','inherit','closed','closed','','mc2016_ch_scty_bottleshot-1','','','2022-11-23 16:06:26','2022-11-24 00:06:26','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC2016_CH_SCTY_BottleShot-1.png',0,'attachment','image/png',0),(1250,2,'2022-11-23 16:05:04','2022-11-24 00:05:04','','Meadowcroft_2018_LosCarneros_Chardonnay-1','','inherit','closed','closed','','meadowcroft_2018_loscarneros_chardonnay-1','','','2022-11-23 16:06:51','2022-11-24 00:06:51','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018_LosCarneros_Chardonnay-1.png',0,'attachment','image/png',0),(1251,2,'2022-11-23 16:05:13','2022-11-24 00:05:13','','Meadowcroft_2018LosCarneros_SonomaChard_TECHSheet','','inherit','closed','closed','','meadowcroft_2018loscarneros_sonomachard_techsheet','','','2022-11-23 16:05:13','2022-11-24 00:05:13','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018LosCarneros_SonomaChard_TECHSheet.pdf',0,'attachment','application/pdf',0),(1252,2,'2022-11-23 16:05:16','2022-11-24 00:05:16','','Meadowcroft_2019_LosCarneros_Sonoma_Chardonnay','','inherit','closed','closed','','meadowcroft_2019_loscarneros_sonoma_chardonnay','','','2022-11-23 16:07:19','2022-11-24 00:07:19','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2019_LosCarneros_Sonoma_Chardonnay.png',0,'attachment','image/png',0),(1253,2,'2022-11-23 16:05:25','2022-11-24 00:05:25','','Meadowcroft_2019LosCarneros_SonomaChard_TECHSheet','','inherit','closed','closed','','meadowcroft_2019loscarneros_sonomachard_techsheet','','','2022-11-23 16:05:25','2022-11-24 00:05:25','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2019LosCarneros_SonomaChard_TECHSheet.pdf',0,'attachment','application/pdf',0),(1254,2,'2022-11-23 16:09:26','2022-11-24 00:09:26','','rrv-chard','','inherit','closed','closed','','rrv-chard','','','2022-11-23 16:09:37','2022-11-24 00:09:37','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/rrv-chard.png',0,'attachment','image/png',0),(1255,2,'2022-11-23 16:10:38','2022-11-24 00:10:38','','Meadowcroft_2021_AV_Mendo_TECHSheet-1','','inherit','closed','closed','','meadowcroft_2021_av_mendo_techsheet-1','','','2022-11-23 16:10:38','2022-11-24 00:10:38','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2021_AV_Mendo_TECHSheet-1.pdf',0,'attachment','application/pdf',0),(1256,2,'2022-11-23 16:10:45','2022-11-24 00:10:45','','Meadowcroft2016RRVChardonnayBottleShot','','inherit','closed','closed','','meadowcroft2016rrvchardonnaybottleshot','','','2022-11-23 16:11:07','2022-11-24 00:11:07','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft2016RRVChardonnayBottleShot.png',0,'attachment','image/png',0),(1257,2,'2022-11-23 16:13:04','2022-11-24 00:13:04','','Meadowcroft_21_Chard_AV_MENDOCINO_BottleShot_-1','','inherit','closed','closed','','meadowcroft_21_chard_av_mendocino_bottleshot_-1','','','2022-11-23 16:13:59','2022-11-24 00:13:59','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_21_Chard_AV_MENDOCINO_BottleShot_-1.png',0,'attachment','image/png',0),(1258,2,'2022-11-23 16:15:55','2022-11-24 00:15:55','','anderson-chard','','inherit','closed','closed','','anderson-chard','','','2022-11-23 16:15:58','2022-11-24 00:15:58','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/anderson-chard.png',0,'attachment','image/png',0),(1259,2,'2022-11-23 16:28:17','2022-11-24 00:28:17','','vio','','inherit','closed','closed','','vio','','','2022-11-23 16:28:29','2022-11-24 00:28:29','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/vio.png',0,'attachment','image/png',0),(1260,2,'2022-11-23 16:29:01','2022-11-24 00:29:01','','Meadowcroft_Viognier_15_Bottleshot','','inherit','closed','closed','','meadowcroft_viognier_15_bottleshot','','','2022-11-23 16:29:46','2022-11-24 00:29:46','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_Viognier_15_Bottleshot.png',0,'attachment','image/png',0),(1261,2,'2022-11-23 16:31:47','2022-11-24 00:31:47','','MC_2018_DryValleyCreek_LouvauVineyard_Viognier_TECHSheet','','inherit','closed','closed','','mc_2018_dryvalleycreek_louvauvineyard_viognier_techsheet','','','2022-11-23 16:31:47','2022-11-24 00:31:47','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_2018_DryValleyCreek_LouvauVineyard_Viognier_TECHSheet.pdf',0,'attachment','application/pdf',0),(1262,2,'2022-11-23 16:31:50','2022-11-24 00:31:50','','MC_2018_Viognier_Louvau_DryCreekValley','','inherit','closed','closed','','mc_2018_viognier_louvau_drycreekvalley','','','2022-11-23 16:32:33','2022-11-24 00:32:33','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_2018_Viognier_Louvau_DryCreekValley.png',0,'attachment','image/png',0),(1263,2,'2022-11-23 16:31:59','2022-11-24 00:31:59','','MC_2020_DryValleyCreek_LouvauVineyard_Viognier_TECHSheet','','inherit','closed','closed','','mc_2020_dryvalleycreek_louvauvineyard_viognier_techsheet','','','2022-11-23 16:31:59','2022-11-24 00:31:59','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_2020_DryValleyCreek_LouvauVineyard_Viognier_TECHSheet.pdf',0,'attachment','application/pdf',0),(1264,2,'2022-11-23 16:32:03','2022-11-24 00:32:03','','MC_VIOGNIER_2017','','inherit','closed','closed','','mc_viognier_2017','','','2022-11-23 16:33:43','2022-11-24 00:33:43','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_VIOGNIER_2017.png',0,'attachment','image/png',0),(1265,2,'2022-11-23 16:32:17','2022-11-24 00:32:17','','Meadowcroft_2015Viognier_TECHSheet','','inherit','closed','closed','','meadowcroft_2015viognier_techsheet','','','2022-11-23 16:32:17','2022-11-24 00:32:17','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2015Viognier_TECHSheet.pdf',0,'attachment','application/pdf',0),(1266,2,'2022-11-23 16:32:18','2022-11-24 00:32:18','','Meadowcroft_2017_DryValleuCreek_LouvauVineyard_Viognier_TECHSheet','','inherit','closed','closed','','meadowcroft_2017_dryvalleucreek_louvauvineyard_viognier_techsheet','','','2022-11-23 16:32:18','2022-11-24 00:32:18','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017_DryValleuCreek_LouvauVineyard_Viognier_TECHSheet.pdf',0,'attachment','application/pdf',0),(1267,2,'2022-11-23 16:32:21','2022-11-24 00:32:21','','Meadowcroft_2019_LouvauVineyard_DryCreekValley_Viognier','','inherit','closed','closed','','meadowcroft_2019_louvauvineyard_drycreekvalley_viognier','','','2022-11-23 16:32:40','2022-11-24 00:32:40','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2019_LouvauVineyard_DryCreekValley_Viognier.png',0,'attachment','image/png',0),(1268,2,'2022-11-23 16:32:31','2022-11-24 00:32:31','','Meadowcroft_2021_Viognier_WYLDVIN_BottleShot','','inherit','closed','closed','','meadowcroft_2021_viognier_wyldvin_bottleshot','','','2022-11-23 16:34:49','2022-11-24 00:34:49','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2021_Viognier_WYLDVIN_BottleShot.png',0,'attachment','image/png',0),(1269,2,'2022-11-23 16:32:40','2022-11-24 00:32:40','','Meadowcroft_2021_Viognier_WYLDVIN_Tech_Sheet-1','','inherit','closed','closed','','meadowcroft_2021_viognier_wyldvin_tech_sheet-1','','','2022-11-23 16:32:40','2022-11-24 00:32:40','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2021_Viognier_WYLDVIN_Tech_Sheet-1.pdf',0,'attachment','application/pdf',0),(1270,2,'2022-11-23 16:32:45','2022-11-24 00:32:45','','Meadowcroft_Viognier_16_Bottleshot','','inherit','closed','closed','','meadowcroft_viognier_16_bottleshot','','','2022-11-23 16:35:13','2022-11-24 00:35:13','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_Viognier_16_Bottleshot.png',0,'attachment','image/png',0),(1273,2,'2022-11-23 16:42:25','2022-11-24 00:42:25','','pinot-blanc','','inherit','closed','closed','','pinot-blanc','','','2022-11-23 16:42:50','2022-11-24 00:42:50','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/pinot-blanc.png',0,'attachment','image/png',0),(1274,2,'2022-11-23 16:43:16','2022-11-24 00:43:16','','2020_Pinot_Blanc_Bottleshot-1','','inherit','closed','closed','','2020_pinot_blanc_bottleshot-1','','','2022-11-23 16:43:36','2022-11-24 00:43:36','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2020_Pinot_Blanc_Bottleshot-1.png',0,'attachment','image/png',0),(1275,2,'2022-11-23 16:43:29','2022-11-24 00:43:29','','2021_Pinot_Blanc_Bottleshot-1','','inherit','closed','closed','','2021_pinot_blanc_bottleshot-1','','','2022-11-23 16:44:01','2022-11-24 00:44:01','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2021_Pinot_Blanc_Bottleshot-1.png',0,'attachment','image/png',0),(1276,2,'2022-11-23 16:44:23','2022-11-24 00:44:23','','MC_2020_Pinot-Blanc_RivinoVNYD_Mendocino_TECHSheet-1','','inherit','closed','closed','','mc_2020_pinot-blanc_rivinovnyd_mendocino_techsheet-1','','','2022-11-23 16:44:23','2022-11-24 00:44:23','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_2020_Pinot-Blanc_RivinoVNYD_Mendocino_TECHSheet-1.pdf',0,'attachment','application/pdf',0),(1277,2,'2022-11-23 16:44:26','2022-11-24 00:44:26','','Meadowcroft_2021_Pinot_Blanc_Mendocino_Tech_Sheet-1','','inherit','closed','closed','','meadowcroft_2021_pinot_blanc_mendocino_tech_sheet-1','','','2022-11-23 16:44:26','2022-11-24 00:44:26','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2021_Pinot_Blanc_Mendocino_Tech_Sheet-1.pdf',0,'attachment','application/pdf',0),(1278,2,'2022-11-23 16:46:21','2022-11-24 00:46:21','','MC_Roussanne_2016_BottleShot-329x1024','','inherit','closed','closed','','mc_roussanne_2016_bottleshot-329x1024','','','2022-11-23 16:46:41','2022-11-24 00:46:41','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_Roussanne_2016_BottleShot-329x1024-1.png',0,'attachment','image/png',0),(1279,2,'2022-11-23 16:49:37','2022-11-24 00:49:37','','MC_15_Roussanne_BottleShot','','inherit','closed','closed','','mc_15_roussanne_bottleshot','','','2022-11-23 16:52:36','2022-11-24 00:52:36','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_15_Roussanne_BottleShot.png',0,'attachment','image/png',0),(1280,2,'2022-11-23 16:49:53','2022-11-24 00:49:53','','MC_Roussanne_2016_BottleShot-329x1024','','inherit','closed','closed','','mc_roussanne_2016_bottleshot-329x1024-2','','','2022-11-23 16:52:41','2022-11-24 00:52:41','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_Roussanne_2016_BottleShot-329x1024-2.png',0,'attachment','image/png',0),(1282,2,'2022-11-23 16:50:20','2022-11-24 00:50:20','','MC_ROUSSANNE_2017','','inherit','closed','closed','','mc_roussanne_2017','','','2022-11-23 16:53:12','2022-11-24 00:53:12','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_ROUSSANNE_2017.png',0,'attachment','image/png',0),(1283,2,'2022-11-23 16:50:35','2022-11-24 00:50:35','','MC_Roussanne_2020_Bottleshot_png','','inherit','closed','closed','','mc_roussanne_2020_bottleshot_png','','','2022-11-23 16:53:18','2022-11-24 00:53:18','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_Roussanne_2020_Bottleshot_png.png',0,'attachment','image/png',0),(1284,2,'2022-11-23 16:50:45','2022-11-24 00:50:45','','MC_Roussanne_2021_Bottleshot','','inherit','closed','closed','','mc_roussanne_2021_bottleshot','','','2022-11-23 16:53:25','2022-11-24 00:53:25','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_Roussanne_2021_Bottleshot.png',0,'attachment','image/png',0),(1285,2,'2022-11-23 16:50:56','2022-11-24 00:50:56','','MC_Roussanne_Louvau_DryCreekValley','','inherit','closed','closed','','mc_roussanne_louvau_drycreekvalley','','','2022-11-23 16:53:32','2022-11-24 00:53:32','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_Roussanne_Louvau_DryCreekValley.png',0,'attachment','image/png',0),(1286,2,'2022-11-23 16:51:07','2022-11-24 00:51:07','','Meadowcroft_Roussanne_DCV_LouvauVineyard_2019','','inherit','closed','closed','','meadowcroft_roussanne_dcv_louvauvineyard_2019','','','2022-11-23 16:53:38','2022-11-24 00:53:38','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_Roussanne_DCV_LouvauVineyard_2019.png',0,'attachment','image/png',0),(1287,2,'2022-11-23 16:52:01','2022-11-24 00:52:01','','MC_2018_Roussanne_Louvau_DryCreekValley_TECHSheet-update','','inherit','closed','closed','','mc_2018_roussanne_louvau_drycreekvalley_techsheet-update','','','2022-11-23 16:52:01','2022-11-24 00:52:01','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_2018_Roussanne_Louvau_DryCreekValley_TECHSheet-update.pdf',0,'attachment','application/pdf',0),(1288,2,'2022-11-23 16:52:03','2022-11-24 00:52:03','','MC_2019_Roussanne_Louvau_DryCreekValley_TECHSheet','','inherit','closed','closed','','mc_2019_roussanne_louvau_drycreekvalley_techsheet','','','2022-11-23 16:52:03','2022-11-24 00:52:03','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_2019_Roussanne_Louvau_DryCreekValley_TECHSheet.pdf',0,'attachment','application/pdf',0),(1289,2,'2022-11-23 16:52:05','2022-11-24 00:52:05','','MC_2020_Roussanne_Louvau_DryCreekValley_TECHSheet','','inherit','closed','closed','','mc_2020_roussanne_louvau_drycreekvalley_techsheet','','','2022-11-23 16:52:05','2022-11-24 00:52:05','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_2020_Roussanne_Louvau_DryCreekValley_TECHSheet.pdf',0,'attachment','application/pdf',0),(1290,2,'2022-11-23 16:52:07','2022-11-24 00:52:07','','Meadowcroft_2016DryVCreekRoussanne_TECHSheet','','inherit','closed','closed','','meadowcroft_2016dryvcreekroussanne_techsheet','','','2022-11-23 16:52:07','2022-11-24 00:52:07','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2016DryVCreekRoussanne_TECHSheet.pdf',0,'attachment','application/pdf',0),(1291,2,'2022-11-23 16:52:09','2022-11-24 00:52:09','','Meadowcroft_2017DryVCreekRoussanne_TECHSheet','','inherit','closed','closed','','meadowcroft_2017dryvcreekroussanne_techsheet','','','2022-11-23 16:52:09','2022-11-24 00:52:09','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017DryVCreekRoussanne_TECHSheet.pdf',0,'attachment','application/pdf',0),(1292,2,'2022-11-23 16:52:10','2022-11-24 00:52:10','','Meadowcroft_2021_Roussanne_Mendocino_Tech_Sheet','','inherit','closed','closed','','meadowcroft_2021_roussanne_mendocino_tech_sheet','','','2022-11-23 16:52:10','2022-11-24 00:52:10','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2021_Roussanne_Mendocino_Tech_Sheet.pdf',0,'attachment','application/pdf',0),(1293,2,'2022-11-23 16:52:15','2022-11-24 00:52:15','','Rousanne_Tech','','inherit','closed','closed','','rousanne_tech','','','2022-11-23 16:52:15','2022-11-24 00:52:15','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Rousanne_Tech.pdf',0,'attachment','application/pdf',0),(1294,2,'2022-11-23 16:59:44','2022-11-24 00:59:44','','sauvignon-blanc','','inherit','closed','closed','','sauvignon-blanc','','','2022-11-23 16:59:56','2022-11-24 00:59:56','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/sauvignon-blanc.png',0,'attachment','image/png',0),(1295,2,'2022-11-24 08:46:45','2022-11-24 16:46:45','','Meadowcroft_2019SonomaCoastSauvBlanc_TECHSheet','','inherit','closed','closed','','meadowcroft_2019sonomacoastsauvblanc_techsheet','','','2022-11-24 08:46:45','2022-11-24 16:46:45','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2019SonomaCoastSauvBlanc_TECHSheet.pdf',0,'attachment','application/pdf',0),(1296,2,'2022-11-24 08:46:47','2022-11-24 16:46:47','','Meadowcroft_2020SonomaCoastSauvBlanc_TECHSheet','','inherit','closed','closed','','meadowcroft_2020sonomacoastsauvblanc_techsheet','','','2022-11-24 08:46:47','2022-11-24 16:46:47','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2020SonomaCoastSauvBlanc_TECHSheet.pdf',0,'attachment','application/pdf',0),(1297,2,'2022-11-24 08:46:49','2022-11-24 16:46:49','','Meadowcroft_2021SonomaCoastSauvBlanc_TECHSheet','','inherit','closed','closed','','meadowcroft_2021sonomacoastsauvblanc_techsheet','','','2022-11-24 08:46:49','2022-11-24 16:46:49','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2021SonomaCoastSauvBlanc_TECHSheet.pdf',0,'attachment','application/pdf',0),(1298,2,'2022-11-24 08:46:51','2022-11-24 16:46:51','','Meadowcroft_SauvBlanc_2016_BottleShot (1)','','inherit','closed','closed','','meadowcroft_sauvblanc_2016_bottleshot-1','','','2022-11-24 08:47:29','2022-11-24 16:47:29','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_SauvBlanc_2016_BottleShot-1.png',0,'attachment','image/png',0),(1300,2,'2022-11-24 08:47:05','2022-11-24 16:47:05','','Meadowcroft_SauvBlanc_SonomaCoast_2019','','inherit','closed','closed','','meadowcroft_sauvblanc_sonomacoast_2019','','','2022-11-24 08:47:49','2022-11-24 16:47:49','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_SauvBlanc_SonomaCoast_2019.png',0,'attachment','image/png',0),(1301,2,'2022-11-24 08:47:11','2022-11-24 16:47:11','','Meadowcroft_SauvBlanc_SonomaCoast_2020','','inherit','closed','closed','','meadowcroft_sauvblanc_sonomacoast_2020','','','2022-11-24 08:47:57','2022-11-24 16:47:57','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_SauvBlanc_SonomaCoast_2020.png',0,'attachment','image/png',0),(1302,2,'2022-11-24 08:47:16','2022-11-24 16:47:16','','Meadowcroft_SauvBlanc_SonomaCoast_2021','','inherit','closed','closed','','meadowcroft_sauvblanc_sonomacoast_2021','','','2022-11-24 08:48:04','2022-11-24 16:48:04','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_SauvBlanc_SonomaCoast_2021.png',0,'attachment','image/png',0),(1303,2,'2022-11-24 08:54:59','2022-11-24 16:54:59','','2015-Riesling','','inherit','closed','closed','','2015-riesling','','','2022-11-24 08:55:08','2022-11-24 16:55:08','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/2015-Riesling.jpeg',0,'attachment','image/jpeg',0),(1304,2,'2022-11-24 08:58:13','2022-11-24 16:58:13','','15Riesling_Tech','','inherit','closed','closed','','15riesling_tech','','','2022-11-24 08:58:13','2022-11-24 16:58:13','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/15Riesling_Tech.pdf',0,'attachment','application/pdf',0),(1305,2,'2022-11-24 08:58:15','2022-11-24 16:58:15','','MC15_Riesling_BottleShot','','inherit','closed','closed','','mc15_riesling_bottleshot','','','2022-11-24 09:04:06','2022-11-24 17:04:06','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC15_Riesling_BottleShot.jpeg',0,'attachment','image/jpeg',0),(1306,2,'2022-11-24 08:58:22','2022-11-24 16:58:22','','MC17_Riesling_BottleShot_warm_dh','','inherit','closed','closed','','mc17_riesling_bottleshot_warm_dh','','','2022-11-24 09:04:13','2022-11-24 17:04:13','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC17_Riesling_BottleShot_warm_dh.png',0,'attachment','image/png',0),(1307,2,'2022-11-24 08:58:46','2022-11-24 16:58:46','','MC18_Riesling_BottleShot','','inherit','closed','closed','','mc18_riesling_bottleshot','','','2022-11-24 09:04:20','2022-11-24 17:04:20','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC18_Riesling_BottleShot.png',0,'attachment','image/png',0),(1308,2,'2022-11-24 08:59:10','2022-11-24 16:59:10','','Meadowcroft_2016Riesling_TECHSheet','','inherit','closed','closed','','meadowcroft_2016riesling_techsheet','','','2022-11-24 08:59:10','2022-11-24 16:59:10','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2016Riesling_TECHSheet.pdf',0,'attachment','application/pdf',0),(1309,2,'2022-11-24 08:59:12','2022-11-24 16:59:12','','Meadowcroft_2017Riesling_TECHSheet','','inherit','closed','closed','','meadowcroft_2017riesling_techsheet','','','2022-11-24 08:59:12','2022-11-24 16:59:12','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017Riesling_TECHSheet.pdf',0,'attachment','application/pdf',0),(1310,2,'2022-11-24 08:59:14','2022-11-24 16:59:14','','Meadowcroft_2018Riesling_TECHSheet','','inherit','closed','closed','','meadowcroft_2018riesling_techsheet','','','2022-11-24 08:59:14','2022-11-24 16:59:14','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018Riesling_TECHSheet.pdf',0,'attachment','application/pdf',0),(1311,2,'2022-11-24 09:05:36','2022-11-24 17:05:36','','15Riesling_Tech','','inherit','closed','closed','','15riesling_tech-2','','','2022-11-24 09:05:36','2022-11-24 17:05:36','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/15Riesling_Tech-1.pdf',0,'attachment','application/pdf',0),(1312,2,'2022-11-24 09:05:37','2022-11-24 17:05:37','','16RIMDNV_1','','inherit','closed','closed','','16rimdnv_1','','','2022-11-24 09:05:44','2022-11-24 17:05:44','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/16RIMDNV_1.png',0,'attachment','image/png',0),(1313,2,'2022-11-24 09:09:44','2022-11-24 17:09:44','','MC_FrenchColombard2021_Bottleshot-281x1024','','inherit','closed','closed','','mc_frenchcolombard2021_bottleshot-281x1024','','','2022-11-24 09:10:07','2022-11-24 17:10:07','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_FrenchColombard2021_Bottleshot-281x1024-1.png',0,'attachment','image/png',0),(1314,2,'2022-11-24 09:12:19','2022-11-24 17:12:19','','MC_2018_FrenchColombard_BottleShot','','inherit','closed','closed','','mc_2018_frenchcolombard_bottleshot','','','2022-11-24 09:19:10','2022-11-24 17:19:10','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_2018_FrenchColombard_BottleShot.png',0,'attachment','image/png',0),(1315,2,'2022-11-24 09:12:26','2022-11-24 17:12:26','','MC_FrenchColombard_2016_bottleshot','','inherit','closed','closed','','mc_frenchcolombard_2016_bottleshot','','','2022-11-24 09:19:19','2022-11-24 17:19:19','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_FrenchColombard_2016_bottleshot.png',0,'attachment','image/png',0),(1316,2,'2022-11-24 09:12:33','2022-11-24 17:12:33','','MC_FrenchColombard2019_Bottleshot','','inherit','closed','closed','','mc_frenchcolombard2019_bottleshot','','','2022-11-24 09:19:28','2022-11-24 17:19:28','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_FrenchColombard2019_Bottleshot.png',0,'attachment','image/png',0),(1317,2,'2022-11-24 09:12:36','2022-11-24 17:12:36','','MC_FrenchColombard2021_Bottleshot','','inherit','closed','closed','','mc_frenchcolombard2021_bottleshot','','','2022-11-24 09:19:39','2022-11-24 17:19:39','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_FrenchColombard2021_Bottleshot.png',0,'attachment','image/png',0),(1318,2,'2022-11-24 09:12:41','2022-11-24 17:12:41','','MC_FRENCHCOLUMBARD_2017','','inherit','closed','closed','','mc_frenchcolumbard_2017','','','2022-11-24 09:19:45','2022-11-24 17:19:45','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_FRENCHCOLUMBARD_2017.png',0,'attachment','image/png',0),(1319,2,'2022-11-24 09:12:45','2022-11-24 17:12:45','','Meadowcroft_2017RussianRiverFrenchColombard_TECHSheet','','inherit','closed','closed','','meadowcroft_2017russianriverfrenchcolombard_techsheet','','','2022-11-24 09:12:45','2022-11-24 17:12:45','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017RussianRiverFrenchColombard_TECHSheet.pdf',0,'attachment','application/pdf',0),(1320,2,'2022-11-24 09:12:46','2022-11-24 17:12:46','','Meadowcroft_2018RussianRiverFrenchColombard_TECHSheet','','inherit','closed','closed','','meadowcroft_2018russianriverfrenchcolombard_techsheet','','','2022-11-24 09:12:46','2022-11-24 17:12:46','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018RussianRiverFrenchColombard_TECHSheet.pdf',0,'attachment','application/pdf',0),(1321,2,'2022-11-24 09:12:49','2022-11-24 17:12:49','','Meadowcroft_2019RussianRiverFrenchColombard_TECHSheet','','inherit','closed','closed','','meadowcroft_2019russianriverfrenchcolombard_techsheet','','','2022-11-24 09:12:49','2022-11-24 17:12:49','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2019RussianRiverFrenchColombard_TECHSheet.pdf',0,'attachment','application/pdf',0),(1322,2,'2022-11-24 09:12:51','2022-11-24 17:12:51','','Meadowcroft_2021RussianRiverFrenchColombard_TECHSheet','','inherit','closed','closed','','meadowcroft_2021russianriverfrenchcolombard_techsheet','','','2022-11-24 09:12:51','2022-11-24 17:12:51','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2021RussianRiverFrenchColombard_TECHSheet.pdf',0,'attachment','application/pdf',0),(1323,2,'2022-11-24 09:12:54','2022-11-24 17:12:54','','Sunset_FrenchColombard16_Roussanne16_BestofClass-1','','inherit','closed','closed','','sunset_frenchcolombard16_roussanne16_bestofclass-1','','','2022-11-24 09:12:54','2022-11-24 17:12:54','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Sunset_FrenchColombard16_Roussanne16_BestofClass-1.pdf',0,'attachment','application/pdf',0),(1324,2,'2022-11-24 09:24:16','2022-11-24 17:24:16','','MC_21_PinotGris_BottleShot-281x1024','','inherit','closed','closed','','mc_21_pinotgris_bottleshot-281x1024','','','2022-11-24 09:24:29','2022-11-24 17:24:29','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_21_PinotGris_BottleShot-281x1024-1.png',0,'attachment','image/png',0),(1325,2,'2022-11-24 09:25:26','2022-11-24 17:25:26','','MC_21_PinotGris_BottleShot','','inherit','closed','closed','','mc_21_pinotgris_bottleshot','','','2022-11-24 09:25:35','2022-11-24 17:25:35','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_21_PinotGris_BottleShot.png',0,'attachment','image/png',0),(1326,2,'2022-11-24 09:25:32','2022-11-24 17:25:32','','Meadowcroft_2021_Pinot_Gris_Mendocino_Tech_Sheet','','inherit','closed','closed','','meadowcroft_2021_pinot_gris_mendocino_tech_sheet','','','2022-11-24 09:25:32','2022-11-24 17:25:32','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2021_Pinot_Gris_Mendocino_Tech_Sheet.pdf',0,'attachment','application/pdf',0),(1327,2,'2022-11-24 09:27:10','2022-11-24 17:27:10','','Meadowcroft_NV_NapaValleyBlancdeBlancs_TECHSheet-deanna@meadowcroftwines.com_','','inherit','closed','closed','','meadowcroft_nv_napavalleyblancdeblancs_techsheet-deannameadowcroftwines-com_','','','2022-11-24 09:27:10','2022-11-24 17:27:10','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_NV_NapaValleyBlancdeBlancs_TECHSheet-deanna@meadowcroftwines.com_.pdf',0,'attachment','application/pdf',0),(1328,2,'2022-11-24 09:27:12','2022-11-24 17:27:12','','Meadowcroft-Sparkling-Bottle-shot','','inherit','closed','closed','','meadowcroft-sparkling-bottle-shot','','','2022-11-24 09:27:55','2022-11-24 17:27:55','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-Sparkling-Bottle-shot.png',0,'attachment','image/png',0),(1329,2,'2022-11-24 09:28:39','2022-11-24 17:28:39','','Meadowcroft-Sparkling-Bottle-shot','','inherit','closed','closed','','meadowcroft-sparkling-bottle-shot-2','','','2022-11-24 09:28:44','2022-11-24 17:28:44','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-Sparkling-Bottle-shot-1.png',0,'attachment','image/png',0),(1330,2,'2022-11-24 09:33:13','2022-11-24 17:33:13','','rose-of-malbec','','inherit','closed','closed','','rose-of-malbec','','','2022-11-24 09:33:30','2022-11-24 17:33:30','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/rose-of-malbec.png',0,'attachment','image/png',0),(1331,2,'2022-11-24 09:33:47','2022-11-24 17:33:47','','MC_Malbec_Rose_2020_BottleShot','','inherit','closed','closed','','mc_malbec_rose_2020_bottleshot','','','2022-11-24 09:34:19','2022-11-24 17:34:19','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_Malbec_Rose_2020_BottleShot.png',0,'attachment','image/png',0),(1332,2,'2022-11-24 09:33:53','2022-11-24 17:33:53','','MC_ROSE_17','','inherit','closed','closed','','mc_rose_17','','','2022-11-24 09:34:24','2022-11-24 17:34:24','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_ROSE_17.png',0,'attachment','image/png',0),(1333,2,'2022-11-24 09:33:59','2022-11-24 17:33:59','','MC_ROSE_18','','inherit','closed','closed','','mc_rose_18','','','2022-11-24 09:34:30','2022-11-24 17:34:30','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_ROSE_18.png',0,'attachment','image/png',0),(1334,2,'2022-11-24 09:34:04','2022-11-24 17:34:04','','MC_Rose_2016_BottleShot','','inherit','closed','closed','','mc_rose_2016_bottleshot','','','2022-11-24 09:34:39','2022-11-24 17:34:39','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_Rose_2016_BottleShot.png',0,'attachment','image/png',0),(1335,2,'2022-11-24 09:34:11','2022-11-24 17:34:11','','Meadowcroft_2016Rose_TECHSheet','','inherit','closed','closed','','meadowcroft_2016rose_techsheet','','','2022-11-24 09:34:11','2022-11-24 17:34:11','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2016Rose_TECHSheet.pdf',0,'attachment','application/pdf',0),(1336,2,'2022-11-24 09:34:13','2022-11-24 17:34:13','','Meadowcroft_2017Rose_TECHSheet','','inherit','closed','closed','','meadowcroft_2017rose_techsheet','','','2022-11-24 09:34:13','2022-11-24 17:34:13','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2017Rose_TECHSheet.pdf',0,'attachment','application/pdf',0),(1337,2,'2022-11-24 09:34:15','2022-11-24 17:34:15','','Meadowcroft_2018Rose_TECHSheet','','inherit','closed','closed','','meadowcroft_2018rose_techsheet','','','2022-11-24 09:34:15','2022-11-24 17:34:15','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2018Rose_TECHSheet.pdf',0,'attachment','application/pdf',0),(1338,2,'2022-11-24 09:34:16','2022-11-24 17:34:16','','Meadowcroft_2020Rose_TECHSheet','','inherit','closed','closed','','meadowcroft_2020rose_techsheet','','','2022-11-24 09:34:16','2022-11-24 17:34:16','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2020Rose_TECHSheet.pdf',0,'attachment','application/pdf',0),(1339,2,'2022-11-24 09:38:39','2022-11-24 17:38:39','','MC_Pinot_Rose_2020_BottleShot','','inherit','closed','closed','','mc_pinot_rose_2020_bottleshot','','','2022-11-24 09:39:58','2022-11-24 17:39:58','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_Pinot_Rose_2020_BottleShot.png',0,'attachment','image/png',0),(1340,2,'2022-11-24 09:38:46','2022-11-24 17:38:46','','Meadowcroft_2019RoseSC_TECHSheet','','inherit','closed','closed','','meadowcroft_2019rosesc_techsheet','','','2022-11-24 09:38:46','2022-11-24 17:38:46','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2019RoseSC_TECHSheet.pdf',0,'attachment','application/pdf',0),(1341,2,'2022-11-24 09:38:49','2022-11-24 17:38:49','','Meadowcroft_2020RoseSC_TECHSheet','','inherit','closed','closed','','meadowcroft_2020rosesc_techsheet','','','2022-11-24 09:38:49','2022-11-24 17:38:49','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2020RoseSC_TECHSheet.pdf',0,'attachment','application/pdf',0),(1342,2,'2022-11-24 09:38:52','2022-11-24 17:38:52','','Meadowcroft_2021_Rose_Somoma-Coast_TechSheet','','inherit','closed','closed','','meadowcroft_2021_rose_somoma-coast_techsheet','','','2022-11-24 09:38:52','2022-11-24 17:38:52','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2021_Rose_Somoma-Coast_TechSheet.pdf',0,'attachment','application/pdf',0),(1343,2,'2022-11-24 09:38:55','2022-11-24 17:38:55','','Meadowcroft_2021_Rose_Sonoma-Coast_BottleShot','','inherit','closed','closed','','meadowcroft_2021_rose_sonoma-coast_bottleshot','','','2022-11-24 09:39:52','2022-11-24 17:39:52','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2021_Rose_Sonoma-Coast_BottleShot.png',0,'attachment','image/png',0),(1344,2,'2022-11-24 09:39:30','2022-11-24 17:39:30','','rose-of-pinot-noir','','inherit','closed','closed','','rose-of-pinot-noir','','','2022-11-24 09:40:10','2022-11-24 17:40:10','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/rose-of-pinot-noir.png',0,'attachment','image/png',0),(1345,2,'2022-11-24 09:44:17','2022-11-24 17:44:17','','gsm-rose','','inherit','closed','closed','','gsm-rose','','','2022-11-24 09:44:37','2022-11-24 17:44:37','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/gsm-rose.png',0,'attachment','image/png',0),(1346,2,'2022-11-24 09:44:59','2022-11-24 17:44:59','','MC_GSM_Rose_2021_BottleShot-1','','inherit','closed','closed','','mc_gsm_rose_2021_bottleshot-1','','','2022-11-24 09:45:10','2022-11-24 17:45:10','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/MC_GSM_Rose_2021_BottleShot-1.png',0,'attachment','image/png',0),(1347,2,'2022-11-24 09:45:06','2022-11-24 17:45:06','','Meadowcroft_2021RoseGSM_TECHSheet-1','','inherit','closed','closed','','meadowcroft_2021rosegsm_techsheet-1','','','2022-11-24 09:45:06','2022-11-24 17:45:06','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft_2021RoseGSM_TECHSheet-1.pdf',0,'attachment','application/pdf',0),(1348,2,'2022-11-24 09:46:41','2022-11-24 17:46:41','','ALL-SHE-WROTE_tastingnotes_Website','','inherit','closed','closed','','all-she-wrote_tastingnotes_website','','','2022-11-24 09:46:41','2022-11-24 17:46:41','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/ALL-SHE-WROTE_tastingnotes_Website.pdf',0,'attachment','application/pdf',0),(1349,2,'2022-11-24 09:46:44','2022-11-24 17:46:44','','All-She-Wrote-Wax','','inherit','closed','closed','','all-she-wrote-wax','','','2022-11-24 09:47:09','2022-11-24 17:47:09','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/All-She-Wrote-Wax.png',0,'attachment','image/png',0),(1350,2,'2022-11-24 09:47:50','2022-11-24 17:47:50','','All-She-Wrote-Wax-e1647036764264-468x1024','','inherit','closed','closed','','all-she-wrote-wax-e1647036764264-468x1024','','','2022-11-24 09:48:07','2022-11-24 17:48:07','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/All-She-Wrote-Wax-e1647036764264-468x1024-1.png',0,'attachment','image/png',0),(1351,2,'2022-11-24 09:49:56','2022-11-24 17:49:56','','NV-Let_It_Bee_Bottleshot','','inherit','closed','closed','','nv-let_it_bee_bottleshot','','','2022-11-24 09:50:12','2022-11-24 17:50:12','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/NV-Let_It_Bee_Bottleshot.png',0,'attachment','image/png',0),(1352,2,'2022-11-24 09:50:52','2022-11-24 17:50:52','','NV_Let-It-Bee-White-Port_-TechSheet','','inherit','closed','closed','','nv_let-it-bee-white-port_-techsheet','','','2022-11-24 09:50:52','2022-11-24 17:50:52','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/NV_Let-It-Bee-White-Port_-TechSheet.pdf',0,'attachment','application/pdf',0),(1353,2,'2022-11-24 09:50:54','2022-11-24 17:50:54','','NV-Let_It_Bee_Bottleshot','','inherit','closed','closed','','nv-let_it_bee_bottleshot-2','','','2022-11-24 09:55:20','2022-11-24 17:55:20','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/NV-Let_It_Bee_Bottleshot-1.png',0,'attachment','image/png',0),(1355,2,'2022-11-29 16:20:42','2022-11-30 00:20:42','','Honeycomb-Light-Gold4','','inherit','closed','closed','','honeycomb-light-gold4','','','2022-11-29 16:20:42','2022-11-30 00:20:42','',431,'https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Honeycomb-Light-Gold4.jpg',0,'attachment','image/jpeg',0),(1364,2,'2022-12-01 07:03:25','2022-12-01 15:03:25','','AdobeStock_231441408-scaled-e1652740260293.jpeg','','inherit','closed','closed','','adobestock_231441408-scaled-e1652740260293-jpeg','','','2022-12-01 07:03:25','2022-12-01 15:03:25','',0,'https://www.meadowcroftwines.com/events/summer-music-series-presented-by-cornerstone-sonoma/adobestock_231441408-scaled-e1652740260293-jpeg/',0,'attachment','image/jpeg',0),(1368,2,'2022-12-01 07:03:30','2022-12-01 15:03:30','','Untitled-design-5.png','','inherit','closed','closed','','untitled-design-5-png','','','2022-12-01 07:03:30','2022-12-01 15:03:30','',0,'https://www.meadowcroftwines.com/events/live-from-the-hive/untitled-design-5-png/',0,'attachment','image/png',0),(1370,2,'2022-12-01 07:03:33','2022-12-01 15:03:33','','Sunset-Gardens-3-e1643922567679.jpg','','inherit','closed','closed','','sunset-gardens-3-e1643922567679-jpg','','','2022-12-01 07:03:33','2022-12-01 15:03:33','',0,'https://www.meadowcroftwines.com/events/member-spring-wine-release-party/sunset-gardens-3-e1643922567679-jpg/',0,'attachment','image/jpeg',0),(1372,2,'2022-12-01 07:03:35','2022-12-01 15:03:35','','ClubSurvey_2018_BeginImage.png','','inherit','closed','closed','','clubsurvey_2018_beginimage-png','','','2022-12-01 07:03:35','2022-12-01 15:03:35','',0,'https://www.meadowcroftwines.com/events/race-weekend-exclusives/clubsurvey_2018_beginimage-png/',0,'attachment','image/png',0),(1382,2,'2022-12-01 07:03:48','2022-12-01 15:03:48','','BRP-37-scaled.jpg','','inherit','closed','closed','','brp-37-scaled-jpg','','','2022-12-01 07:03:48','2022-12-01 15:03:48','',0,'https://www.meadowcroftwines.com/events/taste-of-sonoma/brp-37-scaled-jpg/',0,'attachment','image/jpeg',0),(1384,2,'2022-12-01 07:03:52','2022-12-01 15:03:52','','IMG_7734-scaled.jpg','','inherit','closed','closed','','img_7734-scaled-jpg','','','2022-12-01 07:03:52','2022-12-01 15:03:52','',0,'https://www.meadowcroftwines.com/events/blooms-bees-sip-paint/img_7734-scaled-jpg/',0,'attachment','image/jpeg',0),(1386,2,'2022-12-01 07:03:56','2022-12-01 15:03:56','','IMG_0031_1.png','','inherit','closed','closed','','img_0031_1-png','','','2022-12-01 07:03:56','2022-12-01 15:03:56','',0,'https://www.meadowcroftwines.com/events/8th-annual-halloween-wine-candy-pairing/img_0031_1-png/',0,'attachment','image/png',0),(1388,2,'2022-12-01 07:03:58','2022-12-01 15:03:58','','B1CFC460-86A1-46F7-9872-84E6343E2F53_1_105_c.jpeg','','inherit','closed','closed','','b1cfc460-86a1-46f7-9872-84e6343e2f53_1_105_c-jpeg','','','2022-12-01 07:03:58','2022-12-01 15:03:58','',0,'https://www.meadowcroftwines.com/events/extend-summer-with-zinfandel-weekends/b1cfc460-86a1-46f7-9872-84e6343e2f53_1_105_c-jpeg/',0,'attachment','image/jpeg',0),(1390,2,'2022-12-01 07:04:01','2022-12-01 15:04:01','','7.2021_Image1Productpng.png','','inherit','closed','closed','','7-2021_image1productpng-png','','','2022-12-01 07:04:01','2022-12-01 15:04:01','',0,'https://www.meadowcroftwines.com/events/meadowcroft-wines-folktable-harvest-dinner/7-2021_image1productpng-png/',0,'attachment','image/png',0),(1392,2,'2022-12-01 07:04:03','2022-12-01 15:04:03','','AdobeStock_218452539-scaled.jpeg','','inherit','closed','closed','','adobestock_218452539-scaled-jpeg','','','2022-12-01 07:04:03','2022-12-01 15:04:03','',0,'https://www.meadowcroftwines.com/events/napa-to-sonoma-half-marathon-rose-5k/adobestock_218452539-scaled-jpeg/',0,'attachment','image/jpeg',0),(1394,2,'2022-12-01 07:04:08','2022-12-01 15:04:08','','07.welcome_members-e1641411112326.png','','inherit','closed','closed','','07-welcome_members-e1641411112326-png','','','2022-12-01 07:04:08','2022-12-01 15:04:08','',0,'https://www.meadowcroftwines.com/events/wine-club-pick-up-day/07-welcome_members-e1641411112326-png/',0,'attachment','image/png',0),(1396,2,'2022-12-01 07:04:10','2022-12-01 15:04:10','','AdobeStock_231441408-scaled-e1652740260293.jpeg','','inherit','closed','closed','','adobestock_231441408-scaled-e1652740260293-jpeg-2','','','2022-12-01 07:04:10','2022-12-01 15:04:10','',0,'https://www.meadowcroftwines.com/events/cornerstone-summer-music-series/adobestock_231441408-scaled-e1652740260293-jpeg-2/',0,'attachment','image/jpeg',0),(1398,2,'2022-12-01 07:04:13','2022-12-01 15:04:13','','BlindTasting_Whitney-1.png','','inherit','closed','closed','','blindtasting_whitney-1-png','','','2022-12-01 07:04:13','2022-12-01 15:04:13','',0,'https://www.meadowcroftwines.com/events/live-virtual-blind-tasting-postponed/blindtasting_whitney-1-png/',0,'attachment','image/png',0),(1400,2,'2022-12-01 07:04:15','2022-12-01 15:04:15','','12.2018_IG_countdown_santahat-e1626905973755.png','','inherit','closed','closed','','12-2018_ig_countdown_santahat-e1626905973755-png','','','2022-12-01 07:04:15','2022-12-01 15:04:15','',0,'https://www.meadowcroftwines.com/events/meadowcrofts-holiday-wine-cocktail-series/12-2018_ig_countdown_santahat-e1626905973755-png/',0,'attachment','image/png',0),(1402,2,'2022-12-01 07:04:18','2022-12-01 15:04:18','','Tom-Meadowcroft-e1616187077480.jpg','','inherit','closed','closed','','tom-meadowcroft-e1616187077480-jpg','','','2022-12-01 07:04:18','2022-12-01 15:04:18','',0,'https://www.meadowcroftwines.com/events/a-linterieur-de-la-ruche-inside-the-beehive-virtual-tasting-with-tom-meadowcroft/tom-meadowcroft-e1616187077480-jpg/',0,'attachment','image/jpeg',0),(1404,2,'2022-12-01 07:04:20','2022-12-01 15:04:20','','AdobeStock_400633292-1.png','','inherit','closed','closed','','adobestock_400633292-1-png-2','','','2022-12-01 07:04:20','2022-12-01 15:04:20','',0,'https://www.meadowcroftwines.com/events/members-virtual-tasting-and-happy-hour/adobestock_400633292-1-png-2/',0,'attachment','image/png',0),(1406,2,'2022-12-01 07:04:23','2022-12-01 15:04:23','','IMG_0031_1.png','','inherit','closed','closed','','img_0031_1-png-2','','','2022-12-01 07:04:23','2022-12-01 15:04:23','',0,'https://www.meadowcroftwines.com/events/7th-annual-halloween-wine-candy-pairing/img_0031_1-png-2/',0,'attachment','image/png',0),(1408,2,'2022-12-01 07:04:25','2022-12-01 15:04:25','','Tom-Meadowcroft-Grapes2.jpg','','inherit','closed','closed','','tom-meadowcroft-grapes2-jpg','','','2022-12-01 07:04:25','2022-12-01 15:04:25','',0,'https://www.meadowcroftwines.com/events/hands-on-harvest-experience/tom-meadowcroft-grapes2-jpg/',0,'attachment','image/jpeg',0),(1410,2,'2022-12-01 07:04:28','2022-12-01 15:04:28','','03.2018_GirlScoutCookiePairing.png','','inherit','closed','closed','','03-2018_girlscoutcookiepairing-png','','','2022-12-01 07:04:28','2022-12-01 15:04:28','',0,'https://www.meadowcroftwines.com/events/girl-scout-cookies-wine-pairing/03-2018_girlscoutcookiepairing-png/',0,'attachment','image/png',0),(1412,2,'2022-12-01 07:04:31','2022-12-01 15:04:31','','01.2020_blendingevening_300x250.png','','inherit','closed','closed','','01-2020_blendingevening_300x250-png','','','2023-08-02 13:59:27','2023-08-02 20:59:27','',445,'https://www.meadowcroftwines.com/events/meadowcrofts-evening-blending-seminar/01-2020_blendingevening_300x250-png/',0,'attachment','image/png',0),(1414,2,'2022-12-01 07:04:32','2022-12-01 15:04:32','','09.2019_MagnumParty.png','','inherit','closed','closed','','09-2019_magnumparty-png','','','2022-12-01 07:04:32','2022-12-01 15:04:32','',0,'https://www.meadowcroftwines.com/events/meadowcrofts-10-year-anniversary-party/09-2019_magnumparty-png/',0,'attachment','image/png',0),(1416,2,'2022-12-01 07:04:35','2022-12-01 15:04:35','','09.2019_MagnumParty.png','','inherit','closed','closed','','09-2019_magnumparty-png-2','','','2022-12-01 07:04:35','2022-12-01 15:04:35','',0,'https://www.meadowcroftwines.com/events/meadowcrofts-napa-valley-cabernet-sauvignon-magnum-party/09-2019_magnumparty-png-2/',0,'attachment','image/png',0),(1423,2,'2022-12-01 07:04:44','2022-12-01 15:04:44','','Meadowcroft_BeeTeam.png','','inherit','closed','closed','','meadowcroft_beeteam-png','','','2022-12-01 07:04:44','2022-12-01 15:04:44','',0,'https://www.meadowcroftwines.com/events/meet-the-bee-team/meadowcroft_beeteam-png/',0,'attachment','image/png',0),(1425,2,'2022-12-01 07:04:47','2022-12-01 15:04:47','','Tom-Meadowcroft-Grapes2.jpg','','inherit','closed','closed','','tom-meadowcroft-grapes2-jpg-2','','','2022-12-01 07:04:47','2022-12-01 15:04:47','',0,'https://www.meadowcroftwines.com/events/pinot-noir-hands-on-harvest-experience/tom-meadowcroft-grapes2-jpg-2/',0,'attachment','image/jpeg',0),(1431,2,'2022-12-01 07:04:56','2022-12-01 15:04:56','','05.rose_2.png','','inherit','closed','closed','','05-rose_2-png','','','2022-12-01 07:04:56','2022-12-01 15:04:56','',0,'https://www.meadowcroftwines.com/events/spring-fling-release-party/05-rose_2-png/',0,'attachment','image/png',0),(1436,2,'2022-12-01 07:06:40','2022-12-01 15:06:40','','01.2017_veederlibrarytasting.png','','inherit','closed','closed','','01-2017_veederlibrarytasting-png','','','2022-12-01 07:06:40','2022-12-01 15:06:40','',0,'https://www.meadowcroftwines.com/events/mount-veeder-release-party-and-library-tasting-2/01-2017_veederlibrarytasting-png/',0,'attachment','image/png',0),(1438,2,'2022-12-01 07:06:43','2022-12-01 15:06:43','','03.2018_GirlScoutCookiePairing.png','','inherit','closed','closed','','03-2018_girlscoutcookiepairing-png-2','','','2022-12-01 07:06:43','2022-12-01 15:06:43','',0,'https://www.meadowcroftwines.com/events/girl-scout-cookies-wine-pairing-2/03-2018_girlscoutcookiepairing-png-2/',0,'attachment','image/png',0),(1441,2,'2022-12-01 07:06:46','2022-12-01 15:06:46','','02.2018_ClubPickUpFeb_MEcalendar.png','','inherit','closed','closed','','02-2018_clubpickupfeb_mecalendar-png','','','2022-12-01 07:06:46','2022-12-01 15:06:46','',0,'https://www.meadowcroftwines.com/events/2017-cru-de-la-ruche-malbec-release-party/02-2018_clubpickupfeb_mecalendar-png/',0,'attachment','image/png',0),(1443,2,'2022-12-01 07:06:49','2022-12-01 15:06:49','','01.2017_veederlibrarytasting.png','','inherit','closed','closed','','01-2017_veederlibrarytasting-png-2','','','2022-12-01 07:06:49','2022-12-01 15:06:49','',0,'https://www.meadowcroftwines.com/events/mount-veeder-library-tasting-2019/01-2017_veederlibrarytasting-png-2/',0,'attachment','image/png',0),(1446,2,'2022-12-01 07:06:53','2022-12-01 15:06:53','','Meadowcroft_BeeTeam.png','','inherit','closed','closed','','meadowcroft_beeteam-png-2','','','2022-12-01 07:06:53','2022-12-01 15:06:53','',0,'https://www.meadowcroftwines.com/events/meet-the-bee-team-3/meadowcroft_beeteam-png-2/',0,'attachment','image/png',0),(1451,2,'2022-12-01 07:07:00','2022-12-01 15:07:00','','11.2017_HolidayWineCocktail.png','','inherit','closed','closed','','11-2017_holidaywinecocktail-png','','','2022-12-01 07:07:00','2022-12-01 15:07:00','',0,'https://www.meadowcroftwines.com/events/meadowcrofts-wine-cocktail-series/11-2017_holidaywinecocktail-png/',0,'attachment','image/png',0),(1453,2,'2022-12-01 07:07:02','2022-12-01 15:07:02','','Tom-Meadowcroft-Grapes2.jpg','','inherit','closed','closed','','tom-meadowcroft-grapes2-jpg-3','','','2022-12-01 07:07:02','2022-12-01 15:07:02','',0,'https://www.meadowcroftwines.com/events/pinot-noir-hands-on-harvest-experience-2/tom-meadowcroft-grapes2-jpg-3/',0,'attachment','image/jpeg',0),(1455,2,'2022-12-01 07:07:05','2022-12-01 15:07:05','','600x450_meadowcroft_fathersday_2018.png','','inherit','closed','closed','','600x450_meadowcroft_fathersday_2018-png','','','2022-12-01 07:07:05','2022-12-01 15:07:05','',0,'https://www.meadowcroftwines.com/events/fathers-day-wine-and-bbq-pairing/600x450_meadowcroft_fathersday_2018-png/',0,'attachment','image/png',0),(1457,2,'2022-12-01 07:07:08','2022-12-01 15:07:08','','600x450_meadowcroft_motherday_v1.png','','inherit','closed','closed','','600x450_meadowcroft_motherday_v1-png','','','2022-12-01 07:07:08','2022-12-01 15:07:08','',0,'https://www.meadowcroftwines.com/events/roses-for-mom/600x450_meadowcroft_motherday_v1-png/',0,'attachment','image/png',0),(1459,2,'2022-12-01 07:07:11','2022-12-01 15:07:11','','06.barn_v1.png','','inherit','closed','closed','','06-barn_v1-png','','','2022-12-01 07:07:11','2022-12-01 15:07:11','',0,'https://www.meadowcroftwines.com/events/catch-the-buzz-garden-party/06-barn_v1-png/',0,'attachment','image/png',0),(1461,2,'2022-12-01 07:07:15','2022-12-01 15:07:15','','05.rose_2.png','','inherit','closed','closed','','05-rose_2-png-2','','','2022-12-01 07:07:15','2022-12-01 15:07:15','',0,'https://www.meadowcroftwines.com/events/spring-fling-release-party-2/05-rose_2-png-2/',0,'attachment','image/png',0),(1463,2,'2022-12-01 07:07:20','2022-12-01 15:07:20','','06.2017_FathersDay.png','','inherit','closed','closed','','06-2017_fathersday-png','','','2022-12-01 07:07:20','2022-12-01 15:07:20','',0,'https://www.meadowcroftwines.com/events/fathers-day-wine-and-sausage-pairing/06-2017_fathersday-png/',0,'attachment','image/png',0),(1465,2,'2022-12-01 07:07:22','2022-12-01 15:07:22','','02.2018_Caverna57_tasting.png','','inherit','closed','closed','','02-2018_caverna57_tasting-png','','','2022-12-01 07:07:22','2022-12-01 15:07:22','',0,'https://www.meadowcroftwines.com/events/meadowcroft-wine-tasting-in-sacramento/02-2018_caverna57_tasting-png/',0,'attachment','image/png',0),(1467,2,'2022-12-01 07:07:24','2022-12-01 15:07:24','','02.2018_BlancdeBlancsReleaseParty.png','','inherit','closed','closed','','02-2018_blancdeblancsreleaseparty-png','','','2022-12-01 07:07:24','2022-12-01 15:07:24','',0,'https://www.meadowcroftwines.com/events/blanc-de-blancs-release-party/02-2018_blancdeblancsreleaseparty-png/',0,'attachment','image/png',0),(1469,2,'2022-12-01 07:07:27','2022-12-01 15:07:27','','03.2018_GirlScoutCookiePairing.png','','inherit','closed','closed','','03-2018_girlscoutcookiepairing-png-3','','','2022-12-01 07:07:27','2022-12-01 15:07:27','',0,'https://www.meadowcroftwines.com/events/girl-scout-cookies-wine-pairing-3/03-2018_girlscoutcookiepairing-png-3/',0,'attachment','image/png',0),(1471,2,'2022-12-01 07:07:29','2022-12-01 15:07:29','','01.2017_veederlibrarytasting.png','','inherit','closed','closed','','01-2017_veederlibrarytasting-png-3','','','2022-12-01 07:07:29','2022-12-01 15:07:29','',0,'https://www.meadowcroftwines.com/events/mount-veeder-library-tasting/01-2017_veederlibrarytasting-png-3/',0,'attachment','image/png',0),(1473,2,'2022-12-01 07:07:31','2022-12-01 15:07:31','','02.2018_ClubPickUpFeb_MEcalendar.png','','inherit','closed','closed','','02-2018_clubpickupfeb_mecalendar-png-2','','','2022-12-01 07:07:31','2022-12-01 15:07:31','',0,'https://www.meadowcroftwines.com/events/february-wine-club-pick-up-party/02-2018_clubpickupfeb_mecalendar-png-2/',0,'attachment','image/png',0),(1476,2,'2022-12-01 07:07:35','2022-12-01 15:07:35','','11.2017_HolidayWineCocktail.png','','inherit','closed','closed','','11-2017_holidaywinecocktail-png-2','','','2022-12-01 07:07:35','2022-12-01 15:07:35','',0,'https://www.meadowcroftwines.com/events/holiday-wine-cocktails/11-2017_holidaywinecocktail-png-2/',0,'attachment','image/png',0),(1484,2,'2022-12-01 07:07:47','2022-12-01 15:07:47','','Pick-Up-Party.jpg','','inherit','closed','closed','','pick-up-party-jpg','','','2022-12-01 07:07:47','2022-12-01 15:07:47','',0,'https://www.meadowcroftwines.com/events/wine-club-pick-up-party/pick-up-party-jpg/',0,'attachment','image/jpeg',0),(1492,2,'2022-12-01 07:07:58','2022-12-01 15:07:58','','06.2017_FathersDay.png','','inherit','closed','closed','','06-2017_fathersday-png-2','','','2022-12-01 07:07:58','2022-12-01 15:07:58','',0,'https://www.meadowcroftwines.com/events/3rd-annual-fathers-day-pig-roast/06-2017_fathersday-png-2/',0,'attachment','image/png',0),(1498,2,'2022-12-01 10:24:16','2022-12-01 18:24:16','','100','','inherit','closed','closed','','100','','','2022-12-01 10:24:24','2022-12-01 18:24:24','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/12/100.png',0,'attachment','image/png',0),(1499,2,'2022-12-01 10:27:21','2022-12-01 18:27:21','','logo','','inherit','closed','closed','','logo-2','','','2022-12-01 10:27:27','2022-12-01 18:27:27','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/12/logo.png',0,'attachment','image/png',0),(1500,2,'2022-12-01 10:30:31','2022-12-01 18:30:31','','mc-logo','','inherit','closed','closed','','mc-logo','','','2022-12-01 10:30:37','2022-12-01 18:30:37','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/12/mc-logo.png',0,'attachment','image/png',0),(1501,2,'2022-12-01 10:34:24','2022-12-01 18:34:24','','bee','','inherit','closed','closed','','bee-2','','','2022-12-01 10:34:36','2022-12-01 18:34:36','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/12/bee.png',0,'attachment','image/png',0),(1502,2,'2022-12-01 10:34:59','2022-12-01 18:34:59','','port','','inherit','closed','closed','','port','','','2022-12-01 10:35:24','2022-12-01 18:35:24','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/12/port.png',0,'attachment','image/png',0),(1503,2,'2022-12-01 10:37:49','2022-12-01 18:37:49','','gsm','','inherit','closed','closed','','gsm-2','','','2022-12-01 10:38:00','2022-12-01 18:38:00','',508,'https://www.meadowcroftwines.com/wp-content/uploads/2022/12/gsm.png',0,'attachment','image/png',0),(1506,2,'2022-12-01 11:34:34','2022-12-01 19:34:34','','List View','','publish','closed','closed','','1506','','','2022-12-01 11:43:38','2022-12-01 19:43:38','',0,'https://www.meadowcroftwines.com/?post_type=mec_calendars&#038;p=1506',0,'mec_calendars','',0),(1508,2,'2022-12-01 12:07:20','2022-12-01 20:07:20','','o-10','','inherit','closed','closed','','o-10','','','2022-12-01 12:07:27','2022-12-01 20:07:27','',726,'https://www.meadowcroftwines.com/wp-content/uploads/2022/12/o-10.jpg',0,'attachment','image/jpeg',0),(1509,2,'2022-12-01 12:08:26','2022-12-01 20:08:26','','2020_Meadowcroft_PrivateEvent_samplemenu','','inherit','closed','closed','','2020_meadowcroft_privateevent_samplemenu','','','2022-12-01 12:08:26','2022-12-01 20:08:26','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/12/2020_Meadowcroft_PrivateEvent_samplemenu.pdf',0,'attachment','application/pdf',0),(1511,2,'2022-12-01 15:36:49','2022-12-01 23:36:49','.large-quote {\n	font-size: 28px;\n	Font-style: italic;\n	line-height: 44.8px;\n}\n.medium-width .c7t-content {\n	max-width: 95rem;\n	margin: 0 auto;\n}\n.c7-product__teaser {\n    text-align: center;\n}\n.c7-club-join-button {\n   text-align: center;\n   margin-top: 4rem;\n}\n.c7-club-join-button .c7-btn {\n   font-size: 18px;\n	padding: 14px 12px;\n}\n.c7-club-join-button .c7-btn::before {\n    content: \'\';\n    background-image: url(/wp-content/uploads/2023/03/White-Bee.png);\n    display: inline-block;\n    width: 50px;\n    height: 37px;\n    background-size: contain;\n    background-repeat: no-repeat;\n    margin: 0 auto;\n    vertical-align: middle;\n    margin-right: 10px;\n}\n.c7-club-join-button .c7-btn::after {\n    content: \'\';\n    background-image: url(/wp-content/uploads/2023/03/White-Bee.png);\n    display: inline-block;\n    width: 50px;\n    height: 37px;\n    background-size: contain;\n    background-repeat: no-repeat;\n    vertical-align: middle;\n    margin-left: 10px;\n}\n\n\n\n:root{\n--c7-link-color: #6f6c68;\n}\n.club {\n	font-family: \"Poppins\";\n	font-size: 13px;\n	font-weight: 500;\n	letter-spacing: 2px;\n	color: #6f6c68;\n	text-transform: uppercase;\n}\n\n@media only screen and (min-width: 64.0625em) {\n	.c7-user-nav__account a.c7-user-nav__account__name {\n    color: #fff;\n}\n	\n	.c7-user-nav__account a.c7-user-nav__account__name svg {\n    stroke: #fff;\n}\n\n.lowercase {\n		text-transform: none !important;\n	}\n\n.narrower-content .c7t-content { \n	max-width: 38rem;\n	margin: 0 auto;\n}\n	\n	\n.darker-section { \nbackground-color: #dedfde; \n} \n\n.add-padding-top {\npadding-top: 4rem !important;\n}\n	\n.wine-asset-list-box h3 a, .wine-asset-list-box .blog-page>h2 a {\n    color: #ae9f65;\n    text-decoration: none;\n    text-transform: uppercase;\n    font-size: .875rem;\n    line-height: 1.3;\n    display: inline-block;\n    transition: all .4s ease;\n}\n.text-block-heading{\n		padding: 0rem;\n}\n.faq-content{\n		padding-top: 1rem;\n}','wp-spectratheme-child','','publish','closed','closed','','wp-spectratheme-child','','','2024-10-08 13:06:05','2024-10-08 20:06:05','',0,'https://www.meadowcroftwines.com/wp-spectratheme-child/',0,'custom_css','',0),(1512,2,'2022-12-01 16:53:16','2022-12-02 00:53:16','<div style=\"text-align: center;\"><img class=\"alignnone wp-image-1523 size-full\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/12/quote.png\" alt=\"Quote Icon\" width=\"115\" height=\"100\" /></div><blockquote>\r\n <p>Quaint little winery! We had a great experience and the wine was delicious!</p>\r\n</blockquote>\r\n<p>Anna M.\r\n<strong>Yelp Review</strong>\r\n</p>','Anna M.','','publish','closed','closed','','1512','','','2022-12-01 19:17:44','2022-12-02 03:17:44','',0,'https://www.meadowcroftwines.com/?post_type=slick_slider&#038;p=1512',0,'slick_slider','',0),(1514,2,'2022-12-01 16:54:23','2022-12-02 00:54:23','<div style=\"text-align: center;\"><img class=\"alignnone wp-image-1523 size-full\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/12/quote.png\" alt=\"Quote Icon\" width=\"115\" height=\"100\" /></div><blockquote>\r\n <p>It was a great experience and the wines were soooo good and smooth!</p>\r\n</blockquote>\r\n<p>Van N.\r\n<strong>On Yelp</strong>\r\n</p>','Van N.','','publish','closed','closed','','van-n','','','2022-12-01 19:17:39','2022-12-02 03:17:39','',0,'https://www.meadowcroftwines.com/?post_type=slick_slider&#038;p=1514',0,'slick_slider','',0),(1516,2,'2022-12-01 16:55:32','2022-12-02 00:55:32','<div style=\"text-align: center;\"><img class=\"alignnone wp-image-1523 size-full\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/12/quote.png\" alt=\"Quote Icon\" width=\"115\" height=\"100\" /></div><blockquote>\r\n <p>Stopped on a whim while touring Sonoma, and glad we did. Really nice staff, and beautiful location.</p>\r\n</blockquote>\r\n<p>Rai Downey\r\n<strong>Google Review</strong>\r\n</p>','Rai Downey','','publish','closed','closed','','rai-downey','','','2022-12-01 19:17:35','2022-12-02 03:17:35','',0,'https://www.meadowcroftwines.com/?post_type=slick_slider&#038;p=1516',0,'slick_slider','',0),(1517,2,'2022-12-01 16:56:10','2022-12-02 00:56:10','<div style=\"text-align: center;\"><img class=\"alignnone wp-image-1523 size-full\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/12/quote.png\" alt=\"Quote Icon\" width=\"115\" height=\"100\" /></div><blockquote>\r\n <p>The tasting room is beautiful and DD was an amazing host.  The portfolio of wines is outstanding!</p>\r\n</blockquote>\r\n<p>Stephen J\r\n<strong>Yelp Review</strong>\r\n</p>','Stephen J','','publish','closed','closed','','stephen-j','','','2022-12-01 19:17:32','2022-12-02 03:17:32','',0,'https://www.meadowcroftwines.com/?post_type=slick_slider&#038;p=1517',0,'slick_slider','',0),(1518,2,'2022-12-01 16:56:50','2022-12-02 00:56:50','<div style=\"text-align: center;\"><img class=\"alignnone wp-image-1523 size-full\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/12/quote.png\" alt=\"Quote Icon\" width=\"115\" height=\"100\" /></div><blockquote>\r\n<p>One of our favorite wineries in Sonoma! The atmosphere is fun and the staff is knowledgable.</p>\r\n</blockquote>\r\n<p>Britni H.\r\n<strong>Yelp Review</strong>\r\n</p>','Britni H.','','publish','closed','closed','','britni-h','','','2022-12-01 19:17:28','2022-12-02 03:17:28','',0,'https://www.meadowcroftwines.com/?post_type=slick_slider&#038;p=1518',0,'slick_slider','',0),(1519,2,'2022-12-01 16:57:38','2022-12-02 00:57:38','<div style=\"text-align: center;\"><img class=\"alignnone wp-image-1523 size-full\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/12/quote.png\" alt=\"Quote Icon\" width=\"115\" height=\"100\" /></div>\r\n\r\n<blockquote>If you are looking for some truly unique wines, this is an awesome place to go!</blockquote>\r\nAlyx F.\r\n<strong>On Yelp</strong>','Alyx F.','','publish','closed','closed','','alyx-f','','','2022-12-01 19:17:23','2022-12-02 03:17:23','',0,'https://www.meadowcroftwines.com/?post_type=slick_slider&#038;p=1519',0,'slick_slider','',0),(1520,2,'2022-12-01 16:58:11','2022-12-02 00:58:11','<div style=\"text-align: center;\"><img class=\"alignnone wp-image-1523 size-full\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/12/quote.png\" alt=\"Quote Icon\" width=\"115\" height=\"100\" /></div>\r\n\r\n<blockquote>We sat outside in a comfortable seating area and thoroughly enjoyed ourselves.</blockquote>\r\nAlyx F.\r\n<strong>On Yelp</strong>','Sybil G.','','publish','closed','closed','','sybil-g','','','2022-12-01 19:17:05','2022-12-02 03:17:05','',0,'https://www.meadowcroftwines.com/?post_type=slick_slider&#038;p=1520',0,'slick_slider','',0),(1521,2,'2022-12-01 16:58:27','2022-12-02 00:58:27','','tasting','','inherit','closed','closed','','tasting','','','2022-12-01 16:58:51','2022-12-02 00:58:51','',445,'https://www.meadowcroftwines.com/wp-content/uploads/2022/12/tasting.jpg',0,'attachment','image/jpeg',0),(1522,2,'2022-12-01 16:59:27','2022-12-02 00:59:27','','tasting-mobile','','inherit','closed','closed','','tasting-mobile','','','2022-12-01 16:59:35','2022-12-02 00:59:35','',445,'https://www.meadowcroftwines.com/wp-content/uploads/2022/12/tasting-mobile.jpg',0,'attachment','image/jpeg',0),(1523,2,'2022-12-01 17:14:03','2022-12-02 01:14:03','','quote','','inherit','closed','closed','','quote','','','2022-12-01 17:14:09','2022-12-02 01:14:09','',1520,'https://www.meadowcroftwines.com/wp-content/uploads/2022/12/quote.png',0,'attachment','image/png',0),(1524,2,'2022-12-01 19:24:01','2022-12-02 03:24:01','<div style=\"text-align: center;\"><img class=\"alignnone wp-image-1523 size-full\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/12/quote.png\" alt=\"Quote Icon\" width=\"115\" height=\"100\" /></div>\r\n\r\n<blockquote>Meadowcroft Wine Club is a bonbon of delight!  I love to anticipate a curated selection of delicious wine varieties to drink with my friends and family! The wines are consistently balanced, drinkable and delicious. I love Meadowcroft Wine Club.</blockquote>\r\nErin Fray\r\n<strong>Wine Club Member - Seattle, WA</strong>','Erin Fray','','publish','closed','closed','','1524','','','2022-12-01 19:24:17','2022-12-02 03:24:17','',0,'https://www.meadowcroftwines.com/?post_type=slick_slider&#038;p=1524',0,'slick_slider','',0),(1525,2,'2022-12-01 19:25:08','2022-12-02 03:25:08','<div style=\"text-align: center;\"><img class=\"alignnone wp-image-1523 size-full\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2022/12/quote.png\" alt=\"Quote Icon\" width=\"115\" height=\"100\" /></div>\r\n<blockquote>Meadowcroft winery is our most favorite wine club. In fact it is our only wine club, we did belong to other wine clubs, but to us, this is the best one in all of Sonoma County. We have been members since 2010.</blockquote>\r\nJim &amp; Dara Kany\r\n<strong>Rohnert Park, CA</strong>','Jim & Dara Kany','','publish','closed','closed','','jim-dara-kany','','','2023-01-03 09:20:14','2023-01-03 17:20:14','',0,'https://www.meadowcroftwines.com/?post_type=slick_slider&#038;p=1525',0,'slick_slider','',0),(1530,2,'2022-12-02 09:39:16','2022-12-02 17:39:16','','hab','','inherit','closed','closed','','hab','','','2022-12-02 09:43:53','2022-12-02 17:43:53','',445,'https://www.meadowcroftwines.com/wp-content/uploads/2022/12/hab.jpg',0,'attachment','image/jpeg',0),(1532,2,'2022-12-02 09:45:43','2022-12-02 17:45:43','','rose','','inherit','closed','closed','','rose','','','2022-12-02 09:45:45','2022-12-02 17:45:45','',445,'https://www.meadowcroftwines.com/wp-content/uploads/2022/12/rose.jpg',0,'attachment','image/jpeg',0),(1533,2,'2022-12-02 09:46:11','2022-12-02 17:46:11','','rose','','inherit','closed','closed','','rose-2','','','2022-12-02 09:46:29','2022-12-02 17:46:29','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/12/rose-1.jpg',0,'attachment','image/jpeg',0),(1538,2,'2022-12-12 16:16:35','2022-12-13 00:16:35','','Subscribe','','publish','closed','closed','','subscribe','','','2023-06-07 21:10:32','2023-06-08 04:10:32','',0,'https://www.meadowcroftwines.com/?page_id=1538',0,'page','',0),(1541,2,'2024-10-30 14:16:36','2022-12-14 19:03:56',' ','','','publish','closed','closed','','1541','','','2024-10-30 14:16:36','2024-10-30 21:16:36','',0,'https://www.meadowcroftwines.com/?p=1541',21,'nav_menu_item','',0),(1546,2,'2022-12-19 11:19:59','2022-12-19 19:19:59','','balloon-2','','inherit','closed','closed','','balloon-2','','','2022-12-19 11:20:07','2022-12-19 19:20:07','',445,'https://www.meadowcroftwines.com/wp-content/uploads/2022/12/balloon-2.jpg',0,'attachment','image/jpeg',0),(1547,2,'2022-12-19 11:20:30','2022-12-19 19:20:30','','balloon-2','','inherit','closed','closed','','balloon-2-2','','','2022-12-19 11:20:49','2022-12-19 19:20:49','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/12/balloon-2-1.jpg',0,'attachment','image/jpeg',0),(1554,2,'2022-12-29 13:35:01','2022-12-29 21:35:01','','Wine Club','','publish','closed','closed','','wine-club','','','2024-12-19 10:49:02','2024-12-19 18:49:02','',0,'https://www.meadowcroftwines.com/?page_id=1554',0,'page','',0),(1555,2,'2022-12-29 13:34:32','2022-12-29 21:34:32','','club','','inherit','closed','closed','','club-3','','','2022-12-29 13:34:47','2022-12-29 21:34:47','',1554,'https://www.meadowcroftwines.com/wp-content/uploads/2022/12/club.jpg',0,'attachment','image/jpeg',0),(1556,2,'2022-12-29 13:34:54','2022-12-29 21:34:54','','club-mobile','','inherit','closed','closed','','club-mobile','','','2022-12-29 13:34:58','2022-12-29 21:34:58','',1554,'https://www.meadowcroftwines.com/wp-content/uploads/2022/12/club-mobile.jpg',0,'attachment','image/jpeg',0),(1561,2,'2022-12-29 14:53:58','2022-12-29 22:53:58','','cellar','','inherit','closed','closed','','cellar','','','2022-12-29 14:54:09','2022-12-29 22:54:09','',1554,'https://www.meadowcroftwines.com/wp-content/uploads/2022/12/cellar.jpg',0,'attachment','image/jpeg',0),(1563,2,'2024-10-30 14:16:36','2022-12-30 22:02:42',' ','','','publish','closed','closed','','1563','','','2024-10-30 14:16:36','2024-10-30 21:16:36','',0,'https://www.meadowcroftwines.com/?p=1563',16,'nav_menu_item','',0),(1565,3,'2023-01-02 12:24:01','2023-01-02 20:24:01','<img class=\"size-medium wp-image-1568 alignright\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/01/food-wine-blog1-300x240.jpg\" alt=\"Food-wine-pairing-blog\" width=\"300\" height=\"240\" />\r\n\r\n<span style=\"font-size: 1rem;\">The holidays are a time for family, friends, and of course, food! If you\'re looking to impress your guests with a delicious meal thisholiday season, we\'ve got the perfect wine pairing recipes for you. No matter what you\'re serving, we\'ve got a wine that will complement your dish perfectly.</span>\r\n<h4><strong>Pinot Noir</strong></h4>\r\nIf you\'re serving beef or lamb this holiday season, our pick is pinot noir. This full-bodied red wine has flavors of black cherry and cranberry, making it the perfect complement to rich meats. For a pinot noir that\'s sure to please, try the <a href=\"https://www.meadowcroftwines.com/product/2020-pinot-noir-russian-river-valley\">Meadowcroft Russian River Valley Pinot Noir</a>.\r\n<h4><strong>Cabernet Sauvignon</strong></h4>\r\nFor all you chicken lovers out there, our recommendation is cabernet sauvignon. This dry red wine pairs well with roasted chicken or turkey and has flavors of blackberry and cedar. We recommend trying our <a href=\"https://www.meadowcroftwines.com/product/2019-cabernet-sauvignon-oakville\">Cabernet Sauvignon from the Oakville District in the Napa Valley</a>.\r\n<h4><strong>Zinfandel</strong></h4>\r\nWhether you\'re making ham or pork chops, zinfandel is the wine for you. This fruity red wine has flavors of plum and pepper and is sure to please your guests. We recommend the <a href=\"https://www.meadowcroftwines.com/product/2018-zinfandel-speedy-creek-vineyard\">Speedy Creek Zinfandel from the Knight’s Valley AVA.</a>\r\n<h4><strong>Pinot Blanc</strong></h4>\r\nLooking for a white wine to pair with your holiday meal? Pinot Blanc is our top pick. This crisp white wine has hints of apple and pear and pairs well with fish or poultry dishes. For a Pinot Blanc that\'s sure to please, try the <a href=\"https://www.meadowcroftwines.com/product/2021-pinot-blanc-rivino-vineyard\">Pinot Blanc from Meadowcroft</a>.\r\n<h4><strong>Chardonnay    </strong></h4>\r\nAnd last but not least, Chardonnay! This buttery white wine pairs well with creamy dishes like mashed potatoes or macaroni and cheese. For a chardonnay that\'s sure to satisfy, we recommend the <a href=\"https://www.meadowcroftwines.com/product/2021-chardonnay-carneros\">Meadowcroft Napa-Carneros Chardonnay</a>.\r\n\r\nWith so many options to choose from, it can be hard to decide what wine to serve with your holiday meal. But don\'t worry, we\'ve got you covered! Our list of holiday wine pairing recipes has something for everyone. So, sit back, relax, and enjoy a glass of your favorite holiday wine. Cheers!\r\n<h2>Frequently Asked Questions</h2>\r\n<b>1. What are the best food pairings for Chardonnay?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Chardonnay pairs well with a variety of foods. Try buttery dishes like lobster, roasted chicken, or creamy pasta for oaked Chardonnay. Unoaked Chardonnay complements lighter fare such as grilled fish, fresh salads, or vegetable dishes.</span>\r\n\r\n<b>2. What makes Sonoma wines unique for food pairing?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Sonoma wines are celebrated for their diversity, reflecting the region\'s varied climates and terroirs. This versatility means you can find Sonoma wines to complement nearly any dish, from crisp whites like Chardonnay to bold reds like Zinfandel and Cabernet Sauvignon.</span>\r\n\r\n<b>3. What types of cheese pair best with Chardonnay?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Chardonnay pairs well with a range of cheeses. Soft and creamy cheeses like Brie or Camembert enhance its buttery notes, while firmer cheeses like Gruyère or aged cheddar can highlight its richness and complexity.</span>\r\n\r\n<b>4. Is Chardonnay a good choice for vegetarian meals?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Absolutely! Chardonnay complements vegetarian dishes like mushroom risotto, grilled asparagus, roasted cauliflower, and creamy vegetable soups. Its versatility works well with both light and rich vegetarian options.</span>\r\n\r\n<b>5. What is the ideal serving temperature for Cabernet Sauvignon?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Cabernet Sauvignon is best served slightly below room temperature, around 60-65°F (16-18°C). If it\'s too warm, the alcohol may dominate the flavors; if it\'s too cold, the aromas may be muted.</span>\r\n\r\n<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org/\",\r\n  \"@type\": \"BlogPosting\",\r\n  \"mainEntityOfPage\": {\r\n    \"@type\": \"WebPage\",\r\n    \"@id\": \"https://www.meadowcroftwines.com/holiday-food-pairing-suggestions/\"\r\n  },\r\n  \"headline\": \"HOLIDAY FOOD PAIRING SUGGESTIONS\",\r\n  \"description\": \"Unleash your taste buds with the ultimate guide to food and wine pairing. From savory to sweet, explore the best pairings for a culinary adventure. Elevate your dining experience.\",\r\n  \"image\": {\r\n    \"@type\": \"ImageObject\",\r\n    \"url\": \"https://www.meadowcroftwines.com/wp-content/uploads/2023/03/Untitled-design-1-3-1024x576.webp\",\r\n    \"width\": \"\",\r\n    \"height\": \"\"\r\n  },\r\n  \"author\": {\r\n    \"@type\": \"Organization\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"publisher\": {\r\n    \"@type\": \"Organization\",\r\n    \"name\": \"Meadowcroft Wines\",\r\n    \"logo\": {\r\n      \"@type\": \"ImageObject\",\r\n      \"url\": \"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-Logo-Horizontal-Bee-Lighter3.png\",\r\n      \"width\": \"\",\r\n      \"height\": \"\"\r\n    }\r\n  },\r\n  \"datePublished\": \"2023-05-09\",\r\n  \"dateModified\": \"2023-05-17\"\r\n}\r\n</script>','Holiday food pairing suggestions','','publish','closed','open','','holiday-food-pairing-suggestions','','','2024-12-26 04:47:37','2024-12-26 12:47:37','',0,'https://www.meadowcroftwines.com/?p=1565',0,'post','',0),(1568,3,'2023-01-02 12:38:07','2023-01-02 20:38:07','Food and wine pairing recommendations from Meadowcroft','food-wine-blog1','','inherit','closed','closed','','food-wine-blog1','','','2023-01-02 12:38:47','2023-01-02 20:38:47','',1565,'https://www.meadowcroftwines.com/wp-content/uploads/2023/01/food-wine-blog1.jpg',0,'attachment','image/jpeg',0),(1574,2,'2023-01-06 15:04:49','2023-01-06 23:04:49','','Sparkling Wines','','publish','closed','closed','','sparkling-wines','','','2024-02-13 02:21:00','2024-02-13 10:21:00','',0,'https://www.meadowcroftwines.com/?page_id=1574',0,'page','',0),(1576,2,'2023-01-06 16:19:47','2023-01-07 00:19:47','','Rosé Wines','','publish','closed','closed','','rose-wines','','','2024-02-13 02:27:25','2024-02-13 10:27:25','',0,'https://www.meadowcroftwines.com/?page_id=1576',0,'page','',0),(1577,2,'2023-01-06 16:20:40','2023-01-07 00:20:40','','Wine Club Exclusives','','publish','closed','closed','','wine-club-exclusives','','','2023-03-31 03:49:56','2023-03-31 10:49:56','',0,'https://www.meadowcroftwines.com/?page_id=1577',0,'page','',0),(1585,3,'2023-01-16 15:37:59','2023-01-16 23:37:59','','Sorry we are closed sign on abstract background','Sorry we are closed sign hanging on a glass storefront','inherit','closed','closed','','sorry-we-are-closed-sign-on-abstract-background','','','2023-01-16 15:37:59','2023-01-16 23:37:59','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/01/AdobeStock_137509395.jpeg',0,'attachment','image/jpeg',0),(1587,3,'2023-01-16 15:40:51','2023-01-16 23:40:51','','AdobeStock_189815309','','inherit','closed','closed','','adobestock_189815309','','','2023-01-16 15:40:51','2023-01-16 23:40:51','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/01/AdobeStock_189815309.jpeg',0,'attachment','image/jpeg',0),(1588,3,'2023-01-16 15:45:20','2023-01-16 23:45:20','','Woman using smartphone with shopping bag in hands','Woman using smartphone with shopping bag in hands','inherit','closed','closed','','woman-using-smartphone-with-shopping-bag-in-hands','','','2023-01-16 15:45:20','2023-01-16 23:45:20','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/01/AdobeStock_143395665.jpeg',0,'attachment','image/jpeg',0),(1596,3,'2023-01-23 11:40:25','2023-01-23 19:40:25','','v-day-event-image','','inherit','closed','closed','','v-day-event-image','','','2023-01-23 11:40:25','2023-01-23 19:40:25','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/01/v-day-event-image.jpg',0,'attachment','image/jpeg',0),(1605,5,'2023-02-06 02:35:55','2023-02-06 10:35:55','','Meadowcroft_2018CabSauv_Mendocino_NelsonRanch','','inherit','closed','closed','','meadowcroft_2018cabsauv_mendocino_nelsonranch-2','','','2023-02-06 02:36:57','2023-02-06 10:36:57','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_2018CabSauv_Mendocino_NelsonRanch.png',0,'attachment','image/png',0),(1606,5,'2023-02-06 02:41:10','2023-02-06 10:41:10','','Spring-2022-Newsletter-Thumb@3x','','inherit','closed','closed','','spring-2022-newsletter-thumb3x-2','','','2023-02-06 02:47:45','2023-02-06 10:47:45','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Spring-2022-Newsletter-Thumb@3x.png',0,'attachment','image/png',0),(1607,5,'2023-02-06 02:42:17','2023-02-06 10:42:17','','MC_SONOMACOASTPINOT_2019-1','','inherit','closed','closed','','mc_sonomacoastpinot_2019-1-2','','','2023-02-06 02:45:33','2023-02-06 10:45:33','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_SONOMACOASTPINOT_2019-1.png',0,'attachment','image/png',0),(1609,5,'2023-02-06 02:44:00','2023-02-06 10:44:00','','MC_FrenchColombard_2016_bottleshot','','inherit','closed','closed','','mc_frenchcolombard_2016_bottleshot-2','','','2023-02-06 02:46:29','2023-02-06 10:46:29','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_FrenchColombard_2016_bottleshot.png',0,'attachment','image/png',0),(1610,5,'2023-02-06 02:44:31','2023-02-06 10:44:31','','21_Pinot_RRV_bottleshot','','inherit','closed','closed','','21_pinot_rrv_bottleshot-2','','','2023-02-06 02:44:31','2023-02-06 10:44:31','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/21_Pinot_RRV_bottleshot.png',0,'attachment','image/png',0),(1611,5,'2023-02-06 02:48:41','2023-02-06 10:48:41','','Meadowcroft-River-Trace-2019','','inherit','closed','closed','','meadowcroft-river-trace-2019-2','','','2023-02-06 02:49:08','2023-02-06 10:49:08','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-River-Trace-2019.png',0,'attachment','image/png',0),(1612,5,'2023-02-06 02:50:03','2023-02-06 10:50:03','','Meadowcroft_PinotNoir_Carneros_Napa_2021','','inherit','closed','closed','','meadowcroft_pinotnoir_carneros_napa_2021-2','','','2023-02-06 02:51:12','2023-02-06 10:51:12','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_PinotNoir_Carneros_Napa_2021.png',0,'attachment','image/png',0),(1613,5,'2023-02-06 02:51:58','2023-02-06 10:51:58','','MC_2018_CABSAUV_LOUVAU','','inherit','closed','closed','','mc_2018_cabsauv_louvau-2','','','2023-02-06 02:52:26','2023-02-06 10:52:26','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_2018_CABSAUV_LOUVAU.png',0,'attachment','image/png',0),(1614,5,'2023-02-06 02:53:04','2023-02-06 10:53:04','','16CSNVNC_1-1','','inherit','closed','closed','','16csnvnc_1-1','','','2023-02-06 02:53:33','2023-02-06 10:53:33','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/16CSNVNC_1-1.png',0,'attachment','image/png',0),(1615,5,'2023-02-06 02:58:51','2023-02-06 10:58:51','','Meadowcroft-MC_DRYCREEKZIN_20-1000x2722-1','','inherit','closed','closed','','meadowcroft-mc_drycreekzin_20-1000x2722-1-2','','','2023-02-06 03:00:00','2023-02-06 11:00:00','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-MC_DRYCREEKZIN_20-1000x2722-1.webp',0,'attachment','image/webp',0),(1617,5,'2023-02-06 03:09:04','2023-02-06 11:09:04','','Meadowcroft_Pinot_Noir_Anderson-Valley_15_bottleshot','','inherit','closed','closed','','meadowcroft_pinot_noir_anderson-valley_15_bottleshot-2','','','2023-02-06 03:09:35','2023-02-06 11:09:35','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_Pinot_Noir_Anderson-Valley_15_bottleshot.png',0,'attachment','image/png',0),(1618,5,'2023-02-06 03:10:29','2023-02-06 11:10:29','','Meadowcroft_2020_PinotNoir_RussianriverValley_Bottleshot','','inherit','closed','closed','','meadowcroft_2020_pinotnoir_russianrivervalley_bottleshot-2','','','2023-02-06 03:11:05','2023-02-06 11:11:05','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_2020_PinotNoir_RussianriverValley_Bottleshot.png',0,'attachment','image/png',0),(1619,5,'2023-02-06 03:11:37','2023-02-06 11:11:37','','MC_ROUSSANNE_2017','','inherit','closed','closed','','mc_roussanne_2017-2','','','2023-02-06 03:12:04','2023-02-06 11:12:04','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_ROUSSANNE_2017.png',0,'attachment','image/png',0),(1620,5,'2023-02-06 03:12:43','2023-02-06 11:12:43','','MC2016_CH_SCTY_BottleShot-1','','inherit','closed','closed','','mc2016_ch_scty_bottleshot-1-2','','','2023-02-06 03:13:12','2023-02-06 11:13:12','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC2016_CH_SCTY_BottleShot-1.png',0,'attachment','image/png',0),(1621,5,'2023-02-06 03:16:20','2023-02-06 11:16:20','','17PNSCRR_1','','inherit','closed','closed','','17pnscrr_1-2','','','2023-02-06 03:16:51','2023-02-06 11:16:51','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/17PNSCRR_1.png',0,'attachment','image/png',0),(1622,5,'2023-02-06 03:17:42','2023-02-06 11:17:42','','MC17_Riesling_BottleShot_warm_dh','','inherit','closed','closed','','mc17_riesling_bottleshot_warm_dh-2','','','2023-02-06 03:18:14','2023-02-06 11:18:14','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC17_Riesling_BottleShot_warm_dh.png',0,'attachment','image/png',0),(1623,5,'2023-02-06 03:19:08','2023-02-06 11:19:08','','Meadowcroft_2018_LosCarneros_Chardonnay-1','','inherit','closed','closed','','meadowcroft_2018_loscarneros_chardonnay-1-2','','','2023-02-06 03:19:48','2023-02-06 11:19:48','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_2018_LosCarneros_Chardonnay-1.png',0,'attachment','image/png',0),(1624,5,'2023-02-06 03:20:50','2023-02-06 11:20:50','','19_Cab_NelsonRanch_Mendo_Bottleshot','','inherit','closed','closed','','19_cab_nelsonranch_mendo_bottleshot-2','','','2023-02-06 03:21:23','2023-02-06 11:21:23','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/19_Cab_NelsonRanch_Mendo_Bottleshot.png',0,'attachment','image/png',0),(1625,5,'2023-02-06 03:22:04','2023-02-06 11:22:04','','MC_Roussanne_2016_BottleShot-329x1024-1','','inherit','closed','closed','','mc_roussanne_2016_bottleshot-329x1024-1','','','2023-02-06 03:22:34','2023-02-06 11:22:34','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_Roussanne_2016_BottleShot-329x1024-1.png',0,'attachment','image/png',0),(1626,5,'2023-02-06 03:23:51','2023-02-06 11:23:51','','Meadowcroft_Zinfandel_2014_SpeedyCreek','','inherit','closed','closed','','meadowcroft_zinfandel_2014_speedycreek-2','','','2023-02-06 03:24:36','2023-02-06 11:24:36','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_Zinfandel_2014_SpeedyCreek.png',0,'attachment','image/png',0),(1627,5,'2023-02-06 03:26:49','2023-02-06 11:26:49','','Meadowcroft_PiontNoir_AndersonValley_2018','','inherit','closed','closed','','meadowcroft_piontnoir_andersonvalley_2018-2','','','2023-02-06 03:27:17','2023-02-06 11:27:17','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_PiontNoir_AndersonValley_2018.png',0,'attachment','image/png',0),(1628,5,'2023-02-06 03:28:17','2023-02-06 11:28:17','','MC_ROSE_17','','inherit','closed','closed','','mc_rose_17-2','','','2023-02-06 03:28:31','2023-02-06 11:28:31','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_ROSE_17.png',0,'attachment','image/png',0),(1629,5,'2023-02-06 03:29:05','2023-02-06 11:29:05','','MC_Roussanne_Louvau_DryCreekValley','','inherit','closed','closed','','mc_roussanne_louvau_drycreekvalley-2','','','2023-02-06 03:29:53','2023-02-06 11:29:53','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_Roussanne_Louvau_DryCreekValley.png',0,'attachment','image/png',0),(1630,5,'2023-02-06 03:30:45','2023-02-06 11:30:45','','MC_AndersonPinot2020','','inherit','closed','closed','','mc_andersonpinot2020-3','','','2023-02-06 03:32:23','2023-02-06 11:32:23','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_AndersonPinot2020.png',0,'attachment','image/png',0),(1631,5,'2023-02-06 03:33:48','2023-02-06 11:33:48','','21_Chard_Vinodelsol_SonomaCoast_bottleshot','','inherit','closed','closed','','21_chard_vinodelsol_sonomacoast_bottleshot-2','','','2023-02-06 03:34:11','2023-02-06 11:34:11','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/21_Chard_Vinodelsol_SonomaCoast_bottleshot.png',0,'attachment','image/png',0),(1632,5,'2023-02-06 04:01:41','2023-02-06 12:01:41','','Meadowcroft_Viognier_16_Bottleshot','','inherit','closed','closed','','meadowcroft_viognier_16_bottleshot-2','','','2023-02-06 04:02:05','2023-02-06 12:02:05','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_Viognier_16_Bottleshot.png',0,'attachment','image/png',0),(1633,5,'2023-02-06 04:02:48','2023-02-06 12:02:48','','MC_2018_FrenchColombard_BottleShot','','inherit','closed','closed','','mc_2018_frenchcolombard_bottleshot-2','','','2023-02-06 04:03:24','2023-02-06 12:03:24','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_2018_FrenchColombard_BottleShot.png',0,'attachment','image/png',0),(1634,5,'2023-02-06 04:04:08','2023-02-06 12:04:08','','16PNNVLCv2_1','','inherit','closed','closed','','16pnnvlcv2_1-2','','','2023-02-06 04:04:35','2023-02-06 12:04:35','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/16PNNVLCv2_1.png',0,'attachment','image/png',0),(1635,5,'2023-02-06 04:05:50','2023-02-06 12:05:50','','Meadowcroft_Chardonnay_NapaValley_Carneros_2019','','inherit','closed','closed','','meadowcroft_chardonnay_napavalley_carneros_2019-2','','','2023-02-06 04:06:13','2023-02-06 12:06:13','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_Chardonnay_NapaValley_Carneros_2019.png',0,'attachment','image/png',0),(1636,5,'2023-02-06 04:06:56','2023-02-06 12:06:56','','Meadowcroft_Syrah_California_2018','','inherit','closed','closed','','meadowcroft_syrah_california_2018-2','','','2023-02-06 04:07:17','2023-02-06 12:07:17','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_Syrah_California_2018.png',0,'attachment','image/png',0),(1637,5,'2023-02-06 04:08:23','2023-02-06 12:08:23','','Meadowcroft-Sparkling-Bottle-shot-1','','inherit','closed','closed','','meadowcroft-sparkling-bottle-shot-1','','','2023-02-06 04:08:44','2023-02-06 12:08:44','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-Sparkling-Bottle-shot-1.png',0,'attachment','image/png',0),(1638,5,'2023-02-06 04:16:26','2023-02-06 12:16:26','','Meadowcroft_2020_Cornerstone_Pinotnoir_Bottleshotpng','','inherit','closed','closed','','meadowcroft_2020_cornerstone_pinotnoir_bottleshotpng-2','','','2023-02-06 04:16:56','2023-02-06 12:16:56','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_2020_Cornerstone_Pinotnoir_Bottleshotpng.png',0,'attachment','image/png',0),(1639,5,'2023-02-06 04:18:10','2023-02-06 12:18:10','','summer-pairings','','inherit','closed','closed','','summer-pairings-2','','','2023-02-06 04:19:29','2023-02-06 12:19:29','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/summer-pairings.jpg',0,'attachment','image/jpeg',0),(1640,5,'2023-02-06 04:19:34','2023-02-06 12:19:34','','MC_FRENCHCOLUMBARD_2017','','inherit','closed','closed','','mc_frenchcolumbard_2017-2','','','2023-02-06 04:19:57','2023-02-06 12:19:57','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_FRENCHCOLUMBARD_2017.png',0,'attachment','image/png',0),(1641,5,'2023-02-06 04:20:35','2023-02-06 12:20:35','','Meadowcroft_2015_CabSauv_Mendo','','inherit','closed','closed','','meadowcroft_2015_cabsauv_mendo-2','','','2023-02-06 04:20:59','2023-02-06 12:20:59','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_2015_CabSauv_Mendo.png',0,'attachment','image/png',0),(1642,5,'2023-02-06 04:21:49','2023-02-06 12:21:49','','17PNSCSC_1','','inherit','closed','closed','','17pnscsc_1-2','','','2023-02-06 04:22:11','2023-02-06 12:22:11','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/17PNSCSC_1.png',0,'attachment','image/png',0),(1643,5,'2023-02-06 04:23:03','2023-02-06 12:23:03','','Meadowcroft_SauvBlanc_2016_BottleShot-1','','inherit','closed','closed','','meadowcroft_sauvblanc_2016_bottleshot-1-2','','','2023-02-06 04:23:22','2023-02-06 12:23:22','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_SauvBlanc_2016_BottleShot-1.png',0,'attachment','image/png',0),(1644,5,'2023-02-06 04:23:55','2023-02-06 12:23:55','','rose-of-pinot-noir','','inherit','closed','closed','','rose-of-pinot-noir-2','','','2023-02-06 04:24:38','2023-02-06 12:24:38','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/rose-of-pinot-noir.png',0,'attachment','image/png',0),(1645,5,'2023-02-06 04:25:14','2023-02-06 12:25:14','','Meadowcroft_SauvBlanc_SonomaCoast_2021','','inherit','closed','closed','','meadowcroft_sauvblanc_sonomacoast_2021-2','','','2023-02-06 04:25:37','2023-02-06 12:25:37','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_SauvBlanc_SonomaCoast_2021.png',0,'attachment','image/png',0),(1646,5,'2023-02-06 04:26:09','2023-02-06 12:26:09','','Meadowcroft_Pinot_Noir_Anderson-Valley_16_bottleshot','','inherit','closed','closed','','meadowcroft_pinot_noir_anderson-valley_16_bottleshot-2','','','2023-02-06 04:26:29','2023-02-06 12:26:29','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_Pinot_Noir_Anderson-Valley_16_bottleshot.png',0,'attachment','image/png',0),(1647,5,'2023-02-06 04:27:20','2023-02-06 12:27:20','','Meadowcroft_PinotNoir_Cornerstone_LosCarneros_2018','','inherit','closed','closed','','meadowcroft_pinotnoir_cornerstone_loscarneros_2018-2','','','2023-02-06 04:27:41','2023-02-06 12:27:41','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_PinotNoir_Cornerstone_LosCarneros_2018.png',0,'attachment','image/png',0),(1648,5,'2023-02-06 04:29:19','2023-02-06 12:29:19','','Meadowcroft-_21_Pinot_Noir_AndersonValley','','inherit','closed','closed','','meadowcroft-_21_pinot_noir_andersonvalley-2','','','2023-02-06 04:29:56','2023-02-06 12:29:56','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-_21_Pinot_Noir_AndersonValley.png',0,'attachment','image/png',0),(1649,5,'2023-02-06 04:31:02','2023-02-06 12:31:02','','2021-Meadowcroft-Sonoma-Coast-Pinot_Bottleshot','','inherit','closed','closed','','2021-meadowcroft-sonoma-coast-pinot_bottleshot-2','','','2023-02-06 04:31:58','2023-02-06 12:31:58','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/2021-Meadowcroft-Sonoma-Coast-Pinot_Bottleshot.png',0,'attachment','image/png',0),(1650,5,'2023-02-06 04:33:03','2023-02-06 12:33:03','','Meadowcroft_20_Chard_Napa_Carneros_BottleShot-','','inherit','closed','closed','','meadowcroft_20_chard_napa_carneros_bottleshot-2','','','2023-02-06 04:33:32','2023-02-06 12:33:32','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_20_Chard_Napa_Carneros_BottleShot-.png',0,'attachment','image/png',0),(1651,5,'2023-02-06 04:41:08','2023-02-06 12:41:08','','tom-bw','','inherit','closed','closed','','tom-bw-2','','','2023-02-06 05:28:18','2023-02-06 13:28:18','',954,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/tom-bw.jpg',0,'attachment','image/jpeg',0),(1652,5,'2023-02-06 04:43:28','2023-02-06 12:43:28','','2020_Pinot_Blanc_Bottleshot-1','','inherit','closed','closed','','2020_pinot_blanc_bottleshot-1-2','','','2023-02-06 04:44:13','2023-02-06 12:44:13','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/2020_Pinot_Blanc_Bottleshot-1.png',0,'attachment','image/png',0),(1653,5,'2023-02-06 04:44:58','2023-02-06 12:44:58','','Meadowcroft_2019_LouvauVineyard_DryCreekValley_Viognier','','inherit','closed','closed','','meadowcroft_2019_louvauvineyard_drycreekvalley_viognier-2','','','2023-02-06 04:45:24','2023-02-06 12:45:24','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_2019_LouvauVineyard_DryCreekValley_Viognier.png',0,'attachment','image/png',0),(1654,5,'2023-02-06 04:45:59','2023-02-06 12:45:59','','MC_Roussanne_2021_Bottleshot','','inherit','closed','closed','','mc_roussanne_2021_bottleshot-2','','','2023-02-06 04:46:19','2023-02-06 12:46:19','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_Roussanne_2021_Bottleshot.png',0,'attachment','image/png',0),(1655,5,'2023-02-06 04:47:19','2023-02-06 12:47:19','','15CSNVEG_1','','inherit','closed','closed','','15csnveg_1-2','','','2023-02-06 04:47:39','2023-02-06 12:47:39','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/15CSNVEG_1.png',0,'attachment','image/png',0),(1656,5,'2023-02-06 04:48:29','2023-02-06 12:48:29','','MC_GSM_Rose_2021_BottleShot-1','','inherit','closed','closed','','mc_gsm_rose_2021_bottleshot-1-2','','','2023-02-06 04:48:50','2023-02-06 12:48:50','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_GSM_Rose_2021_BottleShot-1.png',0,'attachment','image/png',0),(1657,5,'2023-02-06 04:49:24','2023-02-06 12:49:24','','13CSNVEG_1','','inherit','closed','closed','','13csnveg_1-2','','','2023-02-06 04:49:46','2023-02-06 12:49:46','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/13CSNVEG_1.png',0,'attachment','image/png',0),(1658,5,'2023-02-06 04:50:18','2023-02-06 12:50:18','','petar-bw','','inherit','closed','closed','','petar-bw-2','','','2023-02-06 05:33:07','2023-02-06 13:33:07','',957,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/petar-bw.jpg',0,'attachment','image/jpeg',0),(1659,5,'2023-02-06 04:56:00','2023-02-06 12:56:00','','MC_Roussanne_2016_BottleShot-329x1024-1','','inherit','closed','closed','','mc_roussanne_2016_bottleshot-329x1024-1-2','','','2023-02-06 04:56:06','2023-02-06 12:56:06','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_Roussanne_2016_BottleShot-329x1024-1-1.png',0,'attachment','image/png',0),(1660,5,'2023-02-06 04:59:04','2023-02-06 12:59:04','','testimonials','','inherit','closed','closed','','testimonials-2','','','2023-02-06 04:59:28','2023-02-06 12:59:28','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/testimonials.jpg',0,'attachment','image/jpeg',0),(1661,5,'2023-02-06 05:00:20','2023-02-06 13:00:20','','Meadowcroft_2017_NapaValley_CabernetSauvignon','','inherit','closed','closed','','meadowcroft_2017_napavalley_cabernetsauvignon-2','','','2023-02-06 05:00:36','2023-02-06 13:00:36','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_2017_NapaValley_CabernetSauvignon.png',0,'attachment','image/png',0),(1662,5,'2023-02-06 05:01:22','2023-02-06 13:01:22','','MC_2018_Viognier_Louvau_DryCreekValley','','inherit','closed','closed','','mc_2018_viognier_louvau_drycreekvalley-2','','','2023-02-06 05:01:41','2023-02-06 13:01:41','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_2018_Viognier_Louvau_DryCreekValley.png',0,'attachment','image/png',0),(1663,5,'2023-02-06 05:01:39','2023-02-06 13:01:39','','rose-of-pinot-noir','','inherit','closed','closed','','rose-of-pinot-noir-3','','','2023-02-06 05:01:45','2023-02-06 13:01:45','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/rose-of-pinot-noir.jpg',0,'attachment','image/jpeg',0),(1664,5,'2023-02-06 05:02:10','2023-02-06 13:02:10','','food-wine-blog1','','inherit','closed','closed','','food-wine-blog1-2','','','2023-02-06 05:02:29','2023-02-06 13:02:29','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/food-wine-blog1.jpg',0,'attachment','image/jpeg',0),(1665,5,'2023-02-06 05:03:43','2023-02-06 13:03:43','','Meadowcroft-Sparkling-Bottle-shot','','inherit','closed','closed','','meadowcroft-sparkling-bottle-shot-3','','','2023-02-06 05:05:53','2023-02-06 13:05:53','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-Sparkling-Bottle-shot.png',0,'attachment','image/png',0),(1667,5,'2023-02-06 05:06:39','2023-02-06 13:06:39','','Meadowcroft_SauvBlanc_SonomaCoast_2020','','inherit','closed','closed','','meadowcroft_sauvblanc_sonomacoast_2020-2','','','2023-02-06 05:06:59','2023-02-06 13:06:59','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_SauvBlanc_SonomaCoast_2020.png',0,'attachment','image/png',0),(1668,5,'2023-02-06 05:07:31','2023-02-06 13:07:31','','MC_FrenchColombard2019_Bottleshot','','inherit','closed','closed','','mc_frenchcolombard2019_bottleshot-2','','','2023-02-06 05:07:52','2023-02-06 13:07:52','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_FrenchColombard2019_Bottleshot.png',0,'attachment','image/png',0),(1669,5,'2023-02-06 05:09:01','2023-02-06 13:09:01','','Meadowcroft-Sparkling-Bottle-shot-1','','inherit','closed','closed','','meadowcroft-sparkling-bottle-shot-1-2','','','2023-02-06 05:09:40','2023-02-06 13:09:40','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-Sparkling-Bottle-shot-1-1.png',0,'attachment','image/png',0),(1670,5,'2023-02-06 05:09:30','2023-02-06 13:09:30','','Meadowcroft_Roussanne_DCV_LouvauVineyard_2019','','inherit','closed','closed','','meadowcroft_roussanne_dcv_louvauvineyard_2019-2','','','2023-02-06 05:10:01','2023-02-06 13:10:01','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_Roussanne_DCV_LouvauVineyard_2019.png',0,'attachment','image/png',0),(1671,5,'2023-02-06 05:11:39','2023-02-06 13:11:39','','Meadowcroft-2018_Cabernet_SpringMT_BottleShot','','inherit','closed','closed','','meadowcroft-2018_cabernet_springmt_bottleshot-2','','','2023-02-06 05:12:03','2023-02-06 13:12:03','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-2018_Cabernet_SpringMT_BottleShot.png',0,'attachment','image/png',0),(1672,5,'2023-02-06 05:12:54','2023-02-06 13:12:54','','Meadowcroft_2017_Malbec_BottleShot_v2','','inherit','closed','closed','','meadowcroft_2017_malbec_bottleshot_v2-2','','','2023-02-06 05:13:15','2023-02-06 13:13:15','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_2017_Malbec_BottleShot_v2.png',0,'attachment','image/png',0),(1673,5,'2023-02-06 05:14:07','2023-02-06 13:14:07','','gsm','','inherit','closed','closed','','gsm-3','','','2023-02-06 05:14:35','2023-02-06 13:14:35','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/gsm.png',0,'attachment','image/png',0),(1675,5,'2023-02-06 05:15:37','2023-02-06 13:15:37','','Meadowcroft-River-Trace-2020_Bottleshot','','inherit','closed','closed','','meadowcroft-river-trace-2020_bottleshot-2','','','2023-02-06 05:15:56','2023-02-06 13:15:56','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-River-Trace-2020_Bottleshot.png',0,'attachment','image/png',0),(1676,5,'2023-02-06 05:16:33','2023-02-06 13:16:33','','2011_MC_KnightsValley_Zinfandel','','inherit','closed','closed','','2011_mc_knightsvalley_zinfandel-2','','','2023-02-06 05:17:02','2023-02-06 13:17:02','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/2011_MC_KnightsValley_Zinfandel.png',0,'attachment','image/png',0),(1678,5,'2023-02-06 05:17:53','2023-02-06 13:17:53','','Meadowcroft-2014-Napa-Valley-Cab-BottleShot','','inherit','closed','closed','','meadowcroft-2014-napa-valley-cab-bottleshot-2','','','2023-02-06 05:18:19','2023-02-06 13:18:19','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-2014-Napa-Valley-Cab-BottleShot.png',0,'attachment','image/png',0),(1679,5,'2023-02-06 05:19:06','2023-02-06 13:19:06','','2021_Pinot_Blanc_Bottleshot-1','','inherit','closed','closed','','2021_pinot_blanc_bottleshot-1-2','','','2023-02-06 05:19:33','2023-02-06 13:19:33','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/2021_Pinot_Blanc_Bottleshot-1.png',0,'attachment','image/png',0),(1687,5,'2023-02-06 20:56:42','2023-02-07 04:56:42','','Meadowcroft_Syrah_2014_BottleShot-1-scaled','','inherit','closed','closed','','meadowcroft_syrah_2014_bottleshot-1-scaled','','','2023-02-06 20:57:06','2023-02-07 04:57:06','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_Syrah_2014_BottleShot-1-scaled-1.png',0,'attachment','image/png',0),(1688,5,'2023-02-06 20:58:49','2023-02-07 04:58:49','','Meadowcroft-_21_Pinot_Noir_AndersonValley-362x1024-1','','inherit','closed','closed','','meadowcroft-_21_pinot_noir_andersonvalley-362x1024-1','','','2023-02-06 20:59:15','2023-02-07 04:59:15','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-_21_Pinot_Noir_AndersonValley-362x1024-1.png',0,'attachment','image/png',0),(1689,5,'2023-02-06 21:00:10','2023-02-07 05:00:10','','Meadowcroft_2017CabSauv_Mendocino_NelsonRanch','','inherit','closed','closed','','meadowcroft_2017cabsauv_mendocino_nelsonranch-2','','','2023-02-06 21:00:38','2023-02-07 05:00:38','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_2017CabSauv_Mendocino_NelsonRanch.png',0,'attachment','image/png',0),(1690,5,'2023-02-06 21:01:43','2023-02-07 05:01:43','','MC_15_Roussanne_BottleShot','','inherit','closed','closed','','mc_15_roussanne_bottleshot-2','','','2023-02-06 21:02:17','2023-02-07 05:02:17','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_15_Roussanne_BottleShot.png',0,'attachment','image/png',0),(1691,5,'2023-02-06 21:03:45','2023-02-07 05:03:45','','MC_21_PinotGris_BottleShot-281x1024-1','','inherit','closed','closed','','mc_21_pinotgris_bottleshot-281x1024-1','','','2023-02-06 21:04:17','2023-02-07 05:04:17','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_21_PinotGris_BottleShot-281x1024-1.png',0,'attachment','image/png',0),(1692,5,'2023-02-06 21:05:17','2023-02-07 05:05:17','','18ZNOLDVINE_1-1','','inherit','closed','closed','','18znoldvine_1-1-2','','','2023-02-06 21:05:36','2023-02-07 05:05:36','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/18ZNOLDVINE_1-1.png',0,'attachment','image/png',0),(1693,5,'2023-02-06 21:06:59','2023-02-07 05:06:59','','17ThePanorama_1','','inherit','closed','closed','','17thepanorama_1-2','','','2023-02-06 21:07:16','2023-02-07 05:07:16','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/17ThePanorama_1.png',0,'attachment','image/png',0),(1694,5,'2023-02-06 21:08:01','2023-02-07 05:08:01','','MC18_Riesling_BottleShot','','inherit','closed','closed','','mc18_riesling_bottleshot-2','','','2023-02-06 21:08:19','2023-02-07 05:08:19','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC18_Riesling_BottleShot.png',0,'attachment','image/png',0),(1695,5,'2023-02-06 21:09:22','2023-02-07 05:09:22','','2010_MC_Zinfandel-lg','','inherit','closed','closed','','2010_mc_zinfandel-lg-2','','','2023-02-06 21:09:42','2023-02-07 05:09:42','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/2010_MC_Zinfandel-lg.png',0,'attachment','image/png',0),(1696,5,'2023-02-06 21:10:42','2023-02-07 05:10:42','','15CSSCLV_1','','inherit','closed','closed','','15cssclv_1-2','','','2023-02-06 21:11:08','2023-02-07 05:11:08','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/15CSSCLV_1.png',0,'attachment','image/png',0),(1697,5,'2023-02-06 21:11:53','2023-02-07 05:11:53','','MC_2017_CABSAUV_LOUVAU','','inherit','closed','closed','','mc_2017_cabsauv_louvau-2','','','2023-02-06 21:12:21','2023-02-07 05:12:21','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_2017_CABSAUV_LOUVAU.png',0,'attachment','image/png',0),(1698,5,'2023-02-06 21:13:21','2023-02-07 05:13:21','','Meadowcroft_NapaValley_CabernetSauvignon_2018_small','','inherit','closed','closed','','meadowcroft_napavalley_cabernetsauvignon_2018_small-2','','','2023-02-06 21:13:36','2023-02-07 05:13:36','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_NapaValley_CabernetSauvignon_2018_small.png',0,'attachment','image/png',0),(1699,5,'2023-02-06 21:14:31','2023-02-07 05:14:31','','MC_2019_WYLDVIN_CABERNET_Bottleshot','','inherit','closed','closed','','mc_2019_wyldvin_cabernet_bottleshot-2','','','2023-02-06 21:14:49','2023-02-07 05:14:49','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_2019_WYLDVIN_CABERNET_Bottleshot.png',0,'attachment','image/png',0),(1700,5,'2023-02-06 21:15:52','2023-02-07 05:15:52','','MC_21_PinotGris_BottleShot','','inherit','closed','closed','','mc_21_pinotgris_bottleshot-2','','','2023-02-06 21:16:29','2023-02-07 05:16:29','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_21_PinotGris_BottleShot.png',0,'attachment','image/png',0),(1701,5,'2023-02-06 21:21:34','2023-02-07 05:21:34','','MC2017_CS_MV_BottleShot-scaled-1','','inherit','closed','closed','','mc2017_cs_mv_bottleshot-scaled-1','','','2023-02-06 21:22:00','2023-02-07 05:22:00','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC2017_CS_MV_BottleShot-scaled-1.jpg',0,'attachment','image/jpeg',0),(1702,5,'2023-02-06 21:22:38','2023-02-07 05:22:38','','All-She-Wrote-Wax','','inherit','closed','closed','','all-she-wrote-wax-2','','','2023-02-06 21:23:03','2023-02-07 05:23:03','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/All-She-Wrote-Wax.png',0,'attachment','image/png',0),(1703,5,'2023-02-06 21:26:37','2023-02-07 05:26:37','','balloon-2','','inherit','closed','closed','','balloon-2-3','','','2023-02-06 21:27:05','2023-02-07 05:27:05','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/balloon-2.jpg',0,'attachment','image/jpeg',0),(1704,5,'2023-02-06 21:28:09','2023-02-07 05:28:09','','MC_Malbec_Rose_2020_BottleShot','','inherit','closed','closed','','mc_malbec_rose_2020_bottleshot-2','','','2023-02-06 21:28:23','2023-02-07 05:28:23','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_Malbec_Rose_2020_BottleShot.png',0,'attachment','image/png',0),(1705,5,'2023-02-06 21:29:37','2023-02-07 05:29:37','','Meadowcroft_2016_Malbec_BottleShot.jpg','','inherit','closed','closed','','meadowcroft_2016_malbec_bottleshot-jpg-2','','','2023-02-06 21:29:57','2023-02-07 05:29:57','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_2016_Malbec_BottleShot.jpg.png',0,'attachment','image/png',0),(1706,5,'2023-02-06 21:31:04','2023-02-07 05:31:04','','Meadowcroft-2018_Cabernet_SM_Bottleshot','','inherit','closed','closed','','meadowcroft-2018_cabernet_sm_bottleshot-2','','','2023-02-06 21:31:16','2023-02-07 05:31:16','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-2018_Cabernet_SM_Bottleshot.png',0,'attachment','image/png',0),(1707,5,'2023-02-06 21:32:06','2023-02-07 05:32:06','','Meadowcroft_AnnivCuvee_Bottleshot','','inherit','closed','closed','','meadowcroft_annivcuvee_bottleshot-2','','','2023-02-06 21:32:27','2023-02-07 05:32:27','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_AnnivCuvee_Bottleshot.png',0,'attachment','image/png',0),(1708,5,'2023-02-06 21:33:10','2023-02-07 05:33:10','','Meadowcroft-River-Trace-2017','','inherit','closed','closed','','meadowcroft-river-trace-2017-2','','','2023-02-06 21:33:29','2023-02-07 05:33:29','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-River-Trace-2017.png',0,'attachment','image/png',0),(1709,5,'2023-02-06 21:34:14','2023-02-07 05:34:14','','19_PinotNoir_Cornerstone','','inherit','closed','closed','','19_pinotnoir_cornerstone-2','','','2023-02-06 21:34:40','2023-02-07 05:34:40','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/19_PinotNoir_Cornerstone.png',0,'attachment','image/png',0),(1710,5,'2023-02-06 21:35:38','2023-02-07 05:35:38','','Meadowcroft_SauvBlanc_SonomaCoast_2019','','inherit','closed','closed','','meadowcroft_sauvblanc_sonomacoast_2019-2','','','2023-02-06 21:35:56','2023-02-07 05:35:56','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_SauvBlanc_SonomaCoast_2019.png',0,'attachment','image/png',0),(1711,5,'2023-02-06 21:36:26','2023-02-07 05:36:26','','rose-of-malbec','','inherit','closed','closed','','rose-of-malbec-2','','','2023-02-06 21:36:43','2023-02-07 05:36:43','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/rose-of-malbec.png',0,'attachment','image/png',0),(1712,5,'2023-02-06 21:37:42','2023-02-07 05:37:42','','Meadowcroft_2021_Rose_Sonoma-Coast_BottleShot','','inherit','closed','closed','','meadowcroft_2021_rose_sonoma-coast_bottleshot-2','','','2023-02-06 21:37:58','2023-02-07 05:37:58','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_2021_Rose_Sonoma-Coast_BottleShot.png',0,'attachment','image/png',0),(1713,5,'2023-02-06 21:38:33','2023-02-07 05:38:33','','Meadowcroft_NapaValley_CabernetSauvignon_2020_Bottleshot','','inherit','closed','closed','','meadowcroft_napavalley_cabernetsauvignon_2020_bottleshot-2','','','2023-02-06 21:39:07','2023-02-07 05:39:07','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_NapaValley_CabernetSauvignon_2020_Bottleshot.png',0,'attachment','image/png',0),(1714,5,'2023-02-06 21:39:47','2023-02-07 05:39:47','','Meadowcroft_Zin_Speedy_13','','inherit','closed','closed','','meadowcroft_zin_speedy_13-2','','','2023-02-06 21:40:10','2023-02-07 05:40:10','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_Zin_Speedy_13.png',0,'attachment','image/png',0),(1715,5,'2023-02-06 22:08:16','2023-02-07 06:08:16','','MC_FrenchColombard2021_Bottleshot-281x1024-1','','inherit','closed','closed','','mc_frenchcolombard2021_bottleshot-281x1024-1','','','2023-02-06 22:08:30','2023-02-07 06:08:30','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_FrenchColombard2021_Bottleshot-281x1024-1.png',0,'attachment','image/png',0),(1716,5,'2023-02-06 22:09:15','2023-02-07 06:09:15','','2017_ThePanorama_StagsLeapDistrict_Napa_RedBlend','','inherit','closed','closed','','2017_thepanorama_stagsleapdistrict_napa_redblend-2','','','2023-02-06 22:09:28','2023-02-07 06:09:28','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/2017_ThePanorama_StagsLeapDistrict_Napa_RedBlend.png',0,'attachment','image/png',0),(1717,5,'2023-02-06 22:09:59','2023-02-07 06:09:59','','Meadowcroft_Pinot_Noir_CarnerosNapa_15_bottleshot-1','','inherit','closed','closed','','meadowcroft_pinot_noir_carnerosnapa_15_bottleshot-1-2','','','2023-02-06 22:10:11','2023-02-07 06:10:11','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_Pinot_Noir_CarnerosNapa_15_bottleshot-1.png',0,'attachment','image/png',0),(1718,5,'2023-02-06 22:10:49','2023-02-07 06:10:49','','Meadowcroft_21_Chard_AV_MENDOCINO_BottleShot_-1','','inherit','closed','closed','','meadowcroft_21_chard_av_mendocino_bottleshot_-1-2','','','2023-02-06 22:11:09','2023-02-07 06:11:09','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_21_Chard_AV_MENDOCINO_BottleShot_-1.png',0,'attachment','image/png',0),(1719,5,'2023-02-06 22:11:54','2023-02-07 06:11:54','','Meadowcroft_2021_Viognier_WYLDVIN_BottleShot','','inherit','closed','closed','','meadowcroft_2021_viognier_wyldvin_bottleshot-2','','','2023-02-06 22:12:13','2023-02-07 06:12:13','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_2021_Viognier_WYLDVIN_BottleShot.png',0,'attachment','image/png',0),(1720,5,'2023-02-06 22:13:09','2023-02-07 06:13:09','','MC_Rose_2016_BottleShot','','inherit','closed','closed','','mc_rose_2016_bottleshot-2','','','2023-02-06 22:13:32','2023-02-07 06:13:32','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_Rose_2016_BottleShot.png',0,'attachment','image/png',0),(1721,5,'2023-02-06 22:14:49','2023-02-07 06:14:49','','MC_Veeeder_2018_Bottleshot_png','','inherit','closed','closed','','mc_veeeder_2018_bottleshot_png-2','','','2023-02-06 22:15:02','2023-02-07 06:15:02','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_Veeeder_2018_Bottleshot_png.png',0,'attachment','image/png',0),(1722,5,'2023-02-06 22:16:03','2023-02-07 06:16:03','','MC_SONOMACOASTPINOT_2018','','inherit','closed','closed','','mc_sonomacoastpinot_2018-2','','','2023-02-06 22:16:22','2023-02-07 06:16:22','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_SONOMACOASTPINOT_2018.png',0,'attachment','image/png',0),(1723,5,'2023-02-06 22:18:31','2023-02-07 06:18:31','','NV-Let_It_Bee_Bottleshot-1','','inherit','closed','closed','','nv-let_it_bee_bottleshot-1','','','2023-02-06 22:18:57','2023-02-07 06:18:57','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/NV-Let_It_Bee_Bottleshot-1.png',0,'attachment','image/png',0),(1724,5,'2023-02-06 22:19:40','2023-02-07 06:19:40','','MC_2020_WYLDVIN_CABERNET_Bottleshot-1','','inherit','closed','closed','','mc_2020_wyldvin_cabernet_bottleshot-1','','','2023-02-06 22:20:01','2023-02-07 06:20:01','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_2020_WYLDVIN_CABERNET_Bottleshot-1.png',0,'attachment','image/png',0),(1726,5,'2023-02-06 22:23:15','2023-02-07 06:23:15','','Meadowcroft_Zin_Speedy_12-scaled-1','','inherit','closed','closed','','meadowcroft_zin_speedy_12-scaled-1','','','2023-02-06 22:23:43','2023-02-07 06:23:43','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_Zin_Speedy_12-scaled-1.png',0,'attachment','image/png',0),(1727,5,'2023-02-06 22:50:40','2023-02-07 06:50:40','','MC_2019_Malbec_Clements_Hill_Bottleshot','','inherit','closed','closed','','mc_2019_malbec_clements_hill_bottleshot-2','','','2023-02-06 22:50:57','2023-02-07 06:50:57','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_2019_Malbec_Clements_Hill_Bottleshot.png',0,'attachment','image/png',0),(1728,5,'2023-02-06 22:51:37','2023-02-07 06:51:37','','Meadowcroft_2016_CabSauv_Mendo','','inherit','closed','closed','','meadowcroft_2016_cabsauv_mendo-2','','','2023-02-06 22:51:52','2023-02-07 06:51:52','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_2016_CabSauv_Mendo.png',0,'attachment','image/png',0),(1729,5,'2023-02-06 22:52:34','2023-02-07 06:52:34','','Meadowcroft-MC_DRYCREEKZIN_20','','inherit','closed','closed','','meadowcroft-mc_drycreekzin_20-2','','','2023-02-06 22:53:18','2023-02-07 06:53:18','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-MC_DRYCREEKZIN_20.png',0,'attachment','image/png',0),(1730,5,'2023-02-06 22:54:03','2023-02-07 06:54:03','','Meadowcroft2016RRVChardonnayBottleShot','','inherit','closed','closed','','meadowcroft2016rrvchardonnaybottleshot-2','','','2023-02-06 22:54:23','2023-02-07 06:54:23','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft2016RRVChardonnayBottleShot.png',0,'attachment','image/png',0),(1731,5,'2023-02-06 22:55:08','2023-02-07 06:55:08','','MC2015_CH_SC_BottleShot','','inherit','closed','closed','','mc2015_ch_sc_bottleshot-2','','','2023-02-06 22:55:23','2023-02-07 06:55:23','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC2015_CH_SC_BottleShot.png',0,'attachment','image/png',0),(1732,5,'2023-02-06 22:55:59','2023-02-07 06:55:59','','16CSNVEG_1','','inherit','closed','closed','','16csnveg_1-2','','','2023-02-06 22:56:19','2023-02-07 06:56:19','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/16CSNVEG_1.png',0,'attachment','image/png',0),(1734,5,'2023-02-06 22:59:49','2023-02-07 06:59:49','','MC_Roussanne_2020_Bottleshot_png','','inherit','closed','closed','','mc_roussanne_2020_bottleshot_png-2','','','2023-02-06 23:00:06','2023-02-07 07:00:06','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_Roussanne_2020_Bottleshot_png.png',0,'attachment','image/png',0),(1735,5,'2023-02-06 23:00:40','2023-02-07 07:00:40','','MC15_Riesling_BottleShot-scaled','','inherit','closed','closed','','mc15_riesling_bottleshot-scaled','','','2023-02-06 23:00:59','2023-02-07 07:00:59','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC15_Riesling_BottleShot-scaled-1.jpg',0,'attachment','image/jpeg',0),(1736,5,'2023-02-06 23:01:41','2023-02-07 07:01:41','','14CSNVEG_1','','inherit','closed','closed','','14csnveg_1-2','','','2023-02-06 23:02:00','2023-02-07 07:02:00','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/14CSNVEG_1.png',0,'attachment','image/png',0),(1737,5,'2023-02-06 23:03:35','2023-02-07 07:03:35','','19PIINOTNOIR_RRValley_Screwcap','','inherit','closed','closed','','19piinotnoir_rrvalley_screwcap-2','','','2023-02-06 23:03:50','2023-02-07 07:03:50','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/19PIINOTNOIR_RRValley_Screwcap.png',0,'attachment','image/png',0),(1738,5,'2023-02-06 23:04:36','2023-02-07 07:04:36','','MC_FrenchColombard2021_Bottleshot','','inherit','closed','closed','','mc_frenchcolombard2021_bottleshot-2','','','2023-02-06 23:05:06','2023-02-07 07:05:06','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_FrenchColombard2021_Bottleshot.png',0,'attachment','image/png',0),(1740,5,'2023-02-06 23:06:31','2023-02-07 07:06:31','','Meadowcroft_Zinfandel_2019_SpeedyCreek-1','','inherit','closed','closed','','meadowcroft_zinfandel_2019_speedycreek-1-2','','','2023-02-06 23:06:44','2023-02-07 07:06:44','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_Zinfandel_2019_SpeedyCreek-1.png',0,'attachment','image/png',0),(1741,5,'2023-02-06 23:07:22','2023-02-07 07:07:22','','MC_Pinot_Rose_2020_BottleShot','','inherit','closed','closed','','mc_pinot_rose_2020_bottleshot-2','','','2023-02-06 23:07:33','2023-02-07 07:07:33','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_Pinot_Rose_2020_BottleShot.png',0,'attachment','image/png',0),(1742,5,'2023-02-06 23:08:03','2023-02-07 07:08:03','','Meadowcroft-2019_Cabernet_Oakville_Bottleshot','','inherit','closed','closed','','meadowcroft-2019_cabernet_oakville_bottleshot-2','','','2023-02-06 23:08:27','2023-02-07 07:08:27','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-2019_Cabernet_Oakville_Bottleshot.png',0,'attachment','image/png',0),(1743,5,'2023-02-06 23:09:08','2023-02-07 07:09:08','','Meadowcroft-River-Trace-2016','','inherit','closed','closed','','meadowcroft-river-trace-2016-2','','','2023-02-06 23:09:22','2023-02-07 07:09:22','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-River-Trace-2016.png',0,'attachment','image/png',0),(1744,5,'2023-02-06 23:10:04','2023-02-07 07:10:04','','MC_VIOGNIER_2017','','inherit','closed','closed','','mc_viognier_2017-2','','','2023-02-06 23:10:27','2023-02-07 07:10:27','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_VIOGNIER_2017.png',0,'attachment','image/png',0),(1745,5,'2023-02-06 23:11:12','2023-02-07 07:11:12','','20_Chard_TaylorsCrown_Bottleshot','','inherit','closed','closed','','20_chard_taylorscrown_bottleshot-2','','','2023-02-06 23:11:28','2023-02-07 07:11:28','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/20_Chard_TaylorsCrown_Bottleshot.png',0,'attachment','image/png',0),(1746,5,'2023-02-06 23:12:04','2023-02-07 07:12:04','','MC_ROSE_18','','inherit','closed','closed','','mc_rose_18-2','','','2023-02-06 23:12:22','2023-02-07 07:12:22','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_ROSE_18.png',0,'attachment','image/png',0),(1748,5,'2023-02-06 23:13:35','2023-02-07 07:13:35','','Meadowcroft_PinotNoir_RRV15_BotteShot-scaled','','inherit','closed','closed','','meadowcroft_pinotnoir_rrv15_botteshot-scaled','','','2023-02-06 23:13:50','2023-02-07 07:13:50','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_PinotNoir_RRV15_BotteShot-scaled-1.jpg',0,'attachment','image/jpeg',0),(1749,5,'2023-02-06 23:14:31','2023-02-07 07:14:31','','Meadowcroft-Red-Hills-2020-CabSauv-376x1024-1','','inherit','closed','closed','','meadowcroft-red-hills-2020-cabsauv-376x1024-1','','','2023-02-06 23:14:42','2023-02-07 07:14:42','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-Red-Hills-2020-CabSauv-376x1024-1.png',0,'attachment','image/png',0),(1751,5,'2023-02-06 23:16:17','2023-02-07 07:16:17','','rose-1','','inherit','closed','closed','','rose-1','','','2023-02-06 23:17:10','2023-02-07 07:17:10','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/rose-1.jpg',0,'attachment','image/jpeg',0),(1752,5,'2023-02-06 23:17:44','2023-02-07 07:17:44','','MC_Veeder_2019_Bottleshot_png-2','','inherit','closed','closed','','mc_veeder_2019_bottleshot_png-2-2','','','2023-02-06 23:17:58','2023-02-07 07:17:58','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_Veeder_2019_Bottleshot_png-2.png',0,'attachment','image/png',0),(1753,5,'2023-02-06 23:18:36','2023-02-07 07:18:36','','Meadowcroft_Zinfandel_2018_SpeedyCreek','','inherit','closed','closed','','meadowcroft_zinfandel_2018_speedycreek-2','','','2023-02-06 23:18:48','2023-02-07 07:18:48','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_Zinfandel_2018_SpeedyCreek.png',0,'attachment','image/png',0),(1754,5,'2023-02-06 23:19:17','2023-02-07 07:19:17','','Meadowcroft_PinotNoir_RRV18_BotteShot','','inherit','closed','closed','','meadowcroft_pinotnoir_rrv18_botteshot-2','','','2023-02-06 23:19:36','2023-02-07 07:19:36','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_PinotNoir_RRV18_BotteShot.png',0,'attachment','image/png',0),(1755,5,'2023-02-06 23:20:52','2023-02-07 07:20:52','','MC_2020_WYLDVIN_CABERNET_Bottleshot','','inherit','closed','closed','','mc_2020_wyldvin_cabernet_bottleshot-3','','','2023-02-06 23:21:07','2023-02-07 07:21:07','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_2020_WYLDVIN_CABERNET_Bottleshot.png',0,'attachment','image/png',0),(1756,5,'2023-02-06 23:21:39','2023-02-07 07:21:39','','MC_Roussanne_2016_BottleShot-329x1024-2','','inherit','closed','closed','','mc_roussanne_2016_bottleshot-329x1024-2-2','','','2023-02-06 23:21:50','2023-02-07 07:21:50','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_Roussanne_2016_BottleShot-329x1024-2.png',0,'attachment','image/png',0),(1757,5,'2023-02-06 23:23:54','2023-02-07 07:23:54','','Meadowcroft_PinotNoir_AndersonValley_2019','','inherit','closed','closed','','meadowcroft_pinotnoir_andersonvalley_2019-2','','','2023-02-06 23:24:14','2023-02-07 07:24:14','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_PinotNoir_AndersonValley_2019.png',0,'attachment','image/png',0),(1758,5,'2023-02-06 23:24:47','2023-02-07 07:24:47','','tom-medowncroft','','inherit','closed','closed','','tom-medowncroft-2','','','2023-02-06 23:25:04','2023-02-07 07:25:04','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/tom-medowncroft.jpg',0,'attachment','image/jpeg',0),(1759,5,'2023-02-06 23:25:43','2023-02-07 07:25:43','','16RIMDNV_1','','inherit','closed','closed','','16rimdnv_1-2','','','2023-02-06 23:25:57','2023-02-07 07:25:57','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/16RIMDNV_1.png',0,'attachment','image/png',0),(1760,5,'2023-02-06 23:26:49','2023-02-07 07:26:49','','16CSNVNC_1','','inherit','closed','closed','','16csnvnc_1-4','','','2023-02-06 23:27:16','2023-02-07 07:27:16','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/16CSNVNC_1.png',0,'attachment','image/png',0),(1761,5,'2023-02-06 23:27:52','2023-02-07 07:27:52','','Meadowcroft-2015-Napa-Valley-Cab-BottleShot-copy','','inherit','closed','closed','','meadowcroft-2015-napa-valley-cab-bottleshot-copy-2','','','2023-02-06 23:28:07','2023-02-07 07:28:07','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-2015-Napa-Valley-Cab-BottleShot-copy.png',0,'attachment','image/png',0),(1762,5,'2023-02-06 23:28:54','2023-02-07 07:28:54','','petar-kirilov','','inherit','closed','closed','','petar-kirilov-2','','','2023-02-06 23:29:14','2023-02-07 07:29:14','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/petar-kirilov.jpg',0,'attachment','image/jpeg',0),(1763,5,'2023-02-06 23:29:52','2023-02-07 07:29:52','','Meadowcroft_Viognier_15_Bottleshot','','inherit','closed','closed','','meadowcroft_viognier_15_bottleshot-2','','','2023-02-06 23:30:09','2023-02-07 07:30:09','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_Viognier_15_Bottleshot.png',0,'attachment','image/png',0),(1764,5,'2023-02-06 23:30:54','2023-02-07 07:30:54','','16PNSCSO_1','','inherit','closed','closed','','16pnscso_1-2','','','2023-02-06 23:31:13','2023-02-07 07:31:13','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/16PNSCSO_1.png',0,'attachment','image/png',0),(1765,5,'2023-02-06 23:31:48','2023-02-07 07:31:48','','Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024-1','','inherit','closed','closed','','meadowcroft_cabernetfranc_rivino_mendocino_2018-376x1024-1','','','2023-02-06 23:32:06','2023-02-07 07:32:06','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024-1.png',0,'attachment','image/png',0),(1766,5,'2023-02-06 23:32:42','2023-02-07 07:32:42','','Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018','','inherit','closed','closed','','meadowcroft_cabernetfranc_rivino_mendocino_2018-2','','','2023-02-06 23:33:01','2023-02-07 07:33:01','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018.png',0,'attachment','image/png',0),(1767,5,'2023-02-06 23:33:50','2023-02-07 07:33:50','','2017_Cornerstone_CarnerosSonoma_PinotNoir','','inherit','closed','closed','','2017_cornerstone_carnerossonoma_pinotnoir-2','','','2023-02-06 23:34:02','2023-02-07 07:34:02','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/2017_Cornerstone_CarnerosSonoma_PinotNoir.png',0,'attachment','image/png',0),(1768,5,'2023-02-06 23:34:35','2023-02-07 07:34:35','','Meadowcroft_21_Chard_Napa_Carneros_BottleShot-','','inherit','closed','closed','','meadowcroft_21_chard_napa_carneros_bottleshot-2','','','2023-02-06 23:34:49','2023-02-07 07:34:49','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_21_Chard_Napa_Carneros_BottleShot-.png',0,'attachment','image/png',0),(1769,5,'2023-02-06 23:35:48','2023-02-07 07:35:48','','AdobeStock_189815309-scaled','','inherit','closed','closed','','adobestock_189815309-scaled','','','2023-02-06 23:36:14','2023-02-07 07:36:14','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/AdobeStock_189815309-scaled-1.jpg',0,'attachment','image/jpeg',0),(1770,5,'2023-02-06 23:36:44','2023-02-07 07:36:44','','tom','','inherit','closed','closed','','tom-2','','','2023-02-07 01:52:06','2023-02-07 09:52:06','',954,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/tom.jpg',0,'attachment','image/jpeg',0),(1771,5,'2023-02-06 23:39:25','2023-02-07 07:39:25','','AdobeStock_143395665-scaled','','inherit','closed','closed','','adobestock_143395665-scaled','','','2023-02-06 23:39:58','2023-02-07 07:39:58','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/AdobeStock_143395665-scaled-1.jpg',0,'attachment','image/jpeg',0),(1772,5,'2023-02-06 23:40:28','2023-02-07 07:40:28','','vineyard','','inherit','closed','closed','','vineyard-4','','','2023-02-07 01:55:29','2023-02-07 09:55:29','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/vineyard.jpg',0,'attachment','image/jpeg',0),(1773,5,'2023-02-06 23:41:22','2023-02-07 07:41:22','','mexican-corn','','inherit','closed','closed','','mexican-corn-2','','','2023-02-06 23:41:35','2023-02-07 07:41:35','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/mexican-corn.jpg',0,'attachment','image/jpeg',0),(1774,5,'2023-02-06 23:43:42','2023-02-07 07:43:42','','Screen-Shot-2022-02-21-at-1.54.05-PM','','inherit','closed','closed','','screen-shot-2022-02-21-at-1-54-05-pm-2','','','2023-02-06 23:43:55','2023-02-07 07:43:55','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Screen-Shot-2022-02-21-at-1.54.05-PM.jpg',0,'attachment','image/jpeg',0),(1775,5,'2023-02-06 23:44:35','2023-02-07 07:44:35','','fall-2022-newsletter-cover@3x','','inherit','closed','closed','','fall-2022-newsletter-cover3x-2','','','2023-02-06 23:44:54','2023-02-07 07:44:54','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/fall-2022-newsletter-cover@3x.jpg',0,'attachment','image/jpeg',0),(1776,5,'2023-02-06 23:45:39','2023-02-07 07:45:39','','vineyard-thumb','','inherit','closed','closed','','vineyard-thumb-2','','','2023-02-07 03:01:28','2023-02-07 11:01:28','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/vineyard-thumb.jpg',0,'attachment','image/jpeg',0),(1777,5,'2023-02-06 23:47:43','2023-02-07 07:47:43','','Meadowcroft_PinotNoir_SonomaCoast_15_BottleShot-scaled','','inherit','closed','closed','','meadowcroft_pinotnoir_sonomacoast_15_bottleshot-scaled','','','2023-02-06 23:48:01','2023-02-07 07:48:01','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_PinotNoir_SonomaCoast_15_BottleShot-scaled-1.jpg',0,'attachment','image/jpeg',0),(1778,5,'2023-02-07 02:03:45','2023-02-07 10:03:45','','vineyard-thumb','','inherit','closed','closed','','vineyard-thumb-3','','','2023-02-07 02:04:27','2023-02-07 10:04:27','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2022/04/vineyard-thumb.jpg',0,'attachment','image/jpeg',0),(1779,5,'2023-02-07 02:14:02','2023-02-07 10:14:02','','gsm','','inherit','closed','closed','','gsm-4','','','2023-02-07 02:14:09','2023-02-07 10:14:09','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/gsm.jpg',0,'attachment','image/jpeg',0),(1780,5,'2023-02-07 02:19:14','2023-02-07 10:19:14','','Meadowcroft-_21_Pinot_Noir_AndersonValley','','inherit','closed','closed','','meadowcroft-_21_pinot_noir_andersonvalley-3','','','2023-02-07 02:19:14','2023-02-07 10:19:14','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-_21_Pinot_Noir_AndersonValley.jpg',0,'attachment','image/jpeg',0),(1781,5,'2023-02-07 02:22:12','2023-02-07 10:22:12','','Meadowcroft-_21_Pinot_Noir_AndersonValley','','inherit','closed','closed','','meadowcroft-_21_pinot_noir_andersonvalley-4','','','2023-02-07 02:22:45','2023-02-07 10:22:45','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-_21_Pinot_Noir_AndersonValley-1.png',0,'attachment','image/png',0),(1782,5,'2023-02-07 02:27:29','2023-02-07 10:27:29','','MC_21_PinotGris_BottleShot','','inherit','closed','closed','','mc_21_pinotgris_bottleshot-3','','','2023-02-07 02:27:29','2023-02-07 10:27:29','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_21_PinotGris_BottleShot-1.png',0,'attachment','image/png',0),(1784,5,'2023-02-07 02:35:58','2023-02-07 10:35:58','','Meadowcroft-2018_Cabernet_SM_Bottleshot','','inherit','closed','closed','','meadowcroft-2018_cabernet_sm_bottleshot-3','','','2024-02-09 15:53:25','2024-02-09 23:53:25','',3401,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-2018_Cabernet_SM_Bottleshot-1.png',0,'attachment','image/png',0),(1786,5,'2023-02-07 02:45:44','2023-02-07 10:45:44','','rose-of-malbec','','inherit','closed','closed','','rose-of-malbec-3','','','2023-02-07 02:45:44','2023-02-07 10:45:44','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/rose-of-malbec-1.png',0,'attachment','image/png',0),(1787,5,'2023-02-07 02:54:29','2023-02-07 10:54:29','','MC_FrenchColombard2021_Bottleshot-281x1024','','inherit','closed','closed','','mc_frenchcolombard2021_bottleshot-281x1024-2','','','2023-02-07 02:54:29','2023-02-07 10:54:29','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/MC_FrenchColombard2021_Bottleshot-281x1024-2.png',0,'attachment','image/png',0),(1789,5,'2023-02-07 03:13:19','2023-02-07 11:13:19','','sauvignon-blanc-1','','inherit','closed','closed','','sauvignon-blanc-1','','','2023-02-07 03:13:19','2023-02-07 11:13:19','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/sauvignon-blanc-1.png',0,'attachment','image/png',0),(1790,5,'2023-02-07 03:17:29','2023-02-07 11:17:29','','Meadowcroft_2015_PinotNoir_Cornerstone_BottleShot-scaled','','inherit','closed','closed','','meadowcroft_2015_pinotnoir_cornerstone_bottleshot-scaled','','','2023-02-07 03:18:09','2023-02-07 11:18:09','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_2015_PinotNoir_Cornerstone_BottleShot-scaled-1.png',0,'attachment','image/png',0),(1793,5,'2023-02-07 04:35:49','2023-02-07 12:35:49','','Meadowcroft-Red-Hills-2020-CabSauv-376x1024 (1)','','inherit','closed','closed','','meadowcroft-red-hills-2020-cabsauv-376x1024-1-2','','','2023-02-07 04:35:49','2023-02-07 12:35:49','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft-Red-Hills-2020-CabSauv-376x1024-1-1.png',0,'attachment','image/png',0),(1794,5,'2023-02-07 04:45:47','2023-02-07 12:45:47','','Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024','','inherit','closed','closed','','meadowcroft_cabernetfranc_rivino_mendocino_2018-376x1024-2','','','2023-02-07 04:45:47','2023-02-07 12:45:47','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/Meadowcroft_CabernetFranc_RIVINO_MENDOCINO_2018-376x1024-2.png',0,'attachment','image/png',0),(1795,5,'2023-02-07 04:55:24','2023-02-07 12:55:24','','20_Malbec_Clements_Hill_Bottleshot-376x1024-11','','inherit','closed','closed','','20_malbec_clements_hill_bottleshot-376x1024-11','','','2023-02-07 04:55:32','2023-02-07 12:55:32','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/20_Malbec_Clements_Hill_Bottleshot-376x1024-11.png',0,'attachment','image/png',0),(1799,5,'2023-02-22 01:52:13','2023-02-22 09:52:13','','Thank You','','publish','closed','closed','','thank-you','','','2023-02-22 02:02:02','2023-02-22 10:02:02','',0,'https://www.meadowcroftwines.com/?page_id=1799',0,'page','',0),(1802,3,'2023-02-22 15:17:54','2023-02-22 23:17:54','','gerard1','','inherit','closed','closed','','gerard1','','','2023-02-22 15:17:54','2023-02-22 23:17:54','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/gerard1.jpeg',0,'attachment','image/jpeg',0),(1806,3,'2023-03-09 11:57:47','2023-03-09 19:57:47','','NV Blanc de Blanc-final','','inherit','closed','closed','','nv-blanc-de-blanc-final','','','2023-03-09 11:57:47','2023-03-09 19:57:47','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/03/NV-Blanc-de-Blanc-final.pdf',0,'attachment','application/pdf',0),(1807,3,'2023-03-09 12:06:42','2023-03-09 20:06:42','','NV Blanc de Noir-final','','inherit','closed','closed','','nv-blanc-de-noir-final','','','2023-03-09 12:06:42','2023-03-09 20:06:42','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/03/NV-Blanc-de-Noir-final.pdf',0,'attachment','application/pdf',0),(1813,3,'2023-03-13 17:03:33','2023-03-14 00:03:33','','2022 Sauvignon Blanc','','inherit','closed','closed','','sonomabottle-meadowcroftwines_sauvignonblanc_2022','','','2023-03-13 17:04:25','2023-03-14 00:04:25','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/03/SonomaBottle-MeadowcroftWines_SauvignonBlanc_2022.png',0,'attachment','image/png',0),(1821,2,'2023-03-22 21:48:04','2023-03-23 04:48:04','','White-Bee','','inherit','closed','closed','','white-bee','','','2023-03-22 21:48:04','2023-03-23 04:48:04','',1554,'https://www.meadowcroftwines.com/wp-content/uploads/2023/03/White-Bee.png',0,'attachment','image/png',0),(1830,5,'2023-03-24 01:07:32','2023-03-24 08:07:32','','Benefits-of-aging-wine','','inherit','closed','closed','','untitled-design-2','','','2023-03-24 01:18:55','2023-03-24 08:18:55','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/03/Untitled-design-2.webp',0,'attachment','image/webp',0),(1831,5,'2023-03-24 01:22:59','2023-03-24 08:22:59','','Benefits-of-aging-wine','','inherit','closed','closed','','untitled-design-1-1','','','2023-03-24 01:47:24','2023-03-24 08:47:24','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/03/Untitled-design-1-1.webp',0,'attachment','image/webp',0),(1833,5,'2023-03-24 04:08:45','2023-03-24 11:08:45','','Tips-on-correctly-identifying-aged-wine','','inherit','closed','closed','','untitled-design-1','','','2023-03-24 04:09:41','2023-03-24 11:09:41','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/03/Untitled-design-1.webp',0,'attachment','image/webp',0),(1834,5,'2023-03-24 04:23:26','2023-03-24 11:23:26','','Which wines to age','','inherit','closed','closed','','untitled-design-1-3','','','2023-03-24 04:23:35','2023-03-24 11:23:35','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/03/Untitled-design-1-3.webp',0,'attachment','image/webp',0),(1836,5,'2023-03-24 04:39:31','2023-03-24 11:39:31','','Tips on correctly identifying aged wine','','inherit','closed','closed','','untitled-design-1-4','','','2023-03-24 04:39:51','2023-03-24 11:39:51','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/03/Untitled-design-1-4.webp',0,'attachment','image/webp',0),(1840,5,'2023-03-27 04:05:56','2023-03-27 11:05:56','<img class=\"alignnone wp-image-1845\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/03/4-300x169.webp\" alt=\"WineCocktails - Meadowcroft Wines\" width=\"616\" height=\"347\" />\r\n\r\n<span style=\"font-weight: 400;\">For all oenophiles and aspiring vintners, there’s nothing like the classic simplicity of a glass of chilled white or full-bodied red. But sometimes, it can be fun to mix up your routine with creative enhancements — something new and exciting that you\'ve never tasted before! Whether you’re entertaining guests at a dinner party or simply relishing an intimate night in together, these recipes are sure to tantalize your taste buds and elevate even the most mundane moments. So kick up those corkscrews for the top 5 best Refreshing wine cocktails around — each one infused with unexpected flavor combinations that beg for just one more sip.</span>\r\n<h2>Sangria - a classic red wine cocktail with a blend of fruits, brandy and triple sec</h2>\r\n<span style=\"font-weight: 400;\">The allure of Sangria goes beyond its vibrant, ruby hue; this classic red wine cocktail perfectly captures the essence of a sun-kissed European getaway. Made with a carefully chosen blend of fruits, brandy, and triple sec, each sip transports you to a quaint Spanish villa, where delightful conversations with friends and loved ones are accompanied by the gentle background hum of a distant flamenco guitar melody. The beauty of this sophisticated concoction truly lies in its seamless combination of flavors; the boldness of red wine harmonizes with the tangy fruitiness while the notes of brandy and triple sec deliver a warm, inviting depth. So whether you\'re celebrating a special occasion or simply enjoying a much-deserved bask in the sun, let Sangria be your go-to libation for a truly unforgettable, sensory experience.</span>\r\n<h2>French 75 - a combination of champagne, gin, lemon juice and simple syrup</h2>\r\n<span style=\"font-weight: 400;\">The French 75 is a delectable and vivacious cocktail, designed to invigorate your senses and transport you to a world of celebration. This lavish libation flawlessly melds the bubbly effervescence of champagne with the botanical complexities of gin, creating a symphony of flavors that harmonize with citrusy lemon juice and the velvety smoothness of simple syrup. The name evokes images of jazz-filled soirées in Parisian salons, where echoes of laughter and the clink of champagne flutes resonate through the night. Whether you\'re toasting a special occasion, savoring a sumptuous meal, or simply indulging in a moment of chic sophistication, the French 75 is a time-honored classic that never fails to make a statement. Next time you reach for a glass of champagne, let your adventurous spirit soar, and delight your taste buds with the unparalleled elegance of this iconic cocktail.</span>\r\n\r\n&nbsp;\r\n<h2>Bellini - a fruity peach and Prosecco-based drink</h2>\r\n<img class=\"alignnone wp-image-1844\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/03/5-300x169.webp\" alt=\"WineCocktails-peachbellini\" width=\"618\" height=\"348\" />\r\n\r\n<span style=\"font-weight: 400;\">The Bellini is a delectably fruity and effervescent concoction that combines the sweet, fragrant notes of peach with the lively sparkle of Prosecco. This sophisticated yet refreshing cocktail is reminiscent of sun-kissed afternoons spent in the picturesque Italian countryside, where it is said to have originated. As you sip on this enchanting beverage, imagine yourself basking in the warm embrace of the Mediterranean sun, surrounded by the sound of laughter and the clinking of glasses in celebration. The Bellini\'s unique blend of flavors and effervescence makes it an ideal companion for a leisurely brunch with friends, a romantic sunset dinner, or simply a relaxed evening in the comfort of your own home. No matter the occasion, savoring a Bellini transports you to the charming heart of Italy, where life\'s simple pleasures reign supreme.</span>\r\n\r\n<span style=\"font-weight: 400;\">Spritz - an Italian concoction of Prosecco, Aperol and soda water </span>\r\n\r\n<span style=\"font-weight: 400;\">The Spritz, an iconic Italian concoction that tastefully marries Prosecco, Aperol, and soda water, is an exquisite libation to add a splash of zest to any occasion. With its rich history and origins at the heart of Venetian culture, this vibrant aperitif has managed to enchant palates across generations and borders. The effervescence of Prosecco, harmonized with the bittersweet tang of Aperol and the crisp fizz of soda water, creates a symphony of flavors that dance on your tongue, making it the ultimate expression of La Dolce Vita. Whether enjoyed as a refreshing pre-dinner drink or as a celebratory toast among friends, the Spritz continues to charm and captivate drink enthusiasts with its alluring kaleidoscope of colors and flavors, firmly cementing its position as a timeless classic in the world of cocktails.</span>\r\n\r\n&nbsp;\r\n<h2 style=\"text-align: left;\">Mimosa - an orange juice and sparkling wine combo perfect for brunch</h2>\r\n<span style=\"font-weight: 400;\">The Mimosa is the perfect choice for early morning celebrations! This classic combination of orange juice and <a href=\"https://www.meadowcroftwines.com/sparkling-wines/\">sparkling wine</a> adds a touch of refreshment for any brunch gathering. Its light and delicate flavor can turn a casual morning into a memorable event, making it one of the top ten best wine cocktails. Whether you prefer sweet or no sugar added, the Mimosa is a palate-pleasing way to start your day and perk up any guest.</span>\r\n\r\n&nbsp;\r\n<h2>Kir Royal - cassis liqueur mixed with chilled sparkling white wine</h2>\r\n<img class=\"alignnone wp-image-1843\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/03/3-300x169.webp\" alt=\"Kir Royal - cassis liqueur mixed with chilled sparkling white wine\" width=\"616\" height=\"347\" />\r\n\r\n<span style=\"font-weight: 400;\">A Kir Royal, the epitome of elegance and sophistication, holds its place among the most admired classic cocktails. This remarkable concoction consists of luxurious cassis liqueur, a vibrant, ruby-hued, berry-infused masterpiece, meticulously blended with chilled sparkling <a href=\"https://www.meadowcroftwines.com/white-wines/\">white wine</a>. The delicate finesse of the effervescent wine harmoniously marries the bold flavors of the cassis, engulfing one\'s senses in a whirlwind of indulgence. As the velvety bubbles grace the palate with every delightful, refreshing sip, the sumptuous melodrama unfolds before your eyes, presenting a mesmerizing visual experience. A Kir Royal transcends beyond the realm of ordinary cocktails, inviting you to immerse yourself into the allure of its captivating, delicate charm.</span>\r\n\r\n<span style=\"font-weight: 400;\"><strong>In conclusion</strong>, there are plenty of delicious ways to make a fantastic wine cocktail for any occasion. Whether you’re looking for something light and sweet like a Bellini or Kir Royal, or bold and boozy such as French 75 or Sangria, there is a perfect recipe to tantalize your taste buds. With the guidance of the ten best wine cocktails listed above, you’ll be able to craft your own unique concoctions with ease. So the next time you have an event, party or just want to relax after work, don’t forget to break out some wine, mix up one of these recipes and enjoy all that life has to offer…cheers!</span>\r\n<h2>Frequently Asked Questions</h2>\r\n<p style=\"text-align: left;\"><b>1. </b><b>What are beginner-friendly wine cocktail recipes?</b><b>\r\n</b><span style=\"font-weight: 400;\">Beginner-friendly wine cocktails include:</span></p>\r\n\r\n<ul>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\"><strong>Sangria:</strong> Mix red or white wine with fresh fruit, juice, and a splash of soda.</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\"><strong>Mimosa:</strong> Combine sparkling wine with orange juice.</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\"><strong>Spritzers:</strong> Blend white wine with soda water and a twist of citrus.</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\"><strong>Kir:</strong> Add a splash of crème de cassis to white wine.</span></li>\r\n</ul>\r\n<b style=\"font-size: 1rem;\">2. </b><b>What are the most popular wine cocktails for parties?</b><b>\r\n</b><span style=\"font-weight: 400;\">Popular wine cocktails for parties include:</span>\r\n<ul>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Sangria:</b><span style=\"font-weight: 400;\"> Customizable and perfect for large groups.</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Mimosas:</b><span style=\"font-weight: 400;\"> A brunch favorite made with sparkling wine and juice.</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>French 75:</b><span style=\"font-weight: 400;\"> A sophisticated blend of sparkling wine, gin, lemon juice, and sugar.</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b style=\"font-size: 1rem;\"><b>Bellini:</b><span style=\"font-weight: 400;\"> Sparkling wine with peach puree for a touch of elegance.</span></b></li>\r\n</ul>\r\n<b>3. Why is it called a French 75 cocktail?</b><b>\r\n</b><span style=\"font-weight: 400;\">The French 75 cocktail is named after the French 75mm field gun used during World War I. Its potency was said to have the same kick as that of artillery!</span>\r\n\r\n<b>4. Can we use red wine for cocktails?</b><b>\r\n</b><span style=\"font-weight: 400;\">Yes, red wine can be used in cocktails! It’s a great base for drinks like sangria, mulled wine, or even a red wine spritzer. Its bold flavors can add depth to a variety of mixed drinks.</span>\r\n\r\n<b>5. Can you use wine for cocktails?</b><b>\r\n</b><span style=\"font-weight: 400;\">Absolutely! Wine is a versatile ingredient for cocktails. Both still and sparkling wines can be combined with fruits, liqueurs, or spirits to create refreshing and flavorful drinks.</span>\r\n\r\n<b>6. What are the top wine cocktails for holiday celebrations?</b><b>\r\n</b><span style=\"font-weight: 400;\">Top wine cocktails for holidays include:</span>\r\n<ul>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Mulled Wine:</b><span style=\"font-weight: 400;\"> A warm mix of red wine, spices, and citrus.</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Cranberry Mimosa:</b><span style=\"font-weight: 400;\"> Sparkling wine with cranberry juice.</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Sangria:</b><span style=\"font-weight: 400;\"> Festive versions with cranberries, apples, and spices.</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>French 75:</b><span style=\"font-weight: 400;\"> A celebratory classic with sparkling wine and gin.</span></li>\r\n</ul>\r\n<script type=\"\"application/ld+json\"\">\r\n{\r\n  \"\"@context\"\": \"\"https://schema.org/\"\",\r\n  \"\"@type\"\": \"\"Article\"\",\r\n  \"\"mainEntityOfPage\"\": {\r\n    \"\"@type\"\": \"\"WebPage\"\",\r\n    \"\"@id\"\": \"\"https://www.meadowcroftwines.com/refreshing-wine-cocktails/\"\"\r\n  },\r\n  \"\"headline\"\": \"\"DISCOVER 5 REFRESHING WINE COCKTAILS\"\",\r\n  \"\"description\"\": \"\"Elevate your cocktail game with these 5 refreshing wine cocktails that will tantalize your taste buds and leave you wanting more.\"\",\r\n  \"\"image\"\": {\r\n    \"\"@type\"\": \"\"ImageObject\"\",\r\n    \"\"url\"\": \"\"https://www.meadowcroftwines.com/wp-content/uploads/2023/03/Internal-Images-Meadowcroft-Wines-1200x675.webp\"\",\r\n    \"\"width\"\": \"\"\"\",\r\n    \"\"height\"\": \"\"\"\"\r\n  },\r\n  \"\"author\"\": {\r\n    \"\"@type\"\": \"\"Organization\"\",\r\n    \"\"name\"\": \"\"Meadowcroft Wines\"\"\r\n  },\r\n  \"\"publisher\"\": {\r\n    \"\"@type\"\": \"\"Organization\"\",\r\n    \"\"name\"\": \"\"Meadowcroft Wines\"\",\r\n    \"\"logo\"\": {\r\n      \"\"@type\"\": \"\"ImageObject\"\",\r\n      \"\"url\"\": \"\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-Logo-Horizontal-Bee-Lighter3.png\"\",\r\n      \"\"width\"\": \"\"\"\",\r\n      \"\"height\"\": \"\"\"\"\r\n    }\r\n  },\r\n  \"\"datePublished\"\": \"\"2023-04-14\"\",\r\n  \"\"dateModified\"\": \"\"2023-05-17\"\"\r\n}\r\n</script>','Discover 5 Refreshing Wine Cocktails','','publish','closed','open','','refreshing-wine-cocktails','','','2024-12-26 05:12:19','2024-12-26 13:12:19','',0,'https://www.meadowcroftwines.com/?p=1840',0,'post','',0),(1841,5,'2023-03-27 03:34:20','2023-03-27 10:34:20','','Refreshing Wine Cocktails - Meadowcroft Wines','','inherit','closed','closed','','hero-image-meadowcroft-wines','','','2023-03-27 03:34:52','2023-03-27 10:34:52','',1840,'https://www.meadowcroftwines.com/wp-content/uploads/2023/03/HERO-IMAGE-MEADOWCROFT-WINES.webp',0,'attachment','image/webp',0),(1842,5,'2023-03-27 03:39:35','2023-03-27 10:39:35','','5 Refreshing Wine Cocktails','','inherit','closed','closed','','featured-image-800px','','','2023-03-27 03:40:00','2023-03-27 10:40:00','',1840,'https://www.meadowcroftwines.com/wp-content/uploads/2023/03/Featured-Image-800px.webp',0,'attachment','image/webp',0),(1843,5,'2023-03-27 03:45:32','2023-03-27 10:45:32','','Kir Royal - cassis liqueur mixed with chilled sparkling white wine','','inherit','closed','closed','','3','','','2023-03-27 03:45:51','2023-03-27 10:45:51','',1840,'https://www.meadowcroftwines.com/wp-content/uploads/2023/03/3.webp',0,'attachment','image/webp',0),(1844,5,'2023-03-27 03:48:17','2023-03-27 10:48:17','','WineCocktails-peachbellini','','inherit','closed','closed','','5','','','2023-03-27 03:48:33','2023-03-27 10:48:33','',1840,'https://www.meadowcroftwines.com/wp-content/uploads/2023/03/5.webp',0,'attachment','image/webp',0),(1845,5,'2023-03-27 03:50:31','2023-03-27 10:50:31','','WineCocktails - Meadowcroft Wines','','inherit','closed','closed','','4','','','2023-03-27 03:50:55','2023-03-27 10:50:55','',1840,'https://www.meadowcroftwines.com/wp-content/uploads/2023/03/4.webp',0,'attachment','image/webp',0),(1848,3,'2023-03-29 17:10:41','2023-03-30 00:10:41','Plantmania event at Cornerstone Sonoma April 15th, 2023','plantmania+banner','','inherit','closed','closed','','plantmaniabanner','','','2023-03-29 17:11:22','2023-03-30 00:11:22','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/03/plantmaniabanner.jpeg',0,'attachment','image/jpeg',0),(1850,3,'2023-03-29 18:00:50','2023-03-30 01:00:50','Wine & Music at Cornerstone Sonoma','wine&music-web','','inherit','closed','closed','','winemusic-web','','','2023-03-29 18:01:14','2023-03-30 01:01:14','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/03/winemusic-web.jpg',0,'attachment','image/jpeg',0),(1854,5,'2023-03-31 04:35:52','2023-03-31 11:35:52','','health-benefits-red-wines-meadowcroftwines','','inherit','closed','closed','','health-benefits-red-wines-meadowcroftwines','','','2023-03-31 04:36:53','2023-03-31 11:36:53','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/03/health-benefits-red-wines-meadowcroftwines.webp',0,'attachment','image/webp',0),(1855,5,'2023-03-31 04:37:56','2023-03-31 11:37:56','','Red Wine Health Benefits - Meadowcroft Wines','','inherit','closed','closed','','featured-image-800px-2','','','2023-03-31 04:39:08','2023-03-31 11:39:08','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/03/Featured-Image-800px-1.webp',0,'attachment','image/webp',0),(1856,5,'2023-03-31 06:18:29','2023-03-31 13:18:29','','Health-Benefits-Red_Wine','','inherit','closed','closed','','internal-images-meadowcroft-wines','','','2023-03-31 06:19:37','2023-03-31 13:19:37','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/03/Internal-Images-Meadowcroft-Wines.webp',0,'attachment','image/webp',0),(1857,5,'2023-04-03 00:48:39','2023-04-03 07:48:39','','Resveratrol - Meadowcroft Wines','','inherit','closed','closed','','resveratrol-1','','','2023-04-03 00:49:27','2023-04-03 07:49:27','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/04/Resveratrol-1.webp',0,'attachment','image/webp',0),(1859,5,'2023-04-10 04:00:03','2023-04-10 11:00:03','<span style=\"font-weight: 400;\">Red wine has been a deeply-rooted element of our culture for centuries, and its intricacies have sparked curiosity among many. With its bold flavors and captivating complexity, red wine is the ideal companion to social gatherings, special occasions and memorable meals. But the fascinating process behind crafting this celebrated beverage deserves equal attention—especially when looking at its vibrant history across different cultures. From harvest season to fermentation tanks, let\'s explore the time-honored tradition of making red wine from vineyard to bottle! We\'ll break down each stage in production, whether it\'s primitive winemaking processes used by ancient civilizations or modern methods implemented by today\'s vintners. By diving into both traditional winemaking techniques as well as cutting-edge developments in oenology (the science of making wines), we can gain a deeper appreciation for red wine while enjoying its timeless appeal.</span>\r\n\r\n&nbsp;\r\n<h2><b>Red wine history</b></h2>\r\n<img class=\"alignnone wp-image-1863\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/04/3-300x169.png\" alt=\"Red Wine Making - Sonoma Valley - Meadowcroft Wines\" width=\"620\" height=\"349\" />\r\n\r\n<span style=\"font-weight: 400;\">The history of red wine is as elaborate as it is fascinating. The origins of red wine can be traced back to ancient civilizations like the Greeks and Romans, who celebrated and elevated the drink to an art form. Wine-making techniques have changed over the years, but the underlying principle remains the same: grape juice is transformed into wine through a process of fermentation. <a href=\"https://www.meadowcroftwines.com/red-wines/\">Red wine</a> is made with black grapes, where the juice and skin are left to co-ferment together. This process gives it its deep, rich color and complex flavors. With its complex and varied history, it is no wonder that red wine is widely celebrated and enjoyed all around the world today.</span>\r\n\r\n&nbsp;\r\n<h2><b>Grapes Used in Red Wine Production and Their Regional Variations </b></h2>\r\n<img class=\"alignnone wp-image-1864\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/04/4-300x169.png\" alt=\"red wines grapes\" width=\"614\" height=\"346\" />\r\n\r\n<span style=\"font-weight: 400;\">Grapes are an essential ingredient in the production of red wine, and the variety used plays a critical role in determining the wine\'s flavor profile. Different regions around the world are known for producing distinct types of grapes, adding unique flavors to the final product. For instance, the Cabernet Sauvignon grape is commonly found in Bordeaux and California, and it lends a bold, full-bodied taste to the wine. In contrast, the Pinot Noir grape, ubiquitous in Burgundy and Oregon, brings a lighter, more delicate flavor. The terrain, climate, and soil on which the grapes are grown also influence the taste. These regional variations highlight the beauty and complexity of red wine and make each bottle a one-of-a-kind experience.</span>\r\n\r\n&nbsp;\r\n<h2><b>The Influence of Climate and Terroir on the Taste of Red Wines </b></h2>\r\n<span style=\"font-weight: 400;\">When it comes to red wine, the flavors and aromas of each bottle can vary greatly. While winemaking practices play a significant role in the taste of a wine, the climate and terroir of the vineyard where the grapes were grown are equally as important. The climate can affect the ripeness and acidity of the grapes, which ultimately impact the flavor profile of the wine. Terroir refers to the unique combination of soil, topography, and weather conditions in a specific vineyard. This can significantly influence the taste of the wine, giving it distinctive flavors and aromas that are unique to that specific region. Whether it\'s the mineral notes in a wine from volcanic soil or the fruit-forward qualities of a wine grown in a warmer climate, understanding the influence of climate and terroir can deepen your appreciation for a well-crafted red wine.</span>\r\n\r\n&nbsp;\r\n<h2><b>Traditional Red Wine Making Techniques and their Evolution Over Time </b></h2>\r\n<span style=\"font-weight: 400;\">Wine has been a beloved beverage for centuries, and <a href=\"https://www.meadowcroftwines.com/product/2018-cabernet-sauvignon-spring-mountain-district\">traditional red wine</a> making techniques have evolved over time to produce the perfect bottle. In the past, grapes were harvested by hand and stomped on by foot to extract the juice. The fermentation process used natural yeasts present on the grape skins and in the air. However, modern technology has revolutionized the process with mechanical harvesters and stainless steel tanks. Despite this, some wineries still adhere to traditional techniques, believing that the process affects the taste of the final product. Regardless of the method used, it\'s the passion and expertise of the winemaker that ultimately creates a delicious red wine.</span>\r\n\r\n&nbsp;\r\n<h2><b>Prospects for the Future of Red Wine Production </b></h2>\r\n<span style=\"font-weight: 400;\">Red wine production has a bright future ahead as the demand continues to rise globally. With advancements in technology, winemakers are able to improve the quality of their product while also increasing efficiency. Climate change poses some challenges for grape growers, but they are adapting by experimenting with new varietals and altering their cultivation methods. In addition, wine tourism is becoming increasingly popular, providing a boost for local economies and opportunities for consumers to learn about and taste different wines. All of these factors contribute to a promising outlook for the future of red wine production.</span>\r\n\r\n&nbsp;\r\n<h2><b>Enjoying Your Glass of Red - Tips for Selecting and Serving Great Wines</b></h2>\r\n<img class=\"alignnone wp-image-1865\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/04/5-300x169.png\" alt=\"Future of wines\" width=\"620\" height=\"349\" />\r\n\r\n<span style=\"font-weight: 400;\">Indulging in a glass of red wine can be a beautiful experience, but selecting and serving the perfect bottle can be overwhelming. When it comes to selecting wine, it all starts with your preference. Do you prefer a bold and full-bodied red, or a lighter and fruitier option? Consider the region the wine was produced in, the vintage, and the grape variety. When it comes to serving, make sure to let your wine breathe for at least 30 minutes before drinking to enhance its aromas and flavors. And finally, be mindful of the temperature. Reds should be served at room temperature or slightly cooler, but never too cold. With these tips, you\'ll be on your way to enjoying a delicious glass of red in no time.</span>\r\n\r\n<span style=\"font-weight: 400;\">In conclusion, it is evident from this exploration of the history and tradition of making red wine that these storied drinks have a fascinating and complex history. The use of particular grapes for producing red wines varied by region over time, and their taste was impacted by the climate and terroir. This guided how traditional techniques of winemaking evolved to produce outstanding products enjoyed all over the world today. As more contemporary technologies, developments in viticulture, and creative approaches to crafting are being continually incorporated into modern production methods, red wines may continue down new exciting paths in years to come. With knowledge about this background firmly planted in one\'s mind, red wine lovers can confidently embark on their own journey to select and serve some delicious glasses confidently – cheers! </span>\r\n\r\n<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org/\",\r\n  \"@type\": \"Article\",\r\n  \"mainEntityOfPage\": {\r\n    \"@type\": \"WebPage\",\r\n    \"@id\": \"https://www.meadowcroftwines.com/history-and-tradition-of-making-red-wine/\"\r\n  },\r\n  \"headline\": \"AN EXPLORATION OF THE HISTORY AND TRADITION OF MAKING RED WINE\",\r\n  \"description\": \"Discover the captivating history and tradition behind the art of red wine making. Unveil the secrets of the finest grapes, fermenting techniques, & more in this in-depth exploration.\",\r\n  \"image\": {\r\n    \"@type\": \"ImageObject\",\r\n    \"url\": \"https://www.meadowcroftwines.com/wp-content/uploads/2023/04/3-1024x576.png\",\r\n    \"width\": \"\",\r\n    \"height\": \"\"\r\n  },\r\n  \"author\": {\r\n    \"@type\": \"Organization\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"publisher\": {\r\n    \"@type\": \"Organization\",\r\n    \"name\": \"Meadowcroft Wines\",\r\n    \"logo\": {\r\n      \"@type\": \"ImageObject\",\r\n      \"url\": \"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-Logo-Horizontal-Bee-Lighter3.png\",\r\n      \"width\": \"\",\r\n      \"height\": \"\"\r\n    }\r\n  },\r\n  \"datePublished\": \"2023-04-10\",\r\n  \"dateModified\": \"2023-05-17\"\r\n}\r\n</script>','An Exploration of the History and Tradition of Making Red Wine','','publish','closed','open','','history-and-tradition-of-making-red-wine','','','2023-05-17 05:20:39','2023-05-17 12:20:39','',0,'https://www.meadowcroftwines.com/?p=1859',0,'post','',0),(1862,5,'2023-04-09 03:16:57','2023-04-09 10:16:57','','Sonoma Valley - Meadowcroft Wines','','inherit','closed','closed','','sonoma-valley-meadowcroft-wines','','','2023-04-09 03:17:35','2023-04-09 10:17:35','',1859,'https://www.meadowcroftwines.com/wp-content/uploads/2023/04/Sonoma-Valley-Meadowcroft-Wines.webp',0,'attachment','image/webp',0),(1863,5,'2023-04-09 03:18:39','2023-04-09 10:18:39','','Red Wine Making - Sonoma Valley - Meadowcroft Wines','','inherit','closed','closed','','3-2','','','2023-04-09 03:19:08','2023-04-09 10:19:08','',1859,'https://www.meadowcroftwines.com/wp-content/uploads/2023/04/3.png',0,'attachment','image/png',0),(1864,5,'2023-04-09 03:20:55','2023-04-09 10:20:55','','red wines grapes -','','inherit','closed','closed','','4-2','','','2023-04-09 03:21:27','2023-04-09 10:21:27','',1859,'https://www.meadowcroftwines.com/wp-content/uploads/2023/04/4.png',0,'attachment','image/png',0),(1865,5,'2023-04-09 03:22:51','2023-04-09 10:22:51','','Future of wines - Meadowcroft Wines','','inherit','closed','closed','','5-2','','','2023-04-09 03:23:37','2023-04-09 10:23:37','',1859,'https://www.meadowcroftwines.com/wp-content/uploads/2023/04/5.png',0,'attachment','image/png',0),(1866,5,'2023-04-09 03:28:49','2023-04-09 10:28:49','','Sonoma Valley - Meadowcroft Wines (2)','','inherit','closed','closed','','sonoma-valley-meadowcroft-wines-2','','','2023-04-09 03:29:02','2023-04-09 10:29:02','',1859,'https://www.meadowcroftwines.com/wp-content/uploads/2023/04/Sonoma-Valley-Meadowcroft-Wines-2.webp',0,'attachment','image/webp',0),(1885,0,'2023-05-02 10:56:23','2023-05-02 17:56:23','<div id=\"c7-content\"></div>','Collection','','publish','closed','closed','','collection','','','2023-05-02 10:56:23','2023-05-02 17:56:23','',0,'https://www.meadowcroftwines.com/collection/',0,'page','',0),(1886,0,'2023-05-02 10:56:24','2023-05-02 17:56:24','<div id=\"c7-content\"></div>','Product','','publish','closed','closed','','product','','','2023-05-02 10:56:24','2023-05-02 17:56:24','',0,'https://www.meadowcroftwines.com/product/',0,'page','',0),(1887,0,'2023-05-02 10:56:24','2023-05-02 17:56:24','<div id=\"c7-content\"></div>','Cart','','publish','closed','closed','','cart','','','2023-05-02 10:56:24','2023-05-02 17:56:24','',0,'https://www.meadowcroftwines.com/cart/',0,'page','',0),(1888,0,'2023-05-02 10:56:25','2023-05-02 17:56:25','<div id=\"c7-content\"></div>','Checkout','','publish','closed','closed','','checkout','','','2023-05-02 10:56:25','2023-05-02 17:56:25','',0,'https://www.meadowcroftwines.com/checkout/',0,'page','',0),(1889,0,'2023-05-02 10:56:25','2023-05-02 17:56:25','<div id=\"c7-content\"></div>','Profile','','publish','closed','closed','','profile','','','2023-05-02 10:56:25','2023-05-02 17:56:25','',0,'https://www.meadowcroftwines.com/profile/',0,'page','',0),(1890,0,'2023-05-02 10:56:26','2023-05-02 17:56:26','<div id=\"c7-content\"></div>','Club','','publish','closed','closed','','club','','','2023-05-02 10:56:26','2023-05-02 17:56:26','',0,'https://www.meadowcroftwines.com/club/',0,'page','',0),(1891,0,'2023-05-02 10:56:26','2023-05-02 17:56:26','<div id=\"c7-content\"></div>','Reservation','','publish','closed','closed','','reservation','','','2023-05-02 10:56:26','2023-05-02 17:56:26','',0,'https://www.meadowcroftwines.com/reservation/',0,'page','',0),(1892,0,'2023-05-02 10:56:27','2023-05-02 17:56:27','<a href=\"/profile\">Go to Profile</a>','Access Denied','','publish','closed','closed','','access-denied','','','2023-05-02 10:56:27','2023-05-02 17:56:27','',0,'https://www.meadowcroftwines.com/access-denied/',0,'page','',0),(2628,1,'2023-05-02 12:40:30','2023-05-02 19:40:30','','$5.00 Glass Deposit','','publish','closed','closed','','5-00-glass-deposit','','','2023-06-12 05:32:33','2023-06-12 12:32:33','',0,'https://www.meadowcroftwines.com/product/5-00-glass-deposit/',0,'product','',0),(2629,1,'2023-05-02 12:40:30','2023-05-02 19:40:30','','2005 Cabernet Sauvignon, Mt. Veeder Estate','','publish','closed','closed','','2005-cabernet-sauvignon-mt-veeder-estate','','','2024-11-29 10:28:18','2024-11-29 18:28:18','',0,'https://www.meadowcroftwines.com/product/2005-cabernet-sauvignon-mt-veeder-estate/',0,'product','',0),(2630,1,'2023-05-02 12:40:30','2023-05-02 19:40:30','','2006 Cabernet Sauvignon, Mt. Veeder Estate','','publish','closed','closed','','2006-mt-veeder-cabernet-sauvignon','','','2024-11-29 10:28:35','2024-11-29 18:28:35','',0,'https://www.meadowcroftwines.com/product/2006-mt-veeder-cabernet-sauvignon/',0,'product','',0),(2631,1,'2023-05-02 12:40:30','2023-05-02 19:40:30','','2007 Cabernet Sauvignon, Mt. Veeder Estate','','publish','closed','closed','','2007-cabernet-sauvignon-mt-veeder-estate','','','2023-06-12 05:32:36','2023-06-12 12:32:36','',0,'https://www.meadowcroftwines.com/product/2007-cabernet-sauvignon-mt-veeder-estate/',0,'product','',0),(2632,1,'2023-05-02 12:40:31','2023-05-02 19:40:31','','2007 Cabernet Sauvignon, Mt. Veeder Estate 1.5L','','publish','closed','closed','','2007-1-5-liter-meadowcroft-mt-veeder-cabernet','','','2023-06-12 05:32:37','2023-06-12 12:32:37','',0,'https://www.meadowcroftwines.com/product/2007-1-5-liter-meadowcroft-mt-veeder-cabernet/',0,'product','',0),(2633,1,'2023-05-02 12:40:31','2023-05-02 19:40:31','','2008 Cabernet Sauvignon, Mt. Veeder Estate','','publish','closed','closed','','2008-mt-veeder-cabernet-sauvignon','','','2023-06-12 05:32:38','2023-06-12 12:32:38','',0,'https://www.meadowcroftwines.com/product/2008-mt-veeder-cabernet-sauvignon/',0,'product','',0),(2634,1,'2023-05-02 12:40:31','2023-05-02 19:40:31','','2009 Cabernet Sauvignon,  Mt. Veeder Estate 3L','','publish','closed','closed','','2009-mount-veeder-cabernet-3l','','','2023-06-12 05:32:39','2023-06-12 12:32:39','',0,'https://www.meadowcroftwines.com/product/2009-mount-veeder-cabernet-3l/',0,'product','',0),(2635,1,'2023-05-02 12:40:31','2023-05-02 19:40:31','','2009 Cabernet Sauvignon, Mt. Veeder Estate','','publish','closed','closed','','2009-mt-veeder-cabernet-sauvignon','','','2023-06-12 05:32:40','2023-06-12 12:32:40','',0,'https://www.meadowcroftwines.com/product/2009-mt-veeder-cabernet-sauvignon/',0,'product','',0),(2636,1,'2023-05-02 12:40:31','2023-05-02 19:40:31','','2009 Cabernet Sauvignon, Mt. Veeder Estate 1.5L','','publish','closed','closed','','2009-1-5-liter-meadowcroft-mt-veeder-cabernet','','','2023-06-12 05:32:40','2023-06-12 12:32:40','',0,'https://www.meadowcroftwines.com/product/2009-1-5-liter-meadowcroft-mt-veeder-cabernet/',0,'product','',0),(2637,1,'2023-05-02 12:40:31','2023-05-02 19:40:31','','2009 Cabernet Sauvignon, Mt. Veeder Estate 375ml','','publish','closed','closed','','2009-cabernet-sauvignon-mt-veeder-estate-375ml','','','2023-06-12 05:32:41','2023-06-12 12:32:41','',0,'https://www.meadowcroftwines.com/product/2009-cabernet-sauvignon-mt-veeder-estate-375ml/',0,'product','',0),(2638,1,'2023-05-02 12:40:32','2023-05-02 19:40:32','','2009 Sangiovese, Sonoma Valley','','publish','closed','closed','','2009-meadowcroft-sonoma-valley-sangiovese','','','2023-06-12 05:32:42','2023-06-12 12:32:42','',0,'https://www.meadowcroftwines.com/product/2009-meadowcroft-sonoma-valley-sangiovese/',0,'product','',0),(2639,1,'2023-05-02 12:40:32','2023-05-02 19:40:32','','2010 Cabernet Sauvignon, Oak Knoll Reserve','','publish','closed','closed','','2010-cabernet-sauvignon-oak-knoll-reserve','','','2023-11-14 11:24:03','2023-11-14 19:24:03','',0,'https://www.meadowcroftwines.com/product/2010-cabernet-sauvignon-oak-knoll-reserve/',0,'product','',0),(2640,1,'2023-05-02 12:40:32','2023-05-02 19:40:32','','2010 Sangiovese, Sonoma Valley','','publish','closed','closed','','2010-sangiovese-sonoma-valley','','','2023-06-12 05:32:44','2023-06-12 12:32:44','',0,'https://www.meadowcroftwines.com/product/2010-sangiovese-sonoma-valley/',0,'product','',0),(2641,1,'2023-05-02 12:40:32','2023-05-02 19:40:32','','2011 Cabernet Sauvignon, Mt. Veeder Estate','','publish','closed','closed','','2011-cabernet-sauvignon-mt-veeder-estate','','','2023-06-12 05:32:45','2023-06-12 12:32:45','',0,'https://www.meadowcroftwines.com/product/2011-cabernet-sauvignon-mt-veeder-estate/',0,'product','',0),(2642,1,'2023-05-02 12:40:32','2023-05-02 19:40:32','','2012 Cabernet Sauvignon, Mt. Veeder 1.5 liter','','publish','closed','closed','','2012-cabernet-sauvignon-mt-veeder-estate-15l','','','2023-08-08 05:46:43','2023-08-08 12:46:43','',0,'https://www.meadowcroftwines.com/product/2012-cabernet-sauvignon-mt-veeder-estate-15l/',0,'product','',0),(2643,1,'2023-05-02 12:40:32','2023-05-02 19:40:32','','2012 Cabernet Sauvignon, Mt. Veeder Estate','','publish','closed','closed','','2012-mt-veeder-cabernet-sauvignon','','','2024-01-05 12:41:14','2024-01-05 20:41:14','',0,'https://www.meadowcroftwines.com/product/2012-mt-veeder-cabernet-sauvignon/',0,'product','',0),(2644,1,'2023-05-02 12:40:32','2023-05-02 19:40:32','','2012 Cabernet Sauvignon, Mt. Veeder Estate 3L','','publish','closed','closed','','2012-mt-vedeer-3l','','','2023-06-12 05:32:47','2023-06-12 12:32:47','',0,'https://www.meadowcroftwines.com/product/2012-mt-vedeer-3l/',0,'product','',0),(2645,1,'2023-05-02 12:40:32','2023-05-02 19:40:32','','2012 Cabernet Sauvignon, Napa Valley College','','publish','closed','closed','','2012-cabernet-sauvignon-napa-valley-college','','','2023-06-12 05:32:48','2023-06-12 12:32:48','',0,'https://www.meadowcroftwines.com/product/2012-cabernet-sauvignon-napa-valley-college/',0,'product','',0),(2646,1,'2023-05-02 12:40:32','2023-05-02 19:40:32','','2012 Cabernet Sauvignon, Sonoma County','','publish','closed','closed','','2012-cabernet-sauvignon-sonoma-county','','','2023-11-14 11:24:30','2023-11-14 19:24:30','',0,'https://www.meadowcroftwines.com/product/2012-cabernet-sauvignon-sonoma-county/',0,'product','',0),(2647,1,'2023-05-02 12:40:32','2023-05-02 19:40:32','','2013 Cabernet Franc, Giles Vineyard','','publish','closed','closed','','2013-cabernet-franc-giles-vineyard','','','2023-06-12 05:32:50','2023-06-12 12:32:50','',0,'https://www.meadowcroftwines.com/product/2013-cabernet-franc-giles-vineyard/',0,'product','',0),(2648,1,'2023-05-02 12:40:32','2023-05-02 19:40:32','','2013 Cabernet Sauvignon, Mt. Veeder Estate','','publish','closed','closed','','2013-cabernet-sauvignon-mt-veeder-estate','','','2023-11-14 12:13:22','2023-11-14 20:13:22','',0,'https://www.meadowcroftwines.com/product/2013-cabernet-sauvignon-mt-veeder-estate/',0,'product','',0),(2649,1,'2023-05-02 12:40:32','2023-05-02 19:40:32','','2013 Cabernet Sauvignon, Mt. Veeder Estate 1.5L','','publish','closed','closed','','2013-cabernet-sauvignon-mt-veeder-estate-1-5l-duplicate','','','2023-06-12 05:32:52','2023-06-12 12:32:52','',0,'https://www.meadowcroftwines.com/product/2013-cabernet-sauvignon-mt-veeder-estate-1-5l-duplicate/',0,'product','',0),(2650,1,'2023-05-02 12:40:33','2023-05-02 19:40:33','','2014 Cabernet Sauvignon, Mt. Veeder Estate','','publish','closed','closed','','2014-cabernet-sauvignon-mt-veeder-estate','','','2023-06-12 05:32:53','2023-06-12 12:32:53','',0,'https://www.meadowcroftwines.com/product/2014-cabernet-sauvignon-mt-veeder-estate/',0,'product','',0),(2651,1,'2023-05-02 12:40:33','2023-05-02 19:40:33','','2014 Cabernet Sauvignon, Napa Valley','','publish','closed','closed','','2014-cabernet-sauvignon-napa-valley','','','2023-11-14 11:25:14','2023-11-14 19:25:14','',0,'https://www.meadowcroftwines.com/product/2014-cabernet-sauvignon-napa-valley/',0,'product','',0),(2652,1,'2023-05-02 12:40:33','2023-05-02 19:40:33','','2014 Pinot Noir, Cornerstone Vineyards','','publish','closed','closed','','2014-cornerstone-vineyards-pinot-noir','','','2023-06-12 05:32:55','2023-06-12 12:32:55','',0,'https://www.meadowcroftwines.com/product/2014-cornerstone-vineyards-pinot-noir/',0,'product','',0),(2653,1,'2023-05-02 12:40:33','2023-05-02 19:40:33','','2014 Zinfandel, Speedy Creek Vineyard','','publish','closed','closed','','2014-zinfandel-speedy-creek-vineyard','','','2023-09-05 10:55:09','2023-09-05 17:55:09','',0,'https://www.meadowcroftwines.com/product/2014-zinfandel-speedy-creek-vineyard/',0,'product','',0),(2654,1,'2023-05-02 12:40:33','2023-05-02 19:40:33','','2015 Cabernet Sauvignon, Mt. Veeder Estate','','publish','closed','closed','','2015-cabernet-sauvignon-mt-veeder-estate','','','2023-06-12 05:32:56','2023-06-12 12:32:56','',0,'https://www.meadowcroftwines.com/product/2015-cabernet-sauvignon-mt-veeder-estate/',0,'product','',0),(2655,1,'2023-05-02 12:40:33','2023-05-02 19:40:33','','2015 Zinfandel, Louvau Vineyard','','publish','closed','closed','','2015-louvau-vineyard-dry-creek-zinfandel','','','2024-01-13 17:22:00','2024-01-14 01:22:00','',0,'https://www.meadowcroftwines.com/product/2015-louvau-vineyard-dry-creek-zinfandel/',0,'product','',0),(2656,1,'2023-05-02 12:40:33','2023-05-02 19:40:33','','2016 Cabernet Franc, Giles Vineyard','','publish','closed','closed','','2016-cabernet-franc-giles-vineyard','','','2023-11-14 11:26:08','2023-11-14 19:26:08','',0,'https://www.meadowcroftwines.com/product/2016-cabernet-franc-giles-vineyard/',0,'product','',0),(2657,1,'2023-05-02 12:40:33','2023-05-02 19:40:33','','2016 Cabernet Sauvignon, Mendocino County','','publish','closed','closed','','2016-mendocino-cabernet-sauvignon','','','2023-11-14 11:26:33','2023-11-14 19:26:33','',0,'https://www.meadowcroftwines.com/product/2016-mendocino-cabernet-sauvignon/',0,'product','',0),(2658,1,'2023-05-02 12:40:33','2023-05-02 19:40:33','','2016 Cabernet Sauvignon, Mt. Veeder 1.5 liter','','publish','closed','closed','','2016-cabernet-sauvignon-mt-veeder-estate-15l','','','2023-06-12 05:33:00','2023-06-12 12:33:00','',0,'https://www.meadowcroftwines.com/product/2016-cabernet-sauvignon-mt-veeder-estate-15l/',0,'product','',0),(2659,1,'2023-05-02 12:40:33','2023-05-02 19:40:33','','2016 Cabernet Sauvignon, Mt. Veeder Estate','','publish','closed','closed','','2016-mt-veeder-cabernet-sauvignon','','','2023-06-12 05:33:01','2023-06-12 12:33:01','',0,'https://www.meadowcroftwines.com/product/2016-mt-veeder-cabernet-sauvignon/',0,'product','',0),(2660,1,'2023-05-02 12:40:34','2023-05-02 19:40:34','','2016 Cabernet Sauvignon, Napa Valley','','publish','closed','closed','','2016-cabernet-sauvignon-napa-valley','','','2023-06-12 05:33:02','2023-06-12 12:33:02','',0,'https://www.meadowcroftwines.com/product/2016-cabernet-sauvignon-napa-valley/',0,'product','',0),(2661,1,'2023-05-02 12:40:34','2023-05-02 19:40:34','','2016 Cabernet Sauvignon, Napa Valley 375 ml','','publish','closed','closed','','2016-cabernet-sauvignon-napa-valley-375-ml','','','2023-08-31 13:32:40','2023-08-31 20:32:40','',0,'https://www.meadowcroftwines.com/product/2016-cabernet-sauvignon-napa-valley-375-ml/',0,'product','',0),(2662,1,'2023-05-02 12:40:34','2023-05-02 19:40:34','','2016 Cabernet Sauvignon, Nelson Ranch','','publish','closed','closed','','2016-cabernet-sauvignon-nelson-ranch','','','2023-06-12 05:33:04','2023-06-12 12:33:04','',0,'https://www.meadowcroftwines.com/product/2016-cabernet-sauvignon-nelson-ranch/',0,'product','',0),(2663,1,'2023-05-02 12:40:34','2023-05-02 19:40:34','','2016 Chardonnay,  Russian River Valley','','publish','closed','closed','','2016-meadowcroft-russian-river-valley-chardonnay','','','2023-06-12 05:33:05','2023-06-12 12:33:05','',0,'https://www.meadowcroftwines.com/product/2016-meadowcroft-russian-river-valley-chardonnay/',0,'product','',0),(2664,1,'2023-05-02 12:40:34','2023-05-02 19:40:34','','2016 Cru de la Ruche Malbec 1.5L Shiner','','publish','closed','closed','','2016-cru-de-la-ruche-malbec-15l','','','2024-01-13 17:21:17','2024-01-14 01:21:17','',0,'https://www.meadowcroftwines.com/product/2016-cru-de-la-ruche-malbec-15l/',0,'product','',0),(2665,1,'2023-05-02 12:40:35','2023-05-02 19:40:35','','2016 GSM, Chalk Hill','','publish','closed','closed','','2016-gsm-chalk-hill','','','2023-06-12 05:33:06','2023-06-12 12:33:06','',0,'https://www.meadowcroftwines.com/product/2016-gsm-chalk-hill/',0,'product','',0),(2666,1,'2023-05-02 12:40:35','2023-05-02 19:40:35','','2016 Pinot Noir, Carneros','','publish','closed','closed','','2016-los-carneros-napa-pinot-noir','','','2023-06-12 05:33:06','2023-06-12 12:33:06','',0,'https://www.meadowcroftwines.com/product/2016-los-carneros-napa-pinot-noir/',0,'product','',0),(2667,1,'2023-05-02 12:40:35','2023-05-02 19:40:35','','2016 River Trace GSM','','publish','closed','closed','','2016-river-trace-gsm','','','2023-11-14 11:25:42','2023-11-14 19:25:42','',0,'https://www.meadowcroftwines.com/product/2016-river-trace-gsm/',0,'product','',0),(2668,1,'2023-05-02 12:40:35','2023-05-02 19:40:35','','2016 Zinfandel, Louvau Vineyard','','publish','closed','closed','','2016-meadowcroft-dry-creek-valley-louvau-zinfandel','','','2023-06-12 05:33:08','2023-06-12 12:33:08','',0,'https://www.meadowcroftwines.com/product/2016-meadowcroft-dry-creek-valley-louvau-zinfandel/',0,'product','',0),(2669,1,'2023-05-02 12:40:35','2023-05-02 19:40:35','','2017 Cabernet Franc, Giles Vineyard','','publish','closed','closed','','2017-giles-vineyard-cabernet-franc','','','2023-06-12 05:33:09','2023-06-12 12:33:09','',0,'https://www.meadowcroftwines.com/product/2017-giles-vineyard-cabernet-franc/',0,'product','',0),(2670,1,'2023-05-02 12:40:35','2023-05-02 19:40:35','','2017 Cabernet Sauvignon, Mt. Veeder Estate','','publish','closed','closed','','2017-cabernet-sauvignon-mt-veeder-estate','','','2023-11-14 12:14:07','2023-11-14 20:14:07','',0,'https://www.meadowcroftwines.com/product/2017-cabernet-sauvignon-mt-veeder-estate/',0,'product','',0),(2671,1,'2023-05-02 12:40:35','2023-05-02 19:40:35','','2017 Malbec, Clements Hill','','publish','closed','closed','','2017-malbec-clements-hill','','','2023-11-14 11:27:41','2023-11-14 19:27:41','',0,'https://www.meadowcroftwines.com/product/2017-malbec-clements-hill/',0,'product','',0),(2672,1,'2023-05-02 12:40:35','2023-05-02 19:40:35','','2017 Panorama Red Blend','','publish','closed','closed','','meadowcroft-2017-the-panorama-red-blend','','','2023-11-14 11:27:21','2023-11-14 19:27:21','',0,'https://www.meadowcroftwines.com/product/meadowcroft-2017-the-panorama-red-blend/',0,'product','',0),(2673,1,'2023-05-02 12:40:35','2023-05-02 19:40:35','','2017 Sangiovese, Speedy Creek Vineyard','','publish','closed','closed','','2017-sangiovese-speedy-creek-vineyard','','','2023-11-14 11:27:02','2023-11-14 19:27:02','',0,'https://www.meadowcroftwines.com/product/2017-sangiovese-speedy-creek-vineyard/',0,'product','',0),(2674,1,'2023-05-02 12:40:35','2023-05-02 19:40:35','','2018 Cabernet Franc, Rivino Vineyard','','publish','closed','closed','','2018-cabernet-franc-rivino-vineyard','','','2023-08-31 13:33:13','2023-08-31 20:33:13','',0,'https://www.meadowcroftwines.com/product/2018-cabernet-franc-rivino-vineyard/',0,'product','',0),(2675,1,'2023-05-02 12:40:36','2023-05-02 19:40:36','','2018 Cabernet Sauvignon, Mt. Veeder Estate','','publish','closed','closed','','2018-mt-veeder-cabernet-sauvignon','','','2023-08-11 12:39:27','2023-08-11 19:39:27','',0,'https://www.meadowcroftwines.com/product/2018-mt-veeder-cabernet-sauvignon/',0,'product','',0),(2676,1,'2023-05-02 12:40:36','2023-05-02 19:40:36','','2018 Cabernet Sauvignon, Napa Valley','','publish','closed','closed','','2018-meadowcroft-napa-valley-cabernet-sauvignon','','','2024-07-23 12:49:52','2024-07-23 19:49:52','',0,'https://www.meadowcroftwines.com/product/2018-meadowcroft-napa-valley-cabernet-sauvignon/',0,'product','',0),(2677,1,'2023-05-02 12:40:36','2023-05-02 19:40:36','','2018 Cabernet Sauvignon, Napa Valley 375 ml','','publish','closed','closed','','2018-napa-valley-cabernet-sauvignon-375-ml','','','2023-06-12 05:33:17','2023-06-12 12:33:17','',0,'https://www.meadowcroftwines.com/product/2018-napa-valley-cabernet-sauvignon-375-ml/',0,'product','',0),(2678,1,'2023-05-02 12:40:36','2023-05-02 19:40:36','','2018 Cabernet Sauvignon, Nelson Ranch Vineyard','','publish','closed','closed','','2018-cabernet-sauvignon-nelson-ranch-vineyard','','','2023-09-03 16:46:38','2023-09-03 23:46:38','',0,'https://www.meadowcroftwines.com/product/2018-cabernet-sauvignon-nelson-ranch-vineyard/',0,'product','',0),(2679,1,'2023-05-02 12:40:36','2023-05-02 19:40:36','','2018 Cabernet Sauvignon, Spring Mtn. District','','publish','closed','closed','','2018-cabernet-sauvignon-spring-mountain-district','','','2023-08-08 05:45:52','2023-08-08 12:45:52','',0,'https://www.meadowcroftwines.com/product/2018-cabernet-sauvignon-spring-mountain-district/',0,'product','',0),(2680,1,'2023-05-02 12:40:36','2023-05-02 19:40:36','','2018 Cru de la Ruche Malbec','','publish','closed','closed','','2018-cru-de-la-ruche-malbec','','','2023-06-12 05:33:19','2023-06-12 12:33:19','',0,'https://www.meadowcroftwines.com/product/2018-cru-de-la-ruche-malbec/',0,'product','',0),(2681,1,'2023-05-02 12:40:36','2023-05-02 19:40:36','','2018 Pinot Noir, Sonoma Coast 375mL','','publish','closed','closed','','2018-pinot-noir-sonoma-coast-375ml','','','2023-08-31 13:28:41','2023-08-31 20:28:41','',0,'https://www.meadowcroftwines.com/product/2018-pinot-noir-sonoma-coast-375ml/',0,'product','',0),(2682,1,'2023-05-02 12:40:36','2023-05-02 19:40:36','','2018 Sangiovese, Speedy Creek Vineyard','','publish','closed','closed','','2018-speedy-creek-vineyard-sangiovese','','','2023-09-05 10:55:42','2023-09-05 17:55:42','',0,'https://www.meadowcroftwines.com/product/2018-speedy-creek-vineyard-sangiovese/',0,'product','',0),(2683,1,'2023-05-02 12:40:37','2023-05-02 19:40:37','','2018 Zinfandel, Louvau Vineyard','','publish','closed','closed','','2018-louvau-vineyard-zinfandel','','','2023-09-06 11:47:43','2023-09-06 18:47:43','',0,'https://www.meadowcroftwines.com/product/2018-louvau-vineyard-zinfandel/',0,'product','',0),(2684,1,'2023-05-02 12:40:37','2023-05-02 19:40:37','','2018 Zinfandel, Louvau Vineyard 375mL','','publish','closed','closed','','2018-zinfandel-louvau-vineyard-375ml','','','2023-06-12 05:33:22','2023-06-12 12:33:22','',0,'https://www.meadowcroftwines.com/product/2018-zinfandel-louvau-vineyard-375ml/',0,'product','',0),(2685,1,'2023-05-02 12:40:37','2023-05-02 19:40:37','','2018 Zinfandel, Speedy Creek Vineyard','','publish','closed','closed','','2018-zinfandel-speedy-creek-vineyard','','','2023-10-03 14:16:51','2023-10-03 21:16:51','',0,'https://www.meadowcroftwines.com/product/2018-zinfandel-speedy-creek-vineyard/',0,'product','',0),(2686,1,'2023-05-02 12:40:37','2023-05-02 19:40:37','','2018 Zinfandel, Speedy Creek Vineyard **SHINER**','','publish','closed','closed','','2018-zinfandel-speedy-creek-vineyard-shiner','','','2023-09-06 11:47:51','2023-09-06 18:47:51','',0,'https://www.meadowcroftwines.com/product/2018-zinfandel-speedy-creek-vineyard-shiner/',0,'product','',0),(2687,1,'2023-05-02 12:40:37','2023-05-02 19:40:37','','2019 Cabernet Franc, Rivino Vineyard','','publish','closed','closed','','2019-cab-franc-rivino-vineyard','','','2023-10-09 11:11:55','2023-10-09 18:11:55','',0,'https://www.meadowcroftwines.com/product/2019-cab-franc-rivino-vineyard/',0,'product','',0),(2688,1,'2023-05-02 12:40:37','2023-05-02 19:40:37','','2019 Cabernet Sauvignon,  Nelson Ranch Vineyard','','publish','closed','closed','','2019-cabernet-sauvignon-nelson-ranch-vineyard','','','2023-12-20 13:10:01','2023-12-20 21:10:01','',0,'https://www.meadowcroftwines.com/product/2019-cabernet-sauvignon-nelson-ranch-vineyard/',0,'product','',0),(2689,1,'2023-05-02 12:40:37','2023-05-02 19:40:37','','2019 Cabernet Sauvignon, Mt. Veeder Estate','','publish','closed','closed','','2019-mt-veeder-cabernet-sauvignon','','','2023-08-08 05:36:39','2023-08-08 12:36:39','',0,'https://www.meadowcroftwines.com/product/2019-mt-veeder-cabernet-sauvignon/',0,'product','',0),(2690,1,'2023-05-02 12:40:37','2023-05-02 19:40:37','','2019 Cabernet Sauvignon, Napa Valley','','publish','closed','closed','','2019-cabernet-sauvignon-napa-valley','','','2023-09-03 16:48:22','2023-09-03 23:48:22','',0,'https://www.meadowcroftwines.com/product/2019-cabernet-sauvignon-napa-valley/',0,'product','',0),(2691,1,'2023-05-02 12:40:37','2023-05-02 19:40:37','','2019 Cabernet Sauvignon, Oakville','','publish','closed','closed','','2019-cabernet-sauvignon-oakville','','','2023-08-11 13:20:39','2023-08-11 20:20:39','',0,'https://www.meadowcroftwines.com/product/2019-cabernet-sauvignon-oakville/',0,'product','',0),(2692,1,'2023-05-02 12:40:37','2023-05-02 19:40:37','','2017 Cabernet Sauvignon, Louvau Vineyard','','publish','closed','closed','','2017-cabernet-sauvignon-louvau-vineyard','','','2024-01-05 12:52:46','2024-01-05 20:52:46','',0,'https://www.meadowcroftwines.com/product/2019-cabernet-sauvignon-wyldvin-vineyard/',0,'product','',0),(2693,1,'2023-05-02 12:40:38','2023-05-02 19:40:38','','2019 Chardonnay, Bonneau Vineyard','','publish','closed','closed','','2019-chardonnay-bonneau-vineyard','','','2024-04-16 01:01:15','2024-04-16 08:01:15','',0,'https://www.meadowcroftwines.com/product/2019-chardonnay-bonneau-vineyard/',0,'product','',0),(2694,1,'2023-05-02 12:40:38','2023-05-02 19:40:38','','2019 Chardonnay, Los Carneros','','publish','closed','closed','','2019-napa-los-carneros-chardonnay','','','2023-06-12 05:33:28','2023-06-12 12:33:28','',0,'https://www.meadowcroftwines.com/product/2019-napa-los-carneros-chardonnay/',0,'product','',0),(2695,1,'2023-05-02 12:40:38','2023-05-02 19:40:38','','2019 Chardonnay, Napa Valley 375mL','','publish','closed','closed','','2019-chardonnay-napa-valley-375ml','','','2023-09-06 13:50:31','2023-09-06 20:50:31','',0,'https://www.meadowcroftwines.com/product/2019-chardonnay-napa-valley-375ml/',0,'product','',0),(2696,1,'2023-05-02 12:40:38','2023-05-02 19:40:38','','2019 Cru de la Ruche Malbec, Clements Hill','','publish','closed','closed','','2019-cru-de-la-ruche-malbec-clements-hill','','','2023-06-12 05:33:29','2023-06-12 12:33:29','',0,'https://www.meadowcroftwines.com/product/2019-cru-de-la-ruche-malbec-clements-hill/',0,'product','',0),(2697,1,'2023-05-02 12:40:38','2023-05-02 19:40:38','','2019 French Colombard, Russian River Valley','','publish','closed','closed','','2019-russian-river-valley-french-colombard','','','2023-06-12 05:33:29','2023-06-12 12:33:29','',0,'https://www.meadowcroftwines.com/product/2019-russian-river-valley-french-colombard/',0,'product','',0),(2698,1,'2023-05-02 12:40:38','2023-05-02 19:40:38','','2019 Napa to Sonoma Half Marathon 1.5L','','publish','closed','closed','','1-5l-napa-to-sonoma-half-marathon-2019','','','2023-06-12 05:33:30','2023-06-12 12:33:30','',0,'https://www.meadowcroftwines.com/product/1-5l-napa-to-sonoma-half-marathon-2019/',0,'product','',0),(2699,1,'2023-05-02 12:40:38','2023-05-02 19:40:38','','2019 Pinot Noir, Anderson Valley','','publish','closed','closed','','2019-anderson-valley-pinot-noir','','','2023-06-12 05:33:31','2023-06-12 12:33:31','',0,'https://www.meadowcroftwines.com/product/2019-anderson-valley-pinot-noir/',0,'product','',0),(2700,1,'2023-05-02 12:40:38','2023-05-02 19:40:38','','2019 Pinot Noir, Cornerstone Vineyard','','publish','closed','closed','','2019-meadowcroft-los-carneros-cornerstone-vineyard-pinot-noir','','','2023-08-31 13:18:35','2023-08-31 20:18:35','',0,'https://www.meadowcroftwines.com/product/2019-meadowcroft-los-carneros-cornerstone-vineyard-pinot-noir/',0,'product','',0),(2701,1,'2023-05-02 12:40:38','2023-05-02 19:40:38','','2019 Pinot Noir, Russian River Valley','','publish','closed','closed','','2019-russian-river-valley-pinot-noir','','','2023-08-31 13:18:17','2023-08-31 20:18:17','',0,'https://www.meadowcroftwines.com/product/2019-russian-river-valley-pinot-noir/',0,'product','',0),(2702,1,'2023-05-02 12:40:38','2023-05-02 19:40:38','','2019 Pinot Noir, Sonoma Coast','','publish','closed','closed','','2019-sonoma-coast-pinot-noir','','','2023-09-03 16:38:34','2023-09-03 23:38:34','',0,'https://www.meadowcroftwines.com/product/2019-sonoma-coast-pinot-noir/',0,'product','',0),(2703,1,'2023-05-02 12:40:39','2023-05-02 19:40:39','','2019 River Trace Grenache Syrah Mourvedre','','publish','closed','closed','','2019-river-trace-grenache-syrah-mourvedre','','','2023-06-12 05:33:34','2023-06-12 12:33:34','',0,'https://www.meadowcroftwines.com/product/2019-river-trace-grenache-syrah-mourvedre/',0,'product','',0),(2704,1,'2023-05-02 12:40:39','2023-05-02 19:40:39','','2019 River Trace Grenache Syrah Mourvedre *SHINER**','','publish','closed','closed','','2019-river-trace-grenache-syrah-mourvedre-shiner','','','2023-06-12 05:33:35','2023-06-12 12:33:35','',0,'https://www.meadowcroftwines.com/product/2019-river-trace-grenache-syrah-mourvedre-shiner/',0,'product','',0),(2705,1,'2023-05-02 12:40:39','2023-05-02 19:40:39','','2019 Roussanne, Louvau Vineyard','','publish','closed','closed','','2019-louvau-vineyard-roussane','','','2023-08-31 13:43:01','2023-08-31 20:43:01','',0,'https://www.meadowcroftwines.com/product/2019-louvau-vineyard-roussane/',0,'product','',0),(2706,1,'2023-05-02 12:40:39','2023-05-02 19:40:39','','2019 Sangiovese, Speedy Creek Vineyard','','publish','closed','closed','','2019-sangiovese-speedy-creek-vineyard','','','2023-08-31 13:42:42','2023-08-31 20:42:42','',0,'https://www.meadowcroftwines.com/product/2019-sangiovese-speedy-creek-vineyard/',0,'product','',0),(2707,1,'2023-05-02 12:40:39','2023-05-02 19:40:39','','2019 Sauvignon Blanc, Napa Valley **SHINER**','','publish','closed','closed','','2019-sauvignon-blanc-napa-valley-shiner','','','2023-06-12 05:33:36','2023-06-12 12:33:36','',0,'https://www.meadowcroftwines.com/product/2019-sauvignon-blanc-napa-valley-shiner/',0,'product','',0),(2708,1,'2023-05-02 12:40:39','2023-05-02 19:40:39','','2019 Cabernet Sauvignon, Stags Leap District','','publish','closed','closed','','2019-stag-s-leap-cabernet-sauvignon','','','2023-09-25 15:07:22','2023-09-25 22:07:22','',0,'https://www.meadowcroftwines.com/product/2019-stag-s-leap-cabernet-sauvignon/',0,'product','',0),(2709,1,'2023-05-02 12:40:39','2023-05-02 19:40:39','','2019 Zinfandel, Speedy Creek Vineyard','','publish','closed','closed','','2019-zinfandel-speedy-creek-vineyard','','','2024-07-08 16:24:35','2024-07-08 23:24:35','',0,'https://www.meadowcroftwines.com/product/2019-zinfandel-speedy-creek-vineyard/',0,'product','',0),(2710,1,'2023-05-02 12:40:39','2023-05-02 19:40:39','','2019 Zinfandel, Wyldvin Vineyard','','publish','closed','closed','','2019-meadowcroft-dry-creek-valley-zinfandel-wyldvin-vineyard','','','2023-09-25 15:11:46','2023-09-25 22:11:46','',0,'https://www.meadowcroftwines.com/product/2019-meadowcroft-dry-creek-valley-zinfandel-wyldvin-vineyard/',0,'product','',0),(2711,1,'2023-05-02 12:40:39','2023-05-02 19:40:39','','2019 Zinfandel, Wyldvin,  375ml','','publish','closed','closed','','2019-meadowcroft-dry-creek-valley-zinfandel-wyldvin-vineyard-375ml','','','2023-06-12 05:33:38','2023-06-12 12:33:38','',0,'https://www.meadowcroftwines.com/product/2019-meadowcroft-dry-creek-valley-zinfandel-wyldvin-vineyard-375ml/',0,'product','',0),(2712,1,'2023-05-02 12:40:39','2023-05-02 19:40:39','','2020 Bent Press Malbec Agrelo Mendoza, Argentina','','publish','closed','closed','','2020-bent-press-malbec-agrelo-mendoza-argentina','','','2023-06-12 05:33:38','2023-06-12 12:33:38','',0,'https://www.meadowcroftwines.com/product/2020-bent-press-malbec-agrelo-mendoza-argentina/',0,'product','',0),(2713,1,'2023-05-02 12:40:40','2023-05-02 19:40:40','','2020 Bent Press Malbec Case Special','','publish','closed','closed','','2020-bent-press-malbec-case-special','','','2024-11-11 09:55:31','2024-11-11 17:55:31','',0,'https://www.meadowcroftwines.com/product/2020-bent-press-malbec-case-special/',0,'product','',0),(2714,1,'2023-05-02 12:40:40','2023-05-02 19:40:40','','2020 Cabernet Sauvignon, Mt. Veeder Estate','','publish','closed','closed','','2020-cabernet-sauvignon-mt-veeder-estate-750','','','2024-04-22 22:58:05','2024-04-23 05:58:05','',0,'https://www.meadowcroftwines.com/product/2020-cabernet-sauvignon-mt-veeder-estate-750/',0,'product','',0),(2715,1,'2023-05-02 12:40:40','2023-05-02 19:40:40','','2020 Cabernet Sauvignon, Mt. Veeder Estate 1.5L','','publish','closed','closed','','2020-mt-veeder-napa-valley-cabernet-sauvignon-magnum-1-5l-waxed','','','2023-07-05 16:36:45','2023-07-05 23:36:45','',0,'https://www.meadowcroftwines.com/product/2020-mt-veeder-napa-valley-cabernet-sauvignon-magnum-1-5l-waxed/',0,'product','',0),(2716,1,'2023-05-02 12:40:40','2023-05-02 19:40:40','','2020 Cabernet Sauvignon, Napa Valley','','publish','closed','closed','','2020-cabernet-sauvignon-napa-valley','','','2023-11-16 09:55:30','2023-11-16 17:55:30','',0,'https://www.meadowcroftwines.com/product/2020-cabernet-sauvignon-napa-valley/',0,'product','',0),(2717,1,'2023-05-02 12:40:40','2023-05-02 19:40:40','','2020 Cabernet Sauvignon, Napa Valley 375 ml','','publish','closed','closed','','2020-cabernet-sauvignon-napa-valley-375-ml','','','2023-06-12 05:33:41','2023-06-12 12:33:41','',0,'https://www.meadowcroftwines.com/product/2020-cabernet-sauvignon-napa-valley-375-ml/',0,'product','',0),(2718,1,'2023-05-02 12:40:40','2023-05-02 19:40:40','','2020 Cabernet Sauvignon, Oakville','','publish','closed','closed','','2020-cabernet-sauvignon-oakville-napa-valley','','','2024-09-24 12:39:23','2024-09-24 19:39:23','',0,'https://www.meadowcroftwines.com/product/2020-cabernet-sauvignon-oakville-napa-valley/',0,'product','',0),(2719,1,'2023-05-02 12:40:41','2023-05-02 19:40:41','','2020 Cabernet Sauvignon, Oakville ** SHINER**','','publish','closed','closed','','2020-cabernet-sauvignon-oakville-shiner','','','2023-06-12 05:33:41','2023-06-12 12:33:41','',0,'https://www.meadowcroftwines.com/product/2020-cabernet-sauvignon-oakville-shiner/',0,'product','',0),(2720,1,'2023-05-02 12:40:41','2023-05-02 19:40:41','','2020 Cabernet Sauvignon, Red Hills','','publish','closed','closed','','2020-meadowcroft-cabernet-sauvignon-red-hills','','','2023-07-05 16:42:08','2023-07-05 23:42:08','',0,'https://www.meadowcroftwines.com/product/2020-meadowcroft-cabernet-sauvignon-red-hills/',0,'product','',0),(2721,1,'2023-05-02 12:40:41','2023-05-02 19:40:41','','2020 Cabernet Sauvignon, Stag\'s Leap 1.5L','','publish','closed','closed','','2020-meadowcroft-cabernet-sauvignon-stags-leap-15l','','','2023-06-12 05:33:42','2023-06-12 12:33:42','',0,'https://www.meadowcroftwines.com/product/2020-meadowcroft-cabernet-sauvignon-stags-leap-15l/',0,'product','',0),(2722,1,'2023-05-02 12:40:41','2023-05-02 19:40:41','','2020 Cabernet Sauvignon, Wyldvin Vineyard','','publish','closed','closed','','2020-cabernet-sauvignon-wyldvin-vineyard','','','2023-07-05 16:42:26','2023-07-05 23:42:26','',0,'https://www.meadowcroftwines.com/product/2020-cabernet-sauvignon-wyldvin-vineyard/',0,'product','',0),(2723,1,'2023-05-02 12:40:41','2023-05-02 19:40:41','','2020 Chardonnay, Napa Carneros','','publish','closed','closed','','2020-napa-carneros-chardonnay','','','2023-06-12 05:33:43','2023-06-12 12:33:43','',0,'https://www.meadowcroftwines.com/product/2020-napa-carneros-chardonnay/',0,'product','',0),(2724,1,'2023-05-02 12:40:41','2023-05-02 19:40:41','','2020 Chardonnay, Napa Carneros 12/750ml','','publish','closed','closed','','2020-meadowcroft-napa-carneros-chardonnay-12750ml','','','2024-01-13 17:34:14','2024-01-14 01:34:14','',0,'https://www.meadowcroftwines.com/product/2020-meadowcroft-napa-carneros-chardonnay-12750ml/',0,'product','',0),(2725,1,'2023-05-02 12:40:41','2023-05-02 19:40:41','','2020 Chardonnay, Taylor\'s Crown Vineyard','','publish','closed','closed','','2020-chardonnay-taylor-s-crown-vineyard','','','2023-08-31 13:45:18','2023-08-31 20:45:18','',0,'https://www.meadowcroftwines.com/product/2020-chardonnay-taylor-s-crown-vineyard/',0,'product','',0),(2726,1,'2023-05-02 12:40:41','2023-05-02 19:40:41','','2020 Cru de la Ruche Malbec','','publish','closed','closed','','2020-cru-de-la-ruche-malbec','','','2023-08-10 12:58:12','2023-08-10 19:58:12','',0,'https://www.meadowcroftwines.com/product/2020-cru-de-la-ruche-malbec/',0,'product','',0),(2727,1,'2023-05-02 12:40:41','2023-05-02 19:40:41','','2020 Melange Red Blend, Dry Creek Valley','','publish','closed','closed','','meadowcroft-melange-red-blend','','','2023-07-05 16:49:16','2023-07-05 23:49:16','',0,'https://www.meadowcroftwines.com/product/meadowcroft-melange-red-blend/',0,'product','',0),(2728,1,'2023-05-02 12:40:41','2023-05-02 19:40:41','','2020 Pinot Blanc, Rivino Vineyard','','publish','closed','closed','','2020-pinot-blanc-rivino-vineyard-mendocino','','','2023-06-12 05:33:46','2023-06-12 12:33:46','',0,'https://www.meadowcroftwines.com/product/2020-pinot-blanc-rivino-vineyard-mendocino/',0,'product','',0),(2729,1,'2023-05-02 12:40:42','2023-05-02 19:40:42','','2020 Pinot Noir, Anderson Valley','','publish','closed','closed','','2020-anderson-valley-pinot-noir','','','2023-08-31 13:18:42','2023-08-31 20:18:42','',0,'https://www.meadowcroftwines.com/product/2020-anderson-valley-pinot-noir/',0,'product','',0),(2730,1,'2023-05-02 12:40:42','2023-05-02 19:40:42','','2020 Pinot Noir, Anderson Valley ** Black Screw Cap**','','publish','closed','closed','','2020-pinot-noir-anderson-valley-black-screw-cap','','','2023-06-12 05:33:46','2023-06-12 12:33:46','',0,'https://www.meadowcroftwines.com/product/2020-pinot-noir-anderson-valley-black-screw-cap/',0,'product','',0),(2731,1,'2023-05-02 12:40:42','2023-05-02 19:40:42','','2020 Pinot Noir, Anderson Valley **Gold Screw Cap**','','publish','closed','closed','','2020-pinot-noir-anderson-valley-gold-screw-cap','','','2023-06-12 05:33:47','2023-06-12 12:33:47','',0,'https://www.meadowcroftwines.com/product/2020-pinot-noir-anderson-valley-gold-screw-cap/',0,'product','',0),(2732,1,'2023-05-02 12:40:42','2023-05-02 19:40:42','','2020 Pinot Noir, Cornerstone Vineyard','','publish','closed','closed','','2020-pinot-noir-cornerstone-vineyard','','','2023-08-31 13:23:12','2023-08-31 20:23:12','',0,'https://www.meadowcroftwines.com/product/2020-pinot-noir-cornerstone-vineyard/',0,'product','',0),(2733,1,'2023-05-02 12:40:42','2023-05-02 19:40:42','','2020 Pinot Noir, Russian River Valley','','publish','closed','closed','','2020-pinot-noir-russian-river-valley','','','2023-10-03 14:16:28','2023-10-03 21:16:28','',0,'https://www.meadowcroftwines.com/product/2020-pinot-noir-russian-river-valley/',0,'product','',0),(2734,1,'2023-05-02 12:40:42','2023-05-02 19:40:42','','2020 River Trace GSM','','publish','closed','closed','','2020-river-trace-gsm','','','2023-11-24 10:04:57','2023-11-24 18:04:57','',0,'https://www.meadowcroftwines.com/product/2020-river-trace-gsm/',0,'product','',0),(2735,1,'2023-05-02 12:40:42','2023-05-02 19:40:42','','2020 Rosé of Malbec Clements Hill','','publish','closed','closed','','2020-ros-of-malbec-clements-hill','','','2023-06-12 05:33:49','2023-06-12 12:33:49','',0,'https://www.meadowcroftwines.com/product/2020-ros-of-malbec-clements-hill/',0,'product','',0),(2736,1,'2023-05-02 12:40:42','2023-05-02 19:40:42','','2020 Rosé of Pinot Noir, Sonoma Coast','','publish','closed','closed','','2020-ros-of-pinot-noir-sonoma-coast','','','2023-06-12 05:33:49','2023-06-12 12:33:49','',0,'https://www.meadowcroftwines.com/product/2020-ros-of-pinot-noir-sonoma-coast/',0,'product','',0),(2737,1,'2023-05-02 12:40:42','2023-05-02 19:40:42','','2020 Roussanne, Louvau Vineyards','','publish','closed','closed','','2020-louvau-vineyards-roussanne','','','2023-08-31 13:43:11','2023-08-31 20:43:11','',0,'https://www.meadowcroftwines.com/product/2020-louvau-vineyards-roussanne/',0,'product','',0),(2738,1,'2023-05-02 12:40:43','2023-05-02 19:40:43','','2020 Cabernet Sauvignon, Rutherford','','publish','closed','closed','','2020-rutherford-cabernet-sauvignon','','','2024-09-29 10:12:37','2024-09-29 17:12:37','',0,'https://www.meadowcroftwines.com/product/2020-rutherford-cabernet-sauvignon/',0,'product','',0),(2739,1,'2023-05-02 12:40:43','2023-05-02 19:40:43','','2020 Sangiovese, Speedy Creek Vineyard','','publish','closed','closed','','2020-meadowcroft-sangiovese-speedy-creek-vineyard-sonoma-county','','','2023-09-27 12:25:56','2023-09-27 19:25:56','',0,'https://www.meadowcroftwines.com/product/2020-meadowcroft-sangiovese-speedy-creek-vineyard-sonoma-county/',0,'product','',0),(2740,1,'2023-05-02 12:40:43','2023-05-02 19:40:43','','2020 Sauvignon Blanc, Sonoma Coast','','publish','closed','closed','','2020-sonoma-coast-sauvignon-blanc','','','2023-06-12 05:33:51','2023-06-12 12:33:51','',0,'https://www.meadowcroftwines.com/product/2020-sonoma-coast-sauvignon-blanc/',0,'product','',0),(2741,1,'2023-05-02 12:40:43','2023-05-02 19:40:43','','2020 Cabernet Sauvignon, Stags Leap District','','publish','closed','closed','','2020-stags-leap-cabernet-sauvignon','','','2024-08-30 16:01:32','2024-08-30 23:01:32','',0,'https://www.meadowcroftwines.com/product/2020-stags-leap-cabernet-sauvignon/',0,'product','',0),(2742,1,'2023-05-02 12:40:43','2023-05-02 19:40:43','','2020 Viognier, Louvau Vineyard','','publish','closed','closed','','2020-louvau-vineyards-viognier','','','2023-08-11 13:22:48','2023-08-11 20:22:48','',0,'https://www.meadowcroftwines.com/product/2020-louvau-vineyards-viognier/',0,'product','',0),(2743,1,'2023-05-02 12:40:43','2023-05-02 19:40:43','','2020 Zinfandel, Mae Vineyard','','publish','closed','closed','','2020-zinfandel-mae-vineyard','','','2024-04-09 13:42:32','2024-04-09 20:42:32','',0,'https://www.meadowcroftwines.com/product/2020-zinfandel-mae-vineyard/',0,'product','',0),(2744,1,'2023-05-02 12:40:43','2023-05-02 19:40:43','','2021 Cabernet Franc, Rivino Vineyard','','publish','closed','closed','','2021-cabernet-franc-rivino-vineyard','','','2024-05-03 12:33:33','2024-05-03 19:33:33','',0,'https://www.meadowcroftwines.com/product/2021-cabernet-franc-rivino-vineyard/',0,'product','',0),(2745,1,'2023-05-02 12:40:43','2023-05-02 19:40:43','','2021 Cabernet Sauvignon, Nelson Ranch Vineyard','','publish','closed','closed','','2021-cabernet-sauvignon-nelson-ranch-vineyard','','','2023-09-03 16:38:53','2023-09-03 23:38:53','',0,'https://www.meadowcroftwines.com/product/2021-cabernet-sauvignon-nelson-ranch-vineyard/',0,'product','',0),(2746,1,'2023-05-02 12:40:43','2023-05-02 19:40:43','','2021 Cabernet Sauvignon, Wyldvin Vineyard','','publish','closed','closed','','2021-cabernet-sauvignon-wyldvin-vineyard','','','2024-05-03 13:30:39','2024-05-03 20:30:39','',0,'https://www.meadowcroftwines.com/product/2021-cabernet-sauvignon-wyldvin-vineyard/',0,'product','',0),(2747,1,'2023-05-02 12:40:43','2023-05-02 19:40:43','','2021 Chardonnay, Anderson Valley','','publish','closed','closed','','2021-chardonnay-anderson-valley','','','2023-09-27 12:23:07','2023-09-27 19:23:07','',0,'https://www.meadowcroftwines.com/product/2021-chardonnay-anderson-valley/',0,'product','',0),(2748,1,'2023-05-02 12:40:44','2023-05-02 19:40:44','','2021 Chardonnay, Carneros 375ml','','publish','closed','closed','','2021-meadowcroft-chardonnay-carneros-napa-valley','','','2023-08-08 05:35:52','2023-08-08 12:35:52','',0,'https://www.meadowcroftwines.com/product/2021-meadowcroft-chardonnay-carneros-napa-valley/',0,'product','',0),(2749,1,'2023-05-02 12:40:44','2023-05-02 19:40:44','','2021 Chardonnay, Carneros','','publish','closed','closed','','2021-chardonnay-carneros','','','2023-09-03 16:39:35','2023-09-03 23:39:35','',0,'https://www.meadowcroftwines.com/product/2021-chardonnay-carneros/',0,'product','',0),(2750,1,'2023-05-02 12:40:44','2023-05-02 19:40:44','','2021 Chardonnay, Vino Del Sol Vineyard','','publish','closed','closed','','2021-meadowcroft-chardonnay-vino-del-sol-vineyard-sonoma-coast','','','2023-09-06 13:49:36','2023-09-06 20:49:36','',0,'https://www.meadowcroftwines.com/product/2021-meadowcroft-chardonnay-vino-del-sol-vineyard-sonoma-coast/',0,'product','',0),(2751,1,'2023-05-02 12:40:44','2023-05-02 19:40:44','','2021 French Colombard','','publish','closed','closed','','french-colombard','','','2023-09-05 10:54:30','2023-09-05 17:54:30','',0,'https://www.meadowcroftwines.com/product/french-colombard/',0,'product','',0),(2752,1,'2023-05-02 12:40:44','2023-05-02 19:40:44','','2021 Pinot Blanc, Rivino Vineyard','','publish','closed','closed','','2021-pinot-blanc-rivino-vineyard','','','2023-08-31 13:22:32','2023-08-31 20:22:32','',0,'https://www.meadowcroftwines.com/product/2021-pinot-blanc-rivino-vineyard/',0,'product','',0),(2753,1,'2023-05-02 12:40:44','2023-05-02 19:40:44','','2021 Pinot Gris, Nelson Ranch Vineyard','','publish','closed','closed','','2021-pinot-gris-nelson-ranch-vineyard','','','2023-06-15 14:29:15','2023-06-15 21:29:15','',0,'https://www.meadowcroftwines.com/product/2021-pinot-gris-nelson-ranch-vineyard/',0,'product','',0),(2754,1,'2023-05-02 12:40:44','2023-05-02 19:40:44','','2021 Pinot Noir, Anderson Valley','','publish','closed','closed','','2021-pinot-noir-anderson-valley','','','2023-08-31 13:22:16','2023-08-31 20:22:16','',0,'https://www.meadowcroftwines.com/product/2021-pinot-noir-anderson-valley/',0,'product','',0),(2755,1,'2023-05-02 12:40:44','2023-05-02 19:40:44','','2021 Pinot Noir, Napa Carneros','','publish','closed','closed','','2021-pinot-noir-carneros','','','2023-08-08 05:37:07','2023-08-08 12:37:07','',0,'https://www.meadowcroftwines.com/product/2021-pinot-noir-carneros/',0,'product','',0),(2756,1,'2023-05-02 12:40:44','2023-05-02 19:40:44','','2021 Pinot Noir, Russian River Valley','','publish','closed','closed','','2021-pinot-noir-russian-river-valley','','','2023-11-13 13:50:06','2023-11-13 21:50:06','',0,'https://www.meadowcroftwines.com/product/2021-pinot-noir-russian-river-valley/',0,'product','',0),(2757,1,'2023-05-02 12:40:44','2023-05-02 19:40:44','','2021 Pinot Noir, Sonoma Coast 375ml ** THOMAS HENRY***','','publish','closed','closed','','thomas-henry','','','2023-06-12 05:33:59','2023-06-12 12:33:59','',0,'https://www.meadowcroftwines.com/product/thomas-henry/',0,'product','',0),(2758,1,'2023-05-02 12:40:45','2023-05-02 19:40:45','','2021 Pinot Noir, Viña Del Sol Vineyard','','publish','closed','closed','','2021-pinot-noir-vina-del-sol-sonoma-coast','','','2023-09-03 16:32:26','2023-09-03 23:32:26','',0,'https://www.meadowcroftwines.com/product/2021-pinot-noir-vino-del-sol-sonoma-coast/',0,'product','',0),(2759,1,'2023-05-02 12:40:45','2023-05-02 19:40:45','','2021 River Trace Rosé','','publish','closed','closed','','2021-river-trace-ros-grenache-syrah-malbec','','','2023-09-05 10:54:18','2023-09-05 17:54:18','',0,'https://www.meadowcroftwines.com/product/2021-river-trace-ros-grenache-syrah-malbec/',0,'product','',0),(2760,1,'2023-05-02 12:40:45','2023-05-02 19:40:45','','2021 Rosé of Pinot Noir,  Sonoma Coast','','publish','closed','closed','','2021-ros-of-pinot-noir-sonoma-coast','','','2024-04-09 13:31:40','2024-04-09 20:31:40','',0,'https://www.meadowcroftwines.com/product/2021-ros-of-pinot-noir-sonoma-coast/',0,'product','',0),(2761,1,'2023-05-02 12:40:45','2023-05-02 19:40:45','','2021 Roussanne','','publish','closed','closed','','2021-roussanne-wyldvin-vineyard','','','2023-08-08 05:34:44','2023-08-08 12:34:44','',0,'https://www.meadowcroftwines.com/product/2021-roussanne-wyldvin-vineyard/',0,'product','',0),(2762,1,'2023-05-02 12:40:45','2023-05-02 19:40:45','','2021 Sauvignon Blanc, Sonoma Coast','','publish','closed','closed','','2021-sauvignon-blanc-sonoma-coast','','','2023-06-12 05:34:02','2023-06-12 12:34:02','',0,'https://www.meadowcroftwines.com/product/2021-sauvignon-blanc-sonoma-coast/',0,'product','',0),(2763,1,'2023-05-02 12:40:45','2023-05-02 19:40:45','','2021 The Magi','','publish','closed','closed','','the-magi','','','2023-08-28 17:02:12','2023-08-29 00:02:12','',0,'https://www.meadowcroftwines.com/product/the-magi/',0,'product','',0),(2764,1,'2023-05-02 12:40:45','2023-05-02 19:40:45','','2021 Viognier, Wyldvin Vineyard','','publish','closed','closed','','2021-viognier-wyldvin-vineyard','','','2024-04-15 15:55:48','2024-04-15 22:55:48','',0,'https://www.meadowcroftwines.com/product/2021-viognier-wyldvin-vineyard/',0,'product','',0),(2765,1,'2023-05-02 12:40:45','2023-05-02 19:40:45','','2022 Chardonnay, Carneros 375ml','','publish','closed','closed','','2022-chardonnay-carneros-375ml','','','2023-07-05 13:20:43','2023-07-05 20:20:43','',0,'https://www.meadowcroftwines.com/product/2022-chardonnay-carneros-375ml/',0,'product','',0),(2766,1,'2023-05-02 12:40:45','2023-05-02 19:40:45','','2022 Chardonnay, Carneros','','publish','closed','closed','','2022-chardonnay-napa-carneros','','','2024-09-24 12:41:29','2024-09-24 19:41:29','',0,'https://www.meadowcroftwines.com/product/2022-chardonnay-napa-carneros/',0,'product','',0),(2767,1,'2023-05-02 12:40:45','2023-05-02 19:40:45','','2022 Fall Club Newsletter','','publish','closed','closed','','2022-fall-club-newsletter','','','2024-01-13 17:20:35','2024-01-14 01:20:35','',0,'https://www.meadowcroftwines.com/product/2022-fall-club-newsletter/',0,'product','',0),(2768,1,'2023-05-02 12:40:46','2023-05-02 19:40:46','','2022 French Colombard, Russian River Valley','','publish','closed','closed','','2022-french-colombard','','','2024-07-29 13:17:39','2024-07-29 20:17:39','',0,'https://www.meadowcroftwines.com/product/2022-french-colombard/',0,'product','',0),(2769,1,'2023-05-02 12:40:46','2023-05-02 19:40:46','','2022 Pinot Blanc, Rivino Vineyard','','publish','closed','closed','','2022-pinot-blanc','','','2024-07-08 16:38:58','2024-07-08 23:38:58','',0,'https://www.meadowcroftwines.com/product/2022-pinot-blanc/',0,'product','',0),(2770,1,'2023-05-02 12:40:46','2023-05-02 19:40:46','','2022 Pinot Gris, Nelson Ranch Vineyard','','publish','closed','closed','','2022-pinot-gris-nelson-ranch-vineyard','','','2024-05-03 12:38:27','2024-05-03 19:38:27','',0,'https://www.meadowcroftwines.com/product/2022-pinot-gris-nelson-ranch-vineyard/',0,'product','',0),(2771,1,'2023-05-02 12:40:46','2023-05-02 19:40:46','','2022 Pinot Noir, Anderson Valley','','publish','closed','closed','','2022-pinot-noir-anderson-valley','','','2024-04-22 22:55:00','2024-04-23 05:55:00','',0,'https://www.meadowcroftwines.com/product/2022-pinot-noir-anderson-valley/',0,'product','',0),(2772,1,'2023-05-02 12:40:46','2023-05-02 19:40:46','','2022 River Trace Rosé','','publish','closed','closed','','2022-river-trace-ros','','','2024-04-23 00:39:08','2024-04-23 07:39:08','',0,'https://www.meadowcroftwines.com/product/2022-river-trace-ros/',0,'product','',0),(2773,1,'2023-05-02 12:40:46','2023-05-02 19:40:46','','2022 Rosé of Pinot Noir,  Sonoma Coast','','publish','closed','closed','','2022-ros-of-pinot-noir','','','2024-07-08 16:24:54','2024-07-08 23:24:54','',0,'https://www.meadowcroftwines.com/product/2022-ros-of-pinot-noir/',0,'product','',0),(2774,1,'2023-05-02 12:40:46','2023-05-02 19:40:46','','2022 Roussanne, Wyldvin Vineyard','','publish','closed','closed','','2022-rousanne','','','2024-08-30 14:41:38','2024-08-30 21:41:38','',0,'https://www.meadowcroftwines.com/product/2022-rousanne/',0,'product','',0),(2775,1,'2023-05-02 12:40:46','2023-05-02 19:40:46','','2022 Sauvignon Blanc, Sonoma Coast','','publish','closed','closed','','2022-sauvignon-blanc-sonoma-coast','','','2023-09-27 12:18:25','2023-09-27 19:18:25','',0,'https://www.meadowcroftwines.com/product/2022-sauvignon-blanc-sonoma-coast/',0,'product','',0),(2776,1,'2023-05-02 12:40:46','2023-05-02 19:40:46','','2022 Viognier, Wyldvin Vineyard','','publish','closed','closed','','2022-viognier-wyldvin-vineyard','','','2024-07-29 13:19:07','2024-07-29 20:19:07','',0,'https://www.meadowcroftwines.com/product/2022-viognier-wyldvin-vineyard/',0,'product','',0),(2777,1,'2023-05-02 12:40:47','2023-05-02 19:40:47','','2BTL Wine Bag_Resusable Logoed 250 per case','','publish','closed','closed','','2btl-wine-bag_resusable-logoed-250-per-case','','','2023-05-02 12:40:47','2023-05-02 19:40:47','',0,'https://www.meadowcroftwines.com/product/2btl-wine-bag_resusable-logoed-250-per-case/',0,'product','',0),(2778,1,'2023-05-02 12:40:47','2023-05-02 19:40:47','','4BTL Wine Bag_Resusable Logoed 250 per case','','publish','closed','closed','','4btl-wine-bag_resusable-logoed-250-per-case','','','2023-05-02 12:40:47','2023-05-02 19:40:47','',0,'https://www.meadowcroftwines.com/product/4btl-wine-bag_resusable-logoed-250-per-case/',0,'product','',0),(2779,1,'2023-05-02 12:40:47','2023-05-02 19:40:47','','6- Bottle Wine Gift Box - Branded','','publish','closed','closed','','6-bottle-shipper','','','2023-05-02 12:40:47','2023-05-02 19:40:47','',0,'https://www.meadowcroftwines.com/product/6-bottle-shipper/',0,'product','',0),(2780,1,'2023-05-02 12:40:47','2023-05-02 19:40:47','','6BTL Wine Bag_Resusable Logoed 250 per case','','publish','closed','closed','','6btl-wine-bag_resusable-logoed-250-per-case','','','2023-05-02 12:40:47','2023-05-02 19:40:47','',0,'https://www.meadowcroftwines.com/product/6btl-wine-bag_resusable-logoed-250-per-case/',0,'product','',0),(2781,1,'2023-05-02 12:40:47','2023-05-02 19:40:47','','A Perfect Blend','','publish','closed','closed','','a-perfect-blend','','','2024-12-23 15:19:36','2024-12-23 23:19:36','',0,'https://www.meadowcroftwines.com/product/a-perfect-blend/',0,'product','',0),(2782,1,'2023-05-02 12:40:47','2023-05-02 19:40:47','','Air Balloon and Blending Experience - Wine Club','','publish','closed','closed','','air-balloon-and-blending-experience-wine-club','','','2023-05-02 12:40:47','2023-05-02 19:40:47','',0,'https://www.meadowcroftwines.com/product/air-balloon-and-blending-experience-wine-club/',0,'product','',0),(2783,1,'2023-05-02 12:40:47','2023-05-02 19:40:47','','AirBnB Blending','','publish','closed','closed','','airbnb-blending','','','2023-05-02 12:40:47','2023-05-02 19:40:47','',0,'https://www.meadowcroftwines.com/product/airbnb-blending/',0,'product','',0),(2784,1,'2023-05-02 12:40:47','2023-05-02 19:40:47','','All She Wrote Port Style Wine','','publish','closed','closed','','all-she-wrote','','','2024-11-14 15:00:02','2024-11-14 23:00:02','',0,'https://www.meadowcroftwines.com/product/all-she-wrote/',0,'product','',0),(2785,1,'2023-05-02 12:40:47','2023-05-02 19:40:47','','Anniversary Cuvée - 20 Years','','publish','closed','closed','','anniversary-cuv-e','','','2024-06-13 13:15:24','2024-06-13 20:15:24','',0,'https://www.meadowcroftwines.com/product/anniversary-cuv-e/',0,'product','',0),(2786,1,'2023-05-02 12:40:48','2023-05-02 19:40:48','','Art Culinaire Book','','publish','closed','closed','','art-culinaire-book','','','2023-08-25 11:55:07','2023-08-25 18:55:07','',0,'https://www.meadowcroftwines.com/product/art-culinaire-book/',0,'product','',0),(2787,1,'2023-05-02 12:40:48','2023-05-02 19:40:48','','Balloon and Blending','','publish','closed','closed','','seated-tasting-duplicate','','','2024-12-23 13:38:50','2024-12-23 21:38:50','',0,'https://www.meadowcroftwines.com/product/seated-tasting-duplicate/',0,'product','',0),(2788,1,'2023-05-02 12:40:48','2023-05-02 19:40:48','','Bamboo Cutting Board','','publish','closed','closed','','meadowcroft-bamboo-cutting-board','','','2023-05-02 12:40:48','2023-05-02 19:40:48','',0,'https://www.meadowcroftwines.com/product/meadowcroft-bamboo-cutting-board/',0,'product','',0),(2789,1,'2023-05-02 12:40:48','2023-05-02 19:40:48','','Bee Cozy Gift Set','','publish','closed','closed','','bee-cozy-gift-set','','','2024-11-11 09:54:05','2024-11-11 17:54:05','',0,'https://www.meadowcroftwines.com/product/bee-cozy-gift-set/',0,'product','',0),(2790,1,'2023-05-02 12:40:48','2023-05-02 19:40:48','','Bee Logo Coaster','','publish','closed','closed','','bee-logo-coaster','','','2023-05-02 12:40:48','2023-05-02 19:40:48','',0,'https://www.meadowcroftwines.com/product/bee-logo-coaster/',0,'product','',0),(2791,1,'2023-05-02 12:40:48','2023-05-02 19:40:48','','Bee Napkin Rings','','publish','closed','closed','','bee-napkin-rings','','','2023-05-02 12:40:48','2023-05-02 19:40:48','',0,'https://www.meadowcroftwines.com/product/bee-napkin-rings/',0,'product','',0),(2792,1,'2023-05-02 12:40:48','2023-05-02 19:40:48','','Blanc de Noirs Rosé','','publish','closed','closed','','blanc-de-noir-rose','','','2024-02-01 14:35:28','2024-02-01 22:35:28','',0,'https://www.meadowcroftwines.com/product/blanc-de-noir-rose/',0,'product','',0),(2793,1,'2023-05-02 12:40:48','2023-05-02 19:40:48','','Blanc de Blancs','','publish','closed','closed','','blancs-de-blancs','','','2024-09-24 12:43:43','2024-09-24 19:43:43','',0,'https://www.meadowcroftwines.com/product/blancs-de-blancs/',0,'product','',0),(2794,1,'2023-05-02 12:40:48','2023-05-02 19:40:48','','Blending Experience Additional Bottle','','publish','closed','closed','','blending-experience-additional-bottle','','','2024-01-13 17:18:44','2024-01-14 01:18:44','',0,'https://www.meadowcroftwines.com/product/blending-experience-additional-bottle/',0,'product','',0),(2795,1,'2023-05-02 12:40:48','2023-05-02 19:40:48','','Blending Mini Carafes','','publish','closed','closed','','blending-mini-carafes','','','2023-05-02 12:40:48','2023-05-02 19:40:48','',0,'https://www.meadowcroftwines.com/product/blending-mini-carafes/',0,'product','',0),(2796,1,'2023-05-02 12:40:48','2023-05-02 19:40:48','','Blending Seminar','','publish','closed','closed','','blending-seminar','','','2024-12-23 13:34:24','2024-12-23 21:34:24','',0,'https://www.meadowcroftwines.com/product/blending-seminar/',0,'product','',0),(2798,1,'2023-05-02 12:40:49','2023-05-02 19:40:49','','Blind Tasting Experience','','publish','closed','closed','','blind-tasting-experience','','','2023-05-20 16:41:16','2023-05-20 23:41:16','',0,'https://www.meadowcroftwines.com/product/blind-tasting-experience/',0,'product','',0),(2799,1,'2023-05-02 12:40:49','2023-05-02 19:40:49','','Bouquet of Rose','','publish','closed','closed','','rose-bundle-2023','','','2024-10-20 16:45:20','2024-10-20 23:45:20','',0,'https://www.meadowcroftwines.com/product/rose-bundle-2023/',0,'product','',0),(2800,1,'2023-05-02 12:40:49','2023-05-02 19:40:49','','BUY & HOLD SHIPPING','','publish','closed','closed','','buy-hold-shipping','','','2023-05-02 12:40:49','2023-05-02 19:40:49','',0,'https://www.meadowcroftwines.com/product/buy-hold-shipping/',0,'product','',0),(2801,1,'2023-05-02 12:40:49','2023-05-02 19:40:49','','Candles','','publish','closed','closed','','meadowcroft-bottle-candle','','','2023-05-02 12:40:49','2023-05-02 19:40:49','',0,'https://www.meadowcroftwines.com/product/meadowcroft-bottle-candle/',0,'product','',0),(2802,1,'2023-05-02 12:40:49','2023-05-02 19:40:49','','Cheese Plate','','publish','closed','closed','','cheese-plate','','','2024-05-27 16:48:54','2024-05-27 23:48:54','',0,'https://www.meadowcroftwines.com/product/cheese-plate/',0,'product','',0),(2803,1,'2023-05-02 12:40:49','2023-05-02 19:40:49','','Chocolate Cabernet Sauce','','publish','closed','closed','','chocolate-cabernet-sauce','','','2024-12-24 09:46:18','2024-12-24 17:46:18','',0,'https://www.meadowcroftwines.com/product/chocolate-cabernet-sauce/',0,'product','',0),(2804,1,'2023-05-02 12:40:49','2023-05-02 19:40:49','','Christmas Tree Ornament','','publish','closed','closed','','christmas-tree-ornament','','','2024-01-13 18:19:29','2024-01-14 02:19:29','',0,'https://www.meadowcroftwines.com/product/christmas-tree-ornament/',0,'product','',0),(2805,1,'2023-05-02 12:40:49','2023-05-02 19:40:49','','Club Pick Up Event','','publish','closed','closed','','club-pick-up-event','','','2023-05-02 12:40:49','2023-05-02 19:40:49','',0,'https://www.meadowcroftwines.com/product/club-pick-up-event/',0,'product','',0),(2806,1,'2023-05-02 12:40:49','2023-05-02 19:40:49','','Comp Glass','','publish','closed','closed','','comp-glass','','','2023-05-02 12:40:49','2023-05-02 19:40:49','',0,'https://www.meadowcroftwines.com/product/comp-glass/',0,'product','',0),(2807,1,'2023-05-02 12:40:49','2023-05-02 19:40:49','','Comp Tasting','','publish','closed','closed','','comp-tasting','','','2024-10-31 13:47:34','2024-10-31 20:47:34','',0,'https://www.meadowcroftwines.com/product/comp-tasting/',0,'product','',0),(2808,1,'2023-05-02 12:40:50','2023-05-02 19:40:50','','Cork Screw','','publish','closed','closed','','meadowcroft-cork-screw','','','2024-01-13 18:20:01','2024-01-14 02:20:01','',0,'https://www.meadowcroftwines.com/product/meadowcroft-cork-screw/',0,'product','',0),(2809,1,'2023-05-02 12:40:50','2023-05-02 19:40:50','','Crackers- Nettle &amp; Honey','','publish','closed','closed','','crackers-nettle-honey','','','2024-01-13 18:20:18','2024-01-14 02:20:18','',0,'https://www.meadowcroftwines.com/product/crackers-nettle-honey/',0,'product','',0),(2810,1,'2023-05-02 12:40:50','2023-05-02 19:40:50','','Crackers, Flatbreads- Rosemary &amp; Olive oil','','publish','closed','closed','','flatbreads-rosemary-olive-oil','','','2024-10-18 13:33:23','2024-10-18 20:33:23','',0,'https://www.meadowcroftwines.com/product/flatbreads-rosemary-olive-oil/',0,'product','',0),(2811,1,'2023-05-02 12:40:50','2023-05-02 19:40:50','','Credit Card Processing Fee','','publish','closed','closed','','credit-card-processing-fee','','','2023-05-02 12:40:50','2023-05-02 19:40:50','',0,'https://www.meadowcroftwines.com/product/credit-card-processing-fee/',0,'product','',0),(2812,1,'2023-05-02 12:40:50','2023-05-02 19:40:50','','Cutting Board &amp; Knife Set','','publish','closed','closed','','cutting-board-knife-set','','','2024-01-13 18:20:35','2024-01-14 02:20:35','',0,'https://www.meadowcroftwines.com/product/cutting-board-knife-set/',0,'product','',0),(2813,1,'2023-05-02 12:40:50','2023-05-02 19:40:50','','Double Bottle Box','','publish','closed','closed','','double-bottle-box','','','2023-05-02 12:40:50','2023-05-02 19:40:50','',0,'https://www.meadowcroftwines.com/product/double-bottle-box/',0,'product','',0),(2814,1,'2023-05-02 12:40:50','2023-05-02 19:40:50','','Double Btl Box _Black','','publish','closed','closed','','double-btl-box-_black','','','2023-05-02 12:40:50','2023-05-02 19:40:50','',0,'https://www.meadowcroftwines.com/product/double-btl-box-_black/',0,'product','',0),(2815,1,'2023-05-02 12:40:50','2023-05-02 19:40:50','','Early Membership Termination Fee','','publish','closed','closed','','early-membership-termination-fee','','','2023-05-02 12:40:50','2023-05-02 19:40:50','',0,'https://www.meadowcroftwines.com/product/early-membership-termination-fee/',0,'product','',0),(2816,1,'2023-05-02 12:40:50','2023-05-02 19:40:50','','Event Food','','publish','closed','closed','','event-food','','','2023-11-24 11:21:04','2023-11-24 19:21:04','',0,'https://www.meadowcroftwines.com/product/event-food/',0,'product','',0),(2817,1,'2023-05-02 12:40:50','2023-05-02 19:40:50','','Event Rental','','publish','closed','closed','','event-rental','','','2023-05-02 12:40:50','2023-05-02 19:40:50','',0,'https://www.meadowcroftwines.com/product/event-rental/',0,'product','',0),(2818,1,'2023-05-02 12:40:51','2023-05-02 19:40:51','','Fall 2022 Pickup Party','','publish','closed','closed','','fall-2022-pickup-party','','','2023-06-16 15:24:47','2023-06-16 22:24:47','',0,'https://www.meadowcroftwines.com/product/fall-2022-pickup-party/',0,'product','',0),(2819,1,'2023-05-02 12:40:51','2023-05-02 19:40:51','','Father\'s Day Zinfandel Special','','publish','closed','closed','','father-s-day-zinfandel-special','','','2024-11-11 09:56:15','2024-11-11 17:56:15','',0,'https://www.meadowcroftwines.com/product/father-s-day-zinfandel-special/',0,'product','',0),(2820,1,'2023-05-02 12:40:51','2023-05-02 19:40:51','','Flat Rate Shipping','','publish','closed','closed','','flat-rate-shipping','','','2024-01-13 17:35:36','2024-01-14 01:35:36','',0,'https://www.meadowcroftwines.com/product/flat-rate-shipping/',0,'product','',0),(2821,1,'2023-05-02 12:40:51','2023-05-02 19:40:51','','Foil Remover','','publish','closed','closed','','meadowcroft-foil-remover','','','2023-05-02 12:40:51','2023-05-02 19:40:51','',0,'https://www.meadowcroftwines.com/product/meadowcroft-foil-remover/',0,'product','',0),(2822,1,'2023-05-02 12:40:51','2023-05-02 19:40:51','','For the Collector Wood Box &amp; Spring Mt. Cabernet Gift Set','','publish','closed','closed','','for-the-collector-wood-box-spring-mt-cabernet-gift-set','','','2024-11-11 09:56:58','2024-11-11 17:56:58','',0,'https://www.meadowcroftwines.com/product/for-the-collector-wood-box-spring-mt-cabernet-gift-set/',0,'product','',0),(2823,1,'2023-05-02 12:40:52','2023-05-02 19:40:52','','Friday Noir | Black Box Pinot Noir','','publish','closed','closed','','friday-noir-black-box-pinot-noir','','','2023-05-02 12:40:52','2023-05-02 19:40:52','',0,'https://www.meadowcroftwines.com/product/friday-noir-black-box-pinot-noir/',0,'product','',0),(2824,1,'2023-05-02 12:40:52','2023-05-02 19:40:52','','Friday Noir | Black Box Pinot Noir 2021','','publish','closed','closed','','friday-noir-black-box-pinot-noir-2021','','','2024-11-11 09:57:12','2024-11-11 17:57:12','',0,'https://www.meadowcroftwines.com/product/friday-noir-black-box-pinot-noir-2021/',0,'product','',0),(2825,1,'2023-05-02 12:40:52','2023-05-02 19:40:52','','Gathering Table Book','','publish','closed','closed','','gathering-table-book','','','2023-08-25 11:54:55','2023-08-25 18:54:55','',0,'https://www.meadowcroftwines.com/product/gathering-table-book/',0,'product','',0),(2826,1,'2023-05-02 12:40:52','2023-05-02 19:40:52','','Gift Card - Electronic','','publish','closed','closed','','gift-card-electronic','','','2023-05-02 12:40:52','2023-05-02 19:40:52','',0,'https://www.meadowcroftwines.com/product/gift-card-electronic/',0,'product','',0),(2827,1,'2023-05-02 12:40:52','2023-05-02 19:40:52','','Gift Pack Sauv Blanc and Anniversary Cuvee','','publish','closed','closed','','gift-pack-sauv-blanc-and-anniversary-cuvee','','','2023-05-02 12:40:52','2023-05-02 19:40:52','',0,'https://www.meadowcroftwines.com/product/gift-pack-sauv-blanc-and-anniversary-cuvee/',0,'product','',0),(2828,1,'2023-05-02 12:40:52','2023-05-02 19:40:52','','Gift Set of Two Stemmed Logo Wine Glasses','','publish','closed','closed','','gift-set-of-two-stemmed-logoed-wine-glasses','','','2023-05-02 12:40:52','2023-05-02 19:40:52','',0,'https://www.meadowcroftwines.com/product/gift-set-of-two-stemmed-logoed-wine-glasses/',0,'product','',0),(2829,1,'2023-05-02 12:40:52','2023-05-02 19:40:52','','Glass Bottles for Blending_ Bordeaux','','publish','closed','closed','','glass-bottles-for-blending_-bordeaux','','','2023-05-02 12:40:52','2023-05-02 19:40:52','',0,'https://www.meadowcroftwines.com/product/glass-bottles-for-blending_-bordeaux/',0,'product','',0),(2830,1,'2023-05-02 12:40:53','2023-05-02 19:40:53','','Glass Meadowcroft Mt. Veeder','','publish','closed','closed','','15-glass-meadowcroft-mt-veeder','','','2023-05-02 12:40:53','2023-05-02 19:40:53','',0,'https://www.meadowcroftwines.com/product/15-glass-meadowcroft-mt-veeder/',0,'product','',0),(2831,1,'2023-05-02 12:40:53','2023-05-02 19:40:53','','Glass of Red','','publish','closed','closed','','12-glass-of-red','','','2023-05-02 12:40:53','2023-05-02 19:40:53','',0,'https://www.meadowcroftwines.com/product/12-glass-of-red/',0,'product','',0),(2832,1,'2023-05-02 12:40:53','2023-05-02 19:40:53','','Gratuity','','publish','closed','closed','','gratuity','','','2023-05-02 12:40:53','2023-05-02 19:40:53','',0,'https://www.meadowcroftwines.com/product/gratuity/',0,'product','',0),(2833,1,'2023-05-02 12:40:53','2023-05-02 19:40:53','','Harmonica','','publish','closed','closed','','harmonica','','','2023-05-02 12:40:53','2023-05-02 19:40:53','',0,'https://www.meadowcroftwines.com/product/harmonica/',0,'product','',0),(2834,1,'2023-05-02 12:40:53','2023-05-02 19:40:53','','Holiday Cocktail Glass','','publish','closed','closed','','holiday-cocktail-glass','','','2023-05-02 12:40:53','2023-05-02 19:40:53','',0,'https://www.meadowcroftwines.com/product/holiday-cocktail-glass/',0,'product','',0),(2835,1,'2023-05-02 12:40:53','2023-05-02 19:40:53','','Holiday Spice Gift Set','','publish','closed','closed','','holiday-spice-gift-set','','','2023-05-02 12:40:53','2023-05-02 19:40:53','',0,'https://www.meadowcroftwines.com/product/holiday-spice-gift-set/',0,'product','',0),(2836,1,'2023-05-02 12:40:53','2023-05-02 19:40:53','','Honey','','publish','closed','closed','','meadowcroft-honey','','','2023-05-02 12:40:53','2023-05-02 19:40:53','',0,'https://www.meadowcroftwines.com/product/meadowcroft-honey/',0,'product','',0),(2837,1,'2023-05-02 12:40:53','2023-05-02 19:40:53','','Jacket - ladies fleece','','publish','closed','closed','','pullover-microfleece-duplicate','','','2024-01-13 18:05:36','2024-01-14 02:05:36','',0,'https://www.meadowcroftwines.com/product/pullover-microfleece-duplicate/',0,'product','',0),(2838,1,'2023-05-02 12:40:53','2023-05-02 19:40:53','','Jacket - soft shell','','publish','closed','closed','','jacket-soft-shell','','','2024-01-13 18:03:52','2024-01-14 02:03:52','',0,'https://www.meadowcroftwines.com/product/jacket-soft-shell/',0,'product','',0),(2839,1,'2023-05-02 12:40:53','2023-05-02 19:40:53','','Key to the Wine Cellar Keychain','','publish','closed','closed','','meadowcroft-key-to-the-wine-cellar','','','2024-01-13 17:45:04','2024-01-14 01:45:04','',0,'https://www.meadowcroftwines.com/product/meadowcroft-key-to-the-wine-cellar/',0,'product','',0),(2840,1,'2023-05-02 12:40:54','2023-05-02 19:40:54','','Ladies Golf Shirt','','publish','closed','closed','','ladies-golf-shirt','','','2023-05-02 12:40:54','2023-05-02 19:40:54','',0,'https://www.meadowcroftwines.com/product/ladies-golf-shirt/',0,'product','',0),(2841,1,'2023-05-02 12:40:54','2023-05-02 19:40:54','','Limited Edition Sparkling and 2006 Veeder Gift Set','','publish','closed','closed','','limited-edition-sparkling-and-2006-veeder-gift-set','','','2023-05-02 12:40:54','2023-05-02 19:40:54','',0,'https://www.meadowcroftwines.com/product/limited-edition-sparkling-and-2006-veeder-gift-set/',0,'product','',0),(2842,1,'2023-05-02 12:40:54','2023-05-02 19:40:54','','Market Tote - washable paper','','publish','closed','closed','','market-tote-washable-paper','','','2024-01-13 17:39:57','2024-01-14 01:39:57','',0,'https://www.meadowcroftwines.com/product/market-tote-washable-paper/',0,'product','',0),(2843,1,'2023-05-02 12:40:54','2023-05-02 19:40:54','','MC Bee Socks','','publish','closed','closed','','mc-bee-socks','','','2023-05-02 12:40:54','2023-05-02 19:40:54','',0,'https://www.meadowcroftwines.com/product/mc-bee-socks/',0,'product','',0),(2844,1,'2023-05-02 12:40:54','2023-05-02 19:40:54','','MC Logo Beanie','','publish','closed','closed','','meadowcroft-logo-beanie','','','2023-05-02 12:40:54','2023-05-02 19:40:54','',0,'https://www.meadowcroftwines.com/product/meadowcroft-logo-beanie/',0,'product','',0),(2845,1,'2023-05-02 12:40:54','2023-05-02 19:40:54','','MC Logo Hat','','publish','closed','closed','','logo-cap','','','2023-05-02 12:40:54','2023-05-02 19:40:54','',0,'https://www.meadowcroftwines.com/product/logo-cap/',0,'product','',0),(2846,1,'2023-05-02 12:40:54','2023-05-02 19:40:54','','Meadowcroft  2 Bottle Gift Box','','publish','closed','closed','','meadowcroft-2-bottle-gift-box','','','2024-11-11 09:59:33','2024-11-11 17:59:33','',0,'https://www.meadowcroftwines.com/product/meadowcroft-2-bottle-gift-box/',0,'product','',0),(2847,1,'2023-05-02 12:40:54','2023-05-02 19:40:54','','Meadowcroft  Sparkling Celebration Bundle','','publish','closed','closed','','meadowcroft-sparkling-celebration-bundle','','','2023-05-02 12:40:54','2023-05-02 19:40:54','',0,'https://www.meadowcroftwines.com/product/meadowcroft-sparkling-celebration-bundle/',0,'product','',0),(2848,1,'2023-05-02 12:40:54','2023-05-02 19:40:54','','Meadowcroft 2 Bottle Pinot Noir Gift Box','','publish','closed','closed','','meadowcroft-2-bottle-pinot-noir-gift-pack','','','2024-11-11 09:59:49','2024-11-11 17:59:49','',0,'https://www.meadowcroftwines.com/product/meadowcroft-2-bottle-pinot-noir-gift-pack/',0,'product','',0),(2849,1,'2023-05-02 12:40:54','2023-05-02 19:40:54','','Meadowcroft 2 Bottle Zinfandel Gift Box','','publish','closed','closed','','meadowcroft-2-bottle-zinfandel-gift-box','','','2024-11-11 09:59:58','2024-11-11 17:59:58','',0,'https://www.meadowcroftwines.com/product/meadowcroft-2-bottle-zinfandel-gift-box/',0,'product','',0),(2850,1,'2023-05-02 12:40:54','2023-05-02 19:40:54','','Meadowcroft Bamboo Utensils','','publish','closed','closed','','meadowcroft-bamboo-utensils','','','2023-05-02 12:40:54','2023-05-02 19:40:54','',0,'https://www.meadowcroftwines.com/product/meadowcroft-bamboo-utensils/',0,'product','',0),(2851,1,'2023-05-02 12:40:55','2023-05-02 19:40:55','','Meadowcroft Belt Bag AKA Fanny Pack','','publish','closed','closed','','meadowcroft-belt-bag-aka-fanny-pack','','','2023-05-02 12:40:55','2023-05-02 19:40:55','',0,'https://www.meadowcroftwines.com/product/meadowcroft-belt-bag-aka-fanny-pack/',0,'product','',0),(2852,1,'2023-05-02 12:40:55','2023-05-02 19:40:55','','Meadowcroft Black and White Cap','','publish','closed','closed','','meadowcroft-black-and-white-cap','','','2023-05-02 12:40:55','2023-05-02 19:40:55','',0,'https://www.meadowcroftwines.com/product/meadowcroft-black-and-white-cap/',0,'product','',0),(2853,1,'2023-05-02 12:40:55','2023-05-02 19:40:55','','Meadowcroft Black Cap','','publish','closed','closed','','meadowcroft-black-cap','','','2023-05-02 12:40:55','2023-05-02 19:40:55','',0,'https://www.meadowcroftwines.com/product/meadowcroft-black-cap/',0,'product','',0),(2854,1,'2023-05-02 12:40:55','2023-05-02 19:40:55','','Meadowcroft Blending Cab Franc','','publish','closed','closed','','meadowcroft-blending-cab-franc','','','2024-04-04 14:48:41','2024-04-04 21:48:41','',0,'https://www.meadowcroftwines.com/product/meadowcroft-blending-cab-franc/',0,'product','',0),(2855,1,'2023-05-02 12:40:55','2023-05-02 19:40:55','','Meadowcroft Blending Cab Sauv','','publish','closed','closed','','meadowcroft-blending-cab-sauv','','','2024-04-04 15:45:51','2024-04-04 22:45:51','',0,'https://www.meadowcroftwines.com/product/meadowcroft-blending-cab-sauv/',0,'product','',0),(2856,1,'2023-05-02 12:40:55','2023-05-02 19:40:55','','Meadowcroft Blending Malbec','','publish','closed','closed','','meadowcroft-blending-malbec','','','2024-04-04 14:45:58','2024-04-04 21:45:58','',0,'https://www.meadowcroftwines.com/product/meadowcroft-blending-malbec/',0,'product','',0),(2857,1,'2023-05-02 12:40:55','2023-05-02 19:40:55','','Meadowcroft Blending Merlot','','publish','closed','closed','','meadowcroft-blending-merlot','','','2024-04-04 14:48:30','2024-04-04 21:48:30','',0,'https://www.meadowcroftwines.com/product/meadowcroft-blending-merlot/',0,'product','',0),(2858,1,'2023-05-02 12:40:55','2023-05-02 19:40:55','','Meadowcroft Blending Petit Verdot','','publish','closed','closed','','meadowcroft-blending-petit-verdot','','','2024-04-04 14:48:56','2024-04-04 21:48:56','',0,'https://www.meadowcroftwines.com/product/meadowcroft-blending-petit-verdot/',0,'product','',0),(2859,1,'2023-05-02 12:40:55','2023-05-02 19:40:55','','Meadowcroft Cabernet Bundle #1','','publish','closed','closed','','cabernet-bundle-1','','','2024-11-11 10:00:17','2024-11-11 18:00:17','',0,'https://www.meadowcroftwines.com/product/cabernet-bundle-1/',0,'product','',0),(2860,1,'2023-05-02 12:40:55','2023-05-02 19:40:55','','Meadowcroft Cabernet Bundle #2','','publish','closed','closed','','cabernet-bundle-2','','','2024-11-11 10:00:30','2024-11-11 18:00:30','',0,'https://www.meadowcroftwines.com/product/cabernet-bundle-2/',0,'product','',0),(2861,1,'2023-05-02 12:40:55','2023-05-02 19:40:55','','Meadowcroft Cabernet Bundle 6 Pack','','publish','closed','closed','','meadowcroft-cabernet-bundle-6-pack','','','2024-11-11 10:01:29','2024-11-11 18:01:29','',0,'https://www.meadowcroftwines.com/product/meadowcroft-cabernet-bundle-6-pack/',0,'product','',0),(2862,1,'2023-05-02 12:40:55','2023-05-02 19:40:55','','Meadowcroft Chocolate Sauce','','publish','closed','closed','','meadowcroft-chocolate-sauce','','','2023-05-02 12:40:55','2023-05-02 19:40:55','',0,'https://www.meadowcroftwines.com/product/meadowcroft-chocolate-sauce/',0,'product','',0),(2863,1,'2023-05-02 12:40:56','2023-05-02 19:40:56','','Meadowcroft Explore Carneros Chardonnay Collection','','publish','closed','closed','','meadowcroft-explore-carneros-chardonnay-collection','','','2023-05-02 12:40:56','2023-05-02 19:40:56','',0,'https://www.meadowcroftwines.com/product/meadowcroft-explore-carneros-chardonnay-collection/',0,'product','',0),(2864,1,'2023-05-02 12:40:56','2023-05-02 19:40:56','','Meadowcroft Explore Carneros Pinot Noir Collection','','publish','closed','closed','','meadowcroft-explore-carneros-pinot-noir-collection','','','2023-05-02 12:40:56','2023-05-02 19:40:56','',0,'https://www.meadowcroftwines.com/product/meadowcroft-explore-carneros-pinot-noir-collection/',0,'product','',0),(2865,1,'2023-05-02 12:40:56','2023-05-02 19:40:56','','Meadowcroft Fleece Blanket','','publish','closed','closed','','meadowcroft-fleece-blanket','','','2023-05-02 12:40:56','2023-05-02 19:40:56','',0,'https://www.meadowcroftwines.com/product/meadowcroft-fleece-blanket/',0,'product','',0),(2866,1,'2023-05-02 12:40:56','2023-05-02 19:40:56','','Meadowcroft Logo Wine Glass','','publish','closed','closed','','meadowcroft-logo-wine-glass','','','2023-05-02 12:40:56','2023-05-02 19:40:56','',0,'https://www.meadowcroftwines.com/product/meadowcroft-logo-wine-glass/',0,'product','',0),(2867,1,'2023-05-02 12:40:56','2023-05-02 19:40:56','','Meadowcroft Mixed 6 Bottle Gift Box','','publish','closed','closed','','6-bottle-gift-box','','','2024-11-11 10:02:05','2024-11-11 18:02:05','',0,'https://www.meadowcroftwines.com/product/6-bottle-gift-box/',0,'product','',0),(2868,1,'2023-05-02 12:40:56','2023-05-02 19:40:56','','Meadowcroft Rare Blends Gift Set','','publish','closed','closed','','meadowcroft-rare-blends-gift-set','','','2024-11-11 10:01:39','2024-11-11 18:01:39','',0,'https://www.meadowcroftwines.com/product/meadowcroft-rare-blends-gift-set/',0,'product','',0),(2869,1,'2023-05-02 12:40:56','2023-05-02 19:40:56','','Meadowcroft Sabre and Sparkling Gift Set','','publish','closed','closed','','meadowcroft-saber-and-sparkling-gift-set','','','2023-10-06 16:07:29','2023-10-06 23:07:29','',0,'https://www.meadowcroftwines.com/product/meadowcroft-saber-and-sparkling-gift-set/',0,'product','',0),(2870,1,'2023-05-02 12:40:56','2023-05-02 19:40:56','','Meadowcroft Sabre','','publish','closed','closed','','meadowcroft-sabre','','','2024-02-19 11:33:02','2024-02-19 19:33:02','',0,'https://www.meadowcroftwines.com/product/meadowcroft-sabre/',0,'product','',0),(2871,1,'2023-05-02 12:40:56','2023-05-02 19:40:56','','Meadowcroft Sparkling Wine Gift Box','','publish','closed','closed','','meadowcroft-sparkling-wine-gift-box','','','2024-11-11 10:02:25','2024-11-11 18:02:25','',0,'https://www.meadowcroftwines.com/product/meadowcroft-sparkling-wine-gift-box/',0,'product','',0),(2872,1,'2023-05-02 12:40:56','2023-05-02 19:40:56','','Meadowcroft Tea Towel','','publish','closed','closed','','meadowcroft-tea-towel','','','2023-05-02 12:40:56','2023-05-02 19:40:56','',0,'https://www.meadowcroftwines.com/product/meadowcroft-tea-towel/',0,'product','',0),(2873,1,'2023-05-02 12:40:57','2023-05-02 19:40:57','','Meadowcroft Wines Wooden Gift Box','','publish','closed','closed','','meadowcroft-wines-wooden-gift-box','','','2023-07-31 11:14:39','2023-07-31 18:14:39','',0,'https://www.meadowcroftwines.com/product/meadowcroft-wines-wooden-gift-box/',0,'product','',0),(2874,1,'2023-05-02 12:40:57','2023-05-02 19:40:57','','Men\'s Golf Shirt OLD','','publish','closed','closed','','mens-golf-shirt-old','','','2023-05-02 12:40:57','2023-05-02 19:40:57','',0,'https://www.meadowcroftwines.com/product/mens-golf-shirt-old/',0,'product','',0),(2875,1,'2023-05-02 12:40:57','2023-05-02 19:40:57','','Men\'s Greetings T Shirt','','publish','closed','closed','','mens-greetings-t-shirt','','','2023-05-02 12:40:57','2023-05-02 19:40:57','',0,'https://www.meadowcroftwines.com/product/mens-greetings-t-shirt/',0,'product','',0),(2876,1,'2023-05-02 12:40:57','2023-05-02 19:40:57','','Men\'s POLO T Shirt','','publish','closed','closed','','mens-polo-t-shirt','','','2024-01-13 18:06:35','2024-01-14 02:06:35','',0,'https://www.meadowcroftwines.com/product/mens-polo-t-shirt/',0,'product','',0),(2877,1,'2023-05-02 12:40:57','2023-05-02 19:40:57','','Men\'s T Shirt','','publish','closed','closed','','mens-t-shirt','','','2024-01-13 18:12:26','2024-01-14 02:12:26','',0,'https://www.meadowcroftwines.com/product/mens-t-shirt/',0,'product','',0),(2878,1,'2023-05-02 12:40:57','2023-05-02 19:40:57','','Men\'s T-Shirt','','publish','closed','closed','','men-s-t-shirt','','','2023-05-02 12:40:57','2023-05-02 19:40:57','',0,'https://www.meadowcroftwines.com/product/men-s-t-shirt/',0,'product','',0),(2879,1,'2023-05-02 12:40:57','2023-05-02 19:40:57','','Miscellaneous','','publish','closed','closed','','miscellaneous','','','2023-05-02 12:40:57','2023-05-02 19:40:57','',0,'https://www.meadowcroftwines.com/product/miscellaneous/',0,'product','',0),(2880,1,'2023-05-02 12:40:57','2023-05-02 19:40:57','','Mixed Blind Tasting Kit','','publish','closed','closed','','mixed-blind-tasting-kit','','','2024-11-11 10:01:52','2024-11-11 18:01:52','',0,'https://www.meadowcroftwines.com/product/mixed-blind-tasting-kit/',0,'product','',0),(2881,1,'2023-05-02 12:40:57','2023-05-02 19:40:57','','Moisture-Resistant Cold Packs','','publish','closed','closed','','moisture-resistant-cold-packs-32-oz','','','2023-05-02 12:40:57','2023-05-02 19:40:57','',0,'https://www.meadowcroftwines.com/product/moisture-resistant-cold-packs-32-oz/',0,'product','',0),(2882,1,'2023-05-02 12:40:57','2023-05-02 19:40:57','','Mulled Wine','','publish','closed','closed','','mulled-wine','','','2023-05-02 12:40:57','2023-05-02 19:40:57','',0,'https://www.meadowcroftwines.com/product/mulled-wine/',0,'product','',0),(2883,1,'2023-05-02 12:40:58','2023-05-02 19:40:58','','MYSTERY CASE','','publish','closed','closed','','mystery-case','','','2023-09-12 12:09:26','2023-09-12 19:09:26','',0,'https://www.meadowcroftwines.com/product/mystery-case/',0,'product','',0),(2884,1,'2023-05-02 12:40:58','2023-05-02 19:40:58','','Napkin Rings','','publish','closed','closed','','napkin-rings','','','2023-05-02 12:40:58','2023-05-02 19:40:58','',0,'https://www.meadowcroftwines.com/product/napkin-rings/',0,'product','',0),(2885,1,'2023-05-02 12:40:58','2023-05-02 19:40:58','','Olive Oil with Black Truffle','','publish','closed','closed','','olive-oil-with-thyme-duplicate','','','2024-01-13 17:49:38','2024-01-14 01:49:38','',0,'https://www.meadowcroftwines.com/product/olive-oil-with-thyme-duplicate/',0,'product','',0),(2886,1,'2023-05-02 12:40:58','2023-05-02 19:40:58','','Olive Oil with Thyme','','publish','closed','closed','','olive-oil-extra-virgin-la-petita-duplicate','','','2024-01-13 18:02:01','2024-01-14 02:02:01','',0,'https://www.meadowcroftwines.com/product/olive-oil-extra-virgin-la-petita-duplicate/',0,'product','',0),(2887,1,'2023-05-02 12:40:58','2023-05-02 19:40:58','','Olive Oil, Extra Virgin \"La Petita\"','','publish','closed','closed','','olive-oil-extra-virgin-la-petita','','','2024-01-13 17:55:14','2024-01-14 01:55:14','',0,'https://www.meadowcroftwines.com/product/olive-oil-extra-virgin-la-petita/',0,'product','',0),(2888,1,'2023-05-02 12:40:58','2023-05-02 19:40:58','','Onsite Blind Tasting Experience','','publish','closed','closed','','onsite-blind-tasting-experience','','','2023-05-02 12:40:58','2023-05-02 19:40:58','',0,'https://www.meadowcroftwines.com/product/onsite-blind-tasting-experience/',0,'product','',0),(2889,1,'2023-05-02 12:40:58','2023-05-02 19:40:58','','Picnic Blanket','','publish','closed','closed','','meadowcroft-blanket','','','2023-10-06 16:37:36','2023-10-06 23:37:36','',0,'https://www.meadowcroftwines.com/product/meadowcroft-blanket/',0,'product','',0),(2890,1,'2023-05-02 12:40:58','2023-05-02 19:40:58','','Picnic Box Lunch','','publish','closed','closed','','picnic-box-lunch','','','2024-01-13 17:46:38','2024-01-14 01:46:38','',0,'https://www.meadowcroftwines.com/product/picnic-box-lunch/',0,'product','',0),(2891,1,'2023-05-02 12:40:58','2023-05-02 19:40:58','','Picnic Gift Set','','publish','closed','closed','','meadowcroft-picnic-gift-set','','','2024-11-11 10:04:29','2024-11-11 18:04:29','',0,'https://www.meadowcroftwines.com/product/meadowcroft-picnic-gift-set/',0,'product','',0),(2892,1,'2023-05-02 12:40:58','2023-05-02 19:40:58','','Plush Dog Toy','','publish','closed','closed','','meadowcroft-plush-dog-toy','','','2023-10-06 11:58:21','2023-10-06 18:58:21','',0,'https://www.meadowcroftwines.com/product/meadowcroft-plush-dog-toy/',0,'product','',0),(2893,1,'2023-05-02 12:40:59','2023-05-02 19:40:59','','Post Modern Wine Book','','publish','closed','closed','','post-modern-wine-book','','','2023-05-02 12:40:59','2023-05-02 19:40:59','',0,'https://www.meadowcroftwines.com/product/post-modern-wine-book/',0,'product','',0),(2894,1,'2023-05-02 12:40:59','2023-05-02 19:40:59','','Private Event Rental','','publish','closed','closed','','private-event-rental','','','2023-05-02 12:40:59','2023-05-02 19:40:59','',0,'https://www.meadowcroftwines.com/product/private-event-rental/',0,'product','',0),(2895,1,'2023-05-02 12:40:59','2023-05-02 19:40:59','','Private Group Event','','publish','closed','closed','','private-group-event','','','2023-10-26 10:26:25','2023-10-26 17:26:25','',0,'https://www.meadowcroftwines.com/product/private-group-event/',0,'product','',0),(2896,1,'2023-05-02 12:40:59','2023-05-02 19:40:59','','Private Group Tasting','','publish','closed','closed','','private-group-tasting','','','2023-05-02 12:40:59','2023-05-02 19:40:59','',0,'https://www.meadowcroftwines.com/product/private-group-tasting/',0,'product','',0),(2897,1,'2023-05-02 12:40:59','2023-05-02 19:40:59','','Pullover - microfleece','','publish','closed','closed','','jacket-soft-shell-duplicate','','','2024-01-13 17:33:32','2024-01-14 01:33:32','',0,'https://www.meadowcroftwines.com/product/jacket-soft-shell-duplicate/',0,'product','',0),(2898,1,'2023-05-02 12:40:59','2023-05-02 19:40:59','','Red Wine Blind Tasting Kit','','publish','closed','closed','','red-wine-blind-tasting-kit','','','2024-11-11 10:03:55','2024-11-11 18:03:55','',0,'https://www.meadowcroftwines.com/product/red-wine-blind-tasting-kit/',0,'product','',0),(2899,1,'2023-05-02 12:40:59','2023-05-02 19:40:59','','Reroute Fee','','publish','closed','closed','','reroute-fee','','','2023-05-02 12:40:59','2023-05-02 19:40:59','',0,'https://www.meadowcroftwines.com/product/reroute-fee/',0,'product','',0),(2900,1,'2023-05-02 12:40:59','2023-05-02 19:40:59','','Reusable Wine Sleeve','','publish','closed','closed','','reusable-wine-sleeve','','','2024-01-13 18:15:12','2024-01-14 02:15:12','',0,'https://www.meadowcroftwines.com/product/reusable-wine-sleeve/',0,'product','',0),(2901,1,'2023-05-02 12:40:59','2023-05-02 19:40:59','','Reusable Wine Totes','','publish','closed','closed','','reusable-wine-totes','','','2023-05-02 12:40:59','2023-05-02 19:40:59','',0,'https://www.meadowcroftwines.com/product/reusable-wine-totes/',0,'product','',0),(2902,1,'2023-05-02 12:40:59','2023-05-02 19:40:59','','Reusable Wine Travel Pak','','publish','closed','closed','','reusable-wine-travel-pak','','','2023-05-02 12:40:59','2023-05-02 19:40:59','',0,'https://www.meadowcroftwines.com/product/reusable-wine-travel-pak/',0,'product','',0),(2903,1,'2023-05-02 12:40:59','2023-05-02 19:40:59','','Rustic Bakery Crackers','','publish','closed','closed','','rustic-bakery-crackers','','','2023-05-02 12:40:59','2023-05-02 19:40:59','',0,'https://www.meadowcroftwines.com/product/rustic-bakery-crackers/',0,'product','',0),(2904,1,'2023-05-02 12:41:00','2023-05-02 19:41:00','','Salami - Red Wine &amp; Garlic','','publish','closed','closed','','salami-red-wine-garlic','','','2024-01-13 18:15:44','2024-01-14 02:15:44','',0,'https://www.meadowcroftwines.com/product/salami-red-wine-garlic/',0,'product','',0),(2905,1,'2023-05-02 12:41:00','2023-05-02 19:41:00','','Salami - White Wine &amp; Fennel','','publish','closed','closed','','salami-white-wine-fennel','','','2024-01-13 18:15:54','2024-01-14 02:15:54','',0,'https://www.meadowcroftwines.com/product/salami-white-wine-fennel/',0,'product','',0),(2906,1,'2023-05-02 12:41:00','2023-05-02 19:41:00','','Save The Bees Tee Shirt, Men -old design','','publish','closed','closed','','save-the-bees-t-shirt-men','','','2024-06-18 15:14:54','2024-06-18 22:14:54','',0,'https://www.meadowcroftwines.com/product/save-the-bees-t-shirt-men/',0,'product','',0),(2907,1,'2023-05-02 12:41:00','2023-05-02 19:41:00','','Save The Bees Tee Shirt, Women - old design','','publish','closed','closed','','save-the-bees-t-shirt-women','','','2024-06-18 15:15:11','2024-06-18 22:15:11','',0,'https://www.meadowcroftwines.com/product/save-the-bees-t-shirt-women/',0,'product','',0),(2908,1,'2023-05-02 12:41:00','2023-05-02 19:41:00','','Seated Tasting','','publish','closed','closed','','25-tastingseated-tasting','','','2024-10-31 13:45:15','2024-10-31 20:45:15','',0,'https://www.meadowcroftwines.com/product/25-tastingseated-tasting/',0,'product','',0),(2909,1,'2023-05-02 12:41:00','2023-05-02 19:41:00','','Seated Tasting','','publish','closed','closed','','a-taste-of-meadowcroft-duplicate','','','2024-12-11 13:18:02','2024-12-11 21:18:02','',0,'https://www.meadowcroftwines.com/product/a-taste-of-meadowcroft-duplicate/',0,'product','',0),(2910,1,'2023-05-02 12:41:00','2023-05-02 19:41:00','','Seated Tasting - Wine Pass','','publish','closed','closed','','seated-tasting-wine-pass','','','2023-05-20 16:35:10','2023-05-20 23:35:10','',0,'https://www.meadowcroftwines.com/product/seated-tasting-wine-pass/',0,'product','',0),(2911,1,'2023-05-02 12:41:00','2023-05-02 19:41:00','','Sensory Garden Tasting','','publish','closed','closed','','sensory-garden-tasting','','','2023-05-02 12:41:00','2023-05-02 19:41:00','',0,'https://www.meadowcroftwines.com/product/sensory-garden-tasting/',0,'product','',0),(2912,1,'2023-05-02 12:41:00','2023-05-02 19:41:00','','Single Bottle Box','','publish','closed','closed','','single-bottle-box','','','2023-05-02 12:41:00','2023-05-02 19:41:00','',0,'https://www.meadowcroftwines.com/product/single-bottle-box/',0,'product','',0),(2913,1,'2023-05-02 12:41:01','2023-05-02 19:41:01','','Single Bottle Box_Black','','publish','closed','closed','','single-bottle-box_black','','','2023-05-02 12:41:01','2023-05-02 19:41:01','',0,'https://www.meadowcroftwines.com/product/single-bottle-box_black/',0,'product','',0),(2914,1,'2023-05-02 12:41:01','2023-05-02 19:41:01','','SINGLE BOTTLE TEXTURED BAG','','publish','closed','closed','','single-bottle-textured-bag','','','2023-05-02 12:41:01','2023-05-02 19:41:01','',0,'https://www.meadowcroftwines.com/product/single-bottle-textured-bag/',0,'product','',0),(2915,1,'2023-05-02 12:41:01','2023-05-02 19:41:01','','Small Bee Candle','','publish','closed','closed','','small-bee-candle','','','2023-05-02 12:41:01','2023-05-02 19:41:01','',0,'https://www.meadowcroftwines.com/product/small-bee-candle/',0,'product','',0),(2916,1,'2023-05-02 12:41:01','2023-05-02 19:41:01','','Social Bee Bracelet - Assorted','','publish','closed','closed','','social-bee-bracelet-assorted','','','2024-01-13 17:36:41','2024-01-14 01:36:41','',0,'https://www.meadowcroftwines.com/product/social-bee-bracelet-assorted/',0,'product','',0),(2917,1,'2023-05-02 12:41:01','2023-05-02 19:41:01','','Social Bee Earrings','','publish','closed','closed','','social-bee-earrings','','','2024-01-13 17:38:08','2024-01-14 01:38:08','',0,'https://www.meadowcroftwines.com/product/social-bee-earrings/',0,'product','',0),(2918,1,'2023-05-02 12:41:02','2023-05-02 19:41:02','','Social Bee Necklace','','publish','closed','closed','','social-bee-necklace','','','2024-01-13 17:38:24','2024-01-14 01:38:24','',0,'https://www.meadowcroftwines.com/product/social-bee-necklace/',0,'product','',0),(2919,1,'2023-05-02 12:41:02','2023-05-02 19:41:02','','Sonoma Spice Queen BBQ Spice','','publish','closed','closed','','sonoma-spice-queen-bbq-spice','','','2023-05-02 12:41:02','2023-05-02 19:41:02','',0,'https://www.meadowcroftwines.com/product/sonoma-spice-queen-bbq-spice/',0,'product','',0),(2920,1,'2023-05-02 12:41:02','2023-05-02 19:41:02','','Sonoma Spice Queen Mulling Spice','','publish','closed','closed','','sonoma-spice-queen-mulling-spice','','','2023-05-02 12:41:02','2023-05-02 19:41:02','',0,'https://www.meadowcroftwines.com/product/sonoma-spice-queen-mulling-spice/',0,'product','',0),(2921,1,'2023-05-02 12:41:02','2023-05-02 19:41:02','','Sparkling Cocktail Kit','','publish','closed','closed','','sparkling-cocktail-kit','','','2023-05-02 12:41:02','2023-05-02 19:41:02','',0,'https://www.meadowcroftwines.com/product/sparkling-cocktail-kit/',0,'product','',0),(2922,1,'2023-05-02 12:41:03','2023-05-02 19:41:03','','Stemless Glass','','publish','closed','closed','','stemless-glass1','','','2023-05-02 12:41:03','2023-05-02 19:41:03','',0,'https://www.meadowcroftwines.com/product/stemless-glass1/',0,'product','',0),(2923,1,'2023-05-02 12:41:03','2023-05-02 19:41:03','','Stemless Logo Glass','','publish','closed','closed','','stemless-glass','','','2023-05-02 12:41:03','2023-05-02 19:41:03','',0,'https://www.meadowcroftwines.com/product/stemless-glass/',0,'product','',0),(2924,1,'2023-05-02 12:41:03','2023-05-02 19:41:03','','Stemmed Logo Glass','','publish','closed','closed','','stemmed-logo-glass','','','2023-05-02 12:41:03','2023-05-02 19:41:03','',0,'https://www.meadowcroftwines.com/product/stemmed-logo-glass/',0,'product','',0),(2925,1,'2023-05-02 12:41:03','2023-05-02 19:41:03','','Styrofoam Shippers','','publish','closed','closed','','12-pack-shipper','','','2023-05-02 12:41:03','2023-05-02 19:41:03','',0,'https://www.meadowcroftwines.com/product/12-pack-shipper/',0,'product','',0),(2926,1,'2023-05-02 12:41:04','2023-05-02 19:41:04','','Taste of Meadowcroft','','publish','closed','closed','','taste-of-meadowcroft','','','2023-05-02 12:41:04','2023-05-02 19:41:04','',0,'https://www.meadowcroftwines.com/product/taste-of-meadowcroft/',0,'product','',0),(2927,1,'2023-05-02 12:41:04','2023-05-02 19:41:04','','Taste of Meadowcroft','','publish','closed','closed','','a-perfect-blend-duplicate','','','2024-04-18 10:57:25','2024-04-18 17:57:25','',0,'https://www.meadowcroftwines.com/product/a-perfect-blend-duplicate/',0,'product','',0),(2929,1,'2023-05-02 12:41:04','2023-05-02 19:41:04','','Tour 2 Half Glasses','','publish','closed','closed','','tour-2-half-glasses','','','2023-05-02 12:41:04','2023-05-02 19:41:04','',0,'https://www.meadowcroftwines.com/product/tour-2-half-glasses/',0,'product','',0),(2930,1,'2023-05-02 12:41:04','2023-05-02 19:41:04','','Truffle Oil sampler set','','publish','closed','closed','','truffle-oil-sampler-set','','','2024-01-13 18:22:55','2024-01-14 02:22:55','',0,'https://www.meadowcroftwines.com/product/truffle-oil-sampler-set/',0,'product','',0),(2931,1,'2023-05-02 12:41:05','2023-05-02 19:41:05','','Two For One Seated Tasting','','publish','closed','closed','','two-for-one-seated-tasting','','','2023-05-02 12:41:05','2023-05-02 19:41:05','',0,'https://www.meadowcroftwines.com/product/two-for-one-seated-tasting/',0,'product','',0),(2932,1,'2023-05-02 12:41:05','2023-05-02 19:41:05','','UPS Shipping','','publish','closed','closed','','ups-shipping','','','2023-05-02 12:41:05','2023-05-02 19:41:05','',0,'https://www.meadowcroftwines.com/product/ups-shipping/',0,'product','',0),(2933,1,'2023-05-02 12:41:05','2023-05-02 19:41:05','','Valentine\'s Day Wine &amp; Chocolate Pairing','','publish','closed','closed','','wine-candy-pairing','','','2023-05-20 16:43:02','2023-05-20 23:43:02','',0,'https://www.meadowcroftwines.com/product/wine-candy-pairing/',0,'product','',0),(2934,1,'2023-05-02 12:41:05','2023-05-02 19:41:05','','Vest - ladies soft shell','','publish','closed','closed','','vest-ladies-soft-shell','','','2023-05-02 12:41:05','2023-05-02 19:41:05','',0,'https://www.meadowcroftwines.com/product/vest-ladies-soft-shell/',0,'product','',0),(2935,1,'2023-05-02 12:41:05','2023-05-02 19:41:05','','Vest- fleece','','publish','closed','closed','','vest-fleece','','','2024-01-13 18:14:57','2024-01-14 02:14:57','',0,'https://www.meadowcroftwines.com/product/vest-fleece/',0,'product','',0),(2936,1,'2023-05-02 12:41:05','2023-05-02 19:41:05','','Vineyard Tour','','publish','closed','closed','','vineyard-tour','','','2024-05-16 10:39:32','2024-05-16 17:39:32','',0,'https://www.meadowcroftwines.com/product/vineyard-tour/',0,'product','',0),(2938,1,'2023-05-02 12:41:05','2023-05-02 19:41:05','','Virtual Custom/ Curated Experience','','publish','closed','closed','','virtual-custom-curated-experience','','','2023-05-02 12:41:05','2023-05-02 19:41:05','',0,'https://www.meadowcroftwines.com/product/virtual-custom-curated-experience/',0,'product','',0),(2939,1,'2023-05-02 12:41:06','2023-05-02 19:41:06','','Visitor- Non Member','','publish','closed','closed','','non-member-visitor','','','2023-05-02 12:41:06','2023-05-02 19:41:06','',0,'https://www.meadowcroftwines.com/product/non-member-visitor/',0,'product','',0),(2940,1,'2023-05-02 12:41:06','2023-05-02 19:41:06','','Visitor- Wine Club Member','','publish','closed','closed','','wine-club-member-visitor','','','2023-05-02 12:41:06','2023-05-02 19:41:06','',0,'https://www.meadowcroftwines.com/product/wine-club-member-visitor/',0,'product','',0),(2941,1,'2023-05-02 12:41:06','2023-05-02 19:41:06','','White Wine Blind Tasting Kit','','publish','closed','closed','','white-wine-blind-tasting-kit','','','2024-11-11 10:03:27','2024-11-11 18:03:27','',0,'https://www.meadowcroftwines.com/product/white-wine-blind-tasting-kit/',0,'product','',0),(2942,1,'2023-05-02 12:41:06','2023-05-02 19:41:06','','Wine & Cheese Pairing Wheel','','publish','closed','closed','','wine-cheese-pairing-wheel','','','2023-05-02 12:41:06','2023-05-02 19:41:06','',0,'https://www.meadowcroftwines.com/product/wine-cheese-pairing-wheel/',0,'product','',0),(2943,1,'2023-05-02 12:41:06','2023-05-02 19:41:06','','Wine & Food Pairing Magnet','','publish','closed','closed','','wine-food-pairing-magnet','','','2023-05-02 12:41:06','2023-05-02 19:41:06','',0,'https://www.meadowcroftwines.com/product/wine-food-pairing-magnet/',0,'product','',0),(2944,1,'2023-05-02 12:41:06','2023-05-02 19:41:06','','Wine Aerator','','publish','closed','closed','','meadowcroft-wine-aerator-dup','','','2023-05-02 12:41:06','2023-05-02 19:41:06','',0,'https://www.meadowcroftwines.com/product/meadowcroft-wine-aerator-dup/',0,'product','',0),(2945,1,'2023-05-02 12:41:06','2023-05-02 19:41:06','','Wine Bags - 4 Bottle - Logo','','publish','closed','closed','','wine-bags-4-bottle-logo','','','2023-05-02 12:41:06','2023-05-02 19:41:06','',0,'https://www.meadowcroftwines.com/product/wine-bags-4-bottle-logo/',0,'product','',0),(2946,1,'2023-05-02 12:41:07','2023-05-02 19:41:07','','Wine By The Glass','','publish','closed','closed','','12-glass','','','2024-05-27 16:47:51','2024-05-27 23:47:51','',0,'https://www.meadowcroftwines.com/product/12-glass/',0,'product','',0),(2947,1,'2023-05-02 12:41:07','2023-05-02 19:41:07','','Wine Charms','','publish','closed','closed','','wine-charms','','','2023-05-02 12:41:07','2023-05-02 19:41:07','',0,'https://www.meadowcroftwines.com/product/wine-charms/',0,'product','',0),(2948,1,'2023-05-02 12:41:07','2023-05-02 19:41:07','','Wine Club Pick Up - No Tasting','','publish','closed','closed','','wine-club-pick-up-no-tasting','','','2023-05-22 10:44:58','2023-05-22 17:44:58','',0,'https://www.meadowcroftwines.com/product/wine-club-pick-up-no-tasting/',0,'product','',0),(2949,1,'2023-05-02 12:41:07','2023-05-02 19:41:07','','Wine Taste Companion','','publish','closed','closed','','wine-taste-companion','','','2024-01-13 17:39:23','2024-01-14 01:39:23','',0,'https://www.meadowcroftwines.com/product/wine-taste-companion/',0,'product','',0),(2950,1,'2023-05-02 12:41:07','2023-05-02 19:41:07','','Wine tote - insulated 12 bottle with wheels','','publish','closed','closed','','wine-tote-insulated-12-bottle-with-wheels','','','2023-05-02 12:41:07','2023-05-02 19:41:07','',0,'https://www.meadowcroftwines.com/product/wine-tote-insulated-12-bottle-with-wheels/',0,'product','',0),(2951,1,'2023-05-02 12:41:07','2023-05-02 19:41:07','','Wine Tote - washable paper','','publish','closed','closed','','wine-tote-washable-paper','','','2023-05-02 12:41:07','2023-05-02 19:41:07','',0,'https://www.meadowcroftwines.com/product/wine-tote-washable-paper/',0,'product','',0),(2952,1,'2023-05-02 12:41:07','2023-05-02 19:41:07','','Wine Travel Silicon Tumbler','','publish','closed','closed','','wine-travel-silicon-cup','','','2024-01-13 18:16:46','2024-01-14 02:16:46','',0,'https://www.meadowcroftwines.com/product/wine-travel-silicon-cup/',0,'product','',0),(2953,1,'2023-05-02 12:41:07','2023-05-02 19:41:07','','Winter whites Chardonnay Bundle','','publish','closed','closed','','winter-whites-chardonnay-bundle','','','2024-04-19 13:35:14','2024-04-19 20:35:14','',0,'https://www.meadowcroftwines.com/product/winter-whites-chardonnay-bundle/',0,'product','',0),(2954,1,'2023-05-02 12:41:07','2023-05-02 19:41:07','','Winter Whites Mixed 6 Pack Bundle','','publish','closed','closed','','winter-whites-mixed-bundle-duplicate','','','2024-04-19 13:35:47','2024-04-19 20:35:47','',0,'https://www.meadowcroftwines.com/product/winter-whites-mixed-bundle-duplicate/',0,'product','',0),(2955,1,'2023-05-02 12:41:07','2023-05-02 19:41:07','','Winter Whites Mixed Bundle','','publish','closed','closed','','winter-whites-mixed-bundle','','','2024-04-19 13:35:54','2024-04-19 20:35:54','',0,'https://www.meadowcroftwines.com/product/winter-whites-mixed-bundle/',0,'product','',0),(2956,1,'2023-05-02 12:41:08','2023-05-02 19:41:08','','Women\'s POLO T Shirt','','publish','closed','closed','','womens-polo-t-shirt','','','2024-01-13 18:08:00','2024-01-14 02:08:00','',0,'https://www.meadowcroftwines.com/product/womens-polo-t-shirt/',0,'product','',0),(2957,1,'2023-05-02 12:41:08','2023-05-02 19:41:08','','Women\'s T Shirt','','publish','closed','closed','','womens-t-shirt','','','2024-01-13 18:10:46','2024-01-14 02:10:46','',0,'https://www.meadowcroftwines.com/product/womens-t-shirt/',0,'product','',0),(2958,1,'2023-05-02 12:41:08','2023-05-02 19:41:08','','Women\'s T-Shirt','','publish','closed','closed','','women-s-t-shirt','','','2023-05-02 12:41:08','2023-05-02 19:41:08','',0,'https://www.meadowcroftwines.com/product/women-s-t-shirt/',0,'product','',0),(2959,1,'2023-05-02 12:41:08','2023-05-02 19:41:08','','Wood Handle Cheese Knife','','publish','closed','closed','','wood-handle-cheese-knife','','','2023-05-02 12:41:08','2023-05-02 19:41:08','',0,'https://www.meadowcroftwines.com/product/wood-handle-cheese-knife/',0,'product','',0),(2960,1,'2023-05-02 12:41:08','2023-05-02 19:41:08','','Z1- 12 Bottle','','publish','closed','closed','','z1-12-bottle','','','2023-05-02 12:41:08','2023-05-02 19:41:08','',0,'https://www.meadowcroftwines.com/product/z1-12-bottle/',0,'product','',0),(2961,1,'2023-05-02 12:41:09','2023-05-02 19:41:09','','Z1-1 Bottle','','publish','closed','closed','','z1-1-bottle','','','2023-05-02 12:41:09','2023-05-02 19:41:09','',0,'https://www.meadowcroftwines.com/product/z1-1-bottle/',0,'product','',0),(2962,1,'2023-05-02 12:41:09','2023-05-02 19:41:09','','Z1-2 Bottle','','publish','closed','closed','','z1-2-bottle','','','2023-05-02 12:41:09','2023-05-02 19:41:09','',0,'https://www.meadowcroftwines.com/product/z1-2-bottle/',0,'product','',0),(2963,1,'2023-05-02 12:41:09','2023-05-02 19:41:09','','Z1-4 Bottle','','publish','closed','closed','','z1-4-bottle','','','2023-05-02 12:41:09','2023-05-02 19:41:09','',0,'https://www.meadowcroftwines.com/product/z1-4-bottle/',0,'product','',0),(2964,1,'2023-05-02 12:41:09','2023-05-02 19:41:09','','Z1-6 Bottle','','publish','closed','closed','','z1-6-bottle','','','2023-05-02 12:41:09','2023-05-02 19:41:09','',0,'https://www.meadowcroftwines.com/product/z1-6-bottle/',0,'product','',0),(2965,1,'2023-05-02 12:41:09','2023-05-02 19:41:09','','Z2-1 Bottle','','publish','closed','closed','','z2-1-bottle','','','2023-05-02 12:41:09','2023-05-02 19:41:09','',0,'https://www.meadowcroftwines.com/product/z2-1-bottle/',0,'product','',0),(2966,1,'2023-05-02 12:41:09','2023-05-02 19:41:09','','Z2-12 Bottle','','publish','closed','closed','','z2-12-bottle','','','2023-05-02 12:41:09','2023-05-02 19:41:09','',0,'https://www.meadowcroftwines.com/product/z2-12-bottle/',0,'product','',0),(2967,1,'2023-05-02 12:41:10','2023-05-02 19:41:10','','Z2-2 Bottle','','publish','closed','closed','','z2-2-bottle','','','2023-05-02 12:41:10','2023-05-02 19:41:10','',0,'https://www.meadowcroftwines.com/product/z2-2-bottle/',0,'product','',0),(2968,1,'2023-05-02 12:41:10','2023-05-02 19:41:10','','Z2-4 Bottle','','publish','closed','closed','','z2-4-bottle','','','2023-05-02 12:41:10','2023-05-02 19:41:10','',0,'https://www.meadowcroftwines.com/product/z2-4-bottle/',0,'product','',0),(2969,1,'2023-05-02 12:41:10','2023-05-02 19:41:10','','Z2-6 Bottle','','publish','closed','closed','','z2-6-bottle','','','2023-05-02 12:41:10','2023-05-02 19:41:10','',0,'https://www.meadowcroftwines.com/product/z2-6-bottle/',0,'product','',0),(2970,1,'2023-05-02 12:41:10','2023-05-02 19:41:10','','Z2-Highlands $5','','publish','closed','closed','','z2-highlands-5','','','2023-05-02 12:41:10','2023-05-02 19:41:10','',0,'https://www.meadowcroftwines.com/product/z2-highlands-5/',0,'product','',0),(2971,1,'2023-05-02 12:41:11','2023-05-02 19:41:11','','Current Releases','','publish','closed','closed','','current-releases','','','2023-05-02 12:41:11','2023-05-02 19:41:11','',0,'https://www.meadowcroftwines.com/collection/current-releases/',0,'collection','',0),(2972,1,'2023-05-02 12:41:11','2023-05-02 19:41:11','','Fees','','publish','closed','closed','','fees','','','2023-05-02 12:41:11','2023-05-02 19:41:11','',0,'https://www.meadowcroftwines.com/collection/fees/',0,'collection','',0),(2973,1,'2023-05-02 12:41:12','2023-05-02 19:41:12','','Gifts &amp; Bundles','','publish','closed','closed','','gifts','','','2024-10-31 14:16:54','2024-10-31 21:16:54','',0,'https://www.meadowcroftwines.com/collection/gifts/',0,'collection','',0),(2974,1,'2023-05-02 12:41:12','2023-05-02 19:41:12','','Red Wines','','publish','closed','closed','','red','','','2023-08-01 13:20:23','2023-08-01 20:20:23','',0,'https://www.meadowcroftwines.com/collection/red/',0,'collection','',0),(2975,1,'2023-05-02 12:41:13','2023-05-02 19:41:13','','Rosé Wines','','publish','closed','closed','','ros-wines','','','2023-05-02 12:41:13','2023-05-02 19:41:13','',0,'https://www.meadowcroftwines.com/collection/ros-wines/',0,'collection','',0),(2976,1,'2023-05-02 12:41:13','2023-05-02 19:41:13','','Sparkling Wines','','publish','closed','closed','','sparkling-champagne','','','2023-05-02 12:57:02','2023-05-02 19:57:02','',0,'https://www.meadowcroftwines.com/collection/sparkling-champagne/',0,'collection','',0),(2977,1,'2023-05-02 12:41:14','2023-05-02 19:41:14','','Tastings & Glasses','','publish','closed','closed','','tastings-glasses','','','2023-05-02 12:41:14','2023-05-02 19:41:14','',0,'https://www.meadowcroftwines.com/collection/tastings-glasses/',0,'collection','',0),(2978,1,'2023-05-02 12:41:14','2023-05-02 19:41:14','','White Wines','','publish','closed','closed','','white','','','2023-05-02 12:41:14','2023-05-02 19:41:14','',0,'https://www.meadowcroftwines.com/collection/white/',0,'collection','',0),(2979,1,'2023-05-02 12:41:15','2023-05-02 19:41:15','','Wine Club Exclusives','','publish','closed','closed','','wine-club-exclusives','','','2023-05-02 12:41:15','2023-05-02 19:41:15','',0,'https://www.meadowcroftwines.com/collection/wine-club-exclusives/',0,'collection','',0),(2980,1,'2023-05-02 12:41:16','2023-05-02 19:41:16','','Wines','','publish','closed','closed','','wines','','','2023-11-16 11:04:01','2023-11-16 19:04:01','',0,'https://www.meadowcroftwines.com/collection/wines/',0,'collection','',0),(2989,2,'2024-10-30 14:16:36','2023-05-09 23:50:12',' ','','','publish','closed','closed','','2989','','','2024-10-30 14:16:36','2024-10-30 21:16:36','',0,'https://www.meadowcroftwines.com/?p=2989',9,'nav_menu_item','',0),(2990,2,'2024-10-30 14:16:36','2023-05-09 23:50:12',' ','','','publish','closed','closed','','2990','','','2024-10-30 14:16:36','2024-10-30 21:16:36','',0,'https://www.meadowcroftwines.com/?p=2990',8,'nav_menu_item','',0),(2991,2,'2024-10-30 14:16:36','2023-05-09 23:50:12',' ','','','publish','closed','closed','','2991','','','2024-10-30 14:16:36','2024-10-30 21:16:36','',0,'https://www.meadowcroftwines.com/?p=2991',11,'nav_menu_item','',0),(2992,2,'2024-10-30 14:16:36','2023-05-09 23:50:12',' ','','','publish','closed','closed','','2992','','','2024-10-30 14:16:36','2024-10-30 21:16:36','',0,'https://www.meadowcroftwines.com/?p=2992',10,'nav_menu_item','',0),(2993,2,'2024-10-30 14:16:36','2023-05-09 23:50:12',' ','','','publish','closed','closed','','2993','','','2024-10-30 14:16:36','2024-10-30 21:16:36','',0,'https://www.meadowcroftwines.com/?p=2993',7,'nav_menu_item','',0),(2995,1,'2023-05-10 14:37:38','2023-05-10 21:37:38','','2023 Spring Club Pick Up Party &amp; Open House','','publish','closed','closed','','2023-spring-club-pick-up-party-open-house','','','2023-06-16 15:25:27','2023-06-16 22:25:27','',0,'https://www.meadowcroftwines.com/product/2023-spring-club-pick-up-party-open-house/',0,'product','',0),(3007,1,'2023-05-12 12:34:10','2023-05-12 19:34:10','','Spring 2023 Four-Bottle Set','','publish','closed','closed','','spring-2023-four-pack-set','','','2024-11-11 10:03:47','2024-11-11 18:03:47','',0,'https://www.meadowcroftwines.com/product/spring-2023-four-pack-set/',0,'product','',0),(3009,5,'2023-05-15 03:25:50','2023-05-15 10:25:50','<span style=\"font-weight: 400;\">If you\'re a wine drinker, traveler, or foodie looking for the perfect winery shenanigans in Sonoma County, then you\'ve come to the right place. This blog post is going to be your guide to our favorite wineries—Iron Horse, Benovia, Ridge, Ram\'s Gate Winery, and Bedrock Wine Co., —with every nugget of information you need from tasting menus and beautiful vineyards to picturesque settings and cozy atmospheres. Keep reading on for an informative tour of these delicious Sonoma gems!</span>\r\n<h2>Introducing Sonoma County\'s top wineries</h2>\r\n<span style=\"font-weight: 400;\">Sonoma County, known as California\'s wine country, is home to hundreds of wineries producing some of the world\'s finest wines. Whether you\'re a seasoned wine connoisseur or a novice just discovering the joys of wine tasting, Sonoma County has something for everyone. Among its many wineries are some true gems that stand out from the rest. These top wineries boast stunning vistas, impeccable hospitality, and, of course, exquisite wines that are sure to tickle your taste buds. Plan a trip to visit some of Sonoma County\'s top wineries and enjoy a day (or several) of sipping, swirling, and savoring the fruits of the region\'s vineyards.</span>\r\n\r\n<h2>Meadowcroft Wines – European Heritage with California Creativity</h2>\r\n<img class=\"alignnone wp-image-3010\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/05/img_11000-7331bc7d5056b3a_7331bda8-5056-b3a8-4912409a269a635c-1-300x225.webp\" alt=\"Meadowcroft-wines-top-sonoma-winery\" width=\"603\" height=\"452\" />\r\n\r\n<span style=\"font-weight: 400;\"><a href=\"https://www.meadowcroftwines.com/\" target=\"_blank\" rel=\"noopener\">Meadowcroft Wines</a> in Sonoma, California is a destination worth visiting for wine lovers seeking a unique tasting experience. Establishing its winery in the popular Cornerstone, Sonoma marketplace, Meadowcroft Wines offers more than just a wine tasting but a glimpse into Sonoma\'s rich history. </span>\r\n\r\n<span style=\"font-weight: 400;\">The winery has a diverse selection of wine varietals, including Zinfandel, Sauvignon Blanc, Chardonnay, and Cabernet Sauvignon, to name a few. Meadowcroft Wines takes pride and careful selection in their grapes, focusing on sustainability and environmental consciousness. All grapes used are certified organic, and the winery implements sustainable winemaking techniques.</span>\r\n\r\n<span style=\"font-weight: 400;\">Apart from the wine, the <a href=\"https://www.meadowcroftwines.com/tasting-room/\" target=\"_blank\" rel=\"noopener\">tasting room\'s</a> welcoming atmosphere and knowledgeable staff add to the winery\'s charm. The staff is highly trained and always eager to discuss winemaking techniques, the history of the winery, and even recommend other Sonoma wineries to visit. Meadowcroft Wines also offers visitors an opportunity to learn about the art of blending wines and to create their own perfect blend which they bottle and take home to enjoy. </span>\r\n\r\n<h2>Exploring Iron Horse – A Winery With a Rich Legacy</h2>\r\n<img class=\"alignnone wp-image-3011\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/05/iron-horse-vineyards-visit-us-300x123.webp\" alt=\"Iron-Horse-vineyard\" width=\"602\" height=\"247\" />\r\n\r\n<span style=\"font-weight: 400;\"><a href=\"https://www.ironhorsevineyards.com/\" target=\"_blank\" rel=\"noopener\">Iron Horse</a> is a cherished Sonoma County favorite winery and it\'s clear why. This family-owned business has been producing world-class sparkling wines since 1978 and they have become renowned for their distinctive style. They make good use of the cool, coastal climate in the region to bring out their characteristic floral fragrances and fruit flavors, while maintaining vibrant acidity balanced by well-integrated spice, earth and mineral notes. Not only are their wines superb – both elegant and age-worthy – but the legacy drives even more appreciation. The family had previously worked to restore a dormant apple farm into a successful orchard before taking on this new venture, creating something truly special in its own right that still delights us today. Iron Horse is an excellent example of how dedication and passion can come together to create something remarkable.</span>\r\n\r\n<h2>The Exciting Flavors of Benovia Winery</h2>\r\n<img class=\"alignnone wp-image-3015\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/05/new-state-of-the-art-300x225.jpg\" alt=\"new-state-of-the-art\" width=\"603\" height=\"452\" />\r\n\r\n<span style=\"font-weight: 400;\">Looking for exciting new flavors to tantalize your taste buds? Look no further than <a href=\"https://www.benoviawinery.com/\">Benovia Winery</a>, where we pride ourselves on crafting unique, delicious wines that are sure to impress even the most discerning palate. From our bold and complex Chardonnays to our silky-smooth Pinot Noirs, each bottle is a testament to our passion for winemaking and dedication to quality. Whether you\'re an experienced oenophile or simply looking for a delicious new bottle to enjoy with friends, we invite you to discover the exciting flavors of Benovia Winery.</span>\r\n\r\n<h2>Ridge Vineyards – A Taste of Excellence</h2>\r\n<img class=\"alignnone wp-image-3012\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/05/ridge-300x169.webp\" alt=\"ridge\" width=\"602\" height=\"339\" />\r\n\r\n<span style=\"font-weight: 400;\"><a href=\"https://www.ridgewine.com/\" target=\"_blank\" rel=\"noopener\">Ridge Vineyards</a> is a winery that truly embodies the taste of excellence. Founded in 1959, Ridge specializes in producing handcrafted wines of exceptional quality. With a focus on sustainable farming practices and non-interventionist winemaking techniques, Ridge is known for bottling wines that beautifully express the terroir of their vineyards. Whether you\'re a wine aficionado or just starting to explore the world of wine, a visit to Ridge Vineyards promises an unforgettable experience. From the breathtaking views of the Sonoma County hillsides to the delicious wines themselves, a trip to this iconic winery is simply a must.</span>\r\n<h2>Ram\'s Gate – Crafting Innovative Wines in Small Batches</h2>\r\n<img class=\"alignnone wp-image-3014\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/05/ramsgate-copy_1-300x200.webp\" alt=\"ramsgate \" width=\"605\" height=\"403\" />\r\n\r\n<span style=\"font-weight: 400;\">Nestled in the heart of Sonoma, <a href=\"https://ramsgatewinery.com/\" target=\"_blank\" rel=\"noopener\">Ram\'s Gate Winery</a> is a hidden gem with a passion for crafting innovative wines in small batches. From Pinot Noir to Chardonnay, each wine is carefully curated to bring out the best in Sonoma\'s terroir. One sip and you\'ll taste the dedication and artistry that goes into every bottle. Ram\'s Gate Winery invites visitors to experience their world-class wines in a stunning setting that inspires relaxation and enjoyment. Whether you\'re a wine aficionado or new to the world of wine, Ram\'s Gate Winery is a must-visit destination in Sonoma.</span>\r\n\r\n<h2>Bedrock Wine Co. – Crafting Natural, Sustainable Wines in Sonoma County</h2>\r\n<img class=\"alignnone wp-image-3013\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/05/bedrock2-300x300.webp\" alt=\"bedrock\" width=\"452\" height=\"452\" />\r\n\r\n<span style=\"font-weight: 400;\">If you\'re looking for high-quality, sustainable wines, then <a href=\"https://bedrockwineco.com/\" target=\"_blank\" rel=\"noopener\">Bedrock Wine Co</a>. should be at the top of your list. Based in Sonoma County, California, Bedrock Wine Co. specializes in crafting natural, sustainable wines that are not only delicious but also great for the environment. Their winemaking process is a combination of old and new techniques, which means that they use traditional methods, such as foot-stomping the grapes, alongside modern technologies, such as stainless steel tanks. The result is a collection of wines that are complex, layered, and full of flavor. Plus, by choosing Bedrock Wine Co., you can feel good about supporting a company that cares about the environment and creating a more sustainable future for all.</span>\r\n\r\n<span style=\"font-weight: 400;\">In conclusion, Sonoma County is an excellent place to explore some of California\'s top wineries. From Iron Horse and Benovia to Ridge Vineyards and Ram\'s Gate, each winery not only provides a unique drinking experience but also a chance to gain insight into the area\'s history and culture. With Bedrock Wine Co., you get sustainable wines crafted with quality ingredients from some of California\'s oldest vineyards. Whether you\'re already a wine connoisseur or someone trying their first sip, a trip to one or all of these wineries can provide an enjoyable experience for everyone. So why wait? Grab your glasses and hit the trails for some of the best vintages from these historic Sonoma County wineries!</span>\r\n\r\n<script type=\"\"application/ld+json\"\">\r\n{\r\n  \"\"@context\"\": \"\"https://schema.org\"\",\r\n  \"\"@type\"\": \"\"BlogPosting\"\",\r\n  \"\"mainEntityOfPage\"\": {\r\n    \"\"@type\"\": \"\"WebPage\"\",\r\n    \"\"@id\"\": \"\"https://www.meadowcroftwines.com/top-wineries-in-sonoma-county-2023/\"\"\r\n  },\r\n  \"\"headline\"\": \"\"TOP 5 WINERIES IN SONOMA COUNTY’S YOU MUST TRY IN 2023\"\",\r\n  \"\"description\"\": \"\"Looking for the ultimate wine tasting experience in Sonoma County? Check out our list of the top 5 wineries you must try in 2023. 🍷🌿\"\",\r\n  \"\"image\"\": \"\"https://www.meadowcroftwines.com/wp-content/uploads/2023/04/3-1024x576.png\"\",  \r\n  \"\"author\"\": {\r\n    \"\"@type\"\": \"\"Organization\"\",\r\n    \"\"name\"\": \"\"Meadowcroft Wines\"\",\r\n    \"\"url\"\": \"\"https://www.meadowcroftwines.com/\"\"\r\n  },  \r\n  \"\"publisher\"\": {\r\n    \"\"@type\"\": \"\"Organization\"\",\r\n    \"\"name\"\": \"\"\"\",\r\n    \"\"logo\"\": {\r\n      \"\"@type\"\": \"\"ImageObject\"\",\r\n      \"\"url\"\": \"\"\"\"\r\n    }\r\n  },\r\n  \"\"datePublished\"\": \"\"2023-01-23\"\"\r\n}\r\n</script>\r\n\r\n<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org/\",\r\n  \"@type\": \"Article\",\r\n  \"mainEntityOfPage\": {\r\n    \"@type\": \"WebPage\",\r\n    \"@id\": \"https://www.meadowcroftwines.com/top-wineries-in-sonoma-county-2023/\"\r\n  },\r\n  \"headline\": \"TOP 5 WINERIES IN SONOMA COUNTY’S YOU MUST TRY IN 2023\",\r\n  \"description\": \"Looking for the ultimate wine tasting experience in Sonoma County? Check out our list of the top 5 wineries you must try in 2023. 🍷🌿\",\r\n  \"image\": {\r\n    \"@type\": \"ImageObject\",\r\n    \"url\": \"https://www.meadowcroftwines.com/wp-content/uploads/2023/05/img_11000-7331bc7d5056b3a_7331bda8-5056-b3a8-4912409a269a635c-1-1024x768.webp\",\r\n    \"width\": \"\",\r\n    \"height\": \"\"\r\n  },\r\n  \"author\": {\r\n    \"@type\": \"Organization\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"publisher\": {\r\n    \"@type\": \"Organization\",\r\n    \"name\": \"Meadowcroft Wines\",\r\n    \"logo\": {\r\n      \"@type\": \"ImageObject\",\r\n      \"url\": \"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-Logo-Horizontal-Bee-Lighter3.png\",\r\n      \"width\": \"\",\r\n      \"height\": \"\"\r\n    }\r\n  },\r\n  \"datePublished\": \"\"\r\n}\r\n</script>','Top 5 wineries in Sonoma County\'s You Must Try in 2023','','publish','closed','open','','top-wineries-in-sonoma-county-2023','','','2024-01-31 03:44:52','2024-01-31 11:44:52','',0,'https://www.meadowcroftwines.com/?p=3009',0,'post','',0),(3010,5,'2023-05-15 00:38:43','2023-05-15 07:38:43','','Meadowcroft-wines-top-sonoma-winery','','inherit','closed','closed','','img_11000-7331bc7d5056b3a_7331bda8-5056-b3a8-4912409a269a635c-1','','','2023-05-15 00:39:05','2023-05-15 07:39:05','',3009,'https://www.meadowcroftwines.com/wp-content/uploads/2023/05/img_11000-7331bc7d5056b3a_7331bda8-5056-b3a8-4912409a269a635c-1.webp',0,'attachment','image/webp',0),(3011,5,'2023-05-15 01:30:51','2023-05-15 08:30:51','','iron-horse-vineyards-visit-us','','inherit','closed','closed','','iron-horse-vineyards-visit-us','','','2023-05-15 01:31:32','2023-05-15 08:31:32','',3009,'https://www.meadowcroftwines.com/wp-content/uploads/2023/05/iron-horse-vineyards-visit-us.webp',0,'attachment','image/webp',0),(3012,5,'2023-05-15 01:32:12','2023-05-15 08:32:12','','ridge','','inherit','closed','closed','','ridge','','','2023-05-15 01:32:23','2023-05-15 08:32:23','',3009,'https://www.meadowcroftwines.com/wp-content/uploads/2023/05/ridge.webp',0,'attachment','image/webp',0),(3013,5,'2023-05-15 01:32:59','2023-05-15 08:32:59','','bedrock2','','inherit','closed','closed','','bedrock2','','','2023-05-15 01:33:23','2023-05-15 08:33:23','',3009,'https://www.meadowcroftwines.com/wp-content/uploads/2023/05/bedrock2.webp',0,'attachment','image/webp',0),(3014,5,'2023-05-15 01:43:34','2023-05-15 08:43:34','','ramsgate','','inherit','closed','closed','','ramsgate-copy_1','','','2023-05-15 01:43:48','2023-05-15 08:43:48','',3009,'https://www.meadowcroftwines.com/wp-content/uploads/2023/05/ramsgate-copy_1.webp',0,'attachment','image/webp',0),(3015,5,'2023-05-15 01:45:20','2023-05-15 08:45:20','','new-state-of-the-art','','inherit','closed','closed','','new-state-of-the-art','','','2023-05-15 01:47:22','2023-05-15 08:47:22','',3009,'https://www.meadowcroftwines.com/wp-content/uploads/2023/05/new-state-of-the-art.jpg',0,'attachment','image/jpeg',0),(3016,5,'2023-05-15 01:47:47','2023-05-15 08:47:47','','MEADOWCROFT WINES','','inherit','closed','closed','','hero-image-meadowcroft-wines-2','','','2023-05-15 01:48:07','2023-05-15 08:48:07','',3009,'https://www.meadowcroftwines.com/wp-content/uploads/2023/05/HERO-IMAGE-MEADOWCROFT-WINES.jpg',0,'attachment','image/jpeg',0),(3017,5,'2023-05-15 01:48:33','2023-05-15 08:48:33','','Best Wineries in Sonoma 2023','','inherit','closed','closed','','featured-image-800px-3','','','2023-05-15 01:49:16','2023-05-15 08:49:16','',3009,'https://www.meadowcroftwines.com/wp-content/uploads/2023/05/Featured-Image-800px.jpg',0,'attachment','image/jpeg',0),(3020,5,'2023-05-15 07:25:40','2023-05-15 14:25:40','','Sparkling Wines FAQ','','publish','closed','closed','','sparkling-wines-faq','','','2023-05-15 07:25:40','2023-05-15 14:25:40','',0,'https://www.meadowcroftwines.com/?post_type=responsive_accordion&#038;p=3020',0,'responsive_accordion','',0),(3022,1,'2023-05-15 12:53:55','2023-05-15 19:53:55','','DOUBLE BOTTLE TEXTURED BAG','','publish','closed','closed','','double-bottle-textured-bag','','','2023-05-15 12:58:37','2023-05-15 19:58:37','',0,'https://www.meadowcroftwines.com/product/single-bottle-textured-bag-duplicate/',0,'product','',0),(3026,2,'2023-05-16 10:37:59','2023-05-16 17:37:59','','Wine Gifts','','publish','closed','closed','','wine-gifts','','','2024-11-13 10:25:53','2024-11-13 18:25:53','',0,'https://www.meadowcroftwines.com/?page_id=3026',0,'page','',0),(3027,2,'2024-10-30 14:16:36','2023-05-16 17:41:06',' ','','','publish','closed','closed','','3027','','','2024-10-30 14:16:36','2024-10-30 21:16:36','',0,'https://www.meadowcroftwines.com/?p=3027',13,'nav_menu_item','',0),(3030,1,'2023-05-19 14:10:36','2023-05-19 21:10:36','','Celebrate Spring 6 pack','','publish','closed','closed','','celebrate-spring-6-pack','','','2024-11-11 09:55:19','2024-11-11 17:55:19','',0,'https://www.meadowcroftwines.com/product/celebrate-spring-6-pack/',0,'product','',0),(3031,1,'2023-05-19 15:46:14','2023-05-19 22:46:14','','Spring Reds 6 Pack','','publish','closed','closed','','spring-reds-6-pack','','','2024-11-11 10:03:39','2024-11-11 18:03:39','',0,'https://www.meadowcroftwines.com/product/spring-reds-6-pack/',0,'product','',0),(3032,5,'2023-05-26 04:06:01','2023-05-26 11:06:01','If you’re a wine lover, then chances are you’ve heard of the five most popular red wine varietals – Cabernet Sauvignon, Merlot, Pinot Noir, Syrah and Zinfandel. With their rich flavors and complexity on the palate, these five varietals have become some of the world’s most widely recognized types of red wine. Whether you want to explore different regions or discover unique pairings for your meals; this guide will provide an overview of all five popular red wines. From aroma to body the taste notes for each variety can help when choosing a great bottle for any occasion. So pull out that corkscrew because it\'s time to learn about the top 5 most widely enjoyed red wine varieties!\r\n<h2>Introducing the 5 Most Popular Red Wine Varietals</h2>\r\n<img class=\"alignnone wp-image-3035\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/05/wine-blending-_1_-300x200.webp\" alt=\"Wine Blending \" width=\"612\" height=\"408\" />\r\n\r\nWhen it comes to red wine, there are so many different varietals to choose from. But which ones are the most popular? Let\'s take a look. First up, there\'s Cabernet Sauvignon. This full-bodied wine is known for its bold flavor and is often described as having notes of blackcurrant and black cherry. Next on the list is Merlot. A bit smoother than Cabernet, Merlot has a hint of sweetness mixed with lush berry flavors. Pinot Noir is another classic red wine varietal that\'s hugely popular. This medium to light-bodied wine has flavors of cherry and raspberry and pairs wonderfully with a variety of foods. Zinfandel is a favorite among those who like a bit more complexity in their wine. It has bold fruit flavors and a hint of spice. Finally, we have Syrah. This wine is full-bodied and jammy, with notes of dark fruit and a spicy finish. No matter which of these popular red wine varietals you choose, you\'re sure to find a delicious glass of wine to enjoy.\r\n<h2>Pinot Noir- A Velvety and Fruity Favorite</h2>\r\nIf you\'re a fan of wine, then chances are you\'ve tried Pinot Noir. This sweet, fruity favorite is a go-to for many wine lovers. There\'s something about its smooth texture, bright flavor profile, and mild tannins that keep us coming back for more. But not all Pinot Noirs are created equal. Some have hints of cherry or raspberry, while others boast a more earthy taste. If you\'re in the mood for something vibrant and juicy, opt for a lighter Pinot Noir. Prefer something more robust? Look for a fuller-bodied option. Whatever your preference, there\'s a <a href=\"https://www.meadowcroftwines.com/product/2021-pinot-noir-anderson-valley/\" target=\"_blank\" rel=\"noopener\">Pinot Noir</a> out there for you!\r\n<h2>Cabernet Sauvignon- Full of Richness and Complexity</h2>\r\n<img class=\"alignnone wp-image-3036\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/05/cabernet-sauvignon-_2_-300x200.webp\" alt=\"Cabernet Sauvignon Meadowcroft Wines\" width=\"605\" height=\"403\" />\r\n\r\nThere\'s something special about a good Cabernet Sauvignon. This wine is full of richness and complexity, making each sip a unique experience. Cabernet can also be more tannic than other wines – contributing to cellar longevity but creates a drying sensation in the mouth. With its deep, bold flavor and hints of black currant, cedar, and tobacco, Cabernet Sauvignon is the perfect wine to pair with a juicy steak or a hearty pasta dish. But it\'s not just about the taste- Cabernet Sauvignon has a storied history and has become one of the most popular wines in the world. Whether you\'re a seasoned wine connoisseur or just starting to explore the world of red wines, a good <a href=\"https://www.meadowcroftwines.com/product/2018-cabernet-sauvignon-spring-mountain-district/\" target=\"_blank\" rel=\"noopener\">Cabernet Sauvignon</a> is most definitely worth giving a try.\r\nMerlot- Smooth, Balanced, and Versatile\r\nAh, Merlot, the wine equivalent of a cozy blanket on a chilly night. This smooth and balanced red is the perfect companion for everything from a fancy steak dinner to a simple pasta dish. And don\'t let its versatility fool you, Merlot is always bringing its A-game. No matter the occasion, this wine is the life of the party, with its rich fruit flavors and velvety finish. So go ahead, pour yourself a glass (or two) of Merlot, sit back, and let the world melt away. Cheers to this classic red and all its delicious glory!\r\n<h2>Zinfandel- Fruity and Bold with a Spicy Finish</h2>\r\n<img class=\"alignnone wp-image-3038\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/05/zinfandel-_1_-300x200.webp\" alt=\"Zinfandel Wines - Meadowcroft Wines\" width=\"603\" height=\"402\" />\r\n\r\nIf you\'re a fan of wines with bold flavors, then Zinfandel is definitely a must-try. This wine is known for its fruity and spicy notes that come together in a beautifully complex taste. With its origins in Croatia, this grape found its perfect home in California, where it has become a staple in the wine scene. Whether you\'re pairing it with a big, juicy steak or sipping it on its own, Zinfandel is sure to please those looking for a bolder wine option. So next time you\'re at your local wine shop, give Zinfandel a chance and see what all the fuss is about!\r\n<h2>Syrah/Shiraz- Dark and Robust with Intense Fruit Flavors</h2>\r\nIf you\'re on the hunt for a wine that\'s bold, rich, and full of personality, look no further than Syrah/Shiraz. This deep <a href=\"https://www.meadowcroftwines.com/red-wines/\" target=\"_blank\" rel=\"noopener\">red wine</a> is known for its dark and robust taste, with intense fruit flavors that can range from black cherry and blackberry to black pepper and licorice. Whether you\'re pairing it with a hearty steak or sipping it on its own, Syrah/Shiraz is a wine that\'s sure to leave a lasting impression. So go ahead, pour yourself a glass and savor every sip of this sensual and sultry wine.\r\n\r\nIn the end, all five of these popular red wine varietals bring something unique and delicious to the table. Whether you prefer a lighter Pinot Noir or a more robust Syrah/Shiraz, there\'s something out there for everyone. So, grab your favorite red wine and give one (or all!) of these varietals a try. Cheers to enjoying the world of great wines!\r\nEnjoy responsibly! From the sweet and fruity Pinot Noir to the intense, complex flavors of Syrah/Shiraz, you can find something that fits any palate. But at the same time, it\'s important to remember that everyone\'s tastes are different. So, experiment until you find what you like! Each varietal has its own charm, so allow yourself to get creative and try as many as possible—you never know which one is hiding something truly special until you give it a proper taste.\r\n\r\nGood luck and happy sipping!\r\n\r\n<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org/\",\r\n  \"@type\": \"Article\",\r\n  \"mainEntityOfPage\": {\r\n    \"@type\": \"WebPage\",\r\n    \"@id\": \"https://www.meadowcroftwines.com/popular-red-wine-varietals\"\r\n  },\r\n  \"headline\": \"DISCOVER THE TOP 5 RED WINE VARIETALS THAT EVERYONE LOVES\",\r\n  \"description\": \"Explore the world of red wine with our list of the 5 most popular red wine varietals. From full-bodied Cabernet Sauvignon to smooth Merlot, learn about these beloved wines and enhance your wine-tasting experience.\",\r\n  \"image\": {\r\n    \"@type\": \"ImageObject\",\r\n    \"url\": \"https://www.meadowcroftwines.com/wp-content/uploads/2023/05/wine-blending-_1_-1024x683.webp\",\r\n    \"width\": \"\",\r\n    \"height\": \"\"\r\n  },\r\n  \"author\": {\r\n    \"@type\": \"Organization\",\r\n    \"name\": \"Meadowcroft Wines\"\r\n  },\r\n  \"publisher\": {\r\n    \"@type\": \"Organization\",\r\n    \"name\": \"Meadowcroft Wines\",\r\n    \"logo\": {\r\n      \"@type\": \"ImageObject\",\r\n      \"url\": \"\",\r\n      \"width\": \"\",\r\n      \"height\": \"\"\r\n    }\r\n  },\r\n  \"datePublished\": \"2023-05-25\",\r\n  \"dateModified\": \"2023-05-25\"\r\n}\r\n</script>','Discover the Top 5 Red Wine Varietals That Everyone Loves','','publish','closed','open','','popular-red-wine-varietals','','','2023-05-26 04:06:01','2023-05-26 11:06:01','',0,'https://www.meadowcroftwines.com/?p=3032',0,'post','',0),(3035,5,'2023-05-23 04:27:05','2023-05-23 11:27:05','','wine-blending-Meadowcroft-Wines','','inherit','closed','closed','','wine-blending-_1_','','','2023-05-23 04:28:33','2023-05-23 11:28:33','',3032,'https://www.meadowcroftwines.com/wp-content/uploads/2023/05/wine-blending-_1_.webp',0,'attachment','image/webp',0),(3036,5,'2023-05-23 04:32:20','2023-05-23 11:32:20','','cabernet-sauvignon-_2_','','inherit','closed','closed','','cabernet-sauvignon-_2_','','','2023-05-23 04:33:15','2023-05-23 11:33:15','',3032,'https://www.meadowcroftwines.com/wp-content/uploads/2023/05/cabernet-sauvignon-_2_.webp',0,'attachment','image/webp',0),(3038,5,'2023-05-23 04:41:32','2023-05-23 11:41:32','','Zinfandel Wines - Meadowcroft Wines','','inherit','closed','closed','','zinfandel-_1_','','','2023-05-23 04:42:11','2023-05-23 11:42:11','',3032,'https://www.meadowcroftwines.com/wp-content/uploads/2023/05/zinfandel-_1_.webp',0,'attachment','image/webp',0),(3039,5,'2023-05-23 04:46:28','2023-05-23 11:46:28','','Most Popular Red Wine Varietals','','inherit','closed','closed','','hero-image-meadowcroft-wines-1','','','2023-05-23 04:46:43','2023-05-23 11:46:43','',3032,'https://www.meadowcroftwines.com/wp-content/uploads/2023/05/HERO-IMAGE-MEADOWCROFT-WINES-1.jpg',0,'attachment','image/jpeg',0),(3040,5,'2023-05-23 04:47:52','2023-05-23 11:47:52','','Most Popular Red Wine Varietals','','inherit','closed','closed','','featured-image-800px-1','','','2023-05-23 04:47:58','2023-05-23 11:47:58','',3032,'https://www.meadowcroftwines.com/wp-content/uploads/2023/05/Featured-Image-800px-1.jpg',0,'attachment','image/jpeg',0),(3041,1,'2023-05-23 11:52:10','2023-05-23 18:52:10','','Greeting Card - all types','','publish','closed','closed','','card-plantable','','','2024-12-18 09:28:35','2024-12-18 17:28:35','',0,'https://www.meadowcroftwines.com/product/card-plantable/',0,'product','',0),(3044,3,'2023-05-23 13:48:21','2023-05-23 20:48:21','','tom-spraying-sparkling','','inherit','closed','closed','','tom-spraying-sparkling','','','2023-08-29 03:38:18','2023-08-29 10:38:18','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/05/tom-spraying-sparkling.jpg',0,'attachment','image/jpeg',0),(3045,1,'2023-05-23 13:53:27','2023-05-23 20:53:27','','Ticket- Spring 2023 Pick Up Party - Club Member Tickets','','publish','closed','closed','','ticket-spring-2023-wine-club-pick-up-party-and-open-house','','','2023-10-04 08:21:16','2023-10-04 15:21:16','',0,'https://www.meadowcroftwines.com/product/ticket-spring-2023-wine-club-pick-up-party-and-open-house/',0,'product','',0),(3047,1,'2023-05-23 16:48:54','2023-05-23 23:48:54','','Ticket- Spring 23 Pick Up Party - Non-Member Ticket','','publish','closed','closed','','ticket-spring-23-pick-up-party-club-member-duplicate','','','2023-10-04 08:21:33','2023-10-04 15:21:33','',0,'https://www.meadowcroftwines.com/product/ticket-spring-23-pick-up-party-club-member-duplicate/',0,'product','',0),(3049,1,'2023-05-24 14:36:04','2023-05-24 21:36:04','','Event Tickets','','publish','closed','closed','','event-tickets-2','','','2024-03-15 15:15:58','2024-03-15 22:15:58','',0,'https://www.meadowcroftwines.com/collection/event-tickets-2/',0,'collection','',0),(3055,1,'2023-05-26 09:14:51','2023-05-26 16:14:51','','Plush Dog Toy- Blanc de Blancs','','publish','closed','closed','','plush-dog-toy-duplicate','','','2023-08-27 16:08:58','2023-08-27 23:08:58','',0,'https://www.meadowcroftwines.com/product/plush-dog-toy-duplicate/',0,'product','',0),(3057,1,'2023-05-26 09:31:40','2023-05-26 16:31:40','','2021 Sangiovese, Speedy Creek Vineyard','','publish','closed','closed','','2021-sangiovese-speedy-creek-vineyard','','','2024-07-29 13:19:46','2024-07-29 20:19:46','',0,'https://www.meadowcroftwines.com/product/2020-sangiovese-speedy-creek-vineyard-duplicate/',0,'product','',0),(3058,1,'2023-05-26 09:59:20','2023-05-26 16:59:20','','2022 Pinot Noir, Napa Carneros','','publish','closed','closed','','2022-pinot-noir-napa-carneros','','','2024-09-24 12:40:29','2024-09-24 19:40:29','',0,'https://www.meadowcroftwines.com/product/2021-pinot-noir-napa-carneros-duplicate/',0,'product','',0),(3059,1,'2023-05-26 10:01:37','2023-05-26 17:01:37','','2022 Pinot Noir, Viña Del Sol Vineyard','','publish','closed','closed','','2022-pinot-noir-vina-del-sol-vineyard-sonoma-coast','','','2023-08-31 13:29:27','2023-08-31 20:29:27','',0,'https://www.meadowcroftwines.com/product/2021-pinot-noir-vina-del-sol-vineyard-sonoma-coast-duplicate/',0,'product','',0),(3060,1,'2023-05-26 10:03:27','2023-05-26 17:03:27','','2021 Cabernet Sauvignon, Napa Valley','','publish','closed','closed','','2021-cabernet-sauvignon-napa-valley','','','2024-06-17 12:41:46','2024-06-17 19:41:46','',0,'https://www.meadowcroftwines.com/product/2020-cabernet-sauvignon-napa-valley-duplicate/',0,'product','',0),(3061,1,'2023-05-26 10:06:07','2023-05-26 17:06:07','','2022 Pinot Noir, Russian River Valley','','publish','closed','closed','','2022-pinot-noir-russian-river-valley','','','2024-04-22 22:54:44','2024-04-23 05:54:44','',0,'https://www.meadowcroftwines.com/product/2021-pinot-noir-russian-river-valley-duplicate/',0,'product','',0),(3062,1,'2023-05-26 10:09:13','2023-05-26 17:09:13','','2022 Chardonnay, Sonoma Coast','','publish','closed','closed','','2022-chardonnay-sonoma-coast-vina-del-sol-vineyard','','','2024-07-08 16:22:05','2024-07-08 23:22:05','',0,'https://www.meadowcroftwines.com/product/2021-chardonnay-vino-del-sol-vineyard-duplicate/',0,'product','',0),(3065,1,'2023-05-29 10:01:25','2023-05-29 17:01:25','','Travel Mug, splash proof','','publish','closed','closed','','travel-mug-splash-proof','','','2024-01-13 17:40:42','2024-01-14 01:40:42','',0,'https://www.meadowcroftwines.com/product/travel-mug-splash-proof/',0,'product','',0),(3066,3,'2023-05-30 10:30:30','2023-05-30 17:30:30','Wine technical notes for Meadowcroft 2022 Anderson Valley Pinot Noir','2022-Pinot-Noir-And-Valley','','inherit','closed','closed','','2022-pinot-noir-and-valley','','','2023-05-30 10:30:59','2023-05-30 17:30:59','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/05/2022-Pinot-Noir-And-Valley.pdf',0,'attachment','application/pdf',0),(3068,1,'2023-06-04 17:24:07','2023-06-05 00:24:07','','Private label wine','','publish','closed','closed','','private-label-wine','','','2023-06-04 17:24:07','2023-06-05 00:24:07','',0,'https://www.meadowcroftwines.com/product/private-label-wine/',0,'product','',0),(3075,5,'2023-06-13 04:23:41','2023-06-13 11:23:41','<span style=\"font-weight: 400;\">Sonoma County in California is known among wine enthusiasts for its picturesque vineyards and delicious wines. Its scenic location, sunny climate, and perfect soil conditions make it an ideal place for wineries. Among the many different wines produced in Sonoma County, Zinfandel is clearly a standout. Zinfandel wines are known to be bold and rich, with a fruity aroma that captures the essence of the region.</span>\r\n\r\n<span style=\"font-weight: 400;\">In this blog post, we will talk about the 7 best wineries in Sonoma County that produce some of the finest Zinfandel wines you can try. We\'ll start with Meadowcroft, a winery that offers a unique experience for wine lovers.</span>\r\n<h2><strong>Meadowcroft Wines</strong></h2>\r\n<img class=\"alignnone wp-image-3076 \" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/06/Meadowcroft-tasting-room-1-300x213.jpg\" alt=\"Meadowcroft Winery\" width=\"600\" height=\"426\" />\r\n\r\n<span style=\"font-weight: 400;\">Meadowcroft Wines is a boutique winery located in Sonoma Valley. It\'s been producing high-quality wines for over 20 years and has a reputation for crafting some of the best Zinfandels in Sonoma County. The winery uses traditional winemaking techniques, including handpicking and sorting the grapes to ensure the highest quality.</span>\r\n\r\n<span style=\"font-weight: 400;\">Tom Meadowcroft, the owner/winemaker at <a href=\"https://www.meadowcroftwines.com/\" target=\"_blank\" rel=\"noopener\">Meadowcroft Wines</a>, is known for his innovative approach to winemaking. He uses a combination of old and modern techniques to create wines that are original and full of flavor. Tom\'s wines marry European heritage with California creativity. The winery offers a variety of Zinfandel wines, ranging from bold and spicy to smooth and fruity, each with a unique flavor profile.</span>\r\n\r\n&nbsp;\r\n<h2><strong>Carlisle Winery</strong></h2>\r\n<img class=\"alignnone  wp-image-3077\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/06/carlisle1-300x170.webp\" alt=\"Carlisle Winery &amp; Vineyards\" width=\"602\" height=\"341\" />\r\n\r\n<span style=\"font-weight: 400;\">Carlisle Winery is another popular winery in Sonoma County that produces some of the best Zinfandel wines in the region. This family-run business sources its grapes from over 20 different vineyards, ensuring that each bottle of wine reflects the unique terroir of Sonoma County.</span>\r\n\r\n<span style=\"font-weight: 400;\">Mike Officer, the winemaker at <a href=\"https://www.carlislewinery.com/\" target=\"_blank\" rel=\"noopener\">Carlisle Winery</a>, is well-known for his passion for Zinfandel. He handcrafts each wine using traditional techniques, including whole-cluster fermentation and aging the wine in oak barrels. The winery offers a variety of Zinfandel wines, including the Dry Creek Valley Zinfandel, which is a staff favorite.</span>\r\n\r\n&nbsp;\r\n<h2><strong>Bedrock Wine Co.</strong></h2>\r\n<img class=\"alignnone  wp-image-3083\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/06/wines-2018-300x203.jpg\" alt=\"Bedrock Wine Co.\" width=\"603\" height=\"408\" />\r\n\r\n<span style=\"font-weight: 400;\">Bedrock Wine Co. is a relatively new winery, but it has quickly become one of the most popular wineries in Sonoma County. The winery produces a range of wines, including some of the best Zinfandels in the region. The winery uses a minimal intervention approach, which means that they let the grapes speak for themselves. The wines are balanced, complex, and have a unique signature that stands out.</span>\r\n\r\n<span style=\"font-weight: 400;\">Morgan Twain-Peterson, the winemaker at <a href=\"https://bedrockwineco.com/\">Bedrock Wine Co</a>., is a young and passionate winemaker who is making a name for himself in the wine industry. He uses traditional winemaking techniques, including handpicking and fermenting the grapes using natural yeast. The winery offers a range of Zinfandel wines, each with a unique flavor profile.</span>\r\n\r\n&nbsp;\r\n<h2><strong>Hartford Court Winery</strong></h2>\r\n<img class=\"alignnone  wp-image-3082\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/06/Hartford-Court-300x200.png\" alt=\"Hartford Court\" width=\"603\" height=\"402\" />\r\n\r\n<span style=\"font-weight: 400;\">Hartford Court Winery is a popular winery in the Russian River Valley that produces some of the best Zinfandels in Sonoma County. The winery sources its grapes from some of the best vineyards in the region, ensuring that each bottle of wine reflects the unique terroir of Sonoma County.</span>\r\n\r\n<span style=\"font-weight: 400;\">Jeff Stewart, the winemaker at <a href=\"https://www.hartfordwines.com/\" target=\"_blank\" rel=\"noopener\">Hartford Court Winery</a>, has been making wine in Sonoma County for over 30 years. He uses traditional winemaking techniques, including handpicking and using natural yeast to ferment the grapes. The winery offers a variety of Zinfandel wines, including the Russian River Valley Zinfandel, which is full-bodied and complex.</span>\r\n\r\n&nbsp;\r\n<h2><strong>Biale Winery</strong></h2>\r\n<img class=\"alignnone  wp-image-3084\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/06/Napa_Mustard-05023-David-Collier-Large-300x200.webp\" alt=\"Biale Vineyards\" width=\"605\" height=\"403\" />\r\n\r\n<span style=\"font-weight: 400;\">Biale Winery is a family-run business that has been producing Zinfandel wines in Sonoma County for over 70 years. The winery is known for its bold and rich Zinfandel wines, which reflect the unique terroir of Sonoma County. The winery uses traditional winemaking techniques, including handpicking and fermenting the grapes using natural yeast.</span>\r\n\r\n<span style=\"font-weight: 400;\">Bob Biale, the winemaker at <a href=\"https://www.biale.com/\" target=\"_blank\" rel=\"noopener\">Biale Winery</a>, is a third-generation winemaker who is passionate about Zinfandel. He believes that a good Zinfandel should be balanced, with a bold flavor and a long finish. The winery offers a variety of Zinfandel wines, including the Black Chicken Zinfandel, which is a staff favorite.</span>\r\n\r\n&nbsp;\r\n<h2><strong>Seghesio Family Vineyards</strong></h2>\r\n<img class=\"alignnone  wp-image-3081\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/06/Seghesio-300x150.jpeg\" alt=\"Seghesio\" width=\"604\" height=\"302\" />\r\n\r\n<span style=\"font-weight: 400;\">Seghesio Family Vineyards is a family-run business that has been producing Zinfandel wines in Sonoma County for over 120 years. The winery is known for its rich and complex Zinfandel wines, which reflect the unique terroir of Sonoma County. The winery uses traditional winemaking techniques, including handpicking and aging the wine in oak barrels.</span>\r\n\r\n<span style=\"font-weight: 400;\">Andy Robinson, the winemaker at <a href=\"https://www.seghesio.com/\" target=\"_blank\" rel=\"noopener\">Seghesio Family Vineyards</a>, is passionate about Zinfandel. He believes that a good Zinfandel should be balanced, with a bold flavor and a long finish. The winery offers a variety of Zinfandel wines, ranging from the spicy Alexander Valley Zinfandel to the smooth Rockpile Ridge Zinfandel.</span>\r\n\r\n<span style=\"font-weight: 400;\">Seghesio Family Vineyards isn\'t the only winery in Sonoma County that produces Zinfandel. There are many other wineries in the region that are worth visiting.</span>\r\n\r\n<span style=\"font-weight: 400;\"><a href=\"https://papapietro-perry.com/\" target=\"_blank\" rel=\"noopener\">Papapietro Perry Winery</a> is a small family-owned winery in the Russian River Valley that produces some of the best Zinfandel wines in the region. The winery is run by brothers, Ben and Pete Papapietro, who have been making wine for over 15 years. The winery uses traditional winemaking techniques, including handpicking and aging the wine in oak barrels. The winery offers a variety of Zinfandel wines, including the Russian River Valley Zinfandel, which is full-bodied and complex.</span>\r\n\r\n<span style=\"font-weight: 400;\">Finally, Meadowcroft, Seghesio Family Vineyards, Ridge and Carlisle, are just a few of the many amazing wineries in Sonoma County that produce some of the best Zinfandel wines in the region. Each winery has its own unique style and flavor profile, and each offers a variety of wines that are sure to please even the most discerning wine connoisseur. Whether you\'re looking for a bold and spicy Zinfandel or a smooth and fruity one, these wineries are sure to have something for you.</span>','7 Best Wineries in Sonoma County for Zinfandel Lovers','','publish','closed','open','','best-wineries-in-sonoma-county-for-zinfandel-lovers','','','2024-02-29 21:44:18','2024-03-01 05:44:18','',0,'https://www.meadowcroftwines.com/?p=3075',0,'post','',0),(3076,5,'2023-06-13 02:19:44','2023-06-13 09:19:44','Meadowcroft tasting room','Meadowcroft tasting room (1)','Meadowcroft tasting room','inherit','closed','closed','','meadowcroft-tasting-room-1','','','2023-06-13 02:20:40','2023-06-13 09:20:40','',3075,'https://www.meadowcroftwines.com/wp-content/uploads/2023/06/Meadowcroft-tasting-room-1.jpg',0,'attachment','image/jpeg',0),(3077,5,'2023-06-13 02:23:58','2023-06-13 09:23:58','','Carlisle Winery & Vineyards','','inherit','closed','closed','','carlisle1','','','2023-06-13 02:24:28','2023-06-13 09:24:28','',3075,'https://www.meadowcroftwines.com/wp-content/uploads/2023/06/carlisle1.webp',0,'attachment','image/webp',0),(3078,5,'2023-06-13 02:25:49','2023-06-13 09:25:49','','Bedroick Wine Co','','inherit','closed','closed','','bedroick-wine-co','','','2023-06-13 02:26:00','2023-06-13 09:26:00','',3075,'https://www.meadowcroftwines.com/wp-content/uploads/2023/06/Bedroick-Wine-Co.jpeg',0,'attachment','image/jpeg',0),(3080,5,'2023-06-13 02:27:32','2023-06-13 09:27:32','','Biale Vineyards','','inherit','closed','closed','','biale-vineyards','','','2023-06-13 02:27:37','2023-06-13 09:27:37','',3075,'https://www.meadowcroftwines.com/wp-content/uploads/2023/06/Biale-Vineyards.jpeg',0,'attachment','image/jpeg',0),(3081,5,'2023-06-13 02:28:01','2023-06-13 09:28:01','','Seghesio','','inherit','closed','closed','','seghesio','','','2023-06-13 02:28:07','2023-06-13 09:28:07','',3075,'https://www.meadowcroftwines.com/wp-content/uploads/2023/06/Seghesio.jpeg',0,'attachment','image/jpeg',0),(3082,5,'2023-06-13 02:30:59','2023-06-13 09:30:59','','Hartford Court','','inherit','closed','closed','','hartford-court','','','2023-06-13 02:31:09','2023-06-13 09:31:09','',3075,'https://www.meadowcroftwines.com/wp-content/uploads/2023/06/Hartford-Court.png',0,'attachment','image/png',0),(3083,5,'2023-06-13 02:32:37','2023-06-13 09:32:37','','Bedrock Wine Co.','','inherit','closed','closed','','wines-2018','','','2023-06-13 02:32:49','2023-06-13 09:32:49','',3075,'https://www.meadowcroftwines.com/wp-content/uploads/2023/06/wines-2018.jpg',0,'attachment','image/jpeg',0),(3084,5,'2023-06-13 02:37:07','2023-06-13 09:37:07','','Biale Vineyards','','inherit','closed','closed','','napa_mustard-05023-david-collier-large','','','2023-06-13 02:37:20','2023-06-13 09:37:20','',3075,'https://www.meadowcroftwines.com/wp-content/uploads/2023/06/Napa_Mustard-05023-David-Collier-Large.webp',0,'attachment','image/webp',0),(3085,5,'2023-06-13 03:26:43','2023-06-13 10:26:43','','HERO IMAGE - MEADOWCROFT WINES (2)','','inherit','closed','closed','','hero-image-meadowcroft-wines-2-2','','','2024-02-29 21:36:52','2024-03-01 05:36:52','',3075,'https://www.meadowcroftwines.com/wp-content/uploads/2023/06/HERO-IMAGE-MEADOWCROFT-WINES-2.jpg',0,'attachment','image/jpeg',0),(3086,5,'2023-06-13 03:49:25','2023-06-13 10:49:25','','Meadowcroft Wines','','inherit','closed','closed','','featured-image-800px-2-2','','','2023-06-13 03:49:46','2023-06-13 10:49:46','',3075,'https://www.meadowcroftwines.com/wp-content/uploads/2023/06/Featured-Image-800px-2.jpg',0,'attachment','image/jpeg',0),(3088,1,'2023-06-15 16:51:50','2023-06-15 23:51:50','','Disposable Wine Glass - Govino','','publish','closed','closed','','disposable-wine-glass-govino','','','2024-05-16 16:22:55','2024-05-16 23:22:55','',0,'https://www.meadowcroftwines.com/product/disposable-wine-glass-govino/',0,'product','',0),(3095,5,'2023-06-30 00:59:56','2023-06-30 07:59:56','<p class=\"text-base\"><span lang=\"EN-US\">Nothing can ruin a fine glass of white wine quicker than improper storage and service. When it comes to enjoying this classic beverage, temperature plays an essential role in releasing the flavors and aromas of your favorite wines. If you’re not sure how to store or serve up your white wines correctly during special occasions, then you’ve come to the right place! In this blog post, we\'ll explore the fundamentals behind why proper storage and serving temperatures are so important when dealing with white wines as well as provide a helpful overview of some of their most common characteristics. We\'ve even included some FAQs about what you should keep in mind when choosing these refreshing beverages! Read on for everything you need to know about properly storing and serving delicious white wines!</span></p>\r\n\r\n<h2>Overview of White Wines and Their Characteristics</h2>\r\n<p class=\"text-base\"><span lang=\"EN-US\">White wine comes in a wide range of styles and flavors, each with its own unique characteristics. But even with all the variations, there are some general guidelines you can follow when it comes to serving white wine. Firstly, make sure it is chilled to the right temperature. A wine that is too warm can taste flat and unappealing, while one that is too cold can mask the subtle flavors. Secondly, consider the wine\'s characteristics when deciding on food pairings. Light-bodied white wines, for example, like Pinot Grigio or Sauvignon Blanc, complement lighter dishes like salads or fish. Richer, full-bodied white wines like Chardonnay, on the other hand, pair well with creamy, buttery sauces and heavier dishes. Use these simple wine serving guidelines to enhance your white wine drinking experience.</span></p>\r\n\r\n<h2>How to Store White Wines Properly?</h2>\r\n<p class=\"text-base\"><span lang=\"EN-US\"> </span><span lang=\"EN-US\">Sipping a glass of chilled white wine on a hot summer day is one of life\'s simple pleasures. But did you know that serving white wine at the proper temperature can make all the difference in the world? If the wine is too warm, it can taste flat and lifeless, while if it\'s too cold, you can miss out on its nuanced flavors. The ideal temperature for serving white wine varies depending on the type of white wine, but a good rule of thumb is to serve the wine slightly cooler than room temperature. For example, a crisp Sauvignon Blanc should be served around 45°F, while oaked Chardonnay is best at 55°F. Following these wine serving guidelines can ensure you get the most out of your white wine and impress your guests with your knowledge of proper wine storage.</span></p>\r\n\r\n<h2>The Best Temperature for Storing White Wines</h2>\r\n<img class=\"alignnone wp-image-3100\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/06/white-wine-on-ice-300x200.webp\" alt=\"Wine bottles are stored in the ice water\" width=\"630\" height=\"420\" />\r\n<p class=\"text-base\"><span lang=\"EN-US\"> </span><span lang=\"EN-US\">When it comes to serving white wine, temperature is key. While we often focus on the taste and pairing of wine, the temperature at which it is stored and served can also have a major impact on the overall experience. According to wine serving guidelines, the best temperature for storing white wines is typically between 45-50 degrees Fahrenheit. At this temperature, the flavors and aromas of the wine are enhanced, providing a crisp, refreshing taste that is perfect for warmer weather or light entrées. So, the next time you pour yourself a glass of white wine, take a moment to consider the temperature and how it may be affecting your enjoyment of this delicious beverage.</span></p>\r\n\r\n<h2>Tips for Long-term Storage of White Wines</h2>\r\n<p class=\"text-base\"><span lang=\"EN-US\"> </span><span lang=\"EN-US\">For those who love white wine, proper storage is key to ensure its taste remains just as fresh as the day it was bottled. Long-term storage is especially important when you have a special bottle that you want to save for a special occasion. To ensure your white wine tastes at its best, keep it in a cool, dark place, away from direct sunlight. The optimal temperature is between 45 and 50 degrees Fahrenheit. Do not store white wine in a refrigerator for more than a few days as it will dry out the cork and cause the wine to age prematurely. Remember to chill the wine to the perfect temperature before serving, about 30 minutes in the refrigerator just before serving. By following these simple wine serving guidelines, you can enjoy your white wine at the perfect temperature any time, whether it\'s for a special occasion or just for a relaxing glass at home.</span></p>\r\n\r\n<h2>Serving White Wines at the Right Temperature</h2>\r\n<p class=\"text-base\"><span lang=\"EN-US\"> <img class=\"alignnone wp-image-3099\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/06/serving-white-wine-300x200.jpeg\" alt=\"Pouring White wine into Glass \" width=\"631\" height=\"421\" /></span></p>\r\n<p class=\"text-base\"><span lang=\"EN-US\">Serving white wine is an art form that requires attention to detail. One particular detail that can make or break your wine experience is the temperature of the wine. Wine temperature is often overlooked, but it\'s crucial to get it right in order to fully experience the flavors and aromas of the wine. According to wine serving guidelines, white wine should be served at a temperature between 45-50 degrees Fahrenheit. This temperature range brings out the best in white wine, allowing its unique flavors to shine. So next time you open a bottle of white wine, make sure to pay attention to the wine temperature and elevate your wine experience to the next level.</span></p>\r\n<p class=\"text-base\"><span lang=\"EN-US\"> </span><span lang=\"EN-US\">Whether you\'re a wine connoisseur or just a casual wine drinker, it\'s always helpful to have some guidelines when it comes to serving white wine. One of the most important things to keep in mind is the temperature. Chilled white wine can be incredibly refreshing on a hot summer day, but serving it too cold can mask some of the wine\'s subtle flavors. On the other hand, serving white wine that\'s too warm can make it taste dull and lifeless. Generally, it\'s best to serve white wine between 44-57°F (7-14°C), but be sure to check the specific wine\'s label for ideal serving temperature. And don\'t forget about the serving guidelines - a standard serving size is 5 ounces, or about one-third of a typical wine glass. Cheers!</span></p>\r\n<h2>Tips for Paring Different Types of Food with White Wine</h2>\r\n<p class=\"text-base\"><span lang=\"EN-US\">Pairing different types of food with white wine can be a daunting task. However, with a little bit of knowledge, you can easily bring out the best flavors in both the food and the wine. One general rule of thumb is to pair light dishes with lighter wines and heavier dishes with full-bodied wines. For example, a light seafood dish might pair well with a crisp and refreshing Sauvignon Blanc, while a creamy pasta dish could be complemented by a buttery Chardonnay. Another key factor to consider is the flavors in the dish. A spicy dish may pair well with a sweeter white wine, while a citrusy dish may be best complemented by a dry white wine. When in doubt, don\'t be afraid to experiment and try different combinations to find the perfect pairing for your taste buds. With a little bit of practice, you\'ll be an expert at pairing white wine with any type of dish.</span></p>\r\n<p class=\"text-base\"><span lang=\"EN-US\">Overall, white wines are beloved around the world for their subtlety and complexity of flavor. When storing and serving them, it\'s important to keep in mind that white wines need temperatures that are usually cooler than red wines – the trick is to store your wine bottle at the right temperature so that your flavor profile can really come out when it comes time to drink. Finishing off a meal knowing you have chosen a wine that works well with the food being served makes for an even better experience. You\'ll also find that white wines age well, which makes them great while entertaining or for extended use over time. Whether you\'re trying something new or bought a staple you\'ve had before, there\'s nothing quite like savoring a glass of carefully selected white wine.</span></p>\r\n\r\n<h2>FAQs></h2>\r\n\r\n<strong>1.What\'s the best temperature for serving white wines at home?</strong> \r\n<p class=\"text-base\"><span lang=\"EN-US\">If you\'re a fan of chilled white wines, it\'s important to serve them at the right temperature for maximum enjoyment. Most experts recommend serving white wines between 45-50 degrees Fahrenheit, which can be achieved by placing the bottle in the refrigerator for a few hours before opening. This cool temperature helps highlight the wine\'s refreshing acidity and fruity flavors, while balancing any sweetness or oakiness. It\'s worth noting that some white wines, such as full-bodied Chardonnay or aged Riesling, may benefit from being served slightly warmer to bring out their complex aromas. No matter your preference, experimenting with different serving temperatures can help you find the perfect balance of flavor and refreshment in your favorite white wines.</span></p>\r\n\r\n<strong>2.How long can I keep an opened bottle of white wine stored in the refrigerator?</strong> \r\n<p class=\"text-base\"><span lang=\"EN-US\">White wine is a delicate and refreshing beverage that many people enjoy, especially when paired with a delicious meal or served as a standalone drink. However, it can be frustrating when you open a bottle of wine and don\'t finish it all in one sitting. So, how long can you keep an opened bottle of white wine stored in the refrigerator? The answer to this question depends on a few factors such as the type of wine, the storage conditions, and how long the wine has been open. Generally speaking, a bottle of white wine that has been opened can be stored in the refrigerator for up to five days. After that, the quality of the wine may begin to deteriorate, and it may start to lose its flavor. But don\'t worry, with proper storage and a little bit of knowledge, you can make sure that your white wine stays fresh and delicious for as long as possible.</span></p>\r\n<p class=\"text-base\"><span lang=\"EN-US\"> </span></p>\r\n\r\n<strong>3.Is it better to store my white wine bottles upright or on their sides?</strong> \r\n<p class=\"text-base\"><span lang=\"EN-US\">When it comes to storing white wine, there is often debate on whether to store the bottles upright or on their sides. While both methods have their benefits, storing white wine bottles on their sides is generally preferred. This is because it allows for the wine to come into contact with the cork, which helps to keep it moist and prevent it from drying out. If the cork were to dry out, air could leak into the bottle and cause the wine to spoil. Storing the bottles on their sides also helps to prevent the wine from being exposed to light, which can cause it to age prematurely. By storing your white wine bottles on their sides, you can ensure that they will age properly and be ready to enjoy when the time is right.</span></p>','How to properly store and serve white wines. temperature, storage','','publish','closed','open','','white-wines-storing-and-serving-temperature','','','2024-01-30 03:56:22','2024-01-30 11:56:22','',0,'https://www.meadowcroftwines.com/?p=3095',0,'post','',0),(3096,5,'2023-06-30 00:33:19','2023-06-30 07:33:19','','webp','','inherit','closed','closed','','webp','','','2023-06-30 00:34:16','2023-06-30 07:34:16','',3095,'https://www.meadowcroftwines.com/wp-content/uploads/2023/06/webp.webp',0,'attachment','image/webp',0),(3097,5,'2023-06-30 00:42:12','2023-06-30 07:42:12','','white-wine-and-food','','inherit','closed','closed','','white-wine-and-food','','','2023-06-30 00:42:12','2023-06-30 07:42:12','',3095,'https://www.meadowcroftwines.com/wp-content/uploads/2023/06/white-wine-and-food.webp',0,'attachment','image/webp',0),(3098,5,'2023-06-30 00:45:01','2023-06-30 07:45:01','','webp (1)','','inherit','closed','closed','','webp-1','','','2023-06-30 00:45:25','2023-06-30 07:45:25','',3095,'https://www.meadowcroftwines.com/wp-content/uploads/2023/06/webp-1.webp',0,'attachment','image/webp',0),(3099,5,'2023-06-30 00:48:28','2023-06-30 07:48:28','','Pouring two glasses of white wine from a bottle','','inherit','closed','closed','','pouring-two-glasses-of-white-wine-from-a-bottle','','','2023-06-30 00:51:21','2023-06-30 07:51:21','',3095,'https://www.meadowcroftwines.com/wp-content/uploads/2023/06/serving-white-wine.jpeg',0,'attachment','image/jpeg',0),(3100,5,'2023-06-30 00:52:22','2023-06-30 07:52:22','','white wine on ice','','inherit','closed','closed','','white-wine-on-ice','','','2023-06-30 00:52:59','2023-06-30 07:52:59','',3095,'https://www.meadowcroftwines.com/wp-content/uploads/2023/06/white-wine-on-ice.webp',0,'attachment','image/webp',0),(3103,5,'2023-07-10 06:14:33','2023-07-10 13:14:33','<h2>Introduction</h2>\r\nChoosing the right white wine for different occasions is an important aspect of wine drinking. It\'s essential to understand the nuances of different wine regions and grape varieties to make informed choices. Sonoma County in California is well-known for producing exceptional white wines, and Meadowcroft Wines is one of the standout wineries in the region. In this blog post, we\'ll explore the significance of choosing the right white wine and dive deeper into Sonoma County\'s white wine varietals.\r\n\r\n<h2>Understanding Sonoma County\'s White Wines</h2>\r\nSonoma County\'s reputation for producing high-quality white wines is well-deserved. The region has a diverse set of microclimates, including coastal and inland areas, providing an ideal environment for growing different grape varieties. Some of the common white grapes grown in Sonoma County include Chardonnay, Sauvignon Blanc, Pinot Gris, and Gewürztraminer, among others.\r\n\r\nEach grape variety has a unique flavor profile, influenced by the climate, soil composition, and the winemaking process. Chardonnay grown in Sonoma County is known for its rich and creamy texture, while Sauvignon Blanc boasts crisp acidity and bright citrus flavors. Gewürztraminer has a signature low acidity, making it a suitable wine for spicier foods. Given the range of grape varieties grown in Sonoma County, it\'s essential to explore the region\'s white wines to appreciate their distinctive characteristics.\r\n\r\n<h2>Identifying Your Preferences</h2>\r\nBefore exploring Sonoma County\'s white wine varietals, it\'s essential to identify their personal preferences. Paying attention to factors such as sweetness, acidity, body, and flavor profiles is the key to understanding one\'s wine preferences. For example, if someone likes wines with high acidity, then a Sauvignon Blanc or Pinot Grigio might be their preferred choice. In contrast, someone who prefers sweeter wines might enjoy Riesling or Gewürztraminer.\r\n\r\nAdditionally, white wine styles also impact preferences. Sonoma County produces a range of white wine styles, including sparkling wines, oaked and unoaked Chardonnay, and crisp Sauvignon Blanc. Each of these styles appeals to different taste preferences and occasions. For example, sparkling wine is ideal for celebrations, while an oaked Chardonnay pairs nicely with rich and creamy dishes.\r\n\r\n<h2>Exploring Grape Varieties</h2>\r\n<img class=\"alignnone wp-image-3106\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/07/white-wine-general-300x200.jpg\" alt=\"Image of white wine in a glass\" width=\"600\" height=\"400\" />\r\n\r\nSonoma County is home to several grape varieties that produce excellent white wines. Here are some of the most popular grape varieties and their flavor profiles:\r\n<ul>\r\n 	<li>Chardonnay: Chardonnay is the most widely planted grape variety in Sonoma County. The wines have a rich and creamy texture with flavors of vanilla, butter, and tropical fruit.</li>\r\n 	<li>Sauvignon Blanc: Sauvignon Blanc from Sonoma County has bright acidity and distinct flavors of citrus, green apple, and passionfruit.</li>\r\n 	<li>Pinot Gris: Pinot Gris is known for its refreshing acidity, mineral notes, and flavors of pear, apple, and peach.</li>\r\n 	<li>Gewürztraminer: Gewürztraminer has a pronounced bouquet of flowers and flavors of lychee, rose petals, and spice.</li>\r\n</ul>\r\nEach grape variety has unique food pairing suggestions. For example, Chardonnay pairs nicely with hearty dishes such as roast chicken and grilled seafood, while Sauvignon Blanc is an excellent choice for oysters and grilled vegetables.\r\n\r\n<h2>Navigating Sonoma County\'s Wine Labels</h2>\r\nReading California white wine labels can be challenging for beginners. Fortunately, understanding the key elements of wine labels is essential for choosing the right wine. A California white wine label typically includes the following information:\r\n<ul>\r\n 	<li>Producer and brand name</li>\r\n 	<li>Grape variety or blend</li>\r\n 	<li>Vintage (year of harvest)</li>\r\n 	<li>Appellation (the origin of the grapes)</li>\r\n</ul>\r\nReading the label gives one an idea about the wine\'s origin, quality, and style. For example, if the label mentions an AVA (American Viticultural Area), it indicates that the grapes grew in a specific region within Sonoma County. Additionally, the vintage year indicates the year when the grapes were harvested, giving an idea of the wine\'s age.\r\n\r\nAs a Sonoma County winery, we at Meadowcroft Wines are proud to share our passion for crafting high-quality white wines with visitors from all over the world. In this blog post, we will provide insight into why wine tastings and tours are essential when visiting Sonoma County, the benefits of guided tastings, and an overview of Meadowcroft wines. Additionally, we will explore budget considerations when selecting white wines and suggest affordable yet delicious options for wine lovers on a budget.\r\n\r\n<h2>Wine Tasting and Wine Tours</h2>\r\n<ul>\r\n<li><strong>Visiting Sonoma County Wineries</strong></li>\r\nSonoma County is home to over 425 wineries, each with its unique charm, history, and style. Visitors can experience everything from grand chateaus to boutique wineries nestled in the rolling hills of Sonoma. Our winery, Meadowcroft Wines, offers a unique experience with jaw-dropping views, a laid-back atmosphere, and a wide range of award-winning wines to choose from.\r\n<li><strong>Benefits of Wine Tours and Guided Tastings</strong></li>\r\nWine tours and tastings are the best way to experience Sonoma County wineries as it gives you the opportunity to learn about the winemaking process, the history and story behind the vineyards, and tasting the wines. Guided tastings offer a chance for visitors to ask questions and receive a thorough explanation of the wines they are consuming. Additionally, guided tours may take you through exclusive areas not always available to the general public.\r\n<li><strong>Wineries in Sonoma County Known for White Wines</strong></li>\r\nMeadowcroft Wines is a boutique winery celebrated for our world-class white wines. Our vineyard sites produce intense fruit flavors, floral notes, and bright acidity, resulting in refreshing white wines that pair perfectly with a hot summer day. Other notable white wine wineries in Sonoma County include Dry Creek Vineyard, Iron Horse Vineyards, and Korbel Winery.\r\n</ul>\r\n\r\n<img class=\" wp-image-3107 alignnone\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/07/white-wine-general2-300x200.jpg\" alt=\"Pouring a white wine into the glass\" width=\"600\" height=\"400\" />\r\n\r\n<h2>Budget Considerations</h2>\r\n<ul>\r\n<li><strong>Budget Considerations When Choosing White Wines</strong></li>\r\nMany think that white wines are less expensive than red wines, but that is not always the case. When choosing white wines, the price can vary significantly based on the winery, location, and quality. Fortunately, Sonoma County has a wide range of affordable white wine options available for any budget.\r\n<li><strong>Recommend Affordable White Wines</strong></li>\r\nOur vineyard produces several mouth-watering, affordable white wines that are ideal for any occasion. Our Sauvignon Blanc is a fan favorite, featuring tropical fruit flavors and citrus notes. The Meadowcroft Chardonnay is also very reasonably priced, showcasing flavors of apple, pear, vanilla, and toasted oak.\r\n<li><strong>How to Find Wine Deals</strong></li>\r\nLooking for wine deals in Sonoma County? Many wineries offer promotions throughout the year, including discounts, free tastings, and case specials. You can also find deals through online retailers, wine clubs, and shopping during off-peak seasons.\r\n</ul>\r\n\r\n<h2>Conclusion</h2>\r\nSonoma County is a vibrant wine region known for producing exceptional white wines. Understanding the grape varieties, styles, and flavor profiles is essential for making informed choices and identifying personal preferences. Meadowcroft Wines is a premium winery in Sonoma County known for its high-quality white wines. Whether someone is a wine connoisseur, a beginner, or an occasional drinker, sampling Sonoma County\'s white wines is an extraordinary experience. There is a wine for everyone, for every occasion, and for every palate.\r\n\r\n<h2>Frequently Asked Questions</h2>\r\n<strong>1.How do I choose the best white wine?</strong>\r\n\r\nTaste preference can vary greatly among individuals, but looking at the tasting notes and ratings from other wine enthusiasts can be a helpful starting point.\r\n\r\n<strong>2.What\'s a good white wine for beginners?</strong>\r\n\r\nSauvignon Blanc is an excellent starting point for white wine beginners as it has a crisp and refreshing flavor and is widely enjoyed.\r\n\r\n<strong>3.What are the 5 characteristics of white wine?</strong>\r\n\r\nThe five characteristics of white wines are acidity, body, tannins, sweetness, and alcohol content. Each of these characteristics can vary depending on the wine style, region, and vineyard location.\r\n\r\n<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org\",\r\n  \"@type\": \"FAQPage\",\r\n  \"mainEntity\": [{\r\n    \"@type\": \"Question\",\r\n    \"name\": \"How do I choose the best white wine?\",\r\n    \"acceptedAnswer\": {\r\n      \"@type\": \"Answer\",\r\n      \"text\": \"Taste preference can vary greatly among individuals, but looking at the tasting notes and ratings from other wine enthusiasts can be a helpful starting point.\"\r\n    }\r\n  },{\r\n    \"@type\": \"Question\",\r\n    \"name\": \"What\'s a good white wine for beginners?\",\r\n    \"acceptedAnswer\": {\r\n      \"@type\": \"Answer\",\r\n      \"text\": \"Sauvignon Blanc is an excellent starting point for white wine beginners as it has a crisp and refreshing flavor and is widely enjoyed.\"\r\n    }\r\n  },{\r\n    \"@type\": \"Question\",\r\n    \"name\": \"What are the 5 characteristics of white wine?\",\r\n    \"acceptedAnswer\": {\r\n      \"@type\": \"Answer\",\r\n      \"text\": \"The five characteristics of white wines are acidity, body, tannins, sweetness, and alcohol content. Each of these characteristics can vary depending on the wine style, region, and vineyard location.\"\r\n    }\r\n  }]\r\n}\r\n</script>\r\n<script type=\"application/ld+json\">\r\n{\r\n  \"@context\": \"https://schema.org\",\r\n  \"@type\": \"BlogPosting\",\r\n  \"mainEntityOfPage\": {\r\n    \"@type\": \"WebPage\",\r\n    \"@id\": \"https://www.meadowcroftwines.com/?p=3103&preview=true\"\r\n  },\r\n  \"headline\": \"How to Choose a White Wine\",\r\n  \"image\": \"https://www.meadowcroftwines.com/wp-content/uploads/2023/07/choosing-white-wine.jpg\",  \r\n  \"author\": {\r\n    \"@type\": \"Person\",\r\n    \"name\": \"David Messerli\"\r\n  },  \r\n  \"publisher\": {\r\n    \"@type\": \"Organization\",\r\n    \"name\": \"\",\r\n    \"logo\": {\r\n      \"@type\": \"ImageObject\",\r\n      \"url\": \"\"\r\n    }\r\n  },\r\n  \"datePublished\": \"2023-07-10\",\r\n  \"dateModified\": \"2023-07-10\"\r\n}\r\n</script>','How to Choose a White Wine','','publish','closed','open','','how-to-choose-a-white-wine','','','2024-01-30 03:54:37','2024-01-30 11:54:37','',0,'https://www.meadowcroftwines.com/?p=3103',0,'post','',0),(3104,5,'2023-07-10 06:00:31','2023-07-10 13:00:31','','choosing-white-wine','','inherit','closed','closed','','choosing-white-wine','','','2023-07-10 06:00:53','2023-07-10 13:00:53','',3103,'https://www.meadowcroftwines.com/wp-content/uploads/2023/07/choosing-white-wine.jpg',0,'attachment','image/jpeg',0),(3106,5,'2023-07-10 06:10:40','2023-07-10 13:10:40','','white-wine-general','','inherit','closed','closed','','white-wine-general','','','2023-07-10 06:11:17','2023-07-10 13:11:17','',3103,'https://www.meadowcroftwines.com/wp-content/uploads/2023/07/white-wine-general.jpg',0,'attachment','image/jpeg',0),(3107,5,'2023-07-10 06:11:38','2023-07-10 13:11:38','','white-wine-general2','','inherit','closed','closed','','white-wine-general2','','','2023-07-10 06:11:54','2023-07-10 13:11:54','',3103,'https://www.meadowcroftwines.com/wp-content/uploads/2023/07/white-wine-general2.jpg',0,'attachment','image/jpeg',0),(3110,1,'2023-07-25 10:30:55','2023-07-25 17:30:55','','2022 Pinot Noir Sonoma Coast','','publish','closed','closed','','meadowcroft-2022-pinot-noir-sonoma-coast','','','2024-04-22 22:53:10','2024-04-23 05:53:10','',0,'https://www.meadowcroftwines.com/product/meadowcroft-2022-pinot-noir-sonoma-coast/',0,'product','',0),(3112,1,'2023-07-28 12:12:41','2023-07-28 19:12:41','','Ticket- Summer BBQ Party - Club Member Tickets','','publish','closed','closed','','ticket-spring-2023-pick-up-party-club-member-tickets-duplicate','','','2023-10-04 08:21:46','2023-10-04 15:21:46','',0,'https://www.meadowcroftwines.com/product/ticket-spring-2023-pick-up-party-club-member-tickets-duplicate/',0,'product','',0),(3113,1,'2023-07-28 12:16:39','2023-07-28 19:16:39','','Ticket- Summer BBQ Party- Non-Member','','publish','closed','closed','','ticket-spring-23-pick-up-party-non-member-ticket-duplicate','','','2023-10-04 08:22:10','2023-10-04 15:22:10','',0,'https://www.meadowcroftwines.com/product/ticket-spring-23-pick-up-party-non-member-ticket-duplicate/',0,'product','',0),(3116,3,'2023-07-28 14:02:12','2023-07-28 21:02:12','','MCWines-BBQ-event2','','inherit','closed','closed','','mcwines-bbq-event2','','','2023-07-28 14:02:12','2023-07-28 21:02:12','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/07/MCWines-BBQ-event2.jpg',0,'attachment','image/jpeg',0),(3118,3,'2023-08-02 13:53:46','2023-08-02 20:53:46','Meadowcroft wine blending experience','Social Clip 2 - Blending (Horizontal)','','inherit','closed','closed','','social-clip-2-blending-horizontal','','','2023-08-02 13:59:27','2023-08-02 20:59:27','',445,'https://www.meadowcroftwines.com/wp-content/uploads/2023/08/Social-Clip-2-Blending-Horizontal.mp4',0,'attachment','video/mp4',0),(3121,1,'2023-08-03 14:10:33','2023-08-03 21:10:33','','Mug, stoneware coffee','','publish','closed','closed','','mug-stoneware-coffee','','','2024-01-13 17:36:25','2024-01-14 01:36:25','',0,'https://www.meadowcroftwines.com/product/mug-stoneware-coffee/',0,'product','',0),(3129,3,'2023-08-08 14:12:22','2023-08-08 21:12:22','','BBQevent-socialpost','','inherit','closed','closed','','bbqevent-socialpost','','','2023-08-22 20:50:23','2023-08-23 03:50:23','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/07/BBQevent-socialpost.png',0,'attachment','image/png',0),(3130,3,'2023-08-10 12:46:12','2023-08-10 19:46:12','Wine notes for 2022 Meadowcroft Roussanne','2022-Roussanne-FINAL (1)','','inherit','closed','closed','','2022-roussanne-final-1','','','2023-08-10 12:46:35','2023-08-10 19:46:35','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/08/2022-Roussanne-FINAL-1.pdf',0,'attachment','application/pdf',0),(3131,3,'2023-08-10 12:48:45','2023-08-10 19:48:45','Wine notes for Meadowcroft 2022 Viognier','2022-Viognier-Final','','inherit','closed','closed','','2022-viognier-final','','','2023-08-10 12:49:05','2023-08-10 19:49:05','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/08/2022-Viognier-Final.pdf',0,'attachment','application/pdf',0),(3132,3,'2023-08-10 12:52:15','2023-08-10 19:52:15','Wine notes for Meadowcroft 2022 Napa Carneros Chardonnay','2022 Napa Carneros Chardonnay-final','','inherit','closed','closed','','2022-napa-carneros-chardonnay-final','','','2023-08-10 12:52:40','2023-08-10 19:52:40','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/08/2022-Napa-Carneros-Chardonnay-final.pdf',0,'attachment','application/pdf',0),(3133,3,'2023-08-10 12:54:26','2023-08-10 19:54:26','Wine Notes for Meadowcroft 2022 Rose of Pinot Noir','2022-RoseofPinotNoir-tech-sheet-Final','','inherit','closed','closed','','2022-roseofpinotnoir-tech-sheet-final','','','2023-08-10 12:54:54','2023-08-10 19:54:54','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/08/2022-RoseofPinotNoir-tech-sheet-Final.pdf',0,'attachment','application/pdf',0),(3134,3,'2023-08-10 12:57:27','2023-08-10 19:57:27','Wine notes for Meadowcroft 2020 Malbec','Meadowcroft_2020CruDeLaRucheMalbec_TECHSheet','','inherit','closed','closed','','meadowcroft_2020crudelaruchemalbec_techsheet-2','','','2023-08-10 12:57:49','2023-08-10 19:57:49','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/08/Meadowcroft_2020CruDeLaRucheMalbec_TECHSheet.pdf',0,'attachment','application/pdf',0),(3135,3,'2023-08-10 12:59:56','2023-08-10 19:59:56','Wine notes for Meadowcroft 2020 RIver Trace GSM','Meadowcroft_2020_River-Trace_CA_GSM_TECHSheet (3)','','inherit','closed','closed','','meadowcroft_2020_river-trace_ca_gsm_techsheet-3','','','2023-08-10 13:00:24','2023-08-10 20:00:24','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/08/Meadowcroft_2020_River-Trace_CA_GSM_TECHSheet-3.pdf',0,'attachment','application/pdf',0),(3136,3,'2023-08-10 13:03:17','2023-08-10 20:03:17','Wine notes for Meadowcroft 2019 Wyldvin Zinfandel','TechSheet-2019WyldvinZin-Final (1)','','inherit','closed','closed','','techsheet-2019wyldvinzin-final-1','','','2023-08-10 13:03:44','2023-08-10 20:03:44','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/08/TechSheet-2019WyldvinZin-Final-1.pdf',0,'attachment','application/pdf',0),(3137,3,'2023-08-10 13:04:58','2023-08-10 20:04:58','Wine notes for Meadowcroft 2021 Meadowcroft 2021 Nelson Ranch Cabernet Sauvignon','TechSheet-2021 Nelson-Cab-Final (1)','','inherit','closed','closed','','techsheet-2021-nelson-cab-final-1','','','2023-08-10 13:05:37','2023-08-10 20:05:37','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/08/TechSheet-2021-Nelson-Cab-Final-1.pdf',0,'attachment','application/pdf',0),(3138,3,'2023-08-10 13:07:37','2023-08-10 20:07:37','Wine notes for Meadowcroft 2020 Rutherford Cabernet Sauvignon','TechSheet-2020-Cab-Rutherford-Final (1)','','inherit','closed','closed','','techsheet-2020-cab-rutherford-final-1','','','2024-05-22 11:50:29','2024-05-22 18:50:29','',3784,'https://www.meadowcroftwines.com/wp-content/uploads/2023/08/TechSheet-2020-Cab-Rutherford-Final-1.pdf',0,'attachment','application/pdf',0),(3139,3,'2023-08-10 13:09:42','2023-08-10 20:09:42','Wine notes for Meadowcroft 2020 Mt. Veeder Cabernet Sauvignon','TechSheet-2020-Cab-MtVeeder-Final (1)','','inherit','closed','closed','','techsheet-2020-cab-mtveeder-final-1','','','2023-08-10 13:10:12','2023-08-10 20:10:12','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/08/TechSheet-2020-Cab-MtVeeder-Final-1.pdf',0,'attachment','application/pdf',0),(3140,3,'2023-08-10 13:13:45','2023-08-10 20:13:45','Wine notes for Meadowcroft Anniversary Cuvee','Meadowcroft_NVNapaValleyAnniversayCuvee_TECHSheet_BTLD1.2021','','inherit','closed','closed','','meadowcroft_nvnapavalleyanniversaycuvee_techsheet_btld1-2021','','','2023-08-10 13:14:13','2023-08-10 20:14:13','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/08/Meadowcroft_NVNapaValleyAnniversayCuvee_TECHSheet_BTLD1.2021.pdf',0,'attachment','application/pdf',0),(3141,3,'2023-08-10 13:16:26','2023-08-10 20:16:26','Wine notes for Meadowcroft 2019 Cabernet Franc','TechSheet-2019CabFranc-Final (1)','','inherit','closed','closed','','techsheet-2019cabfranc-final-1','','','2023-08-10 13:16:55','2023-08-10 20:16:55','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/08/TechSheet-2019CabFranc-Final-1.pdf',0,'attachment','application/pdf',0),(3142,3,'2023-08-10 13:18:09','2023-08-10 20:18:09','Wine notes for Meadowcroft NV Blanc de Blanc','NV Blanc de Blanc Tech Sheet- Final (1)','','inherit','closed','closed','','nv-blanc-de-blanc-tech-sheet-final-1','','','2023-08-10 13:18:32','2023-08-10 20:18:32','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/08/NV-Blanc-de-Blanc-Tech-Sheet-Final-1.pdf',0,'attachment','application/pdf',0),(3145,1,'2023-08-25 11:49:38','2023-08-25 18:49:38','','Books','','publish','closed','closed','','books','','','2023-08-25 11:58:13','2023-08-25 18:58:13','',0,'https://www.meadowcroftwines.com/product/books/',0,'product','',0),(3149,5,'2023-08-29 01:02:13','2023-08-29 08:02:13','','Meadowcroft-wine-blending (1)','','inherit','closed','closed','','meadowcroft-wine-blending-1','','','2023-08-29 01:02:22','2023-08-29 08:02:22','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/08/Meadowcroft-wine-blending-1.jpg',0,'attachment','image/jpeg',0),(3150,5,'2023-08-29 01:17:08','2023-08-29 08:17:08','','Balloon & Blending','','publish','closed','closed','','balloon-blending','','','2023-09-05 00:05:52','2023-09-05 07:05:52','',0,'https://www.meadowcroftwines.com/?page_id=3150',0,'page','',0),(3151,5,'2023-08-29 01:30:56','2023-08-29 08:30:56','','Wine Blending Experience','','publish','closed','closed','','wine-blending-experience','','','2024-12-23 13:52:07','2024-12-23 21:52:07','',0,'https://www.meadowcroftwines.com/?page_id=3151',0,'page','',0),(3152,5,'2023-08-29 01:25:03','2023-08-29 08:25:03','','About_our_wines_new (1)','','inherit','closed','closed','','about_our_wines_new-1','','','2023-09-03 09:06:55','2023-09-03 16:06:55','',3150,'https://www.meadowcroftwines.com/wp-content/uploads/2023/08/About_our_wines_new-1.jpg',0,'attachment','image/jpeg',0),(3153,5,'2023-08-29 01:29:41','2023-08-29 08:29:41','','Ceo_message (1)','','inherit','closed','closed','','ceo_message-1','','','2023-08-29 01:29:41','2023-08-29 08:29:41','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/08/Ceo_message-1.jpg',0,'attachment','image/jpeg',0),(3155,5,'2023-08-29 03:40:47','2023-08-29 10:40:47','','wine blending video','','inherit','closed','closed','','meadow','','','2023-09-02 20:47:13','2023-09-03 03:47:13','',3150,'https://www.meadowcroftwines.com/wp-content/uploads/2023/08/meadow.jpg',0,'attachment','image/jpeg',0),(3156,5,'2023-08-29 03:41:02','2023-08-29 10:41:02','','meadow2','','inherit','closed','closed','','meadow2','','','2023-08-29 03:41:08','2023-08-29 10:41:08','',3150,'https://www.meadowcroftwines.com/wp-content/uploads/2023/08/meadow2.jpg',0,'attachment','image/jpeg',0),(3160,3,'2023-09-02 20:28:04','2023-09-03 03:28:04','','Sonoma Ballooning','','inherit','closed','closed','','5f9f10e1-422d-42db-87ca-bbf82fd5dbab','','','2023-09-02 20:28:39','2023-09-03 03:28:39','',3150,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/5F9F10E1-422D-42DB-87CA-BBF82FD5DBAB.jpg',0,'attachment','image/jpeg',0),(3161,3,'2023-09-02 20:31:06','2023-09-03 03:31:06','','corking wine bottle2','','inherit','closed','closed','','corking-wine-bottle2','','','2023-09-02 20:31:37','2023-09-03 03:31:37','',3150,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/corking-wine-bottle2.jpg',0,'attachment','image/jpeg',0),(3162,3,'2023-09-02 20:32:59','2023-09-03 03:32:59','','corporate groups blending','','inherit','closed','closed','','corporate-groups-blending','','','2023-09-02 20:32:59','2023-09-03 03:32:59','',3150,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/corporate-groups-blending.jpg',0,'attachment','image/jpeg',0),(3163,3,'2023-09-02 20:33:02','2023-09-03 03:33:02','','Meadowcroft wine blending','','inherit','closed','closed','','meadowcroft-wine-blending','','','2023-09-03 09:19:53','2023-09-03 16:19:53','',3150,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/Meadowcroft-wine-blending.jpg',0,'attachment','image/jpeg',0),(3164,3,'2023-09-02 20:33:06','2023-09-03 03:33:06','','TomMedowcroft helping guests blend','','inherit','closed','closed','','tommedowcroft-helping-guests-blend','','','2023-09-02 20:55:04','2023-09-03 03:55:04','',3150,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/TomMedowcroft-helping-guests-blend.jpg',0,'attachment','image/jpeg',0),(3165,3,'2023-09-02 20:35:28','2023-09-03 03:35:28','','7cb9e4a4-a4d8-4721-a873-2803ee4a2f51','','inherit','closed','closed','','7cb9e4a4-a4d8-4721-a873-2803ee4a2f51','','','2023-09-02 20:35:28','2023-09-03 03:35:28','',3150,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/7cb9e4a4-a4d8-4721-a873-2803ee4a2f51.jpg',0,'attachment','image/jpeg',0),(3166,3,'2023-09-02 20:35:40','2023-09-03 03:35:40','','default','default','inherit','closed','closed','','default','','','2023-09-02 20:35:40','2023-09-03 03:35:40','',3150,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/1157C11B-F8D1-468C-9B97-363D77AF5E1D-2.jpg',0,'attachment','image/jpeg',0),(3167,3,'2023-09-02 20:35:46','2023-09-03 03:35:46','','D2ACD611-6537-49A8-B110-C1D1E037DF06','','inherit','closed','closed','','d2acd611-6537-49a8-b110-c1d1e037df06','','','2023-09-02 20:56:00','2023-09-03 03:56:00','',3150,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/D2ACD611-6537-49A8-B110-C1D1E037DF06.jpg',0,'attachment','image/jpeg',0),(3168,3,'2023-09-02 20:36:01','2023-09-03 03:36:01','','gopr0578','','inherit','closed','closed','','gopr0578','','','2023-09-02 20:52:54','2023-09-03 03:52:54','',3150,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/gopr0578.jpg',0,'attachment','image/jpeg',0),(3169,3,'2023-09-02 20:42:47','2023-09-03 03:42:47','','Blending in Cornerstone barn','','inherit','closed','closed','','pxl_20230121_183205619','','','2023-09-02 20:54:31','2023-09-03 03:54:31','',3150,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/PXL_20230121_183205619.jpg',0,'attachment','image/jpeg',0),(3170,3,'2023-09-02 20:42:52','2023-09-03 03:42:52','','PXL_20230121_203801680','','inherit','closed','closed','','pxl_20230121_203801680','','','2023-09-03 08:59:19','2023-09-03 15:59:19','',3150,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/PXL_20230121_203801680.jpg',0,'attachment','image/jpeg',0),(3171,3,'2023-09-02 20:42:58','2023-09-03 03:42:58','','PXL_20230221_225833501','','inherit','closed','closed','','pxl_20230221_225833501','','','2023-09-02 20:42:58','2023-09-03 03:42:58','',3150,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/PXL_20230221_225833501.jpg',0,'attachment','image/jpeg',0),(3172,3,'2023-09-02 20:43:07','2023-09-03 03:43:07','','PXL_20221203_010358414_2 (1)','','inherit','closed','closed','','pxl_20221203_010358414_2-1','','','2023-09-02 20:55:31','2023-09-03 03:55:31','',3150,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/PXL_20221203_010358414_2-1.jpg',0,'attachment','image/jpeg',0),(3173,3,'2023-09-02 21:12:18','2023-09-03 04:12:18','','IMG_3149','','inherit','closed','closed','','img_3149','','','2023-09-02 21:12:36','2023-09-03 04:12:36','',3150,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/IMG_3149.heic',0,'attachment','image/heic',0),(3175,3,'2023-09-03 09:05:57','2023-09-03 16:05:57','','Blending experience video','','inherit','closed','closed','','social-clip-1-shortened-trailer-horizontal','','','2023-09-03 09:06:24','2023-09-03 16:06:24','',3151,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/Social-Clip-1-Shortened-Trailer-Horizontal.mp4',0,'attachment','video/mp4',0),(3178,5,'2024-10-30 14:16:36','2023-09-05 07:24:28',' ','','','publish','closed','closed','','3178','','','2024-10-30 14:16:36','2024-10-30 21:16:36','',0,'https://www.meadowcroftwines.com/?p=3178',5,'nav_menu_item','',0),(3179,5,'2024-10-30 14:16:36','2023-09-05 07:24:28',' ','','','publish','closed','closed','','3179','','','2024-10-30 14:16:36','2024-10-30 21:16:36','',0,'https://www.meadowcroftwines.com/?p=3179',4,'nav_menu_item','',0),(3180,3,'2023-09-05 14:26:10','2023-09-05 21:26:10','','Digital Brochure','','inherit','closed','closed','','digitalgeneralbrochure','','','2023-09-05 14:26:39','2023-09-05 21:26:39','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/DigitalGeneralBrochure.pdf',0,'attachment','application/pdf',0),(3183,1,'2023-09-14 11:45:57','2023-09-14 18:45:57','','Chocolate Bar','','publish','closed','closed','','chocolate-bar','','','2024-01-13 18:18:52','2024-01-14 02:18:52','',0,'https://www.meadowcroftwines.com/product/chocolate-bar/',0,'product','',0),(3184,3,'2023-09-18 10:26:16','2023-09-18 17:26:16','','2022-PinotNoir-RussianRiver-FINAL','','inherit','closed','closed','','2022-pinotnoir-russianriver-final','','','2023-09-18 10:26:16','2023-09-18 17:26:16','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/2022-PinotNoir-RussianRiver-FINAL.pdf',0,'attachment','application/pdf',0),(3186,1,'2023-09-22 14:32:15','2023-09-22 21:32:15','','Olive Oil','','publish','closed','closed','','olive-oil-025l','','','2024-01-13 18:01:37','2024-01-14 02:01:37','',0,'https://www.meadowcroftwines.com/product/olive-oil-with-thyme-duplicate1/',0,'product','',0),(3187,1,'2023-09-22 14:51:12','2023-09-22 21:51:12','','Chocolate Bar Sampler Pack - MIA','','publish','closed','closed','','chocolate-bar-duplicate','','','2024-04-03 14:39:04','2024-04-03 21:39:04','',0,'https://www.meadowcroftwines.com/product/chocolate-bar-duplicate/',0,'product','',0),(3189,3,'2023-09-25 14:58:29','2023-09-25 21:58:29','','TechSheet-2020-Cab-StagsLeap-Final (2)','','inherit','closed','closed','','techsheet-2020-cab-stagsleap-final-2','','','2023-09-25 14:58:29','2023-09-25 21:58:29','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/TechSheet-2020-Cab-StagsLeap-Final-2.pdf',0,'attachment','application/pdf',0),(3190,3,'2023-09-25 15:06:39','2023-09-25 22:06:39','','TechSheet-2019-Cab-StagsLeap-Final (2)','','inherit','closed','closed','','techsheet-2019-cab-stagsleap-final-2','','','2023-09-25 15:06:39','2023-09-25 22:06:39','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/TechSheet-2019-Cab-StagsLeap-Final-2.pdf',0,'attachment','application/pdf',0),(3191,1,'2023-09-27 09:32:18','2023-09-27 16:32:18','','Meadowcroft 2022 Pinot Noir Vina Del Sol Vineyard * Allocation','','publish','closed','closed','','meadowcroft-2022-pinot-noir-vina-del-sol-vineyard','','','2023-09-27 09:32:18','2023-09-27 16:32:18','',0,'https://www.meadowcroftwines.com/product/meadowcroft-2022-pinot-noir-vina-del-sol-vineyard/',0,'product','',0),(3192,3,'2023-09-27 12:13:39','2023-09-27 19:13:39','','19_Cab_NelsonRanch_Mendo_Techsheet (1)','','inherit','closed','closed','','19_cab_nelsonranch_mendo_techsheet-1','','','2023-09-27 12:13:39','2023-09-27 19:13:39','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/19_Cab_NelsonRanch_Mendo_Techsheet-1.pdf',0,'attachment','application/pdf',0),(3193,3,'2023-09-27 12:13:43','2023-09-27 19:13:43','','2021-Wyldvin-Cabernet-Final','','inherit','closed','closed','','2021-wyldvin-cabernet-final','','','2023-09-27 12:13:43','2023-09-27 19:13:43','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/2021-Wyldvin-Cabernet-Final.pdf',0,'attachment','application/pdf',0),(3194,3,'2023-09-27 12:13:45','2023-09-27 19:13:45','','2022-Pinot Blanc-FINAL','','inherit','closed','closed','','2022-pinot-blanc-final','','','2023-09-27 12:13:45','2023-09-27 19:13:45','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/2022-Pinot-Blanc-FINAL.pdf',0,'attachment','application/pdf',0),(3195,3,'2023-09-27 12:13:47','2023-09-27 19:13:47','','2022-Pinot Gris-FINAL (1)','','inherit','closed','closed','','2022-pinot-gris-final-1','','','2024-05-22 11:43:29','2024-05-22 18:43:29','',3780,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/2022-Pinot-Gris-FINAL-1.pdf',0,'attachment','application/pdf',0),(3196,3,'2023-09-27 12:13:50','2023-09-27 19:13:50','','2022-Sauvignon-Blanc-FINAL','','inherit','closed','closed','','2022-sauvignon-blanc-final','','','2023-09-27 12:13:50','2023-09-27 19:13:50','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/2022-Sauvignon-Blanc-FINAL.pdf',0,'attachment','application/pdf',0),(3197,3,'2023-09-27 12:13:54','2023-09-27 19:13:54','','MC_2020SangioveseSpeedyCreekKnightsValley_TECHSheet (3)','','inherit','closed','closed','','mc_2020sangiovesespeedycreekknightsvalley_techsheet-3','','','2023-09-27 12:13:54','2023-09-27 19:13:54','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/MC_2020SangioveseSpeedyCreekKnightsValley_TECHSheet-3.pdf',0,'attachment','application/pdf',0),(3198,3,'2023-09-27 12:13:58','2023-09-27 19:13:58','','Meadowcroft_2021_AV_Mendo_TECHSheet','','inherit','closed','closed','','meadowcroft_2021_av_mendo_techsheet','','','2023-09-27 12:13:58','2023-09-27 19:13:58','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/Meadowcroft_2021_AV_Mendo_TECHSheet.pdf',0,'attachment','application/pdf',0),(3199,3,'2023-09-27 12:14:05','2023-09-27 19:14:05','','Meadowcroft_2021_RussianRiverValley_Pinotnoir_TECHSheet (1)','','inherit','closed','closed','','meadowcroft_2021_russianrivervalley_pinotnoir_techsheet-1','','','2023-09-27 12:14:05','2023-09-27 19:14:05','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/Meadowcroft_2021_RussianRiverValley_Pinotnoir_TECHSheet-1.pdf',0,'attachment','application/pdf',0),(3200,3,'2023-09-27 12:14:09','2023-09-27 19:14:09','','Meadowcroft_2021_Viognier_WYLDVIN_Tech_Sheet (1)','','inherit','closed','closed','','meadowcroft_2021_viognier_wyldvin_tech_sheet-1-2','','','2023-09-27 12:14:09','2023-09-27 19:14:09','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/Meadowcroft_2021_Viognier_WYLDVIN_Tech_Sheet-1.pdf',0,'attachment','application/pdf',0),(3201,3,'2023-09-27 12:14:11','2023-09-27 19:14:11','','TechSheet-2020-Cab-Oakville-Final (1)','','inherit','closed','closed','','techsheet-2020-cab-oakville-final-1','','','2023-09-27 12:14:11','2023-09-27 19:14:11','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/09/TechSheet-2020-Cab-Oakville-Final-1.pdf',0,'attachment','application/pdf',0),(3203,3,'2023-10-02 12:39:20','2023-10-02 19:39:20','','TechSheet-2021-Sangiovese','','inherit','closed','closed','','techsheet-2021-sangiovese','','','2023-10-02 12:39:20','2023-10-02 19:39:20','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/10/TechSheet-2021-Sangiovese.pdf',0,'attachment','application/pdf',0),(3204,1,'2023-10-02 12:58:29','2023-10-02 19:58:29','','Wine Club Pick Up Party - CLUB MEMBERS','','publish','closed','closed','','wine-club-pick-up-party-fall-2023','','','2023-12-27 12:49:01','2023-12-27 20:49:01','',0,'https://www.meadowcroftwines.com/product/wine-club-pick-up-party-fall-2023/',0,'product','',0),(3206,3,'2023-10-02 13:06:38','2023-10-02 20:06:38','','party-square','','inherit','closed','closed','','party-square','','','2023-10-02 13:06:57','2023-10-02 20:06:57','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/07/party-square.jpg',0,'attachment','image/jpeg',0),(3207,3,'2023-10-02 13:09:28','2023-10-02 20:09:28','','Sonoma-Crust-Truck-1','','inherit','closed','closed','','sonoma-crust-truck-1','','','2023-10-02 13:09:28','2023-10-02 20:09:28','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/07/Sonoma-Crust-Truck-1.jpg',0,'attachment','image/jpeg',0),(3208,3,'2023-10-02 14:42:29','2023-10-02 21:42:29','','Sonoma-Crust-Catering-Truck','','inherit','closed','closed','','sonoma-crust-catering-truck','','','2023-10-02 14:42:29','2023-10-02 21:42:29','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/10/Sonoma-Crust-Catering-Truck.jpg',0,'attachment','image/jpeg',0),(3209,1,'2023-10-04 08:47:10','2023-10-04 15:47:10','','Wine Club Pick Up Party - NON MEMBERS','','publish','closed','closed','','wine-club-pick-up-party-fall-2023-duplicate','','','2023-12-27 12:49:10','2023-12-27 20:49:10','',0,'https://www.meadowcroftwines.com/product/wine-club-pick-up-party-fall-2023-duplicate/',0,'product','',0),(3211,1,'2023-10-06 11:33:05','2023-10-06 18:33:05','','Gift box- chocolate &amp; stemless glasses','','publish','closed','closed','','gift-box-chocolate-stemless-glasses-wine-not-included','','','2023-10-17 09:59:29','2023-10-17 16:59:29','',0,'https://www.meadowcroftwines.com/product/gift-box-chocolate-stemless-glasses-wine-not-included/',0,'product','',0),(3212,1,'2023-10-06 11:41:07','2023-10-06 18:41:07','','Cabernet Lover\'s Gift Box','','publish','closed','closed','','cabernet-dark-chocolate-gift-box','','','2024-11-11 09:54:50','2024-11-11 17:54:50','',0,'https://www.meadowcroftwines.com/product/cabernet-dark-chocolate-gift-box/',0,'product','',0),(3213,1,'2023-10-06 12:01:05','2023-10-06 19:01:05','','Gift Box with Salami, cheese, crackers &amp; preserves (wine not incl)','','publish','closed','closed','','gift-box-with-salami-cheese-crackers-preserves','','','2024-01-13 17:26:48','2024-01-14 01:26:48','',0,'https://www.meadowcroftwines.com/product/gift-box-with-salami-cheese-crackers-preserves/',0,'product','',0),(3214,1,'2023-10-06 12:11:31','2023-10-06 19:11:31','','Foodies Gift Box','','publish','closed','closed','','foodies-gift-box','','','2024-11-11 09:56:38','2024-11-11 17:56:38','',0,'https://www.meadowcroftwines.com/product/foodies-gift-box/',0,'product','',0),(3215,1,'2023-10-06 12:26:43','2023-10-06 19:26:43','','Zinfandel &amp; Stemless Glasses Gift Box','','publish','closed','closed','','zinfandel-glasses-gift-box','','','2024-11-11 10:03:18','2024-11-11 18:03:18','',0,'https://www.meadowcroftwines.com/product/cabernet-lovers-gift-box-duplicate/',0,'product','',0),(3217,1,'2023-10-06 13:03:00','2023-10-06 20:03:00','','Gift Box with two stemless logo wine glasses','','publish','closed','closed','','gift-box-with-two-stemless-logo-wine-glasses','','','2024-01-13 17:44:14','2024-01-14 01:44:14','',0,'https://www.meadowcroftwines.com/product/gift-box-with-two-stemless-logo-wine-glasses/',0,'product','',0),(3220,3,'2023-10-12 15:21:55','2023-10-12 22:21:55','','cirque','','inherit','closed','closed','','cirque','','','2023-10-12 15:22:14','2023-10-12 22:22:14','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/10/cirque.jpg',0,'attachment','image/jpeg',0),(3222,1,'2023-10-27 12:39:22','2023-10-27 19:39:22','','Box- 4 bottle wood laydown','','publish','closed','closed','','box-4-bottle-wood-laydown','','','2024-01-13 18:17:33','2024-01-14 02:17:33','',0,'https://www.meadowcroftwines.com/product/box-4-bottle-wood-laydown/',0,'product','',0),(3223,1,'2023-10-28 16:18:27','2023-10-28 23:18:27','','Wine Club Pick Up Party - Children','','publish','closed','closed','','wine-club-pick-up-party-club-members-duplicate','','','2023-10-28 16:19:37','2023-10-28 23:19:37','',0,'https://www.meadowcroftwines.com/product/wine-club-pick-up-party-club-members-duplicate/',0,'product','',0),(3225,1,'2023-11-02 11:49:07','2023-11-02 18:49:07','','Napa District Designate Cabernet Collector\'s Box','','publish','closed','closed','','napa-district-designate-cabernet-collector-s-box','','','2023-11-02 11:49:07','2023-11-02 18:49:07','',0,'https://www.meadowcroftwines.com/product/napa-district-designate-cabernet-collector-s-box/',0,'product','',0),(3226,1,'2023-11-02 16:04:57','2023-11-02 23:04:57','','Holiday Four Bottle Pack','','publish','closed','closed','','holiday-four-bottle-pack','','','2024-11-11 09:58:49','2024-11-11 17:58:49','',0,'https://www.meadowcroftwines.com/product/holiday-four-bottle-pack/',0,'product','',0),(3227,1,'2023-11-03 11:29:11','2023-11-03 18:29:11','','Holiday Sparkling 2 Pack','','publish','closed','closed','','holiday-sparkling-2-pack','','','2024-11-11 09:59:13','2024-11-11 17:59:13','',0,'https://www.meadowcroftwines.com/product/holiday-sparkling-2-pack/',0,'product','',0),(3228,1,'2023-11-03 11:57:34','2023-11-03 18:57:34','','Holiday Six Bottle Pack','','publish','closed','closed','','holiday-four-bottle-pack-duplicate','','','2024-11-11 09:58:59','2024-11-11 17:58:59','',0,'https://www.meadowcroftwines.com/product/holiday-four-bottle-pack-duplicate/',0,'product','',0),(3229,1,'2023-11-10 11:59:26','2023-11-10 19:59:26','','Cabernet Tasting Flight','','publish','closed','closed','','cabernet-tasting-flight','','','2023-11-10 11:59:26','2023-11-10 19:59:26','',0,'https://www.meadowcroftwines.com/product/cabernet-tasting-flight/',0,'product','',0),(3233,3,'2023-11-14 12:10:39','2023-11-14 20:10:39','','Library Cellar Sale (1)','','inherit','closed','closed','','library-cellar-sale-1','','','2023-11-14 12:10:39','2023-11-14 20:10:39','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/11/Library-Cellar-Sale-1.pdf',0,'attachment','application/pdf',0),(3235,1,'2023-11-24 08:42:33','2023-11-24 16:42:33','','MYSTERY CASE - Mixed MC &amp; TH','','publish','closed','closed','','mystery-case-duplicate','','','2023-11-24 08:43:17','2023-11-24 16:43:17','',0,'https://www.meadowcroftwines.com/product/mystery-case-duplicate/',0,'product','',0),(3236,1,'2023-11-27 12:04:02','2023-11-27 20:04:02','','Port and Chocolate Gift Pack','','publish','closed','closed','','port-and-chocolate-gift-pack','','','2024-11-11 10:04:19','2024-11-11 18:04:19','',0,'https://www.meadowcroftwines.com/product/port-and-chocolate-gift-pack/',0,'product','',0),(3239,1,'2023-12-01 11:09:36','2023-12-01 19:09:36','','MYSTERY CASE - Thomas Henry','','publish','closed','closed','','mystery-case-mixed-mc-th-duplicate','','','2023-12-01 11:10:08','2023-12-01 19:10:08','',0,'https://www.meadowcroftwines.com/product/mystery-case-mixed-mc-th-duplicate/',0,'product','',0),(3241,1,'2023-12-19 10:29:18','2023-12-19 18:29:18','','Port and Chocolate Gift Pack duplicate','','publish','closed','closed','','port-and-chocolate-gift-pack-duplicate','','','2024-11-11 10:04:05','2024-11-11 18:04:05','',0,'https://www.meadowcroftwines.com/product/port-and-chocolate-gift-pack-duplicate/',0,'product','',0),(3243,1,'2023-12-20 14:57:33','2023-12-20 22:57:33','','2023 Pinot Gris, Nelson Family Vineyard','','publish','closed','closed','','2023-pinot-gris-nelson-family-vineyard','','','2024-09-24 12:35:52','2024-09-24 19:35:52','',0,'https://www.meadowcroftwines.com/product/2022-pinot-gris-nelson-ranch-vineyard-duplicate/',0,'product','',0),(3244,1,'2023-12-20 15:00:37','2023-12-20 23:00:37','','2023 Sauvignon Blanc, Sonoma Coast','','publish','closed','closed','','2023-sauvignon-blanc-sonoma-coast','','','2024-11-06 14:25:34','2024-11-06 22:25:34','',0,'https://www.meadowcroftwines.com/product/2022-sauvignon-blanc-sonoma-coast-duplicate/',0,'product','',0),(3245,1,'2023-12-20 15:06:56','2023-12-20 23:06:56','','2021 River Trace GSM','','publish','closed','closed','','2021-river-trace-gsm','','','2024-08-02 12:01:02','2024-08-02 19:01:02','',0,'https://www.meadowcroftwines.com/product/2020-river-trace-gsm-duplicate/',0,'product','',0),(3246,1,'2023-12-20 15:15:39','2023-12-20 23:15:39','','2021 Cabernet Sauvignon, Napa Valley - Large Format - 1.5L','','publish','closed','closed','','2021-cabernet-sauvignon-napa-valley-large-format','','','2023-12-26 09:07:33','2023-12-26 17:07:33','',0,'https://www.meadowcroftwines.com/product/2021-cabernet-sauvignon-napa-valley-duplicate/',0,'product','',0),(3247,1,'2023-12-20 15:17:37','2023-12-20 23:17:37','','2021 Cabernet Sauvignon, Stags Leap District','','publish','closed','closed','','2021-cabernet-sauvignon-stags-leap-district','','','2024-09-26 20:52:33','2024-09-27 03:52:33','',0,'https://www.meadowcroftwines.com/product/2020-cabernet-sauvignon-stags-leap-district-duplicate/',0,'product','',0),(3248,1,'2023-12-20 15:19:40','2023-12-20 23:19:40','','2021 Cabernet Sauvignon, Oakville','','publish','closed','closed','','2021-cabernet-sauvignon-oakville','','','2024-04-22 12:02:01','2024-04-22 19:02:01','',0,'https://www.meadowcroftwines.com/product/2020-cabernet-sauvignon-oakville-duplicate/',0,'product','',0),(3249,1,'2023-12-20 15:21:54','2023-12-20 23:21:54','','2022 The Magi','','publish','closed','closed','','2022-the-magi','','','2024-05-07 09:52:31','2024-05-07 16:52:31','',0,'https://www.meadowcroftwines.com/product/2021-the-magi-duplicate/',0,'product','',0),(3250,3,'2023-12-21 09:49:45','2023-12-21 17:49:45','Meadowcroft private label wines','PrivateLabelWine-catalog-2023','','inherit','closed','closed','','privatelabelwine-catalog-2023','','','2023-12-21 09:50:29','2023-12-21 17:50:29','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2023/12/PrivateLabelWine-catalog-2023.pdf',0,'attachment','application/pdf',0),(3252,2,'2023-12-21 13:14:10','2023-12-21 21:14:10','','Private Label Wines','','publish','closed','closed','','private-label-wines','','','2024-10-08 13:05:48','2024-10-08 20:05:48','',0,'https://www.meadowcroftwines.com/?page_id=3252',0,'page','',0),(3253,2,'2023-12-21 13:26:28','2023-12-21 21:26:28','','Mia+Ryan','','inherit','closed','closed','','miaryan','','','2023-12-21 13:26:40','2023-12-21 21:26:40','',3252,'https://www.meadowcroftwines.com/wp-content/uploads/2023/12/MiaRyan.png',0,'attachment','image/png',0),(3254,2,'2023-12-21 13:27:01','2023-12-21 21:27:01','','Emma+Ryan','','inherit','closed','closed','','emmaryan','','','2023-12-21 13:27:11','2023-12-21 21:27:11','',3252,'https://www.meadowcroftwines.com/wp-content/uploads/2023/12/EmmaRyan.png',0,'attachment','image/png',0),(3255,2,'2023-12-21 13:27:20','2023-12-21 21:27:20','','Be-You','','inherit','closed','closed','','be-you','','','2023-12-21 13:27:35','2023-12-21 21:27:35','',3252,'https://www.meadowcroftwines.com/wp-content/uploads/2023/12/Be-You.png',0,'attachment','image/png',0),(3270,2,'2023-12-21 15:18:53','2023-12-21 23:18:53','','Bee','','inherit','closed','closed','','bee-3','','','2023-12-21 15:19:07','2023-12-21 23:19:07','',3252,'https://www.meadowcroftwines.com/wp-content/uploads/2023/12/Bee.png',0,'attachment','image/png',0),(3271,2,'2023-12-21 15:21:33','2023-12-21 23:21:33','','2-Color-Bee','','inherit','closed','closed','','2-color-bee','','','2023-12-21 15:21:41','2023-12-21 23:21:41','',3252,'https://www.meadowcroftwines.com/wp-content/uploads/2023/12/2-Color-Bee.png',0,'attachment','image/png',0),(3272,2,'2024-10-30 14:16:36','2023-12-22 00:07:40',' ','','','publish','closed','closed','','3272','','','2024-10-30 14:16:36','2024-10-30 21:16:36','',0,'https://www.meadowcroftwines.com/?p=3272',15,'nav_menu_item','',0),(3275,1,'2023-12-27 12:46:28','2023-12-27 20:46:28','','Cabernet Tasting Flight with Tom Meadowcroft','','publish','closed','closed','','cabernet-tasting-flight-with-tom-meadowcroft','','','2023-12-28 09:29:27','2023-12-28 17:29:27','',0,'https://www.meadowcroftwines.com/product/cabernet-tasting-flight-with-tom-meadowcroft/',0,'product','',0),(3279,2,'2023-12-28 13:24:38','2023-12-28 21:24:38','','Sunset','','inherit','closed','closed','','sunset','','','2023-12-28 13:24:54','2023-12-28 21:24:54','',412,'https://www.meadowcroftwines.com/wp-content/uploads/2023/12/Sunset.jpg',0,'attachment','image/jpeg',0),(3280,2,'2023-12-28 13:27:40','2023-12-28 21:27:40','','Sunset-Mobile','','inherit','closed','closed','','sunset-mobile','','','2023-12-28 13:27:48','2023-12-28 21:27:48','',412,'https://www.meadowcroftwines.com/wp-content/uploads/2023/12/Sunset-Mobile.jpg',0,'attachment','image/jpeg',0),(3281,1,'2024-01-05 12:35:35','2024-01-05 20:35:35','','2010 Cabernet Sauvignon, Mt. Veeder Estate','','publish','closed','closed','','2010-cabernet-sauvignon-mt-veeder-estate','','','2024-01-05 12:36:38','2024-01-05 20:36:38','',0,'https://www.meadowcroftwines.com/product/2009-cabernet-sauvignon-mt-veeder-estate-duplicate/',0,'product','',0),(3282,1,'2024-01-05 12:44:34','2024-01-05 20:44:34','','2013 Cabernet Sauvignon, Napa Valley College','','publish','closed','closed','','2013-cabernet-sauvignon-napa-valley-college','','','2024-01-05 12:45:05','2024-01-05 20:45:05','',0,'https://www.meadowcroftwines.com/product/2012-cabernet-sauvignon-napa-valley-college-duplicate/',0,'product','',0),(3283,1,'2024-01-05 12:45:56','2024-01-05 20:45:56','','2016 French Colombard, Russian River Valley','','publish','closed','closed','','2016-french-colombard-russian-river-valley','','','2024-01-05 12:46:30','2024-01-05 20:46:30','',0,'https://www.meadowcroftwines.com/product/2019-french-colombard-russian-river-valley-duplicate/',0,'product','',0),(3284,1,'2024-01-05 12:53:22','2024-01-05 20:53:22','','2018 Cabernet Sauvignon, Louvau Vineyard','','publish','closed','closed','','2018-cabernet-sauvignon-louvau-vineyard','','','2024-01-05 12:53:52','2024-01-05 20:53:52','',0,'https://www.meadowcroftwines.com/product/2017-cabernet-sauvignon-louvau-vineyard-duplicate/',0,'product','',0),(3285,1,'2024-01-05 12:55:03','2024-01-05 20:55:03','','2018 Syrah','','publish','closed','closed','','2018-river-trace-grenache-syrah-mourvedre','','','2024-01-05 12:55:47','2024-01-05 20:55:47','',0,'https://www.meadowcroftwines.com/product/2019-river-trace-grenache-syrah-mourvedre-duplicate/',0,'product','',0),(3286,1,'2024-01-05 12:56:47','2024-01-05 20:56:47','','2018 Pinot Noir, Russian River Valley','','publish','closed','closed','','2018-pinot-noir-russian-river-valley','','','2024-01-05 12:57:13','2024-01-05 20:57:13','',0,'https://www.meadowcroftwines.com/product/2019-pinot-noir-russian-river-valley-duplicate/',0,'product','',0),(3288,1,'2024-01-05 14:53:30','2024-01-05 22:53:30','','2013 Cabernet Sauvignon, Mt. Veeder Estate 375ml','','publish','closed','closed','','2013-cabernet-sauvignon-mt-veeder-estate-375ml','','','2024-01-05 14:56:04','2024-01-05 22:56:04','',0,'https://www.meadowcroftwines.com/product/2013-cabernet-sauvignon-mt-veeder-estate-duplicate/',0,'product','',0),(3289,1,'2024-01-05 15:13:16','2024-01-05 23:13:16','','2019 Viognier, Louvau Vineyard','','publish','closed','closed','','2019-viognier-louvau-vineyard','','','2024-01-05 15:13:47','2024-01-05 23:13:47','',0,'https://www.meadowcroftwines.com/product/2020-viognier-louvau-vineyard-duplicate/',0,'product','',0),(3293,3,'2024-01-11 12:02:48','2024-01-11 20:02:48','','party-web','','inherit','closed','closed','','party-web','','','2024-01-11 12:03:13','2024-01-11 20:03:13','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/01/party-web.jpg',0,'attachment','image/jpeg',0),(3294,1,'2024-01-11 12:36:53','2024-01-11 20:36:53','','Speakeasy and Casino Night Party','','publish','closed','closed','','speakeasy-and-casino-night-party','','','2024-02-02 14:13:03','2024-02-02 22:13:03','',0,'https://www.meadowcroftwines.com/product/speakeasy-and-casino-night-party/',0,'product','',0),(3296,3,'2024-01-16 12:44:22','2024-01-16 20:44:22','','speakeasy-social','','inherit','closed','closed','','speakeasy-social','','','2024-01-16 12:44:22','2024-01-16 20:44:22','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/01/speakeasy-social.jpg',0,'attachment','image/jpeg',0),(3297,1,'2024-01-18 14:19:12','2024-01-18 22:19:12','','Olive Oil - \"O\" (all flavors)','','publish','closed','closed','','olive-oil-o-all-flavors','','','2024-01-18 14:51:24','2024-01-18 22:51:24','',0,'https://www.meadowcroftwines.com/product/olive-oil-o-all-flavors/',0,'product','',0),(3298,1,'2024-01-18 14:27:27','2024-01-18 22:27:27','','White Balsamic Vinegar - O','','publish','closed','closed','','olive-oil-o-all-flavors-duplicate','','','2024-01-18 14:51:56','2024-01-18 22:51:56','',0,'https://www.meadowcroftwines.com/product/olive-oil-o-all-flavors-duplicate/',0,'product','',0),(3299,1,'2024-01-19 15:27:26','2024-01-19 23:27:26','','Mocktail Mixer (Various Flavors)','','publish','closed','closed','','mixer-mimosa-w-tangerine','','','2024-02-09 12:12:12','2024-02-09 20:12:12','',0,'https://www.meadowcroftwines.com/product/mixer-mimosa-w-tangerine/',0,'product','',0),(3300,1,'2024-01-19 15:27:29','2024-01-19 23:27:29','','Mixer- Sangria','','publish','closed','closed','','mixer-mimosa-w-tangerine-duplicate','','','2024-02-09 12:12:28','2024-02-09 20:12:28','',0,'https://www.meadowcroftwines.com/product/mixer-mimosa-w-tangerine-duplicate/',0,'product','',0),(3302,5,'2024-01-23 02:46:40','0000-00-00 00:00:00','','Beginners Guide to White Wine','','draft','closed','open','','','','','2024-01-23 02:46:40','2024-01-23 10:46:40','',0,'https://www.meadowcroftwines.com/?p=3302',0,'post','',0),(3303,3,'2024-01-23 11:22:56','2024-01-23 19:22:56','Winemaker notes for Meadowcroft 2022 Sonoma Coast Pinot Noir','2022 Pinot Noir Son Coast Tech Sheet - DRAFT','','inherit','closed','closed','','2022-pinot-noir-son-coast-tech-sheet-draft','','','2024-01-23 11:23:19','2024-01-23 19:23:19','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/01/2022-Pinot-Noir-Son-Coast-Tech-Sheet-DRAFT.pdf',0,'attachment','application/pdf',0),(3305,3,'2024-01-23 15:43:38','2024-01-23 23:43:38','Winemaker notes for Meadowcfroft 20 Year Anniversary Cuvee','NV-AnivCuvee20YR-TechSheet','','inherit','closed','closed','','nv-anivcuvee20yr-techsheet','','','2024-01-23 15:44:15','2024-01-23 23:44:15','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/01/NV-AnivCuvee20YR-TechSheet.pdf',0,'attachment','application/pdf',0),(3307,3,'2024-01-23 16:41:58','2024-01-24 00:41:58','Wine notes for 2022 The Magi red wine blend','2022-TheMagi-techsheet','','inherit','closed','closed','','2022-themagi-techsheet','','','2024-01-23 16:42:16','2024-01-24 00:42:16','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/01/2022-TheMagi-techsheet.pdf',0,'attachment','application/pdf',0),(3308,3,'2024-01-23 16:49:35','2024-01-24 00:49:35','Wine notes for 2023 Pinot Gris','2023-Pinot Gris','','inherit','closed','closed','','2023-pinot-gris','','','2024-01-23 16:49:52','2024-01-24 00:49:52','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/01/2023-Pinot-Gris.pdf',0,'attachment','application/pdf',0),(3325,3,'2024-01-23 17:22:15','2024-01-24 01:22:15','','2021-OakvilleCab-techsheet-web2','','inherit','closed','closed','','2021-oakvillecab-techsheet-web2','','','2024-01-23 17:22:15','2024-01-24 01:22:15','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/01/2021-OakvilleCab-techsheet-web2.pdf',0,'attachment','application/pdf',0),(3326,3,'2024-01-23 17:41:46','2024-01-24 01:41:46','Wine notes for 2021 Stags Leap Cabernet Sauvignon','2021-StagsLeapCab-techsheet','','inherit','closed','closed','','2021-stagsleapcab-techsheet','','','2024-01-23 17:42:11','2024-01-24 01:42:11','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/01/2021-StagsLeapCab-techsheet.pdf',0,'attachment','application/pdf',0),(3327,3,'2024-01-23 17:48:15','2024-01-24 01:48:15','Wine notes for 2023 Sauvignon Blanc','2023-SauvBlanc-TechSheet','','inherit','closed','closed','','2023-sauvblanc-techsheet','','','2024-01-23 17:48:39','2024-01-24 01:48:39','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/01/2023-SauvBlanc-TechSheet.pdf',0,'attachment','application/pdf',0),(3328,3,'2024-01-23 18:03:01','2024-01-24 02:03:01','Wine notes for 2021 River Trace GSM red wine blend','2021-GSM-techsheet','','inherit','closed','closed','','2021-gsm-techsheet','','','2024-01-23 18:03:20','2024-01-24 02:03:20','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/01/2021-GSM-techsheet.pdf',0,'attachment','application/pdf',0),(3336,3,'2024-02-01 14:12:12','2024-02-01 22:12:12','','2021-PinotNoir-Carneros-sell sheet','','inherit','closed','closed','','2021-pinotnoir-carneros-sell-sheet','','','2024-02-01 14:12:12','2024-02-01 22:12:12','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-PinotNoir-Carneros-sell-sheet.pdf',0,'attachment','application/pdf',0),(3337,3,'2024-02-01 14:14:33','2024-02-01 22:14:33','','2021-PinotNoir-NapaCarn','','inherit','closed','closed','','2021-pinotnoir-napacarn','','','2024-02-01 14:14:33','2024-02-01 22:14:33','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-PinotNoir-NapaCarn.pdf',0,'attachment','application/pdf',0),(3338,3,'2024-02-01 14:15:18','2024-02-01 22:15:18','','2021-PinotNoir-NapaCarn','','inherit','closed','closed','','2021-pinotnoir-napacarn-2','','','2024-02-01 14:15:18','2024-02-01 22:15:18','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-PinotNoir-NapaCarn-1.pdf',0,'attachment','application/pdf',0),(3339,3,'2024-02-01 14:15:31','2024-02-01 22:15:31','','2021-PinotNoir-NapaCarn','','inherit','closed','closed','','2021-pinotnoir-napacarn-3','','','2024-02-01 14:15:31','2024-02-01 22:15:31','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-PinotNoir-NapaCarn-2.pdf',0,'attachment','application/pdf',0),(3340,3,'2024-02-01 14:26:06','2024-02-01 22:26:06','','2021-PinotNoir-NapaCarn-correct','','inherit','closed','closed','','2021-pinotnoir-napacarn-correct','','','2024-02-01 14:26:06','2024-02-01 22:26:06','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-PinotNoir-NapaCarn-correct.pdf',0,'attachment','application/pdf',0),(3341,3,'2024-02-01 17:55:15','2024-02-02 01:55:15','','2020-Cab-Oakville','','inherit','closed','closed','','2020-cab-oakville','','','2024-02-01 17:55:15','2024-02-02 01:55:15','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2020-Cab-Oakville.pdf',0,'attachment','application/pdf',0),(3342,3,'2024-02-01 17:55:23','2024-02-02 01:55:23','','2020Cab-RedHills','','inherit','closed','closed','','2020cab-redhills','','','2024-02-01 17:55:23','2024-02-02 01:55:23','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2020Cab-RedHills.pdf',0,'attachment','application/pdf',0),(3343,3,'2024-02-01 17:55:25','2024-02-02 01:55:25','','2021-Cab-NapaValley','','inherit','closed','closed','','2021-cab-napavalley','','','2024-02-01 17:55:25','2024-02-02 01:55:25','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-Cab-NapaValley.pdf',0,'attachment','application/pdf',0),(3344,3,'2024-02-01 17:55:27','2024-02-02 01:55:27','','2021-Cab-NelsonRanch','','inherit','closed','closed','','2021-cab-nelsonranch','','','2024-02-01 17:55:27','2024-02-02 01:55:27','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-Cab-NelsonRanch.pdf',0,'attachment','application/pdf',0),(3345,3,'2024-02-01 17:55:29','2024-02-02 01:55:29','','2021-Cab-Oakville','','inherit','closed','closed','','2021-cab-oakville','','','2024-02-01 17:55:29','2024-02-02 01:55:29','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-Cab-Oakville.pdf',0,'attachment','application/pdf',0),(3346,3,'2024-02-01 17:55:31','2024-02-02 01:55:31','','2021-GSM-techsheet','','inherit','closed','closed','','2021-gsm-techsheet-2','','','2024-02-01 17:55:31','2024-02-02 01:55:31','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-GSM-techsheet.pdf',0,'attachment','application/pdf',0),(3347,3,'2024-02-01 17:55:33','2024-02-02 01:55:33','','2021-PinotNoir-NapaCarn','','inherit','closed','closed','','2021-pinotnoir-napacarn-4','','','2024-02-01 17:55:33','2024-02-02 01:55:33','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-PinotNoir-NapaCarn-3.pdf',0,'attachment','application/pdf',0),(3348,3,'2024-02-01 17:55:35','2024-02-02 01:55:35','','2022 PinotNoir-VinaDelSol','','inherit','closed','closed','','2022-pinotnoir-vinadelsol','','','2024-02-01 17:55:35','2024-02-02 01:55:35','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-PinotNoir-VinaDelSol.pdf',0,'attachment','application/pdf',0),(3349,3,'2024-02-01 17:55:37','2024-02-02 01:55:37','','2022-Chard-NapaCarn','','inherit','closed','closed','','2022-chard-napacarn','','','2024-02-01 17:55:37','2024-02-02 01:55:37','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-Chard-NapaCarn.pdf',0,'attachment','application/pdf',0),(3350,3,'2024-02-01 17:55:40','2024-02-02 01:55:40','','2022-French-Colombard','','inherit','closed','closed','','2022-french-colombard-2','','','2024-02-01 17:55:40','2024-02-02 01:55:40','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-French-Colombard.pdf',0,'attachment','application/pdf',0),(3351,3,'2024-02-01 17:55:41','2024-02-02 01:55:41','','2022-PinotBlanc','','inherit','closed','closed','','2022-pinotblanc','','','2024-02-01 17:55:41','2024-02-02 01:55:41','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-PinotBlanc.pdf',0,'attachment','application/pdf',0),(3352,3,'2024-02-01 17:55:43','2024-02-02 01:55:43','','2022-PinotNoir SonCoast','','inherit','closed','closed','','2022-pinotnoir-soncoast','','','2024-02-01 17:55:43','2024-02-02 01:55:43','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-PinotNoir-SonCoast.pdf',0,'attachment','application/pdf',0),(3353,3,'2024-02-01 17:55:45','2024-02-02 01:55:45','','2022-PinotNoir-RussianRiver','','inherit','closed','closed','','2022-pinotnoir-russianriver','','','2024-02-01 17:55:45','2024-02-02 01:55:45','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-PinotNoir-RussianRiver.pdf',0,'attachment','application/pdf',0),(3354,3,'2024-02-01 17:55:46','2024-02-02 01:55:46','','2022-RosePinotNoir','','inherit','closed','closed','','2022-rosepinotnoir','','','2024-02-01 17:55:46','2024-02-02 01:55:46','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-RosePinotNoir.pdf',0,'attachment','application/pdf',0),(3355,3,'2024-02-01 17:55:48','2024-02-02 01:55:48','','2022-Roussanne','','inherit','closed','closed','','2022-roussanne','','','2024-02-01 17:55:48','2024-02-02 01:55:48','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-Roussanne.pdf',0,'attachment','application/pdf',0),(3356,3,'2024-02-01 17:55:50','2024-02-02 01:55:50','','2022-Viognier','','inherit','closed','closed','','2022-viognier','','','2024-02-01 17:55:50','2024-02-02 01:55:50','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-Viognier.pdf',0,'attachment','application/pdf',0),(3357,3,'2024-02-01 17:55:51','2024-02-02 01:55:51','','2023-Pinot Gris','','inherit','closed','closed','','2023-pinot-gris-2','','','2024-02-01 17:55:51','2024-02-02 01:55:51','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2023-Pinot-Gris.pdf',0,'attachment','application/pdf',0),(3358,3,'2024-02-01 17:55:53','2024-02-02 01:55:53','','2023-SauvBlanc','','inherit','closed','closed','','2023-sauvblanc','','','2024-02-01 17:55:53','2024-02-02 01:55:53','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2023-SauvBlanc.pdf',0,'attachment','application/pdf',0),(3359,3,'2024-02-01 17:55:55','2024-02-02 01:55:55','','NV-AnivCuvee20YR-TechSheet','','inherit','closed','closed','','nv-anivcuvee20yr-techsheet-2','','','2024-02-01 17:55:55','2024-02-02 01:55:55','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/NV-AnivCuvee20YR-TechSheet.pdf',0,'attachment','application/pdf',0),(3360,3,'2024-02-01 17:55:56','2024-02-02 01:55:56','','SellSheet-2021-PinotNoir-Carneros','','inherit','closed','closed','','sellsheet-2021-pinotnoir-carneros','','','2024-02-01 17:55:56','2024-02-02 01:55:56','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/SellSheet-2021-PinotNoir-Carneros.pdf',0,'attachment','application/pdf',0),(3361,3,'2024-02-01 17:56:01','2024-02-02 01:56:01','','2021-Cab-NapaValley','','inherit','closed','closed','','2021-cab-napavalley-2','','','2024-02-01 17:56:01','2024-02-02 01:56:01','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-Cab-NapaValley.jpg',0,'attachment','image/jpeg',0),(3362,3,'2024-02-01 17:56:08','2024-02-02 01:56:08','','2021-Cab-NelsonRanch','','inherit','closed','closed','','2021-cab-nelsonranch-2','','','2024-02-01 17:56:08','2024-02-02 01:56:08','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-Cab-NelsonRanch.jpg',0,'attachment','image/jpeg',0),(3363,3,'2024-02-01 17:56:15','2024-02-02 01:56:15','','2021-Cab-Oakville','','inherit','closed','closed','','2021-cab-oakville-2','','','2024-02-01 17:56:15','2024-02-02 01:56:15','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-Cab-Oakville.jpg',0,'attachment','image/jpeg',0),(3364,3,'2024-02-01 17:56:22','2024-02-02 01:56:22','','2021-GSM-Screen','','inherit','closed','closed','','2021-gsm-screen','','','2024-02-01 17:56:22','2024-02-02 01:56:22','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-GSM-Screen.jpg',0,'attachment','image/jpeg',0),(3365,3,'2024-02-01 17:56:31','2024-02-02 01:56:31','','2022-Chard-Carneros','','inherit','closed','closed','','2022-chard-carneros','','','2024-02-01 17:56:31','2024-02-02 01:56:31','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-Chard-Carneros.jpg',0,'attachment','image/jpeg',0),(3366,3,'2024-02-01 17:56:39','2024-02-02 01:56:39','','2022-Chard-SonCoast','','inherit','closed','closed','','2022-chard-soncoast','','','2024-02-01 17:56:39','2024-02-02 01:56:39','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-Chard-SonCoast.jpg',0,'attachment','image/jpeg',0),(3367,3,'2024-02-01 17:56:47','2024-02-02 01:56:47','','2022-FrenchColombard','','inherit','closed','closed','','2022-frenchcolombard','','','2024-02-01 17:56:47','2024-02-02 01:56:47','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-FrenchColombard.jpg',0,'attachment','image/jpeg',0),(3368,3,'2024-02-01 17:56:54','2024-02-02 01:56:54','','2022-PinotBlanc','','inherit','closed','closed','','2022-pinotblanc-2','','','2024-02-01 17:56:54','2024-02-02 01:56:54','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-PinotBlanc.jpg',0,'attachment','image/jpeg',0),(3369,3,'2024-02-01 17:57:03','2024-02-02 01:57:03','','2023-PinotGris','','inherit','closed','closed','','2022-pinotgris','','','2024-05-22 11:43:29','2024-05-22 18:43:29','',3780,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-PinotGris.jpg',0,'attachment','image/jpeg',0),(3370,3,'2024-02-01 17:57:10','2024-02-02 01:57:10','','2022-PinotNoir_ViñaDelSol','','inherit','closed','closed','','2022-pinotnoir_vinadelsol','','','2024-02-01 17:57:10','2024-02-02 01:57:10','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-PinotNoir_VinaDelSol.jpg',0,'attachment','image/jpeg',0),(3371,3,'2024-02-01 17:57:19','2024-02-02 01:57:19','','2022-Roussanne','','inherit','closed','closed','','2022-roussanne-2','','','2024-02-01 17:57:19','2024-02-02 01:57:19','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-Roussanne.jpg',0,'attachment','image/jpeg',0),(3372,3,'2024-02-01 17:57:27','2024-02-02 01:57:27','','2022-Viognier','','inherit','closed','closed','','2022-viognier-2','','','2024-02-01 17:57:27','2024-02-02 01:57:27','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-Viognier.jpg',0,'attachment','image/jpeg',0),(3373,3,'2024-02-01 17:57:36','2024-02-02 01:57:36','','2022PinotNoirRosé','','inherit','closed','closed','','2022pinotnoirrose','','','2024-02-01 17:57:36','2024-02-02 01:57:36','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022PinotNoirRose.jpg',0,'attachment','image/jpeg',0),(3374,3,'2024-02-01 17:57:46','2024-02-02 01:57:46','','2022RivertraceRosé','','inherit','closed','closed','','2022rivertracerose','','','2024-02-01 17:57:46','2024-02-02 01:57:46','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022RivertraceRose.jpg',0,'attachment','image/jpeg',0),(3375,3,'2024-02-01 17:57:54','2024-02-02 01:57:54','','2023-SauvignonBlanc','','inherit','closed','closed','','2023-sauvignonblanc','','','2024-02-01 17:57:54','2024-02-02 01:57:54','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2023-SauvignonBlanc.jpg',0,'attachment','image/jpeg',0),(3376,3,'2024-02-01 17:58:01','2024-02-02 01:58:01','','NV-AnnivCuvee-20yr-label','','inherit','closed','closed','','nv-annivcuvee-20yr-label','','','2024-02-01 17:58:01','2024-02-02 01:58:01','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/NV-AnnivCuvee-20yr-label.jpg',0,'attachment','image/jpeg',0),(3377,3,'2024-02-01 17:58:09','2024-02-02 01:58:09','','NV-AnnivCuvee20yr','','inherit','closed','closed','','nv-annivcuvee20yr','','','2024-02-01 17:58:09','2024-02-02 01:58:09','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/NV-AnnivCuvee20yr.jpg',0,'attachment','image/jpeg',0),(3378,3,'2024-02-01 17:58:14','2024-02-02 01:58:14','','RR-PinotNoir-NoVintage','','inherit','closed','closed','','rr-pinotnoir-novintage','','','2024-02-01 17:58:14','2024-02-02 01:58:14','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/RR-PinotNoir-NoVintage.jpg',0,'attachment','image/jpeg',0),(3381,3,'2024-02-02 15:43:19','2024-02-02 23:43:19','','SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRosé (1)','','inherit','closed','closed','','sonomabottle-meadowcroftwines_meadowcroft_blancderose-1','','','2024-02-02 15:43:19','2024-02-02 23:43:19','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1.jpg',0,'attachment','image/jpeg',0),(3382,3,'2024-02-02 15:43:33','2024-02-02 23:43:33','','SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRosé (1)','','inherit','closed','closed','','sonomabottle-meadowcroftwines_meadowcroft_blancderose-1-2','','','2024-02-02 15:43:33','2024-02-02 23:43:33','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/SonomaBottle-MeadowcroftWines_Meadowcroft_BlancDeRose-1-1.jpg',0,'attachment','image/jpeg',0),(3383,3,'2024-02-02 15:44:23','2024-02-02 23:44:23','','NV-BlancdeNoirs','','inherit','closed','closed','','nv-blancdenoirs','','','2024-02-02 15:44:23','2024-02-02 23:44:23','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/NV-BlancdeNoirs.jpg',0,'attachment','image/jpeg',0),(3384,3,'2024-02-02 15:44:32','2024-02-02 23:44:32','','NV-BlancdeNoirs','','inherit','closed','closed','','nv-blancdenoirs-2','','','2024-02-02 15:44:32','2024-02-02 23:44:32','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/NV-BlancdeNoirs-1.jpg',0,'attachment','image/jpeg',0),(3385,3,'2024-02-02 15:45:14','2024-02-02 23:45:14','','NV Blanc de Noir-final (3)','','inherit','closed','closed','','nv-blanc-de-noir-final-3','','','2024-02-02 15:45:14','2024-02-02 23:45:14','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/NV-Blanc-de-Noir-final-3.pdf',0,'attachment','application/pdf',0),(3386,3,'2024-02-05 10:33:07','2024-02-05 18:33:07','','2021-StagsLeapCab-techsheet','','inherit','closed','closed','','2021-stagsleapcab-techsheet-2','','','2024-02-05 10:33:07','2024-02-05 18:33:07','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-StagsLeapCab-techsheet.pdf',0,'attachment','application/pdf',0),(3387,3,'2024-02-05 10:33:09','2024-02-05 18:33:09','','SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2021','','inherit','closed','closed','','sonomabottle-meadowcroftwines_cabernetsauvignon_stagsleap_2021','','','2024-02-05 10:33:09','2024-02-05 18:33:09','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2021.jpg',0,'attachment','image/jpeg',0),(3388,3,'2024-02-05 11:48:25','2024-02-05 19:48:25','','TechSheet-2019-Cab-StagsLeap-Final (3)','','inherit','closed','closed','','techsheet-2019-cab-stagsleap-final-3','','','2024-02-05 11:48:25','2024-02-05 19:48:25','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/TechSheet-2019-Cab-StagsLeap-Final-3.pdf',0,'attachment','application/pdf',0),(3389,3,'2024-02-05 11:49:05','2024-02-05 19:49:05','','2020-CabSauvignon_StagsLeap','','inherit','closed','closed','','sonomabottle-meadowcroftwines_cabernetsauvignon_stagsleap_2020-2','','','2024-02-05 11:54:10','2024-02-05 19:54:10','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2020-2.jpg',0,'attachment','image/jpeg',0),(3390,3,'2024-02-05 11:49:13','2024-02-05 19:49:13','','2019CabSauvignon_StagsLeap','','inherit','closed','closed','','sonomabottle-meadowcroftwines_cabernetsauvignon_stagsleap_2019','','','2024-02-05 11:52:06','2024-02-05 19:52:06','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/SonomaBottle-MeadowcroftWines_CabernetSauvignon_StagsLeap_2019.jpg',0,'attachment','image/jpeg',0),(3391,3,'2024-02-05 11:49:17','2024-02-05 19:49:17','','TechSheet-2019-Cab-StagsLeap-Final (3)','','inherit','closed','closed','','techsheet-2019-cab-stagsleap-final-3-2','','','2024-02-05 11:49:17','2024-02-05 19:49:17','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/TechSheet-2019-Cab-StagsLeap-Final-3-1.pdf',0,'attachment','application/pdf',0),(3392,3,'2024-02-05 11:49:18','2024-02-05 19:49:18','','TechSheet-2020-Cab-StagsLeap-Final (4)','','inherit','closed','closed','','techsheet-2020-cab-stagsleap-final-4','','','2024-02-05 11:49:18','2024-02-05 19:49:18','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/TechSheet-2020-Cab-StagsLeap-Final-4.pdf',0,'attachment','application/pdf',0),(3394,3,'2024-02-07 15:44:27','2024-02-07 23:44:27','','2022-Napa-Carneros-Chardonnay-final','','inherit','closed','closed','','2022-napa-carneros-chardonnay-final-2','','','2024-02-07 15:44:27','2024-02-07 23:44:27','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-Napa-Carneros-Chardonnay-final.pdf',0,'attachment','application/pdf',0),(3395,3,'2024-02-07 16:02:47','2024-02-08 00:02:47','','2022-RiverTrace-Rose','','inherit','closed','closed','','2022-rivertrace-rose','','','2024-02-07 16:02:47','2024-02-08 00:02:47','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2022-RiverTrace-Rose.pdf',0,'attachment','application/pdf',0),(3396,3,'2024-02-07 16:25:33','2024-02-08 00:25:33','','2021-CabernetFranc-Rivino','','inherit','closed','closed','','2021-cabernetfranc-rivino','','','2024-02-07 16:25:33','2024-02-08 00:25:33','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-CabernetFranc-Rivino.pdf',0,'attachment','application/pdf',0),(3397,3,'2024-02-07 16:25:57','2024-02-08 00:25:57','','2021_CabFranc_RivinoVineyard (1)','','inherit','closed','closed','','2021_cabfranc_rivinovineyard-1','','','2024-02-07 16:25:57','2024-02-08 00:25:57','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021_CabFranc_RivinoVineyard-1.png',0,'attachment','image/png',0),(3399,2,'2024-02-09 15:48:23','2024-02-09 23:48:23','','Meadowcroft Wines','','publish','closed','closed','','meadowcroft-wines','','','2024-02-12 14:26:00','2024-02-12 22:26:00','',0,'https://www.meadowcroftwines.com/?post_type=brand&#038;p=3399',0,'brand','',0),(3400,2,'2024-02-09 15:51:14','2024-02-09 23:51:14','','2019 CABERNET SAUVIGNON, OAKVILLE, NAPA VALLEY','','publish','closed','closed','','oakville-napa-valley-cabernet-sauvignon','','','2024-05-15 16:14:39','2024-05-15 23:14:39','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3400',0,'wine_asset','',0),(3401,2,'2024-02-09 15:53:24','2024-02-09 23:53:24','','2018 CABERNET SAUVIGNON, SPRING MT. DISTRICT, NAPA VALLEY','','publish','closed','closed','','spring-mt-district-napa-valley-cabernet-sauvignon','','','2024-05-15 16:11:54','2024-05-15 23:11:54','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3401',0,'wine_asset','',0),(3402,1,'2024-02-12 12:03:43','2024-02-12 20:03:43','','Gold Medal 6 Pack SF Chronicle Competition','','publish','closed','closed','','gold-medal-6-pack-sf-chronicle-competition','','','2024-11-11 09:57:26','2024-11-11 17:57:26','',0,'https://www.meadowcroftwines.com/product/gold-medal-6-pack-sf-chronicle-competition/',0,'product','',0),(3403,2,'2024-02-12 13:35:28','2024-02-12 21:35:28','','Meadowcroft-2019_Cabernet_Oakville_Bottleshot','','inherit','closed','closed','','meadowcroft-2019_cabernet_oakville_bottleshot-3','','','2024-02-12 13:35:40','2024-02-12 21:35:40','',3400,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/Meadowcroft-2019_Cabernet_Oakville_Bottleshot.png',0,'attachment','image/png',0),(3412,3,'2024-02-21 11:04:42','2024-02-21 19:04:42','','NV Blanc de Blanc Tech Sheet - Revised','','inherit','closed','closed','','nv-blanc-de-blanc-tech-sheet-revised','','','2024-02-21 11:04:42','2024-02-21 19:04:42','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/NV-Blanc-de-Blanc-Tech-Sheet-Revised.pdf',0,'attachment','application/pdf',0),(3413,1,'2024-02-23 14:24:46','2024-02-23 22:24:46','','Fresh Pasta Making Demo &amp; Lunch','','publish','closed','closed','','fresh-pasta-making-demo-lunch','','','2024-03-21 15:13:06','2024-03-21 22:13:06','',0,'https://www.meadowcroftwines.com/product/fresh-pasta-making-demo-lunch/',0,'product','',0),(3415,3,'2024-02-23 14:43:44','2024-02-23 22:43:44','','JoshF-web','','inherit','closed','closed','','joshf-web','','','2024-02-23 14:43:44','2024-02-23 22:43:44','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/JoshF-web.jpg',0,'attachment','image/jpeg',0),(3416,3,'2024-02-23 15:03:38','2024-02-23 23:03:38','','Fresh Pasta Making Demo','','inherit','closed','closed','','fresh-pasta-making-demo','','','2024-02-23 15:03:38','2024-02-23 23:03:38','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/Fresh-Pasta-Making-Demo.pdf',0,'attachment','application/pdf',0),(3417,1,'2024-02-28 11:00:15','2024-02-28 19:00:15','','2023 Pinot Noir, Anderson Valley','','publish','closed','closed','','2023-pinot-noir-anderson-valley','','','2024-07-29 09:54:14','2024-07-29 16:54:14','',0,'https://www.meadowcroftwines.com/product/2022-pinot-noir-anderson-valley-duplicate/',0,'product','',0),(3418,1,'2024-02-28 11:05:04','2024-02-28 19:05:04','','2023 Pinot Noir, Russian River Valley','','publish','closed','closed','','2023-pinot-noir-russian-river-valley','','','2024-11-14 15:40:11','2024-11-14 23:40:11','',0,'https://www.meadowcroftwines.com/product/2022-pinot-noir-russian-river-valley-duplicate/',0,'product','',0),(3419,1,'2024-02-28 11:06:00','2024-02-28 19:06:00','','2023 Pinot Noir, Russian River Valley 375ML','','publish','closed','closed','','2023-pinot-noir-russian-river-valley-375ml','','','2024-02-28 11:07:25','2024-02-28 19:07:25','',0,'https://www.meadowcroftwines.com/product/2023-pinot-noir-russian-river-valley-duplicate/',0,'product','',0),(3420,1,'2024-02-28 11:08:01','2024-02-28 19:08:01','','2022 Cabernet Sauvignon, Wyldvin Vineyard','','publish','closed','closed','','2022-cabernet-sauvignon-wyldvin-vineyard','','','2024-09-27 14:48:14','2024-09-27 21:48:14','',0,'https://www.meadowcroftwines.com/product/2021-cabernet-sauvignon-wyldvin-vineyard-duplicate/',0,'product','',0),(3421,1,'2024-02-28 11:09:40','2024-02-28 19:09:40','','2022 Cabernet Sauvignon, Napa Valley','','publish','closed','closed','','2022-cabernet-sauvignon-napa-valley','','','2024-11-05 10:49:23','2024-11-05 18:49:23','',0,'https://www.meadowcroftwines.com/product/2021-cabernet-sauvignon-napa-valley-duplicate/',0,'product','',0),(3422,1,'2024-02-28 11:11:03','2024-02-28 19:11:03','','2023 Pinot Noir, Anderson Valley (Shiner)','','publish','closed','closed','','2023-pinot-noir-anderson-valley-private-label','','','2024-07-05 14:17:58','2024-07-05 21:17:58','',0,'https://www.meadowcroftwines.com/product/2023-pinot-noir-anderson-valley-duplicate/',0,'product','',0),(3424,1,'2024-02-28 11:17:54','2024-02-28 19:17:54','','2023 Rosé of Grenache, Westfall Vineyard','','publish','closed','closed','','2023-rose-of-grenache-westfall-vineyard','','','2024-04-29 09:47:41','2024-04-29 16:47:41','',0,'https://www.meadowcroftwines.com/product/2022-ros-of-pinot-noir-sonoma-coast-duplicate/',0,'product','',0),(3425,1,'2024-02-28 11:22:24','2024-02-28 19:22:24','','2023 Botanica Consecrata Pinot Gris - Orange Wine','','publish','closed','closed','','2023-botanica-consecrata-pinot-gris-nelson-family-vineyard-mendocino-county','','','2024-07-08 16:25:42','2024-07-08 23:25:42','',0,'https://www.meadowcroftwines.com/product/2022-pinot-gris-nelson-ranch-vineyard-duplicate/',0,'product','',0),(3426,1,'2024-02-28 11:41:19','2024-02-28 19:41:19','','Meadowcroft 2023 Albarino, Paradise Vineyard Sonoma Coast','','publish','closed','closed','','meadowcroft-2023-albarino-paradise-vineyard-sonoma-coast','','','2024-02-28 11:41:19','2024-02-28 19:41:19','',0,'https://www.meadowcroftwines.com/product/meadowcroft-2023-albarino-paradise-vineyard-sonoma-coast/',0,'product','',0),(3427,1,'2024-02-28 11:42:32','2024-02-28 19:42:32','','2023 Albarino, Paradise Vineyard','','publish','closed','closed','','2023-albarino-paradise-vineyard','','','2024-10-02 13:27:03','2024-10-02 20:27:03','',0,'https://www.meadowcroftwines.com/product/2023-sauvignon-blanc-sonoma-coast-duplicate/',0,'product','',0),(3432,3,'2024-02-29 14:21:18','2024-02-29 22:21:18','','NV Blanc de Blanc Tech Sheet - Revised2','','inherit','closed','closed','','nv-blanc-de-blanc-tech-sheet-revised2','','','2024-02-29 14:21:18','2024-02-29 22:21:18','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/NV-Blanc-de-Blanc-Tech-Sheet-Revised2.pdf',0,'attachment','application/pdf',0),(3433,3,'2024-02-29 14:21:37','2024-02-29 22:21:37','','2021-NapaValley-Cabernet-Final (2)','','inherit','closed','closed','','2021-napavalley-cabernet-final-2','','','2024-02-29 14:21:37','2024-02-29 22:21:37','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/02/2021-NapaValley-Cabernet-Final-2.pdf',0,'attachment','application/pdf',0),(3436,1,'2024-03-13 10:39:42','2024-03-13 17:39:42','','Mixed spiced nuts','','publish','closed','closed','','mixed-spiced-nuts','','','2024-03-13 11:02:13','2024-03-13 18:02:13','',0,'https://www.meadowcroftwines.com/product/mixed-spiced-nuts/',0,'product','',0),(3437,1,'2024-03-15 13:06:54','2024-03-15 20:06:54','','Ticket - Paella &amp; Wine Party 2024 - SOLD OUT','','publish','closed','closed','','ticket-paella-wine-party-2024','','','2024-09-05 14:30:11','2024-09-05 21:30:11','',0,'https://www.meadowcroftwines.com/product/ticket-paella-wine-party-2024/',0,'product','',0),(3440,5,'2024-03-18 05:12:57','0000-00-00 00:00:00','<span style=\"font-weight: 400;\">Nestled in the heart of Northern California, Sonoma County is a viticultural haven renowned for its rolling vineyards and world-class wines. But what truly defines the soul of Sonoma\'s wine scene? In a deep exploration of this iconic region, we uncover the rich heritage, unique terroir, innovative winemaking, and the undying spirit of community that combine to form the essence of Sonoma County\'s viticultural story. Join us on a sensory voyage as we go beyond the tasting rooms to reveal the intricate layers of Sonoma\'s wine culture.</span>\r\n<h2><b>Heritage and Tradition: Roots of Sonoma Wine Culture</b></h2>\r\n<h3><b>A Storied Beginning</b></h3>\r\n<span style=\"font-weight: 400;\">The winemaking tradition in Sonoma County predates the Gold Rush era, with the arrival of Spanish missionaries who planted the first vineyards. Since then, Sonoma has weathered wars, Prohibition, and modernization, holding fast to its winemaking legacy. Today, old wine presses and historic vineyards stand as silent witnesses to the past, reminding us of the pioneers who forged this path.</span>\r\n<h3><b>The Pulse of the Family Vineyards</b></h3>\r\n<span style=\"font-weight: 400;\">Family-owned wineries are the backbone of Sonoma\'s wine industry. Each family has a tale to tell, passed down through generations, of triumphs and tribulations, and the making of memorable wines. From the Trione family to the legendary vineyard of Louis Martini, these familial roots run deep and have a profound impact on the styles and philosophies of Sonoma vintners.</span>\r\n<h2><b>Terroir: The Heartbeat of Sonoma Wine Country</b></h2>\r\n<h3><b>A Symphony of Senses</b></h3>\r\n<span style=\"font-weight: 400;\">Sonoma\'s terroir is as diverse as it is distinctive. Coastal breezes kiss the grapevines in Russian River Valley, while the warm, sunny climate in Dry Creek Valley yields opulent Zinfandels. The soil here sings the story of each unique region, from the sandy loam of the Sonoma Valley to the volcanic slopes of Knights Valley.</span>\r\n<h3><b>The Art of Soil and Climate</b></h3>\r\n<span style=\"font-weight: 400;\">Terroir is more than just geography; it\'s about the intersection of soil, climate, and topography, which imparts a sense of place to the wines. Sonoma County experiences a mosaic of microclimates, creating a canvas for winemakers to craft a plethora of varietals that reflect the nuances of their environment.</span>\r\n<h3><b>Sustainability and Innovation: Pioneering Spirits of Sonoma Winemakers</b></h3>\r\n<h3><b>Fostering a Green Revolution</b></h3>\r\n<span style=\"font-weight: 400;\">In the face of environmental challenges, Sonoma winemakers are leading the charge towards sustainable practices. From organic and biodynamic farming to water conservation and wildlife preservation, the commitment to the land is unwavering, ensuring that future generations will continue to be blessed with exceptional wines from Sonoma.</span>\r\n<h3><b>Unleashing the Spirit of Experimentation</b></h3>\r\n<span style=\"font-weight: 400;\">At the same time, Sonoma winemakers do not shy away from innovation. They are the first to experiment with new grape varietals or fermentation techniques, pushing the boundaries of tradition to create groundbreaking wines. This dual approach — steadfast to the old ways yet adventurous in new — is the hallmark of the Sonoma wine scene.</span>\r\n<h2><b>Community and Collaboration: The Spirit of Sonoma Wine Culture</b></h2>\r\n<h3><b>A Tapestry of Tastes and Talents</b></h3>\r\n<span style=\"font-weight: 400;\">The Sonoma wine scene is vibrant and diverse, just like its community. New and established winemakers work side by side, exchanging knowledge, and pushing each other to excel. The collaborative spirit infuses the wines with a collective passion, a shared commitment to celebrate the bounties of the region.</span>\r\n<h3><b>Events and Festivals: The Gathering of Grapes</b></h3>\r\n<span style=\"font-weight: 400;\">Throughout the year, Sonoma County comes alive with wine events that showcase the region\'s rich tapestry. From the robust celebration of Zinfandels at the Sonoma County Harvest Fair to the elegance of Wine and Food Affair, these gatherings are not just about tasting wines but about connecting with the people who make them.</span>\r\n<h3><b>Culinary Pairings: Elevating the Sonoma Wine Experience</b></h3>\r\n<h3><b>A Culinary Canvas</b></h3>\r\n<span style=\"font-weight: 400;\">Sonoma\'s farm-to-table approach makes its wines the perfect complement to the freshest local produce. Chefs and winemakers collaborate to create tasting menus that exalt the flavors of both wine and food. This culinary synergy enhances the tasting experience, offering a holistic expression of the region\'s bounty.</span>\r\n<h3><b>Perfect Pairings</b></h3>\r\n<span style=\"font-weight: 400;\">For the oenophile and food lover, Sonoma County is a playground. Whether it\'s a crisp Chardonnay with locally caught seafood or a robust Cabernet with grass-fed beef, the pairings are sublime. The region\'s commitment to excellence in both wine and cuisine promises a feast for the senses.</span>\r\n<h2><b>Art and Culture: Creative Expressions in Sonoma Wine</b></h2>\r\n<h4><b>A Legacy of Artistry</b></h4>\r\n<span style=\"font-weight: 400;\">Wine has always been intertwined with art and culture, and nowhere is this more evident than in Sonoma County. From the vibrant art that adorns the labels to the stunning architecture of the wineries themselves, creativity infuses every part of the winemaking process.</span>\r\n<h4><b>A Celebration of Creativity</b></h4>\r\n<span style=\"font-weight: 400;\">Cultural events and art exhibitions further underline Sonoma\'s vibrant wine scene. Gallery openings and concerts paired with wine tastings bring together different forms of art, enriching the experience and inviting a broader audience to be part of the cultural dialogue.</span>\r\n<h3><b>Future Directions: Navigating Sonoma\'s Evolving Wine Landscape</b></h3>\r\n<h4><b>The Unfolding Future</b></h4>\r\n<span style=\"font-weight: 400;\">As we look to the future, one thing is certain — Sonoma County\'s wine culture will continue to evolve. New technologies will be embraced, and emerging wine styles will find their place alongside traditional favorites. The region\'s commitment to sustainability and the community promises a dynamic and enduring legacy.</span>\r\n<h4><b>Balancing Growth and Tradition</b></h4>\r\n<span style=\"font-weight: 400;\">With growth comes the challenge of preserving the heritage that makes Sonoma unique. Winemakers and locals alike are working towards a balanced approach, ensuring that as the industry flourishes, it does so in harmony with the land and the values that have shaped it.</span>\r\n<h4><b>Conclusion: </b></h4>\r\n<span style=\"font-weight: 400;\">Our exploration of Sonoma\'s wine culture has been a voyage of discovery, a celebration of all that makes this region extraordinary. From the roots that anchor the traditions to the shoots of innovation that promise a dynamic future, Sonoma\'s wine scene is a living, breathing testament to the love of the land and the craft of winemaking.</span>\r\n\r\n<span style=\"font-weight: 400;\">With every bottle of Sonoma wine, we are invited to partake in this legacy, to savor not just the flavors, but the soul of a place that continues to captivate and inspire wine lovers around the world. Whether you\'re a connoisseur or a newcomer, Sonoma County beckons, ready to share its story, one glass at a time.</span>','Beyond Grapes: Discovering the Soul of Sonoma\'s Wine','','draft','closed','open','','','','','2024-03-18 05:12:57','2024-03-18 12:12:57','',0,'https://www.meadowcroftwines.com/?p=3440',0,'post','',0),(3442,1,'2024-03-21 15:25:56','2024-03-21 22:25:56','','2020 Zinfandel, Speedy Creek Vineyard','','publish','closed','closed','','2020-zinfandel-speedy-creek-vineyard-duplicate','','','2024-09-27 14:44:06','2024-09-27 21:44:06','',0,'https://www.meadowcroftwines.com/product/2019-zinfandel-speedy-creek-vineyard-duplicate/',0,'product','',0),(3443,1,'2024-03-21 15:31:09','2024-03-21 22:31:09','','2022 Cabernet Sauvignon, Napa Valley *SHINER for Private Label*','','publish','closed','closed','','2022-cabernet-sauvignon-napa-valley-private-label','','','2024-03-21 15:32:18','2024-03-21 22:32:18','',0,'https://www.meadowcroftwines.com/product/2022-cabernet-sauvignon-napa-valley-duplicate/',0,'product','',0),(3445,2,'2024-03-22 15:04:52','2024-03-22 22:04:52','','2013 CABERNET SAUVIGNON, MOUNT VEEDER, NAPA VALLEY','','publish','closed','closed','','mount-veeder-napa-valley-cabernet-sauvignon-2013','','','2024-05-15 16:08:19','2024-05-15 23:08:19','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3445',0,'wine_asset','',0),(3449,2,'2024-03-22 15:03:24','2024-03-22 22:03:24','','Meadowcroft-Mount Veeder-Napa Valley Cabernet Sauvignon-Bottleshot','','inherit','closed','closed','','meadowcroft-mount-veeder-napa-valley-cabernet-sauvignon-bottleshot','','','2024-03-22 15:03:49','2024-03-22 22:03:49','',3445,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Mount-Veeder-Napa-Valley-Cabernet-Sauvignon-Bottleshot.png',0,'attachment','image/png',0),(3451,2,'2024-03-22 15:07:38','2024-03-22 22:07:38','','2014 CABERNET SAUVIGNON, MOUNT VEEDER, NAPA VALLEY','','publish','closed','closed','','mount-veeder-napa-valley-cabernet-sauvignon-2014','','','2024-05-15 16:08:07','2024-05-15 23:08:07','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3451',0,'wine_asset','',0),(3452,2,'2024-03-22 15:11:01','2024-03-22 22:11:01','','2015 CABERNET SAUVIGNON, MOUNT VEEDER, NAPA VALLEY','','publish','closed','closed','','mount-veeder-napa-valley-cabernet-sauvignon-2015','','','2024-05-15 16:07:49','2024-05-15 23:07:49','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3452',0,'wine_asset','',0),(3453,2,'2024-03-22 15:48:35','2024-03-22 22:48:35','','2016 CABERNET SAUVIGNON, MOUNT VEEDER, NAPA VALLEY','','publish','closed','closed','','mount-veeder-napa-valley-cabernet-sauvignon-2016','','','2024-05-15 16:07:38','2024-05-15 23:07:38','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3453',0,'wine_asset','',0),(3454,2,'2024-03-22 15:49:54','2024-03-22 22:49:54','','2017 CABERNET SAUVIGNON, MOUNT VEEDER, NAPA VALLEY','','publish','closed','closed','','mount-veeder-napa-valley-cabernet-sauvignon-2017','','','2024-05-15 16:07:26','2024-05-15 23:07:26','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3454',0,'wine_asset','',0),(3456,2,'2024-03-22 15:51:23','2024-03-22 22:51:23','','2018 CABERNET SAUVIGNON, MOUNT VEEDER, NAPA VALLEY','','publish','closed','closed','','mount-veeder-napa-valley-cabernet-sauvignon-2018','','','2024-05-15 16:06:27','2024-05-15 23:06:27','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3456',0,'wine_asset','',0),(3457,2,'2024-03-22 15:52:34','2024-03-22 22:52:34','','2019 CABERNET SAUVIGNON, MOUNT VEEDER, NAPA VALLEY','','publish','closed','closed','','mount-veeder-napa-valley-cabernet-sauvignon-2019','','','2024-05-15 16:06:02','2024-05-15 23:06:02','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3457',0,'wine_asset','',0),(3458,2,'2024-03-22 15:53:58','2024-03-22 22:53:58','','2020 CABERNET SAUVIGNON, MOUNT VEEDER, NAPA VALLEY','','publish','closed','closed','','mount-veeder-napa-valley-cabernet-sauvignon-2020','','','2024-05-15 16:05:49','2024-05-15 23:05:49','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3458',0,'wine_asset','',0),(3460,2,'2024-03-22 16:00:37','2024-03-22 23:00:37','','2016 CABERNET SAUVIGNON, NAPA VALLEY','','publish','closed','closed','','napa-valley-cabernet-sauvignon-2016','','','2024-05-15 16:01:45','2024-05-15 23:01:45','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3460',0,'wine_asset','',0),(3461,2,'2024-03-22 15:58:51','2024-03-22 22:58:51','','Meadowcroft-Napa Valley Cabernet Sauvignon-Bottleshot','','inherit','closed','closed','','meadowcroft-napa-valley-cabernet-sauvignon-bottleshot','','','2024-03-22 15:59:31','2024-03-22 22:59:31','',3460,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Napa-Valley-Cabernet-Sauvignon-Bottleshot.png',0,'attachment','image/png',0),(3464,2,'2024-03-22 16:02:17','2024-03-22 23:02:17','','2017 CABERNET SAUVIGNON, NAPA VALLEY','','publish','closed','closed','','napa-valley-cabernet-sauvignon-2017','','','2024-05-15 16:01:30','2024-05-15 23:01:30','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3464',0,'wine_asset','',0),(3465,2,'2024-03-22 16:04:43','2024-03-22 23:04:43','','2018 CABERNET SAUVIGNON, NAPA VALLEY','','publish','closed','closed','','napa-valley-cabernet-sauvignon-2018','','','2024-05-15 16:01:17','2024-05-15 23:01:17','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3465',0,'wine_asset','',0),(3466,2,'2024-03-22 16:06:00','2024-03-22 23:06:00','','2019 CABERNET SAUVIGNON, NAPA VALLEY','','publish','closed','closed','','napa-valley-cabernet-sauvignon-2019','','','2024-05-15 16:01:00','2024-05-15 23:01:00','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3466',0,'wine_asset','',0),(3467,2,'2024-03-22 16:07:12','2024-03-22 23:07:12','','2020 CABERNET SAUVIGNON, NAPA VALLEY','','publish','closed','closed','','napa-valley-cabernet-sauvignon-2020','','','2024-05-15 16:00:38','2024-05-15 23:00:38','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3467',0,'wine_asset','',0),(3468,2,'2024-03-22 16:09:06','2024-03-22 23:09:06','','2021 CABERNET SAUVIGNON, NAPA VALLEY','','publish','closed','closed','','napa-valley-cabernet-sauvignon-2021','','','2024-05-15 16:00:26','2024-05-15 23:00:26','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3468',0,'wine_asset','',0),(3469,2,'2024-03-22 16:42:39','2024-03-22 23:42:39','','2015 CABERNET SAUVIGNON, LOUVAU/WYLDVIN VINEYARD, DRY CREEK VALLEY','','publish','closed','closed','','dry-creek-valley-louvau-wyldvin-vineyard-cab-sauv-2015','','','2024-05-15 15:59:48','2024-05-15 22:59:48','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3469',0,'wine_asset','',0),(3471,2,'2024-03-22 16:41:38','2024-03-22 23:41:38','','Meadowcroft-Dry Creek Valley-Louvau:Wyldvin Vineyard-Cab Sauv-Bottleshot','','inherit','closed','closed','','meadowcroft-dry-creek-valley-louvauwyldvin-vineyard-cab-sauv-bottleshot','','','2024-03-22 16:41:58','2024-03-22 23:41:58','',3469,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Dry-Creek-Valley-LouvauWyldvin-Vineyard-Cab-Sauv-Bottleshot.png',0,'attachment','image/png',0),(3472,2,'2024-03-22 16:44:11','2024-03-22 23:44:11','','2016 CABERNET SAUVIGNON, LOUVAU/WYLDVIN VINEYARD, DRY CREEK VALLEY','','publish','closed','closed','','dry-creek-valley-louvau-wyldvin-vineyard-cab-sauv-2016','','','2024-05-15 15:59:35','2024-05-15 22:59:35','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3472',0,'wine_asset','',0),(3473,2,'2024-03-22 16:45:09','2024-03-22 23:45:09','','2017 CABERNET SAUVIGNON, LOUVAU/WYLDVIN VINEYARD, DRY CREEK VALLEY','','publish','closed','closed','','dry-creek-valley-louvau-wyldvin-vineyard-cab-sauv-2017','','','2024-05-15 15:59:14','2024-05-15 22:59:14','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3473',0,'wine_asset','',0),(3474,2,'2024-03-22 16:46:08','2024-03-22 23:46:08','','2018 CABERNET SAUVIGNON, LOUVAU/WYLDVIN VINEYARD, DRY CREEK VALLEY','','publish','closed','closed','','dry-creek-valley-louvau-wyldvin-vineyard-cab-sauv-2018','','','2024-05-15 15:59:03','2024-05-15 22:59:03','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3474',0,'wine_asset','',0),(3475,2,'2024-03-22 16:47:09','2024-03-22 23:47:09','','2019 CABERNET SAUVIGNON, LOUVAU/WYLDVIN VINEYARD, DRY CREEK VALLEY','','publish','closed','closed','','dry-creek-valley-louvau-wyldvin-vineyard-cab-sauv-2019','','','2024-05-15 15:58:51','2024-05-15 22:58:51','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3475',0,'wine_asset','',0),(3476,2,'2024-03-22 16:48:03','2024-03-22 23:48:03','','2020 CABERNET SAUVIGNON, LOUVAU/WYLDVIN VINEYARD, DRY CREEK VALLEY','','publish','closed','closed','','dry-creek-valley-louvau-wyldvin-vineyard-cab-sauv-2020','','','2024-05-15 15:58:38','2024-05-15 22:58:38','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3476',0,'wine_asset','',0),(3477,2,'2024-03-22 16:51:50','2024-03-22 23:51:50','','2015 CABERNET SAUVIGNON, NELSON RANCH, MENDOCINO COUNTY','','publish','closed','closed','','cabernet-sauvignon-nelson-ranch-mendocino-county-2015','','','2024-05-15 15:57:39','2024-05-15 22:57:39','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3477',0,'wine_asset','',0),(3478,2,'2024-03-22 16:50:56','2024-03-22 23:50:56','','Meadowcroft-Cab Sauv-Nelson Ranch-Mendocino County-Bottleshot','','inherit','closed','closed','','meadowcroft-cab-sauv-nelson-ranch-mendocino-county-bottleshot','','','2024-03-22 16:51:16','2024-03-22 23:51:16','',3477,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Cab-Sauv-Nelson-Ranch-Mendocino-County-Bottleshot.png',0,'attachment','image/png',0),(3479,2,'2024-03-22 16:52:45','2024-03-22 23:52:45','','2016 CABERNET SAUVIGNON, NELSON RANCH, MENDOCINO COUNTY','','publish','closed','closed','','cabernet-sauvignon-nelson-ranch-mendocino-county-2016','','','2024-05-15 15:57:25','2024-05-15 22:57:25','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3479',0,'wine_asset','',0),(3480,2,'2024-03-22 16:53:41','2024-03-22 23:53:41','','2017 CABERNET SAUVIGNON, NELSON RANCH, MENDOCINO COUNTY','','publish','closed','closed','','cabernet-sauvignon-nelson-ranch-mendocino-county-2017','','','2024-05-15 15:57:12','2024-05-15 22:57:12','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3480',0,'wine_asset','',0),(3481,2,'2024-03-22 16:54:40','2024-03-22 23:54:40','','2018 CABERNET SAUVIGNON, NELSON RANCH, MENDOCINO COUNTY','','publish','closed','closed','','cabernet-sauvignon-nelson-ranch-mendocino-county-2018','','','2024-05-15 15:57:00','2024-05-15 22:57:00','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3481',0,'wine_asset','',0),(3482,2,'2024-03-22 16:55:37','2024-03-22 23:55:37','','2019 CABERNET SAUVIGNON, NELSON RANCH, MENDOCINO COUNTY','','publish','closed','closed','','cabernet-sauvignon-nelson-ranch-mendocino-county-2019','','','2024-05-15 15:56:48','2024-05-15 22:56:48','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3482',0,'wine_asset','',0),(3484,2,'2024-03-22 17:07:26','2024-03-23 00:07:26','','2021 CABERNET SAUVIGNON, NELSON RANCH, MENDOCINO COUNTY','','publish','closed','closed','','cabernet-sauvignon-nelson-ranch-mendocino-county-2021','','','2024-05-15 15:56:32','2024-05-15 22:56:32','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3484',0,'wine_asset','',0),(3485,2,'2024-03-22 17:32:45','2024-03-23 00:32:45','','2020 CABERNET SAUVIGNON, RED HILLS, LAKE COUNTY','','publish','closed','closed','','red-hills-lake-county-cabernet-sauvignon','','','2024-05-15 15:55:49','2024-05-15 22:55:49','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3485',0,'wine_asset','',0),(3487,2,'2024-03-22 17:32:10','2024-03-23 00:32:10','','Meadowcroft-Red Hills-Lake County Cabernet Sauvignon-Bottleshot','','inherit','closed','closed','','meadowcroft-red-hills-lake-county-cabernet-sauvignon-bottleshot','','','2024-03-22 17:32:39','2024-03-23 00:32:39','',3485,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Red-Hills-Lake-County-Cabernet-Sauvignon-Bottleshot.png',0,'attachment','image/png',0),(3488,2,'2024-03-22 17:37:34','2024-03-23 00:37:34','','2016 RIVER TRACE GRENACHE SYRAH MOURVEDRE','','publish','closed','closed','','river-trace-grenache-syrah-mourvedre','','','2024-05-15 15:54:41','2024-05-15 22:54:41','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3488',0,'wine_asset','',0),(3489,2,'2024-03-22 17:37:08','2024-03-23 00:37:08','','Meadowcroft-River Trace-Grenache Syrah Mourvedre-Bottleshot','','inherit','closed','closed','','meadowcroft-river-trace-grenache-syrah-mourvedre-bottleshot','','','2024-03-22 17:37:26','2024-03-23 00:37:26','',3488,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-River-Trace-Grenache-Syrah-Mourvedre-Bottleshot.png',0,'attachment','image/png',0),(3490,2,'2024-03-22 17:40:23','2024-03-23 00:40:23','','2017 RIVER TRACE GRENACHE SYRAH MOURVEDRE','','publish','closed','closed','','river-trace-grenache-syrah-mourvedre-2017','','','2024-05-15 15:54:29','2024-05-15 22:54:29','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3490',0,'wine_asset','',0),(3491,2,'2024-03-22 17:42:23','2024-03-23 00:42:23','','2019 RIVER TRACE GRENACHE SYRAH MOURVEDRE','','publish','closed','closed','','river-trace-grenache-syrah-mourvedre-2019','','','2024-05-15 15:54:18','2024-05-15 22:54:18','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3491',0,'wine_asset','',0),(3492,2,'2024-03-22 17:43:39','2024-03-23 00:43:39','','2020 RIVER TRACE GRENACHE SYRAH MOURVEDRE','','publish','closed','closed','','river-trace-grenache-syrah-mourvedre-2020','','','2024-05-15 15:54:07','2024-05-15 22:54:07','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3492',0,'wine_asset','',0),(3493,2,'2024-03-22 17:45:01','2024-03-23 00:45:01','','2021 RIVER TRACE GRENACHE SYRAH MOURVEDRE','','publish','closed','closed','','river-trace-grenache-syrah-mourvedre-2021','','','2024-05-15 15:53:52','2024-05-15 22:53:52','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3493',0,'wine_asset','',0),(3494,2,'2024-03-22 17:49:15','2024-03-23 00:49:15','','NV ANNIVERSARY CUVEE, NAPA VALLEY','','publish','closed','closed','','anniversary-cuvee-nv-napa-valley','','','2024-05-15 15:53:12','2024-05-15 22:53:12','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3494',0,'wine_asset','',0),(3495,2,'2024-03-22 17:48:50','2024-03-23 00:48:50','','Meadowcroft-Anniversary Cuvee-NV-Napa Valley-Bottleshot','','inherit','closed','closed','','meadowcroft-anniversary-cuvee-nv-napa-valley-bottleshot','','','2024-03-22 17:49:08','2024-03-23 00:49:08','',3494,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Anniversary-Cuvee-NV-Napa-Valley-Bottleshot.png',0,'attachment','image/png',0),(3497,2,'2024-03-22 17:53:09','2024-03-23 00:53:09','','2017 RED BLEND, THE PANORAMA, STAGS LEAP DISTRICT','','publish','closed','closed','','napa-valley-the-panorama-red-blend-stags-leap-district-2017','','','2024-05-15 15:52:58','2024-05-15 22:52:58','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3497',0,'wine_asset','',0),(3498,2,'2024-03-22 17:52:34','2024-03-23 00:52:34','','Meadowcroft-Napa Valley-Panorama Red Blend-Stag\'s Leap District','','inherit','closed','closed','','meadowcroft-napa-valley-panorama-red-blend-stags-leap-district','','','2024-03-22 17:52:57','2024-03-23 00:52:57','',3497,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Napa-Valley-Panorama-Red-Blend-Stags-Leap-District.png',0,'attachment','image/png',0),(3499,2,'2024-03-22 17:57:40','2024-03-23 00:57:40','','2017 RED BLEND, THE PANORAMA, NAPA VALLEY','','publish','closed','closed','','napa-valley-the-panorama-red-blend-2017','','','2024-05-15 15:52:34','2024-05-15 22:52:34','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3499',0,'wine_asset','',0),(3500,2,'2024-03-22 17:57:03','2024-03-23 00:57:03','','Meadowcroft-Napa Valley-Panorama Red Blend-Bottleshot','','inherit','closed','closed','','meadowcroft-napa-valley-panorama-red-blend-bottleshot','','','2024-03-22 17:57:30','2024-03-23 00:57:30','',3499,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Napa-Valley-Panorama-Red-Blend-Bottleshot.png',0,'attachment','image/png',0),(3501,2,'2024-03-25 10:27:11','2024-03-25 17:27:11','','2010 ZINFANDEL, SPEEDY CREEK VINEYARD, KNIGHT\'S VALLEY','','publish','closed','closed','','speedy-creek-zinfandel-2010','','','2024-05-15 15:51:58','2024-05-15 22:51:58','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3501',0,'wine_asset','',0),(3502,2,'2024-03-25 10:26:37','2024-03-25 17:26:37','','Meadowcroft-Speedy Creek Zinfandel-Bottleshot','','inherit','closed','closed','','meadowcroft-speedy-creek-zinfandel-bottleshot','','','2024-03-25 10:26:58','2024-03-25 17:26:58','',3501,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Speedy-Creek-Zinfandel-Bottleshot.png',0,'attachment','image/png',0),(3503,2,'2024-03-25 10:28:26','2024-03-25 17:28:26','','2011 ZINFANDEL, SPEEDY CREEK VINEYARD, KNIGHT\'S VALLEY','','publish','closed','closed','','speedy-creek-zinfandel-2011','','','2024-05-15 15:51:45','2024-05-15 22:51:45','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3503',0,'wine_asset','',0),(3504,2,'2024-03-25 10:29:35','2024-03-25 17:29:35','','2012 ZINFANDEL, SPEEDY CREEK VINEYARD, KNIGHT\'S VALLEY','','publish','closed','closed','','speedy-creek-zinfandel-2012','','','2024-05-15 15:51:33','2024-05-15 22:51:33','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3504',0,'wine_asset','',0),(3505,2,'2024-03-25 10:30:42','2024-03-25 17:30:42','','2013 ZINFANDEL, SPEEDY CREEK VINEYARD, KNIGHT\'S VALLEY','','publish','closed','closed','','speedy-creek-zinfandel-2013','','','2024-05-15 15:51:21','2024-05-15 22:51:21','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3505',0,'wine_asset','',0),(3506,2,'2024-03-25 10:32:40','2024-03-25 17:32:40','','2014 ZINFANDEL, SPEEDY CREEK VINEYARD, KNIGHT\'S VALLEY','','publish','closed','closed','','speedy-creek-zinfandel-2014','','','2024-05-15 15:51:10','2024-05-15 22:51:10','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3506',0,'wine_asset','',0),(3507,2,'2024-03-25 10:33:40','2024-03-25 17:33:40','','2018 ZINFANDEL, SPEEDY CREEK VINEYARD, KNIGHT\'S VALLEY','','publish','closed','closed','','speedy-creek-zinfandel-2018','','','2024-05-15 15:50:52','2024-05-15 22:50:52','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3507',0,'wine_asset','',0),(3508,2,'2024-03-25 10:34:38','2024-03-25 17:34:38','','2019 ZINFANDEL, SPEEDY CREEK VINEYARD, KNIGHT\'S VALLEY','','publish','closed','closed','','speedy-creek-zinfandel-2019','','','2024-05-15 15:50:30','2024-05-15 22:50:30','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3508',0,'wine_asset','',0),(3509,2,'2024-03-25 10:47:51','2024-03-25 17:47:51','','2020 ZINFANDEL, MAE VINEYARD, DRY CREEK VALLEY','','publish','closed','closed','','mae-vineyard-dry-creek-valley-zinfandel','','','2024-05-15 15:49:31','2024-05-15 22:49:31','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3509',0,'wine_asset','',0),(3510,2,'2024-03-25 10:47:15','2024-03-25 17:47:15','','Meadowcroft-Mae Vineyard-Dry Creek Valley Zinfandel-Bottleshot','','inherit','closed','closed','','meadowcroft-mae-vineyard-dry-creek-valley-zinfandel-bottleshot','','','2024-03-25 10:47:39','2024-03-25 17:47:39','',3509,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Mae-Vineyard-Dry-Creek-Valley-Zinfandel-Bottleshot.png',0,'attachment','image/png',0),(3511,2,'2024-03-25 10:51:39','2024-03-25 17:51:39','','2016 ZINFANDEL, OLD VINE, AMADOR COUNTY','','publish','closed','closed','','old-vine-amador-county-zinfandel-2016','','','2024-05-15 15:47:54','2024-05-15 22:47:54','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3511',0,'wine_asset','',0),(3512,2,'2024-03-25 10:50:52','2024-03-25 17:50:52','','Meadowcroft-Old-Vine-Amador-County-Zinfandel-Bottleshot','','inherit','closed','closed','','meadowcroft-old-vine-amador-county-zinfandel-bottleshot','','','2024-03-25 10:51:13','2024-03-25 17:51:13','',3511,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Old-Vine-Amador-County-Zinfandel-Bottleshot.png',0,'attachment','image/png',0),(3513,2,'2024-03-25 10:52:55','2024-03-25 17:52:55','','2018 ZINFANDEL, OLD VINE, AMADOR COUNTY','','publish','closed','closed','','old-vine-amador-county-zinfandel-2018','','','2024-05-15 15:47:41','2024-05-15 22:47:41','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3513',0,'wine_asset','',0),(3514,2,'2024-03-25 11:18:44','2024-03-25 18:18:44','','2014 CRU DE LA RUCHE MALBEC','','publish','closed','closed','','cru-de-la-ruche-malbec-2014','','','2024-05-15 15:47:07','2024-05-15 22:47:07','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3514',0,'wine_asset','',0),(3515,2,'2024-03-25 11:17:45','2024-03-25 18:17:45','','Meadowcroft-Cru De La Ruche-Malbec-Bottleshot','','inherit','closed','closed','','meadowcroft-cru-de-la-ruche-malbec-bottleshot','','','2024-03-25 11:18:22','2024-03-25 18:18:22','',3514,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Cru-De-La-Ruche-Malbec-Bottleshot.png',0,'attachment','image/png',0),(3516,2,'2024-03-25 11:19:44','2024-03-25 18:19:44','','2016 CRU DE LA RUCHE MALBEC','','publish','closed','closed','','cru-de-la-ruche-malbec-2016','','','2024-05-15 15:46:50','2024-05-15 22:46:50','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3516',0,'wine_asset','',0),(3518,2,'2024-03-25 11:21:56','2024-03-25 18:21:56','','CRU DE LA RUCHE | MALBEC 2017','','publish','closed','closed','','cru-de-la-ruche-malbec-2017','','','2024-03-25 11:21:56','2024-03-25 18:21:56','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3518',0,'wine_asset','',0),(3519,2,'2024-03-25 11:23:12','2024-03-25 18:23:12','','2018 CRU DE LA RUCHE MALBEC','','publish','closed','closed','','cru-de-la-ruche-malbec-2018','','','2024-05-15 15:46:28','2024-05-15 22:46:28','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3519',0,'wine_asset','',0),(3520,2,'2024-03-25 11:24:30','2024-03-25 18:24:30','','2019 CRU DE LA RUCHE MALBEC','','publish','closed','closed','','cru-de-la-ruche-malbec-2019','','','2024-05-15 15:46:12','2024-05-15 22:46:12','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3520',0,'wine_asset','',0),(3521,2,'2024-03-25 11:26:20','2024-03-25 18:26:20','','2020 CRU DE LA RUCHE MALBEC','','publish','closed','closed','','cru-de-la-ruche-malbec-2020','','','2024-05-15 15:45:57','2024-05-15 22:45:57','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3521',0,'wine_asset','',0),(3522,2,'2024-03-25 11:38:12','2024-03-25 18:38:12','','2014 SYRAH, CALIFORNIA','','publish','closed','closed','','california-syrah-2014','','','2024-05-13 14:30:54','2024-05-13 21:30:54','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3522',0,'wine_asset','',0),(3524,2,'2024-03-25 11:37:42','2024-03-25 18:37:42','','Meadowcroft-California Syrah-Bottleshot','','inherit','closed','closed','','meadowcroft-california-syrah-bottleshot','','','2024-03-25 11:37:59','2024-03-25 18:37:59','',3522,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-California-Syrah-Bottleshot.png',0,'attachment','image/png',0),(3525,2,'2024-03-25 11:50:18','2024-03-25 18:50:18','','2018 SYRAH, CALIFORNIA','','publish','closed','closed','','california-syrah-2018','','','2024-05-13 14:30:32','2024-05-13 21:30:32','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3525',0,'wine_asset','',0),(3526,2,'2024-03-25 11:54:07','2024-03-25 18:54:07','','2015 PINOT NOIR, CORNERSTONE VINEYARD','','publish','closed','closed','','cornerstone-vineyard-pinot-noir-2015','','','2024-05-13 14:30:12','2024-05-13 21:30:12','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3526',0,'wine_asset','',0),(3527,2,'2024-03-25 11:52:54','2024-03-25 18:52:54','','Meadowcroft-Cornerstone Vineyard Pinot Noir-Bottleshot','','inherit','closed','closed','','meadowcroft-cornerstone-vineyard-pinot-noir-bottleshot','','','2024-03-25 11:53:45','2024-03-25 18:53:45','',3526,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Cornerstone-Vineyard-Pinot-Noir-Bottleshot.png',0,'attachment','image/png',0),(3528,2,'2024-03-25 11:55:18','2024-03-25 18:55:18','','2016 PINOT NOIR, CORNERSTONE VINEYARD','','publish','closed','closed','','cornerstone-vineyard-pinot-noir-2016','','','2024-05-13 14:29:55','2024-05-13 21:29:55','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3528',0,'wine_asset','',0),(3530,2,'2024-03-25 11:57:28','2024-03-25 18:57:28','','2018 PINOT NOIR, CORNERSTONE VINEYARD','','publish','closed','closed','','cornerstone-vineyard-pinot-noir-2018','','','2024-05-13 14:29:44','2024-05-13 21:29:44','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3530',0,'wine_asset','',0),(3531,2,'2024-03-25 11:58:33','2024-03-25 18:58:33','','2019 PINOT NOIR, CORNERSTONE VINEYARD','','publish','closed','closed','','cornerstone-vineyard-pinot-noir-2019','','','2024-05-13 14:29:34','2024-05-13 21:29:34','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3531',0,'wine_asset','',0),(3532,2,'2024-03-25 11:59:29','2024-03-25 18:59:29','','2020 PINOT NOIR, CORNERSTONE VINEYARD','','publish','closed','closed','','cornerstone-vineyard-pinot-noir-2020','','','2024-05-13 14:29:16','2024-05-13 21:29:16','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3532',0,'wine_asset','',0),(3533,2,'2024-03-25 12:03:44','2024-03-25 19:03:44','','2018 PINOT NOIR, SONOMA COAST','','publish','closed','closed','','sonoma-coast-pinot-noir-2018','','','2024-05-13 14:28:49','2024-05-13 21:28:49','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3533',0,'wine_asset','',0),(3534,2,'2024-03-25 12:03:07','2024-03-25 19:03:07','','Meadowcroft-Sonoma Coast Pinot Noir-Bottleshot','','inherit','closed','closed','','meadowcroft-sonoma-coast-pinot-noir-bottleshot','','','2024-03-25 12:03:16','2024-03-25 19:03:16','',3533,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Sonoma-Coast-Pinot-Noir-Bottleshot.png',0,'attachment','image/png',0),(3535,2,'2024-03-25 12:05:58','2024-03-25 19:05:58','','2019 PINOT NOIR, SONOMA COAST','','publish','closed','closed','','sonoma-coast-pinot-noir-2019','','','2024-05-13 14:28:35','2024-05-13 21:28:35','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3535',0,'wine_asset','',0),(3536,2,'2024-03-25 12:07:00','2024-03-25 19:07:00','','2021 PINOT NOIR, SONOMA COAST','','publish','closed','closed','','sonoma-coast-pinot-noir-2021','','','2024-05-13 14:28:19','2024-05-13 21:28:19','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3536',0,'wine_asset','',0),(3537,2,'2024-03-25 12:07:53','2024-03-25 19:07:53','','2022 PINOT NOIR, SONOMA COAST','','publish','closed','closed','','sonoma-coast-pinot-noir-2022','','','2024-05-13 14:28:06','2024-05-13 21:28:06','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3537',0,'wine_asset','',0),(3538,2,'2024-03-25 13:43:22','2024-03-25 20:43:22','','2018 PINOT NOIR, RUSSIAN RIVER VALLEY','','publish','closed','closed','','russian-river-valley-pinot-noir-2018','','','2024-05-13 14:26:23','2024-05-13 21:26:23','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3538',0,'wine_asset','',0),(3539,2,'2024-03-25 13:42:44','2024-03-25 20:42:44','','Meadowcroft-Russian River Valley Pinot Noir_Bottleshot','','inherit','closed','closed','','meadowcroft-russian-river-valley-pinot-noir_bottleshot','','','2024-03-25 13:42:54','2024-03-25 20:42:54','',3538,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Russian-River-Valley-Pinot-Noir_Bottleshot.png',0,'attachment','image/png',0),(3540,2,'2024-03-25 13:44:18','2024-03-25 20:44:18','','2019 PINOT NOIR, RUSSIAN RIVER VALLEY','','publish','closed','closed','','russian-river-valley-pinot-noir-2019','','','2024-05-13 14:26:10','2024-05-13 21:26:10','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3540',0,'wine_asset','',0),(3541,2,'2024-03-25 13:45:15','2024-03-25 20:45:15','','2020 PINOT NOIR, RUSSIAN RIVER VALLEY','','publish','closed','closed','','russian-river-valley-pinot-noir-2020','','','2024-05-13 14:25:58','2024-05-13 21:25:58','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3541',0,'wine_asset','',0),(3542,2,'2024-03-25 13:46:33','2024-03-25 20:46:33','','2021 PINOT NOIR, RUSSIAN RIVER VALLEY','','publish','closed','closed','','russian-river-valley-pinot-noir-2021','','','2024-05-13 14:25:45','2024-05-13 21:25:45','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3542',0,'wine_asset','',0),(3543,2,'2024-03-25 13:50:13','2024-03-25 20:50:13','','2022 PINOT NOIR, RUSSIAN RIVER VALLEY','','publish','closed','closed','','russian-river-valley-pinot-noir-2022','','','2024-05-13 14:25:34','2024-05-13 21:25:34','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3543',0,'wine_asset','',0),(3544,2,'2024-03-25 13:54:14','2024-03-25 20:54:14','','2015 PINOT NOIR, ANDERSON VALLEY','','publish','closed','closed','','anderson-valley-pinot-noir-2015','','','2024-05-13 14:25:03','2024-05-13 21:25:03','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3544',0,'wine_asset','',0),(3545,2,'2024-03-25 13:53:38','2024-03-25 20:53:38','','Meadowcroft-Anderson Valley Pinot Noir-Bottleshot','','inherit','closed','closed','','meadowcroft-anderson-valley-pinot-noir-bottleshot','','','2024-03-25 13:53:55','2024-03-25 20:53:55','',3544,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Anderson-Valley-Pinot-Noir-Bottleshot.png',0,'attachment','image/png',0),(3546,2,'2024-03-25 13:55:28','2024-03-25 20:55:28','','2016 PINOT NOIR, ANDERSON VALLEY','','publish','closed','closed','','anderson-valley-pinot-noir-2016','','','2024-05-13 14:24:51','2024-05-13 21:24:51','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3546',0,'wine_asset','',0),(3547,2,'2024-03-25 13:56:34','2024-03-25 20:56:34','','2018 PINOT NOIR, ANDERSON VALLEY','','publish','closed','closed','','anderson-valley-pinot-noir-2018','','','2024-05-13 14:24:38','2024-05-13 21:24:38','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3547',0,'wine_asset','',0),(3548,2,'2024-03-25 13:57:31','2024-03-25 20:57:31','','2019 PINOT NOIR, ANDERSON VALLEY','','publish','closed','closed','','anderson-valley-pinot-noir-2019','','','2024-05-13 14:24:27','2024-05-13 21:24:27','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3548',0,'wine_asset','',0),(3549,2,'2024-03-25 13:58:19','2024-03-25 20:58:19','','2020 PINOT NOIR, ANDERSON VALLEY','','publish','closed','closed','','anderson-valley-pinot-noir-2020','','','2024-05-13 14:24:07','2024-05-13 21:24:07','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3549',0,'wine_asset','',0),(3550,2,'2024-03-25 13:59:25','2024-03-25 20:59:25','','2021 PINOT NOIR, ANDERSON VALLEY','','publish','closed','closed','','anderson-valley-pinot-noir-2021','','','2024-05-13 14:23:56','2024-05-13 21:23:56','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3550',0,'wine_asset','',0),(3551,2,'2024-03-25 14:31:23','2024-03-25 21:31:23','','2015 PINOT NOIR, NAPA CARNEROS','','publish','closed','closed','','napa-carneros-napa-pinot-noir-2015','','','2024-05-13 14:23:34','2024-05-13 21:23:34','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3551',0,'wine_asset','',0),(3552,2,'2024-03-25 14:30:18','2024-03-25 21:30:18','','Meadowcroft-Napa Carneros-Napa Pinot Noir-Bottleshot','','inherit','closed','closed','','meadowcroft-napa-carneros-napa-pinot-noir-bottleshot','','','2024-03-25 14:30:42','2024-03-25 21:30:42','',3551,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Napa-Carneros-Napa-Pinot-Noir-Bottleshot.png',0,'attachment','image/png',0),(3553,2,'2024-03-25 14:32:26','2024-03-25 21:32:26','','2016 PINOT NOIR, NAPA CARNEROS','','publish','closed','closed','','napa-carneros-napa-pinot-noir-2016','','','2024-05-13 14:23:24','2024-05-13 21:23:24','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3553',0,'wine_asset','',0),(3554,2,'2024-03-25 14:33:50','2024-03-25 21:33:50','','2017 PINOT NOIR, NAPA CARNEROS','','publish','closed','closed','','napa-carneros-napa-pinot-noir-2017','','','2024-05-13 14:23:06','2024-05-13 21:23:06','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3554',0,'wine_asset','',0),(3555,2,'2024-03-25 14:34:55','2024-03-25 21:34:55','','2021 PINOT NOIR, NAPA CARNEROS','','publish','closed','closed','','napa-carneros-napa-pinot-noir-2021','','','2024-05-13 14:22:54','2024-05-13 21:22:54','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3555',0,'wine_asset','',0),(3557,2,'2024-03-25 14:47:46','2024-03-25 21:47:46','','2018 CABERNET FRANC, RIVINO VINEYARD, MENDOCINO COUNTY','','publish','closed','closed','','cabernet-franc-rivino-vineyard-2018','','','2024-05-13 14:22:13','2024-05-13 21:22:13','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3557',0,'wine_asset','',0),(3559,3,'2024-03-25 14:45:58','2024-03-25 21:45:58','','2022-PinotNoir-NapaCarneros','','inherit','closed','closed','','2022-pinotnoir-napacarneros','','','2024-05-22 11:45:40','2024-05-22 18:45:40','',3783,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/2022-PinotNoir-NapaCarneros.pdf',0,'attachment','application/pdf',0),(3560,2,'2024-03-25 14:47:01','2024-03-25 21:47:01','','Meadowcroft-Cabernet Franc Rivino Vineyard_Bottleshot','','inherit','closed','closed','','meadowcroft-cabernet-franc-rivino-vineyard_bottleshot','','','2024-03-25 14:47:23','2024-03-25 21:47:23','',3557,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Cabernet-Franc-Rivino-Vineyard_Bottleshot.png',0,'attachment','image/png',0),(3561,2,'2024-03-25 14:48:54','2024-03-25 21:48:54','','2021 CABERNET FRANC, RIVINO VINEYARD, MENDOCINO COUNTY','','publish','closed','closed','','cabernet-franc-rivino-vineyard-2021','','','2024-05-13 14:22:00','2024-05-13 21:22:00','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3561',0,'wine_asset','',0),(3563,2,'2024-03-25 14:56:27','2024-03-25 21:56:27','','2015 CHARDONNAY, SONOMA COAST','','publish','closed','closed','','sonoma-coast-chardonnay-2015','','','2024-05-13 14:21:30','2024-05-13 21:21:30','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3563',0,'wine_asset','',0),(3564,2,'2024-03-25 14:55:56','2024-03-25 21:55:56','','Meadowcroft-Sonoma Coast Chardonnay-Bottleshot','','inherit','closed','closed','','meadowcroft-sonoma-coast-chardonnay-bottleshot','','','2024-03-25 14:56:11','2024-03-25 21:56:11','',3563,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Sonoma-Coast-Chardonnay-Bottleshot.png',0,'attachment','image/png',0),(3565,2,'2024-03-25 15:08:05','2024-03-25 22:08:05','','2020 CHARDONNAY, SONOMA COAST','','publish','closed','closed','','sonoma-coast-chardonnay-2020','','','2024-05-13 14:21:17','2024-05-13 21:21:17','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3565',0,'wine_asset','',0),(3566,2,'2024-03-25 15:09:02','2024-03-25 22:09:02','','2021 CHARDONNAY, SONOMA COAST','','publish','closed','closed','','sonoma-coast-chardonnay-2021','','','2024-05-13 14:21:06','2024-05-13 21:21:06','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3566',0,'wine_asset','',0),(3567,2,'2024-03-25 15:18:35','2024-03-25 22:18:35','','2019 CHARDONNAY, CARNEROS, NAPA VALLEY','','publish','closed','closed','','napa-valley-carneros-chardonnay-2019','','','2024-05-13 14:20:39','2024-05-13 21:20:39','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3567',0,'wine_asset','',0),(3568,2,'2024-03-25 15:17:54','2024-03-25 22:17:54','','Meadowcroft-Napa Valley-Carneros Chardonnay-Bottleshot','','inherit','closed','closed','','meadowcroft-napa-valley-carneros-chardonnay-bottleshot','','','2024-03-25 15:18:05','2024-03-25 22:18:05','',3567,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Napa-Valley-Carneros-Chardonnay-Bottleshot.png',0,'attachment','image/png',0),(3569,2,'2024-03-25 15:19:21','2024-03-25 22:19:21','','2020 CHARDONNAY, CARNEROS, NAPA VALLEY','','publish','closed','closed','','napa-valley-carneros-chardonnay-2020','','','2024-05-13 14:20:25','2024-05-13 21:20:25','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3569',0,'wine_asset','',0),(3570,2,'2024-03-25 15:20:15','2024-03-25 22:20:15','','2021 CHARDONNAY, CARNEROS, NAPA VALLEY','','publish','closed','closed','','napa-valley-carneros-chardonnay-2021','','','2024-05-13 14:20:12','2024-05-13 21:20:12','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3570',0,'wine_asset','',0),(3571,2,'2024-03-25 15:21:06','2024-03-25 22:21:06','','2022 CHARDONNAY, CARNEROS, NAPA VALLEY','','publish','closed','closed','','napa-valley-carneros-chardonnay-2022','','','2024-05-13 14:19:59','2024-05-13 21:19:59','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3571',0,'wine_asset','',0),(3573,2,'2024-03-25 15:22:47','2024-03-25 22:22:47','','Meadowcroft-Carneros-Sonoma County Chardonnay-Bottleshot','','inherit','closed','closed','','meadowcroft-carneros-sonoma-county-chardonnay-bottleshot','','','2024-05-13 14:17:38','2024-05-13 21:17:38','',3576,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Carneros-Sonoma-County-Chardonnay-Bottleshot.png',0,'attachment','image/png',0),(3574,2,'2024-03-25 15:23:58','2024-03-25 22:23:58','','2016 CHARDONNAY, CARNEROS, SONOMA COUNTY','','publish','closed','closed','','carneros-sonoma-county-chardonnay-2016','','','2024-05-13 14:19:22','2024-05-13 21:19:22','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3574',0,'wine_asset','',0),(3575,2,'2024-03-25 15:24:46','2024-03-25 22:24:46','','2018 CHARDONNAY, CARNEROS, SONOMA COUNTY','','publish','closed','closed','','carneros-sonoma-county-chardonnay-2018','','','2024-05-13 14:18:57','2024-05-13 21:18:57','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3575',0,'wine_asset','',0),(3576,2,'2024-03-25 15:25:30','2024-03-25 22:25:30','','2019 CHARDONNAY, CARNEROS, SONOMA COUNTY','','publish','closed','closed','','carneros-sonoma-county-chardonnay-2019','','','2024-05-13 14:17:38','2024-05-13 21:17:38','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3576',0,'wine_asset','',0),(3577,2,'2024-03-25 15:27:42','2024-03-25 22:27:42','','2016 CHARDONNAY, RUSSIAN RIVER VALLEY','','publish','closed','closed','','chardonnay-russian-river-valley-2016','','','2024-05-13 14:16:43','2024-05-13 21:16:43','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3577',0,'wine_asset','',0),(3578,2,'2024-03-25 15:27:16','2024-03-25 22:27:16','','Meadowcroft-Chardonnay-Russian River Valley-Bottleshot','','inherit','closed','closed','','meadowcroft-chardonnay-russian-river-valley-bottleshot','','','2024-03-25 15:27:36','2024-03-25 22:27:36','',3577,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Chardonnay-Russian-River-Valley-Bottleshot.png',0,'attachment','image/png',0),(3579,2,'2024-03-25 15:30:56','2024-03-25 22:30:56','','2021 CHARDONNAY, ANDERSON VALLEY','','publish','closed','closed','','chardonnay-anderson-valley-2021','','','2024-05-13 14:16:26','2024-05-13 21:16:26','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3579',0,'wine_asset','',0),(3580,2,'2024-03-25 15:30:35','2024-03-25 22:30:35','','Meadowcroft-Chardonnay-Anderson Valley-Bottleshot','','inherit','closed','closed','','meadowcroft-chardonnay-anderson-valley-bottleshot','','','2024-03-25 15:30:50','2024-03-25 22:30:50','',3579,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Chardonnay-Anderson-Valley-Bottleshot.png',0,'attachment','image/png',0),(3581,2,'2024-03-25 15:41:09','2024-03-25 22:41:09','','2018 VIOGNIER, DRY CREEK VALLEY','','publish','closed','closed','','viognier-dry-creek-valley-2018','','','2024-05-13 14:16:03','2024-05-13 21:16:03','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3581',0,'wine_asset','',0),(3582,2,'2024-03-25 15:40:45','2024-03-25 22:40:45','','Meadowcroft-Viognier-Dry Creek Valley-Bottleshot','','inherit','closed','closed','','meadowcroft-viognier-dry-creek-valley-bottleshot','','','2024-03-25 15:40:58','2024-03-25 22:40:58','',3581,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Viognier-Dry-Creek-Valley-Bottleshot.png',0,'attachment','image/png',0),(3583,2,'2024-03-25 15:41:57','2024-03-25 22:41:57','','2019 VIOGNIER, DRY CREEK VALLEY','','publish','closed','closed','','viognier-dry-creek-valley-2019','','','2024-05-13 14:15:47','2024-05-13 21:15:47','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3583',0,'wine_asset','',0),(3584,2,'2024-03-25 15:42:42','2024-03-25 22:42:42','','2020 VIOGNIER, DRY CREEK VALLEY','','publish','closed','closed','','viognier-dry-creek-valley-2020','','','2024-05-13 14:15:28','2024-05-13 21:15:28','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3584',0,'wine_asset','',0),(3585,2,'2024-03-25 15:43:34','2024-03-25 22:43:34','','2021 VIOGNIER, DRY CREEK VALLEY','','publish','closed','closed','','viognier-dry-creek-valley-2021','','','2024-05-13 14:15:10','2024-05-13 21:15:10','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3585',0,'wine_asset','',0),(3586,2,'2024-03-25 15:44:24','2024-03-25 22:44:24','','2022 VIOGNIER, DRY CREEK VALLEY','','publish','closed','closed','','viognier-dry-creek-valley-2022','','','2024-05-13 14:14:54','2024-05-13 21:14:54','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3586',0,'wine_asset','',0),(3587,2,'2024-03-25 16:12:09','2024-03-25 23:12:09','','2020 PINOT BLANC, NELSON RANCH, MENDOCINO','','publish','closed','closed','','pinot-blanc-nelson-ranch-vineyard-mendocino-2020','','','2024-05-13 14:14:39','2024-05-13 21:14:39','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3587',0,'wine_asset','',0),(3588,2,'2024-03-25 16:11:34','2024-03-25 23:11:34','','Meadowcroft-Pinot Blanc-Nelson Ranch Vineyard-Mendocino-Bottleshot','','inherit','closed','closed','','meadowcroft-pinot-blanc-nelson-ranch-vineyard-mendocino-bottleshot','','','2024-03-25 16:11:48','2024-03-25 23:11:48','',3587,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Pinot-Blanc-Nelson-Ranch-Vineyard-Mendocino-Bottleshot.png',0,'attachment','image/png',0),(3589,2,'2024-03-25 16:13:12','2024-03-25 23:13:12','','2021 PINOT BLANC, NELSON RANCH, MENDOCINO','','publish','closed','closed','','pinot-blanc-nelson-ranch-vineyard-mendocino-2021','','','2024-05-13 14:14:08','2024-05-13 21:14:08','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3589',0,'wine_asset','',0),(3590,2,'2024-03-25 16:14:03','2024-03-25 23:14:03','','2022 PINOT BLANC, NELSON RANCH, MENDOCINO','','publish','closed','closed','','pinot-blanc-nelson-ranch-vineyard-mendocino-2022','','','2024-05-13 14:13:42','2024-05-13 21:13:42','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3590',0,'wine_asset','',0),(3591,2,'2024-03-25 16:39:19','2024-03-25 23:39:19','','2018 ROUSSANNE, DRY CREEK VALLEY','','publish','closed','closed','','roussanne-dry-creek-valley-2018','','','2024-05-13 14:13:13','2024-05-13 21:13:13','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3591',0,'wine_asset','',0),(3592,2,'2024-03-25 16:38:27','2024-03-25 23:38:27','','Meadowcroft-Roussanne-Dry Creek Valley-Bottleshot','','inherit','closed','closed','','meadowcroft-roussanne-dry-creek-valley-bottleshot','','','2024-03-25 16:38:38','2024-03-25 23:38:38','',3591,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Roussanne-Dry-Creek-Valley-Bottleshot.png',0,'attachment','image/png',0),(3593,2,'2024-03-25 16:40:19','2024-03-25 23:40:19','','2019 ROUSSANNE, DRY CREEK VALLEY','','publish','closed','closed','','roussanne-dry-creek-valley-2019','','','2024-05-13 14:12:49','2024-05-13 21:12:49','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3593',0,'wine_asset','',0),(3594,2,'2024-03-25 16:47:57','2024-03-25 23:47:57','','2020 ROUSSANNE, DRY CREEK VALLEY','','publish','closed','closed','','roussanne-dry-creek-valley-2020','','','2024-05-13 14:12:32','2024-05-13 21:12:32','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3594',0,'wine_asset','',0),(3595,2,'2024-03-25 16:48:53','2024-03-25 23:48:53','','2021 ROUSSANNE, DRY CREEK VALLEY','','publish','closed','closed','','roussanne-dry-creek-valley-2021','','','2024-05-13 14:12:17','2024-05-13 21:12:17','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3595',0,'wine_asset','',0),(3596,2,'2024-03-25 16:49:42','2024-03-25 23:49:42','','2022 ROUSSANNE, DRY CREEK VALLEY','','publish','closed','closed','','roussanne-dry-creek-valley-2022','','','2024-05-13 14:11:56','2024-05-13 21:11:56','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3596',0,'wine_asset','',0),(3597,2,'2024-03-25 16:52:08','2024-03-25 23:52:08','','2020 SAUVIGNON BLANC, SONOMA COAST','','publish','closed','closed','','sonoma-coast-sauvignon-blanc-2020','','','2024-05-13 14:18:29','2024-05-13 21:18:29','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3597',0,'wine_asset','',0),(3598,2,'2024-03-25 16:51:38','2024-03-25 23:51:38','','Meadowcroft-Sonoma Coast Sauvignon Blanc-Bottleshot','','inherit','closed','closed','','meadowcroft-sonoma-coast-sauvignon-blanc-bottleshot','','','2024-03-25 16:51:50','2024-03-25 23:51:50','',3597,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Sonoma-Coast-Sauvignon-Blanc-Bottleshot.png',0,'attachment','image/png',0),(3599,2,'2024-03-25 16:53:11','2024-03-25 23:53:11','','2021 SAUVIGNON BLANC, SONOMA COAST','','publish','closed','closed','','sonoma-coast-sauvignon-blanc-2021','','','2024-05-13 14:11:33','2024-05-13 21:11:33','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3599',0,'wine_asset','',0),(3601,2,'2024-03-25 16:54:45','2024-03-25 23:54:45','','2023 SAUVIGNON BLANC, SONOMA COAST','','publish','closed','closed','','sonoma-coast-sauvignon-blanc-2023','','','2024-05-13 14:11:07','2024-05-13 21:11:07','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3601',0,'wine_asset','',0),(3602,2,'2024-03-25 17:08:07','2024-03-26 00:08:07','','2015 RIESLING, NELSON RANCH, MENDOCINO','','publish','closed','closed','','nelson-ranch-vineyard-mendocino-riesling-2015','','','2024-05-13 14:10:44','2024-05-13 21:10:44','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3602',0,'wine_asset','',0),(3603,2,'2024-03-25 17:07:10','2024-03-26 00:07:10','','Meadowcroft-Nelson Ranch Vineyard-Mendocino Riesling-Bottleshot','','inherit','closed','closed','','meadowcroft-nelson-ranch-vineyard-mendocino-riesling-bottleshot','','','2024-03-25 17:07:25','2024-03-26 00:07:25','',3602,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Nelson-Ranch-Vineyard-Mendocino-Riesling-Bottleshot.png',0,'attachment','image/png',0),(3604,2,'2024-03-25 17:09:36','2024-03-26 00:09:36','','2016 RIESLING, NELSON RANCH, MENDOCINO','','publish','closed','closed','','nelson-ranch-vineyard-mendocino-riesling-2016','','','2024-05-13 14:10:19','2024-05-13 21:10:19','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3604',0,'wine_asset','',0),(3605,2,'2024-03-25 17:11:38','2024-03-26 00:11:38','','2017 RIESLING, NELSON RANCH, MENDOCINO','','publish','closed','closed','','nelson-ranch-vineyard-mendocino-riesling-2017','','','2024-05-13 14:09:39','2024-05-13 21:09:39','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3605',0,'wine_asset','',0),(3606,2,'2024-03-25 17:13:21','2024-03-26 00:13:21','','2018 RIESLING, NELSON RANCH, MENDOCINO','','publish','closed','closed','','nelson-ranch-vineyard-mendocino-riesling-2018','','','2024-05-13 14:09:47','2024-05-13 21:09:47','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3606',0,'wine_asset','',0),(3607,2,'2024-03-25 17:18:01','2024-03-26 00:18:01','','2016 FRENCH COLOMBARD, RUSSIAN RIVER VALLEY','','publish','closed','closed','','french-colombard-russian-river-valley','','','2024-05-13 14:08:43','2024-05-13 21:08:43','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3607',0,'wine_asset','',0),(3608,2,'2024-03-25 17:17:04','2024-03-26 00:17:04','','Meadowcroft-French Colombard-Russian River Valley-Bottleshot','','inherit','closed','closed','','meadowcroft-french-colombard-russian-river-valley-bottleshot','','','2024-03-25 17:17:28','2024-03-26 00:17:28','',3607,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-French-Colombard-Russian-River-Valley-Bottleshot.png',0,'attachment','image/png',0),(3609,2,'2024-03-25 17:20:27','2024-03-26 00:20:27','','2017 FRENCH COLOMBARD, RUSSIAN RIVER VALLEY','','publish','closed','closed','','french-colombard-russian-river-valley-2017','','','2024-05-13 14:08:26','2024-05-13 21:08:26','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3609',0,'wine_asset','',0),(3610,2,'2024-03-25 17:21:34','2024-03-26 00:21:34','','2018 FRENCH COLOMBARD, RUSSIAN RIVER VALLEY','','publish','closed','closed','','french-colombard-russian-river-valley-2018','','','2024-05-13 14:08:09','2024-05-13 21:08:09','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3610',0,'wine_asset','',0),(3611,2,'2024-03-25 17:22:29','2024-03-26 00:22:29','','2019 FRENCH COLOMBARD, RUSSIAN RIVER VALLEY','','publish','closed','closed','','french-colombard-russian-river-valley-2019','','','2024-05-13 14:07:53','2024-05-13 21:07:53','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3611',0,'wine_asset','',0),(3612,2,'2024-03-25 17:23:57','2024-03-26 00:23:57','','2021 FRENCH COLOMBARD, RUSSIAN RIVER VALLEY','','publish','closed','closed','','french-colombard-russian-river-valley-2021','','','2024-05-13 14:07:38','2024-05-13 21:07:38','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3612',0,'wine_asset','',0),(3613,2,'2024-03-25 17:24:45','2024-03-26 00:24:45','','2022 FRENCH COLOMBARD, RUSSIAN RIVER VALLEY','','publish','closed','closed','','french-colombard-russian-river-valley-2022','','','2024-05-13 14:07:19','2024-05-13 21:07:19','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3613',0,'wine_asset','',0),(3614,2,'2024-03-25 17:28:11','2024-03-26 00:28:11','','2023 PINOT GRIS, NELSON RANCH, MENDOCINO','','publish','closed','closed','','pinot-gris-nelson-ranch-mendocino-2021','','','2024-05-13 14:07:03','2024-05-13 21:07:03','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3614',0,'wine_asset','',0),(3615,2,'2024-03-25 17:27:35','2024-03-26 00:27:35','','Meadowcroft-Pinot Gris-Nelson Ranch-Mendocino-Bottleshot','','inherit','closed','closed','','meadowcroft-pinot-gris-nelson-ranch-mendocino-bottleshot','','','2024-03-25 17:27:47','2024-03-26 00:27:47','',3614,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Pinot-Gris-Nelson-Ranch-Mendocino-Bottleshot.png',0,'attachment','image/png',0),(3616,2,'2024-03-25 17:29:04','2024-03-26 00:29:04','','2023 PINOT GRIS, NELSON RANCH, MENDOCINO','','publish','closed','closed','','pinot-gris-nelson-ranch-mendocino-2023','','','2024-05-13 14:06:41','2024-05-13 21:06:41','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3616',0,'wine_asset','',0),(3617,2,'2024-03-25 17:31:24','2024-03-26 00:31:24','','NV BLANC DE BLANCS, NAPA VALLEY','','publish','closed','closed','','blanc-de-blancs-napa-valley','','','2024-05-13 14:06:04','2024-05-13 21:06:04','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3617',0,'wine_asset','',0),(3618,2,'2024-03-25 17:30:53','2024-03-26 00:30:53','','Meadowcroft-Blanc de Blancs-Napa Valley-Bottleshot','','inherit','closed','closed','','meadowcroft-blanc-de-blancs-napa-valley-bottleshot','','','2024-03-25 17:31:08','2024-03-26 00:31:08','',3617,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Blanc-de-Blancs-Napa-Valley-Bottleshot.png',0,'attachment','image/png',0),(3619,2,'2024-03-26 09:46:08','2024-03-26 16:46:08','','2016 ROSÉ OF MALBEC, CLEMENTS HILLS','','publish','closed','closed','','rose-of-malbec-clements-hills-2016','','','2024-05-13 14:05:48','2024-05-13 21:05:48','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3619',0,'wine_asset','',0),(3620,2,'2024-03-26 09:45:32','2024-03-26 16:45:32','','Meadowcroft-Rose of Malbec-Clements Hills-Bottleshot','','inherit','closed','closed','','meadowcroft-rose-of-malbec-clements-hills-bottleshot','','','2024-03-26 09:45:54','2024-03-26 16:45:54','',3619,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Rose-of-Malbec-Clements-Hills-Bottleshot.png',0,'attachment','image/png',0),(3621,2,'2024-03-26 09:47:01','2024-03-26 16:47:01','','2017 ROSÉ OF MALBEC, CLEMENTS HILLS','','publish','closed','closed','','rose-of-malbec-clements-hills-2017','','','2024-05-13 14:05:27','2024-05-13 21:05:27','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3621',0,'wine_asset','',0),(3622,2,'2024-03-26 09:47:53','2024-03-26 16:47:53','','2018 ROSÉ OF MALBEC, CLEMENTS HILLS','','publish','closed','closed','','rose-of-malbec-clements-hills-2018','','','2024-05-13 14:05:08','2024-05-13 21:05:08','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3622',0,'wine_asset','',0),(3623,2,'2024-03-26 09:48:44','2024-03-26 16:48:44','','2020 ROSÉ OF MALBEC, CLEMENTS HILLS','','publish','closed','closed','','rose-of-malbec-clements-hills-2020','','','2024-05-13 14:04:49','2024-05-13 21:04:49','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3623',0,'wine_asset','',0),(3624,2,'2024-03-26 09:52:13','2024-03-26 16:52:13','','2019 ROSÉ OF PINOT NOIR, SONOMA COAST','','publish','closed','closed','','rose-of-pinot-noir-sonoma-coast-2019','','','2024-05-13 14:04:00','2024-05-13 21:04:00','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3624',0,'wine_asset','',0),(3625,2,'2024-03-26 09:51:29','2024-03-26 16:51:29','','Meadowcroft-Rose of Pinot Noir-Sonoma Coast-Bottleshot','','inherit','closed','closed','','meadowcroft-rose-of-pinot-noir-sonoma-coast-bottleshot','','','2024-03-26 09:52:03','2024-03-26 16:52:03','',3624,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Rose-of-Pinot-Noir-Sonoma-Coast-Bottleshot.png',0,'attachment','image/png',0),(3626,2,'2024-03-26 09:53:12','2024-03-26 16:53:12','','2020 PINOT NOIR, SONOMA COAST','','publish','closed','closed','','rose-of-pinot-noir-sonoma-coast-2020','','','2024-05-13 14:01:54','2024-05-13 21:01:54','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3626',0,'wine_asset','',0),(3627,2,'2024-03-26 10:03:09','2024-03-26 17:03:09','','2021 ROSÉ OF PINOT NOIR, SONOMA COAST','','publish','closed','closed','','rose-of-pinot-noir-sonoma-coast-2021','','','2024-05-07 14:05:13','2024-05-07 21:05:13','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3627',0,'wine_asset','',0),(3628,2,'2024-03-26 10:04:02','2024-03-26 17:04:02','','2022 ROSÉ OF PINOT NOIR, SONOMA COAST','','publish','closed','closed','','rose-of-pinot-noir-sonoma-coast-2022','','','2024-05-07 14:04:53','2024-05-07 21:04:53','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3628',0,'wine_asset','',0),(3629,2,'2024-03-26 10:19:44','2024-03-26 17:19:44','','2021 ROSÉ GSM, RIVER TRACE','','publish','closed','closed','','river-trace-rose-gsm-2021','','','2024-05-07 14:04:34','2024-05-07 21:04:34','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3629',0,'wine_asset','',0),(3630,2,'2024-03-26 10:18:55','2024-03-26 17:18:55','','Meadowcroft-River Trace Rose-GSM-Bottleshot','','inherit','closed','closed','','meadowcroft-river-trace-rose-gsm-bottleshot','','','2024-03-26 10:19:37','2024-03-26 17:19:37','',3629,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-River-Trace-Rose-GSM-Bottleshot.png',0,'attachment','image/png',0),(3631,2,'2024-03-26 10:21:04','2024-03-26 17:21:04','','2022 ROSÉ GSM, RIVER TRACE','','publish','closed','closed','','river-trace-rose-gsm-2022','','','2024-05-07 14:04:04','2024-05-07 21:04:04','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3631',0,'wine_asset','',0),(3632,2,'2024-03-26 10:24:28','2024-03-26 17:24:28','','ALL SHE WROTE PORT, NON-VINTAGE','','publish','closed','closed','','all-she-wrote-port','','','2024-05-07 14:03:25','2024-05-07 21:03:25','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3632',0,'wine_asset','',0),(3633,2,'2024-03-26 10:24:12','2024-03-26 17:24:12','','Meadowcroft-All She Wrote Port-Bottleshot','','inherit','closed','closed','','meadowcroft-all-she-wrote-port-bottleshot','','','2024-03-26 10:24:21','2024-03-26 17:24:21','',3632,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-All-She-Wrote-Port-Bottleshot.png',0,'attachment','image/png',0),(3634,2,'2024-03-26 10:29:37','2024-03-26 17:29:37','','LET IT BEE','','publish','closed','closed','','let-it-bee','','','2024-04-09 11:14:56','2024-04-09 18:14:56','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3634',0,'wine_asset','',0),(3636,2,'2024-03-26 10:29:21','2024-03-26 17:29:21','','Meadowcroft-Let It Bee-Bottleshot','','inherit','closed','closed','','meadowcroft-let-it-bee-bottleshot','','','2024-03-26 10:29:28','2024-03-26 17:29:28','',3634,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Let-It-Bee-Bottleshot.png',0,'attachment','image/png',0),(3638,2,'2024-03-26 10:33:45','2024-03-26 17:33:45','','NV BLANC DE NOIRS, NAPA VALLEY','','publish','closed','closed','','blanc-de-noirs-napa-valley','','','2024-05-07 14:03:11','2024-05-07 21:03:11','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3638',0,'wine_asset','',0),(3639,2,'2024-03-26 10:33:18','2024-03-26 17:33:18','','Meadowcroft-Blanc De Noirs-Napa Valley-Bottleshot','','inherit','closed','closed','','meadowcroft-blanc-de-noirs-napa-valley-bottleshot','','','2024-03-26 10:33:40','2024-03-26 17:33:40','',3638,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Blanc-De-Noirs-Napa-Valley-Bottleshot.png',0,'attachment','image/png',0),(3640,2,'2024-03-26 10:39:18','2024-03-26 17:39:18','','2019 CABERNET SAUVIGNON, STAGS LEAP DISTRICT, NAPA VALLEY','','publish','closed','closed','','stags-leap-district-napa-valley-cabernet-sauvignon-2019','','','2024-05-07 14:02:45','2024-05-07 21:02:45','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3640',0,'wine_asset','',0),(3641,2,'2024-03-26 10:38:39','2024-03-26 17:38:39','','Meadowcroft-Stag\'s Leap District-Napa Valley Cabernet Sauvignon-Bottleshot','','inherit','closed','closed','','meadowcroft-stags-leap-district-napa-valley-cabernet-sauvignon-bottleshot','','','2024-03-26 10:39:07','2024-03-26 17:39:07','',3640,'https://www.meadowcroftwines.com/wp-content/uploads/2024/03/Meadowcroft-Stags-Leap-District-Napa-Valley-Cabernet-Sauvignon-Bottleshot.png',0,'attachment','image/png',0),(3642,2,'2024-03-26 10:40:07','2024-03-26 17:40:07','','2020 CABERNET SAUVIGNON, STAGS LEAP DISTRICT, NAPA VALLEY','','publish','closed','closed','','stags-leap-district-napa-valley-cabernet-sauvignon-2020','','','2024-05-07 14:02:12','2024-05-07 21:02:12','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3642',0,'wine_asset','',0),(3643,2,'2024-03-26 10:41:02','2024-03-26 17:41:02','','2021 CABERNET SAUVIGNON, STAGS LEAP DISTRICT, NAPA VALLEY','','publish','closed','closed','','stags-leap-district-napa-valley-cabernet-sauvignon-2021','','','2024-05-07 11:23:05','2024-05-07 18:23:05','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3643',0,'wine_asset','',0),(3645,1,'2024-03-27 13:43:36','2024-03-27 20:43:36','','Celebrate Spring 2024 6 Pack','','publish','closed','closed','','celebrate-spring-2024-6-pack','','','2024-11-11 09:55:08','2024-11-11 17:55:08','',0,'https://www.meadowcroftwines.com/product/celebrate-spring-2024-6-pack/',0,'product','',0),(3647,1,'2024-03-28 12:11:43','2024-03-28 19:11:43','','Hoodie sweatshirt - Bee You (unisex)','','publish','closed','closed','','hoodie-bee-you-unisex','','','2024-06-19 10:40:11','2024-06-19 17:40:11','',0,'https://www.meadowcroftwines.com/product/hoodie-bee-you-unisex/',0,'product','',0),(3648,1,'2024-03-28 12:12:04','2024-03-28 19:12:04','','Tee Shirt - Bee You (unisex)','','publish','closed','closed','','hoodie-bee-you-unisex-duplicate','','','2024-06-19 10:39:27','2024-06-19 17:39:27','',0,'https://www.meadowcroftwines.com/product/hoodie-bee-you-unisex-duplicate/',0,'product','',0),(3649,1,'2024-03-29 12:01:39','2024-03-29 19:01:39','','Tee Shirt - On Sale','','publish','closed','closed','','save-the-bees-tee-shirt-men-duplicate','','','2024-03-29 12:04:52','2024-03-29 19:04:52','',0,'https://www.meadowcroftwines.com/product/save-the-bees-tee-shirt-men-duplicate/',0,'product','',0),(3652,3,'2024-04-01 15:49:27','2024-04-01 22:49:27','','2023 ROSÉ OF GRENACHE, WESTFALL VINEYARD','','publish','closed','closed','','sonoma-county-rose-of-grenache-westfall-vineyard-2023','','','2024-05-07 13:59:14','2024-05-07 20:59:14','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3652',0,'wine_asset','',0),(3653,3,'2024-04-01 15:46:56','2024-04-01 22:46:56','','2023-Rose-Grenache-Westfall-FINAL','','inherit','closed','closed','','2023-rose-grenache-westfall-final','','','2024-04-01 15:46:56','2024-04-01 22:46:56','',3652,'https://www.meadowcroftwines.com/wp-content/uploads/2024/04/2023-Rose-Grenache-Westfall-FINAL.pdf',0,'attachment','application/pdf',0),(3655,3,'2024-04-01 16:08:33','2024-04-01 23:08:33','','2023 PINOT NOIR, RUSSIAN RIVER','','publish','closed','closed','','russian-river-sonoma-county-pinot-noir-2023','','','2024-05-07 11:21:50','2024-05-07 18:21:50','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3655',0,'wine_asset','',0),(3657,3,'2024-04-01 16:06:55','2024-04-01 23:06:55','','23-RR-PinotNoir','','inherit','closed','closed','','23-rr-pinotnoir','','','2024-04-01 16:06:55','2024-04-01 23:06:55','',3655,'https://www.meadowcroftwines.com/wp-content/uploads/2024/04/23-RR-PinotNoir.png',0,'attachment','image/png',0),(3658,3,'2024-04-01 16:18:11','2024-04-01 23:18:11','','2023-PinotNoir-RussianRiver-FINAL','','inherit','closed','closed','','2023-pinotnoir-russianriver-final','','','2024-04-01 16:18:53','2024-04-01 23:18:53','',3655,'https://www.meadowcroftwines.com/wp-content/uploads/2024/04/2023-PinotNoir-RussianRiver-FINAL.pdf',0,'attachment','application/pdf',0),(3659,3,'2024-04-01 16:22:21','2024-04-01 23:22:21','','2023 PINOT NOIR, ANDERSON VALLEY','','publish','closed','closed','','anderson-valley-pinot-noir-2023','','','2024-05-07 11:21:27','2024-05-07 18:21:27','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3659',0,'wine_asset','',0),(3661,3,'2024-04-01 16:21:42','2024-04-01 23:21:42','','23-AndValley-PinotNoir','','inherit','closed','closed','','23-andvalley-pinotnoir','','','2024-04-01 16:21:42','2024-04-01 23:21:42','',3659,'https://www.meadowcroftwines.com/wp-content/uploads/2024/04/23-AndValley-PinotNoir.png',0,'attachment','image/png',0),(3662,3,'2024-04-01 16:26:41','2024-04-01 23:26:41','','2023-PinotNoir-AndValley-FINAL','','inherit','closed','closed','','2023-pinotnoir-andvalley-final','','','2024-04-01 16:30:09','2024-04-01 23:30:09','',3659,'https://www.meadowcroftwines.com/wp-content/uploads/2024/04/2023-PinotNoir-AndValley-FINAL.pdf',0,'attachment','application/pdf',0),(3664,3,'2024-04-01 16:39:08','2024-04-01 23:39:08','','2023 BOTANICA CONSECRATA, PINOT GRIS ORANGE WINE, MENDOCINO COUNTY','','publish','closed','closed','','botanica-consecrata-orange-wine-pinot-gris-mendocino-county-2023','','','2024-05-07 11:21:07','2024-05-07 18:21:07','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3664',0,'wine_asset','',0),(3665,3,'2024-04-01 16:37:49','2024-04-01 23:37:49','','2023BotanicaConsecrata','','inherit','closed','closed','','2023botanicaconsecrata','','','2024-04-01 16:37:49','2024-04-01 23:37:49','',3664,'https://www.meadowcroftwines.com/wp-content/uploads/2024/04/2023BotanicaConsecrata.png',0,'attachment','image/png',0),(3666,3,'2024-04-01 16:38:26','2024-04-01 23:38:26','','2023-Botanica-Consecrata-PinotGris-FINAL','','inherit','closed','closed','','2023-botanica-consecrata-pinotgris-final','','','2024-04-01 16:38:26','2024-04-01 23:38:26','',3664,'https://www.meadowcroftwines.com/wp-content/uploads/2024/04/2023-Botanica-Consecrata-PinotGris-FINAL.pdf',0,'attachment','application/pdf',0),(3668,3,'2024-04-01 16:54:20','2024-04-01 23:54:20','','2023 ALBARINO, SONOMA COAST','','publish','closed','closed','','albarino-sonoma-coast-2023','','','2024-05-07 11:20:27','2024-05-07 18:20:27','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3668',0,'wine_asset','',0),(3669,3,'2024-04-01 16:52:55','2024-04-01 23:52:55','','2023-ALBARINO','','inherit','closed','closed','','2023-albarino','','','2024-04-01 16:52:55','2024-04-01 23:52:55','',3668,'https://www.meadowcroftwines.com/wp-content/uploads/2024/04/2023-ALBARINO.png',0,'attachment','image/png',0),(3673,3,'2024-04-01 17:02:41','2024-04-02 00:02:41','','2023-Albarino-Final2','','inherit','closed','closed','','2023-albarino-final2','','','2024-04-01 17:03:39','2024-04-02 00:03:39','',3668,'https://www.meadowcroftwines.com/wp-content/uploads/2024/04/2023-Albarino-Final2.pdf',0,'attachment','application/pdf',0),(3674,3,'2024-04-01 17:13:06','2024-04-02 00:13:06','','2022-NapaValley-CabSauv','','inherit','closed','closed','','2022-napavalley-cabsauv','','','2024-04-01 17:17:33','2024-04-02 00:17:33','',3678,'https://www.meadowcroftwines.com/wp-content/uploads/2024/04/2022-NapaValley-CabSauv.png',0,'attachment','image/png',0),(3675,3,'2024-04-01 17:13:33','2024-04-02 00:13:33','','2022-CabernetSauv-NapaValley-FINAL','','inherit','closed','closed','','2022-cabernetsauv-napavalley-final','','','2024-04-01 17:17:33','2024-04-02 00:17:33','',3678,'https://www.meadowcroftwines.com/wp-content/uploads/2024/04/2022-CabernetSauv-NapaValley-FINAL.pdf',0,'attachment','application/pdf',0),(3676,3,'2024-04-01 17:13:43','2024-04-02 00:13:43','','2022-CabernetSauv-DryCreek-Wyldvin-FINAL','','inherit','closed','closed','','2022-cabernetsauv-drycreek-wyldvin-final','','','2024-04-01 17:21:17','2024-04-02 00:21:17','',3680,'https://www.meadowcroftwines.com/wp-content/uploads/2024/04/2022-CabernetSauv-DryCreek-Wyldvin-FINAL.pdf',0,'attachment','application/pdf',0),(3677,3,'2024-04-01 17:14:00','2024-04-02 00:14:00','','2022-Wyldvin-CabSauv','','inherit','closed','closed','','2022-wyldvin-cabsauv','','','2024-04-01 17:14:00','2024-04-02 00:14:00','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/04/2022-Wyldvin-CabSauv.png',0,'attachment','image/png',0),(3678,3,'2024-04-01 17:17:33','2024-04-02 00:17:33','','2022 CABERNET SAUVIGNON, NAPA VALLEY','','publish','closed','closed','','napa-valley-cabernet-sauvignon-2022','','','2024-05-07 11:20:08','2024-05-07 18:20:08','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3678',0,'wine_asset','',0),(3680,3,'2024-04-01 17:21:17','2024-04-02 00:21:17','','2020 CABERNET SAUVIGNON, LOUVAU / WYLDVIN VINEYARD, DRY CREEK VALLEY','','publish','closed','closed','','dry-creek-valley-louvau-wyldvin-vineyard-cab-sauv-2020-2','','','2024-05-07 11:19:26','2024-05-07 18:19:26','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3680',0,'wine_asset','',0),(3681,3,'2024-04-01 17:20:00','2024-04-02 00:20:00','','2022-Wyldvin-CabSauv','','inherit','closed','closed','','2022-wyldvin-cabsauv-2','','','2024-04-01 17:20:00','2024-04-02 00:20:00','',3680,'https://www.meadowcroftwines.com/wp-content/uploads/2024/04/2022-Wyldvin-CabSauv-1.png',0,'attachment','image/png',0),(3682,2,'2024-10-30 14:16:36','2024-04-02 00:41:29','','Trade & Media','','publish','closed','closed','','trade-media','','','2024-10-30 14:16:36','2024-10-30 21:16:36','',0,'https://www.meadowcroftwines.com/?p=3682',12,'nav_menu_item','',0),(3683,2,'2024-04-02 08:33:58','2024-04-02 15:33:58','','Trade & Media','','publish','closed','closed','','trade-media-2','','','2024-04-02 08:33:58','2024-04-02 15:33:58','',0,'https://www.meadowcroftwines.com/?p=3683',2,'nav_menu_item','',0),(3684,1,'2024-04-02 10:48:32','2024-04-02 17:48:32','','Blanket fleece logo','','publish','closed','closed','','blanket-fleece-logo','','','2024-04-02 10:48:32','2024-04-02 17:48:32','',0,'https://www.meadowcroftwines.com/product/blanket-fleece-logo/',0,'product','',0),(3691,2,'2024-04-10 14:44:25','2024-04-10 21:44:25','','Event Tickets','','publish','closed','closed','','event-tickets','','','2024-10-30 14:20:02','2024-10-30 21:20:02','',0,'https://www.meadowcroftwines.com/?page_id=3691',0,'page','',0),(3692,2,'2024-10-30 14:16:36','2024-04-10 21:47:08',' ','','','publish','closed','closed','','3692','','','2024-10-30 14:16:36','2024-10-30 21:16:36','',0,'https://www.meadowcroftwines.com/?p=3692',3,'nav_menu_item','',0),(3695,3,'2024-04-15 11:10:44','2024-04-15 18:10:44','Join us for an <a href=\"https://www.eventbrite.com/e/kintsugi-la-workshop-with-meadowcroft-wines-tickets-838075585637?aff=oddtdtcreator&amp;utm_source=Klaviyo&amp;utm_medium=campaign&amp;_kx=sMlwCJhHfraCTp4LyIcfTw.Ua2Zpn\">immersive experience and demonstration</a> by <a href=\"https://kintsugila.com/?utm_source=Klaviyo&amp;utm_medium=campaign&amp;_kx=sMlwCJhHfraCTp4LyIcfTw.Ua2Zpn\">Kintsugi LA</a>!\r\n\r\nKintsugi: A traditional Japanese art of repairing broken pottery by mending the areas of breakage to create new and unique art pieces.\r\n\r\nWhile the traditional methods of Kintsugi, using urushi lacquer takes several weeks to complete—as there are long curing times between steps—<a href=\"https://kintsugila.com/?utm_source=Klaviyo&amp;utm_medium=campaign&amp;_kx=sMlwCJhHfraCTp4LyIcfTw.Ua2Zpn\">Kintsugi_LA</a> will teach a modified version/technique. This allows you to learn the process/art/technique of kintsugi in ~3 hours.\r\n\r\n<a href=\"https://www.eventbrite.com/e/kintsugi-la-workshop-with-meadowcroft-wines-tickets-838075585637?aff=oddtdtcreator&amp;utm_source=Klaviyo&amp;utm_medium=campaign&amp;_kx=sMlwCJhHfraCTp4LyIcfTw.Ua2Zpn\">The $180 workshop</a> fee includes a glass of wine, charcuterie, and instruction to craft *a decorative piece. You are encouraged to bring your own broken or chipped piece, however, if you don’t have one, we will provide you with a piece of broken pottery to mend and make new to take home. (**Please let us know in advance if you would like us to provide one for you.) You may also ***purchase a take-home Kintsugi kit to continue your newly acquired skill in the art of golden rejoining.\r\n\r\n<a href=\"http://www.meadowcroftwines.com/?utm_source=Klaviyo&amp;utm_medium=campaign&amp;_kx=sMlwCJhHfraCTp4LyIcfTw.Ua2Zpn\">Meadowcroft Wines</a> and <a href=\"https://kintsugila.com/?utm_source=Klaviyo&amp;utm_medium=campaign&amp;_kx=sMlwCJhHfraCTp4LyIcfTw.Ua2Zpn\">Kintsugi_LA</a> are limiting the workshop to twelve persons to ensure that each participant gets individual guidance.\r\n\r\n<a href=\"https://www.eventbrite.com/e/kintsugi-la-workshop-with-meadowcroft-wines-tickets-838075585637?aff=oddtdtcreator&amp;utm_source=Klaviyo&amp;utm_medium=campaign&amp;_kx=sMlwCJhHfraCTp4LyIcfTw.Ua2Zpn\"><strong>Click Here for Tickets</strong></a>\r\n\r\n<hr />\r\n\r\n*not recommended for microwave, dishwasher, or food.\r\n\r\n**there will be an additional $5.00 fee for Kintsugi_LA to provide pottery.\r\n\r\n***there is a fee of $60.00 for a take home Kintsugi kit.','KINTSUGI EXPERIENCE','','publish','closed','closed','','kintsugi-experience','','','2024-04-15 11:14:04','2024-04-15 18:14:04','',0,'https://www.meadowcroftwines.com/?post_type=mec-events&#038;p=3695',0,'mec-events','',0),(3696,3,'2024-04-15 11:06:35','2024-04-15 18:06:35','','kintsugi-web','','inherit','closed','closed','','kintsugi-web','','','2024-04-15 11:06:55','2024-04-15 18:06:55','',3695,'https://www.meadowcroftwines.com/wp-content/uploads/2024/04/kintsugi-web.jpg',0,'attachment','image/jpeg',0),(3697,1,'2024-04-15 15:24:44','2024-04-15 22:24:44','','2023 Chardonnay, Carneros','','publish','closed','closed','','2023-chardonnay-carneros','','','2024-07-29 09:54:55','2024-07-29 16:54:55','',0,'https://www.meadowcroftwines.com/product/2022-chardonnay-carneros-duplicate/',0,'product','',0),(3698,1,'2024-04-15 15:46:25','2024-04-15 22:46:25','','2023 Chardonnay, Carneros 375ml','','publish','closed','closed','','2023-chardonnay-carneros-375ml','','','2024-05-07 11:03:31','2024-05-07 18:03:31','',0,'https://www.meadowcroftwines.com/product/2022-chardonnay-carneros-375ml-duplicate/',0,'product','',0),(3699,1,'2024-04-15 15:49:32','2024-04-15 22:49:32','','2022 Pinot Noir, Sonoma Coast 375mL','','publish','closed','closed','','2022-pinot-noir-sonoma-coast-375ml','','','2024-04-15 15:50:50','2024-04-15 22:50:50','',0,'https://www.meadowcroftwines.com/product/2018-pinot-noir-sonoma-coast-375ml-duplicate/',0,'product','',0),(3700,1,'2024-04-15 15:51:02','2024-04-15 22:51:02','','2023 Pinot Noir Sonoma Coast','','publish','closed','closed','','2023-pinot-noir-sonoma-coast','','','2024-10-21 15:49:02','2024-10-21 22:49:02','',0,'https://www.meadowcroftwines.com/product/2022-pinot-noir-sonoma-coast-duplicate/',0,'product','',0),(3701,1,'2024-04-15 15:52:03','2024-04-15 22:52:03','','2023 Pinot Blanc, Rivino Vineyard','','publish','closed','closed','','2023-pinot-blanc-rivino-vineyard','','','2024-12-30 15:31:42','2024-12-30 23:31:42','',0,'https://www.meadowcroftwines.com/product/2022-pinot-blanc-rivino-vineyard-duplicate/',0,'product','',0),(3702,1,'2024-04-15 15:52:57','2024-04-15 22:52:57','','2023 Roussanne, Wyldvin Vineyard','','publish','closed','closed','','2023-roussanne-wyldvin-vineyard','','','2024-12-30 15:34:03','2024-12-30 23:34:03','',0,'https://www.meadowcroftwines.com/product/2022-roussanne-wyldvin-vineyard-duplicate/',0,'product','',0),(3703,1,'2024-04-15 15:53:48','2024-04-15 22:53:48','','2023 Viognier, Wyldvin Vineyard','','publish','closed','closed','','2023-viognier-wyldvin-vineyard','','','2024-07-29 09:52:58','2024-07-29 16:52:58','',0,'https://www.meadowcroftwines.com/product/2022-viognier-wyldvin-vineyard-duplicate/',0,'product','',0),(3705,1,'2024-04-15 15:57:56','2024-04-15 22:57:56','','2012 Cabernet Sauvignon, Napa Valley College duplicate','','publish','closed','closed','','2012-cabernet-sauvignon-napa-valley-college-duplicate','','','2024-04-15 16:00:03','2024-04-15 23:00:03','',0,'https://www.meadowcroftwines.com/product/2012-cabernet-sauvignon-napa-valley-college-duplicate/',0,'product','',0),(3706,1,'2024-04-15 16:00:50','2024-04-15 23:00:50','','2020 Cabernet Sauvignon, Howell Mountain','','publish','closed','closed','','2020-cabernet-sauvignon-howell-mountain','','','2024-07-29 09:56:29','2024-07-29 16:56:29','',0,'https://www.meadowcroftwines.com/product/2020-cabernet-sauvignon-napa-valley-duplicate/',0,'product','',0),(3707,1,'2024-04-15 16:03:25','2024-04-15 23:03:25','','2021 Cabernet Sauvignon, Howell Mountain','','publish','closed','closed','','2021-cabernet-sauvignon-howell-mountain-duplicate','','','2024-07-29 09:52:12','2024-07-29 16:52:12','',0,'https://www.meadowcroftwines.com/product/2020-cabernet-sauvignon-howell-mountain-duplicate/',0,'product','',0),(3708,1,'2024-04-15 16:04:41','2024-04-15 23:04:41','','2023 Chardonnay, Carneros (private label)','','publish','closed','closed','','2023-chardonnay-carneros-duplicate','','','2024-04-15 16:05:01','2024-04-15 23:05:01','',0,'https://www.meadowcroftwines.com/product/2023-chardonnay-carneros-duplicate/',0,'product','',0),(3713,1,'2024-04-22 13:12:44','2024-04-22 20:12:44','','Tee Shirt - Save the Bees (unisex)','','publish','closed','closed','','tee-shirt-bee-you-unisex-duplicate','','','2024-06-19 10:39:58','2024-06-19 17:39:58','',0,'https://www.meadowcroftwines.com/product/tee-shirt-bee-you-unisex-duplicate/',0,'product','',0),(3714,1,'2024-04-22 13:22:29','2024-04-22 20:22:29','','Tee Shirt - European Heritage (unisex)','','publish','closed','closed','','tee-shirt-save-the-bees-unisex-duplicate','','','2024-06-19 10:44:21','2024-06-19 17:44:21','',0,'https://www.meadowcroftwines.com/product/tee-shirt-save-the-bees-unisex-duplicate/',0,'product','',0),(3715,1,'2024-04-22 13:24:20','2024-04-22 20:24:20','','Hoodie sweatshirt - European heritage(unisex)','','publish','closed','closed','','hoodie-sweatshirt-bee-you-unisex-duplicate','','','2024-06-19 10:40:39','2024-06-19 17:40:39','',0,'https://www.meadowcroftwines.com/product/hoodie-sweatshirt-bee-you-unisex-duplicate/',0,'product','',0),(3716,1,'2024-04-26 11:59:33','2024-04-26 18:59:33','','2022 Chardonnay, Sonoma Coast - Vina Del Sol','','publish','closed','closed','','2022-chardonnay-sonoma-coast-vina-del-sol','','','2024-04-26 12:00:28','2024-04-26 19:00:28','',0,'https://www.meadowcroftwines.com/product/2022-chardonnay-sonoma-coast-bee-you-duplicate/',0,'product','',0),(3719,3,'2024-04-29 11:14:29','2024-04-29 18:14:29','','2023 ROSE OF GRENACHE, WESTFALL VINEYARD','','publish','closed','closed','','2023-rose-of-grenache-westfall-vineyard','','','2024-05-07 11:17:46','2024-05-07 18:17:46','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3719',0,'wine_asset','',0),(3720,3,'2024-04-29 11:12:23','2024-04-29 18:12:23','','2023-westfall-rose','','inherit','closed','closed','','2023-westfall-rose','','','2024-04-29 11:12:23','2024-04-29 18:12:23','',3719,'https://www.meadowcroftwines.com/wp-content/uploads/2024/04/2023-westfall-rose.png',0,'attachment','image/png',0),(3721,3,'2024-04-29 11:12:58','2024-04-29 18:12:58','','2023-RoseGrenache-Westfall-FINAL','','inherit','closed','closed','','2023-rosegrenache-westfall-final','','','2024-04-29 11:12:58','2024-04-29 18:12:58','',3719,'https://www.meadowcroftwines.com/wp-content/uploads/2024/04/2023-RoseGrenache-Westfall-FINAL.pdf',0,'attachment','application/pdf',0),(3722,3,'2024-04-30 11:25:19','2024-04-30 18:25:19','','PinotNoir-NoVintage-NapaCarneros','','inherit','closed','closed','','pinotnoir-novintage-napacarneros','','','2024-04-30 11:25:19','2024-04-30 18:25:19','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/04/PinotNoir-NoVintage-NapaCarneros.png',0,'attachment','image/png',0),(3725,3,'2024-05-07 10:43:36','2024-05-07 17:43:36','','2020-HowellMtn-Cabernet- techsheet-FINAL','','inherit','closed','closed','','2020-howellmtn-cabernet-techsheet-final','','','2024-05-07 11:27:47','2024-05-07 18:27:47','',3731,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2020-HowellMtn-Cabernet-techsheet-FINAL.pdf',0,'attachment','application/pdf',0),(3726,3,'2024-05-07 10:43:38','2024-05-07 17:43:38','','2021-HowellMtn-Cabernet- techsheet-FINAL','','inherit','closed','closed','','2021-howellmtn-cabernet-techsheet-final','','','2024-05-07 11:32:46','2024-05-07 18:32:46','',3732,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2021-HowellMtn-Cabernet-techsheet-FINAL.pdf',0,'attachment','application/pdf',0),(3727,3,'2024-05-07 10:43:40','2024-05-07 17:43:40','','2023 Napa Carneros Chardonnay Tech Sheet- FINAL','','inherit','closed','closed','','2023-napa-carneros-chardonnay-tech-sheet-final','','','2024-05-07 13:39:14','2024-05-07 20:39:14','',3734,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2023-Napa-Carneros-Chardonnay-Tech-Sheet-FINAL.pdf',0,'attachment','application/pdf',0),(3728,3,'2024-05-07 10:43:42','2024-05-07 17:43:42','','2023-Pinot Blanc-FINAL','','inherit','closed','closed','','2023-pinot-blanc-final','','','2024-05-07 13:45:57','2024-05-07 20:45:57','',3743,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2023-Pinot-Blanc-FINAL.pdf',0,'attachment','application/pdf',0),(3729,3,'2024-05-07 10:43:45','2024-05-07 17:43:45','','2023 Pinot Noir Son Coast Tech Sheet - FINAL','','inherit','closed','closed','','2023-pinot-noir-son-coast-tech-sheet-final','','','2024-05-07 13:43:35','2024-05-07 20:43:35','',3742,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2023-Pinot-Noir-Son-Coast-Tech-Sheet-FINAL.pdf',0,'attachment','application/pdf',0),(3731,3,'2024-05-07 11:27:47','2024-05-07 18:27:47','','2020 CABERNET SAUVIGNON, HOWELL MOUNTAIN, NAPA VALLEY','','publish','closed','closed','','2020-cabernet-sauvignon-howell-mountain-napa-valley','','','2024-05-07 14:10:06','2024-05-07 21:10:06','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3731',0,'wine_asset','',0),(3732,3,'2024-05-07 11:32:46','2024-05-07 18:32:46','','2021 CABERNET SAUVIGNON, HOWELL MOUNTAIN, NAPA VALLEY','','publish','closed','closed','','2021-cabernet-sauvignon-howell-mountain-napa-valley','','','2024-05-07 13:40:42','2024-05-07 20:40:42','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3732',0,'wine_asset','',0),(3733,3,'2024-05-07 11:31:11','2024-05-07 18:31:11','','howellmtn-novintage-4','','inherit','closed','closed','','howellmtn-novintage-4','','','2024-05-07 11:31:11','2024-05-07 18:31:11','',3732,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/howellmtn-novintage-4.jpg',0,'attachment','image/jpeg',0),(3734,3,'2024-05-07 13:39:14','2024-05-07 20:39:14','','2023 CHARDONNAY, NAPA CARNEROS','','publish','closed','closed','','2023-chardonnay-napa-carneros','','','2024-05-07 13:39:14','2024-05-07 20:39:14','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3734',0,'wine_asset','',0),(3735,3,'2024-05-07 13:37:35','2024-05-07 20:37:35','','2020-HOWELLMTN-CABERNET','','inherit','closed','closed','','2020-howellmtn-cabernet','','','2024-05-07 13:37:35','2024-05-07 20:37:35','',3734,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2020-HOWELLMTN-CABERNET.jpg',0,'attachment','image/jpeg',0),(3736,3,'2024-05-07 13:37:38','2024-05-07 20:37:38','','2021-HOWELLMTN-CABERNET','','inherit','closed','closed','','2021-howellmtn-cabernet','','','2024-05-07 13:37:38','2024-05-07 20:37:38','',3734,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2021-HOWELLMTN-CABERNET.jpg',0,'attachment','image/jpeg',0),(3737,3,'2024-05-07 13:37:40','2024-05-07 20:37:40','','2023-CHARDONNAY-NAPACARNEROS','','inherit','closed','closed','','2023-chardonnay-napacarneros','','','2024-05-07 13:37:40','2024-05-07 20:37:40','',3734,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2023-CHARDONNAY-NAPACARNEROS.jpg',0,'attachment','image/jpeg',0),(3738,3,'2024-05-07 13:37:41','2024-05-07 20:37:41','','2023-PINOTBLANC','','inherit','closed','closed','','2023-pinotblanc','','','2024-05-07 13:37:41','2024-05-07 20:37:41','',3734,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2023-PINOTBLANC.jpg',0,'attachment','image/jpeg',0),(3739,3,'2024-05-07 13:37:43','2024-05-07 20:37:43','','2023-PINOTNPOIR-SONCOAST','','inherit','closed','closed','','2023-pinotnpoir-soncoast','','','2024-05-07 13:37:43','2024-05-07 20:37:43','',3734,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2023-PINOTNPOIR-SONCOAST.jpg',0,'attachment','image/jpeg',0),(3740,3,'2024-05-07 13:37:46','2024-05-07 20:37:46','','2023-VIOGNIER','','inherit','closed','closed','','2023-viognier','','','2024-05-07 13:37:46','2024-05-07 20:37:46','',3734,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2023-VIOGNIER.jpg',0,'attachment','image/jpeg',0),(3741,3,'2024-05-07 13:37:48','2024-05-07 20:37:48','','howellmtn-novintage-4','','inherit','closed','closed','','howellmtn-novintage-4-2','','','2024-05-07 13:37:48','2024-05-07 20:37:48','',3734,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/howellmtn-novintage-4-1.jpg',0,'attachment','image/jpeg',0),(3742,3,'2024-05-07 13:43:35','2024-05-07 20:43:35','','2023 PINOT NOIR, SONOMA COAST','','publish','closed','closed','','2023-pinot-noir-sonoma-coast','','','2024-05-07 13:43:35','2024-05-07 20:43:35','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3742',0,'wine_asset','',0),(3743,3,'2024-05-07 13:45:57','2024-05-07 20:45:57','','2023 PINOT BLANC, RIVINO VINEYARD, MENDOCINO COUNTY','','publish','closed','closed','','2023-pinot-blanc-rivino-vineyard-mendocino-county','','','2024-12-27 11:30:30','2024-12-27 19:30:30','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3743',0,'wine_asset','',0),(3744,3,'2024-05-07 13:47:45','2024-05-07 20:47:45','','2023 VIOGNIER, WYLDVIN VINEYARD, DRY CREEK VALLEY','','publish','closed','closed','','2023-viognier-wyldvin-vineyard-dry-creek-valley','','','2024-05-22 11:24:23','2024-05-22 18:24:23','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3744',0,'wine_asset','',0),(3746,3,'2024-05-09 09:07:37','2024-05-09 16:07:37','','2021 CABERNET SAUVIGNON, OAKVILLE, NAPA VALLEY','','publish','closed','closed','','2021-cabernet-sauvignon-oakville-napa-valley','','','2024-05-09 09:07:37','2024-05-09 16:07:37','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3746',0,'wine_asset','',0),(3747,3,'2024-05-09 09:06:11','2024-05-09 16:06:11','','2021-oakville-cabernet-web','','inherit','closed','closed','','2021-oakville-cabernet-web','','','2024-05-09 09:06:11','2024-05-09 16:06:11','',3746,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2021-oakville-cabernet-web.png',0,'attachment','image/png',0),(3748,3,'2024-05-09 09:06:54','2024-05-09 16:06:54','','2021-OakvilleCab-techsheet-web2 (2)','','inherit','closed','closed','','2021-oakvillecab-techsheet-web2-2','','','2024-05-09 09:06:54','2024-05-09 16:06:54','',3746,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2021-OakvilleCab-techsheet-web2-2.pdf',0,'attachment','application/pdf',0),(3752,3,'2024-05-15 15:11:11','2024-05-15 22:11:11','','2023-Viognier-FINAL2','','inherit','closed','closed','','2023-viognier-final2','','','2024-05-22 11:24:23','2024-05-22 18:24:23','',3744,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2023-Viognier-FINAL2.pdf',0,'attachment','application/pdf',0),(3753,3,'2024-05-15 15:27:07','2024-05-15 22:27:07','','2022-FrenchColombard-final2','','inherit','closed','closed','','2022-frenchcolombard-final2','','','2024-05-15 15:27:07','2024-05-15 22:27:07','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2022-FrenchColombard-final2.pdf',0,'attachment','application/pdf',0),(3755,1,'2024-05-16 10:39:34','2024-05-16 17:39:34','','Platypus Vineyard Tour/Tasting','','publish','closed','closed','','vineyard-tour-duplicate','','','2024-06-12 11:45:33','2024-06-12 18:45:33','',0,'https://www.meadowcroftwines.com/product/vineyard-tour-duplicate/',0,'product','',0),(3756,1,'2024-05-20 09:51:28','2024-05-20 16:51:28','','2022 Sangiovese, Speedy Creek Vineyard','','publish','closed','closed','','2022-sangiovese-speedy-creek-vineyard-duplicate','','','2024-09-27 14:47:36','2024-09-27 21:47:36','',0,'https://www.meadowcroftwines.com/product/2021-sangiovese-speedy-creek-vineyard-duplicate/',0,'product','',0),(3758,1,'2024-05-20 10:02:09','2024-05-20 17:02:09','','2021 Cabernet Sauvignon, Mt. Veeder Estate','','publish','closed','closed','','2021-cabernet-sauvignon-mt-veeder-estate-duplicate','','','2024-06-27 13:43:55','2024-06-27 20:43:55','',0,'https://www.meadowcroftwines.com/product/2020-cabernet-sauvignon-mt-veeder-estate-duplicate/',0,'product','',0),(3759,1,'2024-05-20 10:06:07','2024-05-20 17:06:07','','2021 Cabernet Sauvignon, Mt. Veeder Estate 1.5L','','publish','closed','closed','','2021-cabernet-sauvignon-mt-veeder-estate-1-5l-duplicate','','','2024-05-20 10:06:59','2024-05-20 17:06:59','',0,'https://www.meadowcroftwines.com/product/2020-cabernet-sauvignon-mt-veeder-estate-1-5l-duplicate/',0,'product','',0),(3760,1,'2024-05-20 10:10:58','2024-05-20 17:10:58','','2021 Cabernet Sauvignon, Atlas Peak, Napa Valley','','publish','closed','closed','','2021-cabernet-sauvignon-atlas-peak','','','2024-06-27 14:08:35','2024-06-27 21:08:35','',0,'https://www.meadowcroftwines.com/product/2021-cabernet-sauvignon-howell-mountain-duplicate1/',0,'product','',0),(3762,3,'2024-05-22 11:03:48','2024-05-22 18:03:48','','2021-sangiovese- techsheet-final2','','inherit','closed','closed','','2021-sangiovese-techsheet-final2','','','2024-05-22 11:03:48','2024-05-22 18:03:48','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2021-sangiovese-techsheet-final2.pdf',0,'attachment','application/pdf',0),(3763,3,'2024-05-22 11:04:56','2024-05-22 18:04:56','','2020-Zinfandel-SpeedyCreek-DRAFT','','inherit','closed','closed','','2020-zinfandel-speedycreek-draft','','','2024-05-22 11:57:07','2024-05-22 18:57:07','',3786,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2020-Zinfandel-SpeedyCreek-DRAFT.pdf',0,'attachment','application/pdf',0),(3764,3,'2024-05-22 11:19:18','2024-05-22 18:19:18','','2022 Pinot Noir Son Coast Tech Sheet - DRAFT (1)','','inherit','closed','closed','','2022-pinot-noir-son-coast-tech-sheet-draft-1','','','2024-05-22 11:19:18','2024-05-22 18:19:18','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2022-Pinot-Noir-Son-Coast-Tech-Sheet-DRAFT-1.pdf',0,'attachment','application/pdf',0),(3765,3,'2024-05-22 11:19:23','2024-05-22 18:19:23','','2022-TheMagi (4)','','inherit','closed','closed','','2022-themagi-4','','','2024-05-22 11:19:23','2024-05-22 18:19:23','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2022-TheMagi-4.png',0,'attachment','image/png',0),(3766,3,'2024-05-22 11:19:38','2024-05-22 18:19:38','','2022-Wyldvin-CabSauv (1)','','inherit','closed','closed','','2022-wyldvin-cabsauv-1','','','2024-05-22 11:19:38','2024-05-22 18:19:38','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2022-Wyldvin-CabSauv-1.png',0,'attachment','image/png',0),(3767,3,'2024-05-22 11:19:53','2024-05-22 18:19:53','','2023-Viognier-Wyldvin (5)','','inherit','closed','closed','','2023-viognier-wyldvin-5','','','2024-05-22 11:19:53','2024-05-22 18:19:53','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2023-Viognier-Wyldvin-5.png',0,'attachment','image/png',0),(3768,3,'2024-05-22 11:20:29','2024-05-22 18:20:29','','PinotNoir-NoVintage-NapaCarneros','','inherit','closed','closed','','pinotnoir-novintage-napacarneros-2','','','2024-05-22 11:45:40','2024-05-22 18:45:40','',3783,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/PinotNoir-NoVintage-NapaCarneros.png',0,'attachment','image/png',0),(3769,3,'2024-05-22 11:20:37','2024-05-22 18:20:37','','SonomaBottle_Meadowcroft_Zinfandel_SpeedyCreekVineyard_2020 (1)','','inherit','closed','closed','','sonomabottle_meadowcroft_zinfandel_speedycreekvineyard_2020-1','','','2024-05-22 11:20:37','2024-05-22 18:20:37','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/SonomaBottle_Meadowcroft_Zinfandel_SpeedyCreekVineyard_2020-1.png',0,'attachment','image/png',0),(3770,3,'2024-05-22 11:20:53','2024-05-22 18:20:53','','SonomaBottle-MeadowcroftWines_CabernetSauvignon_Rutherford_2020 (3)','','inherit','closed','closed','','sonomabottle-meadowcroftwines_cabernetsauvignon_rutherford_2020-3','','','2024-05-22 11:20:53','2024-05-22 18:20:53','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/SonomaBottle-MeadowcroftWines_CabernetSauvignon_Rutherford_2020-3.png',0,'attachment','image/png',0),(3771,3,'2024-05-22 11:21:09','2024-05-22 18:21:09','','SonomaBottle-MeadowcroftWines_PinotGris_2022 (5)','','inherit','closed','closed','','sonomabottle-meadowcroftwines_pinotgris_2022-5','','','2024-05-22 11:21:09','2024-05-22 18:21:09','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/SonomaBottle-MeadowcroftWines_PinotGris_2022-5.png',0,'attachment','image/png',0),(3772,3,'2024-05-22 11:21:44','2024-05-22 18:21:44','','NoVintage-PINOTNOIR_SONOMACOASTPINOT','','inherit','closed','closed','','novintage-pinotnoir_sonomacoastpinot','','','2024-05-22 11:21:44','2024-05-22 18:21:44','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/NoVintage-PINOTNOIR_SONOMACOASTPINOT.png',0,'attachment','image/png',0),(3774,3,'2024-05-22 11:27:35','2024-05-22 18:27:35','','2022 CABERNET SAUVIGNON, WYLDVIN VINEYARD, DRY CREEK VALLEY','','publish','closed','closed','','2022-cabernet-sauvignon-wyldvin-vineyard-dry-creek-valley','','','2024-05-22 11:27:35','2024-05-22 18:27:35','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3774',0,'wine_asset','',0),(3775,3,'2024-05-22 11:36:55','2024-05-22 18:36:55','','2022 THE MAGI, ITALIAN RED BLEND','','publish','closed','closed','','2022-the-magi-italian-red-blend','','','2024-05-22 11:37:12','2024-05-22 18:37:12','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3775',0,'wine_asset','',0),(3776,3,'2024-05-22 11:32:20','2024-05-22 18:32:20','','2022-TheMagi-web2','','inherit','closed','closed','','2022-themagi-web2','','','2024-05-22 11:32:20','2024-05-22 18:32:20','',3775,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2022-TheMagi-web2.jpg',0,'attachment','image/jpeg',0),(3777,3,'2024-05-22 11:32:37','2024-05-22 18:32:37','','2022-TheMagi-web2','','inherit','closed','closed','','2022-themagi-web2-2','','','2024-05-22 11:32:37','2024-05-22 18:32:37','',3775,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2022-TheMagi-web2-1.jpg',0,'attachment','image/jpeg',0),(3778,3,'2024-05-22 11:35:20','2024-05-22 18:35:20','','2022-TheMagi-2','','inherit','closed','closed','','2022-themagi-2','','','2024-05-22 11:35:20','2024-05-22 18:35:20','',3775,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2022-TheMagi-2.png',0,'attachment','image/png',0),(3779,3,'2024-05-22 11:36:16','2024-05-22 18:36:16','','2022-TheMagi-techsheet','','inherit','closed','closed','','2022-themagi-techsheet-2','','','2024-05-22 11:36:16','2024-05-22 18:36:16','',3775,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2022-TheMagi-techsheet.pdf',0,'attachment','application/pdf',0),(3780,3,'2024-05-22 11:43:29','2024-05-22 18:43:29','','2022 PINOT GRIS, NELSON RANCH, MENDOCINO COUNTY','','publish','closed','closed','','2022-pinot-gris-nelson-ranch-mendocino-county','','','2024-05-22 11:43:29','2024-05-22 18:43:29','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3780',0,'wine_asset','',0),(3781,3,'2024-05-22 11:43:02','2024-05-22 18:43:02','','2022-PinotGris-web','','inherit','closed','closed','','2022-pinotgris-web','','','2024-05-22 11:43:02','2024-05-22 18:43:02','',3780,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2022-PinotGris-web.jpg',0,'attachment','image/jpeg',0),(3783,3,'2024-05-22 11:45:40','2024-05-22 18:45:40','','2022 PINOT NOIR, NAPA CARNEROS','','publish','closed','closed','','2022-pinot-noir-napa-carneros','','','2024-05-22 11:45:40','2024-05-22 18:45:40','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3783',0,'wine_asset','',0),(3784,3,'2024-05-22 11:50:29','2024-05-22 18:50:29','','2020 CABERNET SAUVIGNON, RUTHERFORD, NAPA VALLEY','','publish','closed','closed','','2020-cabernet-sauvignon-rutherford-napa-valley','','','2024-05-22 11:50:29','2024-05-22 18:50:29','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3784',0,'wine_asset','',0),(3785,3,'2024-05-22 11:49:21','2024-05-22 18:49:21','','2020-RUTHERFORD-CAB','','inherit','closed','closed','','2020-rutherford-cab','','','2024-05-22 11:49:21','2024-05-22 18:49:21','',3784,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2020-RUTHERFORD-CAB.png',0,'attachment','image/png',0),(3786,3,'2024-05-22 11:57:07','2024-05-22 18:57:07','','2020 ZINFANDEL, SPEEDY CREEK VINEYARD, KNIGHT’S VALLEY','','publish','closed','closed','','2020-zinfandel-speedy-creek-vineyard-knights-valley','','','2024-05-22 12:03:44','2024-05-22 19:03:44','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3786',0,'wine_asset','',0),(3787,3,'2024-05-22 11:56:01','2024-05-22 18:56:01','','2020-Zin-SpeedyCreek','','inherit','closed','closed','','2020-zin-speedycreek','','','2024-05-22 11:56:01','2024-05-22 18:56:01','',3786,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2020-Zin-SpeedyCreek.png',0,'attachment','image/png',0),(3789,3,'2024-05-24 10:40:53','2024-05-24 17:40:53','','2023-Roussanne-FINAL','','inherit','closed','closed','','2023-roussanne-final','','','2024-05-24 10:47:54','2024-05-24 17:47:54','',3791,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2023-Roussanne-FINAL.pdf',0,'attachment','application/pdf',0),(3790,3,'2024-05-24 10:45:31','2024-05-24 17:45:31','','2023-roussanne','','inherit','closed','closed','','2023-roussanne','','','2024-05-24 10:47:54','2024-05-24 17:47:54','',3791,'https://www.meadowcroftwines.com/wp-content/uploads/2024/05/2023-roussanne.jpg',0,'attachment','image/jpeg',0),(3791,3,'2024-05-24 10:47:54','2024-05-24 17:47:54','','2023 ROUSSANNE, WYLDVIN VINEYARD, DRY CREEK VALLEY','','publish','closed','closed','','2023-roussanne-wyldvin-vineyard-dry-creek-valley','','','2024-05-24 10:47:54','2024-05-24 17:47:54','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3791',0,'wine_asset','',0),(3792,1,'2024-05-24 15:30:03','2024-05-24 22:30:03','','Curious Elixir Mocktail 4 Pack','','publish','closed','closed','','curious-elixir-mocktail-4-pack','','','2024-05-24 15:30:16','2024-05-24 22:30:16','',0,'https://www.meadowcroftwines.com/product/curious-elixir-mocktail-4-pack/',0,'product','',0),(3794,3,'2024-06-27 13:40:49','2024-06-27 20:40:49','','2021-AtlasPeak-Cabernet-TechSheet-FINAL','','inherit','closed','closed','','2021-atlaspeak-cabernet-techsheet-final','','','2024-06-27 13:53:41','2024-06-27 20:53:41','',3802,'https://www.meadowcroftwines.com/wp-content/uploads/2024/06/2021-AtlasPeak-Cabernet-TechSheet-FINAL.pdf',0,'attachment','application/pdf',0),(3795,3,'2024-06-27 13:40:50','2024-06-27 20:40:50','','2021-MtVeeder-Cabernet-TechSheet-FINAL','','inherit','closed','closed','','2021-mtveeder-cabernet-techsheet-final','','','2024-06-27 13:59:10','2024-06-27 20:59:10','',3805,'https://www.meadowcroftwines.com/wp-content/uploads/2024/06/2021-MtVeeder-Cabernet-TechSheet-FINAL.pdf',0,'attachment','application/pdf',0),(3796,3,'2024-06-27 13:40:52','2024-06-27 20:40:52','','2022-sangiovesetechsheet-FINAL','','inherit','closed','closed','','2022-sangiovesetechsheet-final','','','2024-06-27 13:50:16','2024-06-27 20:50:16','',3800,'https://www.meadowcroftwines.com/wp-content/uploads/2024/06/2022-sangiovesetechsheet-FINAL.pdf',0,'attachment','application/pdf',0),(3797,3,'2024-06-27 13:41:15','2024-06-27 20:41:15','','Sangiovese_SpeedyCreekVineyard_2022','','inherit','closed','closed','','sangiovese_speedycreekvineyard_2022','','','2024-06-27 13:41:15','2024-06-27 20:41:15','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/06/Sangiovese_SpeedyCreekVineyard_2022.png',0,'attachment','image/png',0),(3798,3,'2024-06-27 13:41:33','2024-06-27 20:41:33','','SonomaBottle_Meadowcroft_CabernetSauvignon_AtlasPeak_2021 (1)','','inherit','closed','closed','','sonomabottle_meadowcroft_cabernetsauvignon_atlaspeak_2021-1','','','2024-06-27 13:41:33','2024-06-27 20:41:33','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/06/SonomaBottle_Meadowcroft_CabernetSauvignon_AtlasPeak_2021-1.png',0,'attachment','image/png',0),(3799,3,'2024-06-27 13:43:26','2024-06-27 20:43:26','','CabernetSauvignon_MtVeeder_2020','','inherit','closed','closed','','cabernetsauvignon_mtveeder_2020','','','2024-06-27 13:43:26','2024-06-27 20:43:26','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/06/CabernetSauvignon_MtVeeder_2020.png',0,'attachment','image/png',0),(3800,3,'2024-06-27 13:50:16','2024-06-27 20:50:16','','2022 Sangiovese, Speedy Creek Vineyard, Knight\'s Valley','','publish','closed','closed','','2022-sangiovese-speedy-creek-vineyard-knights-valley','','','2024-06-27 15:08:09','2024-06-27 22:08:09','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3800',0,'wine_asset','',0),(3801,3,'2024-06-27 13:49:45','2024-06-27 20:49:45','','Sangiovese_SpeedyCreek_2022-web','','inherit','closed','closed','','sangiovese_speedycreek_2022-web','','','2024-06-27 13:49:45','2024-06-27 20:49:45','',3800,'https://www.meadowcroftwines.com/wp-content/uploads/2024/06/Sangiovese_SpeedyCreek_2022-web.png',0,'attachment','image/png',0),(3802,3,'2024-06-27 13:53:41','2024-06-27 20:53:41','','2021 Cabernet Sauvignon, Atlas Peak, Napa Valley','','publish','closed','closed','','2021-cabernet-sauvignon-atlas-peak-napa-valley','','','2024-06-27 13:53:41','2024-06-27 20:53:41','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3802',0,'wine_asset','',0),(3803,3,'2024-06-27 13:52:42','2024-06-27 20:52:42','','CabernetSauvignon_AtlasPeak_2021-web','','inherit','closed','closed','','cabernetsauvignon_atlaspeak_2021-web','','','2024-06-27 13:52:42','2024-06-27 20:52:42','',3802,'https://www.meadowcroftwines.com/wp-content/uploads/2024/06/CabernetSauvignon_AtlasPeak_2021-web.png',0,'attachment','image/png',0),(3804,3,'2024-06-27 13:52:43','2024-06-27 20:52:43','','CabernetSauvignon_MtVeeder_2020-web','','inherit','closed','closed','','cabernetsauvignon_mtveeder_2020-web','','','2024-06-27 13:52:43','2024-06-27 20:52:43','',3802,'https://www.meadowcroftwines.com/wp-content/uploads/2024/06/CabernetSauvignon_MtVeeder_2020-web.png',0,'attachment','image/png',0),(3805,3,'2024-06-27 13:59:10','2024-06-27 20:59:10','','2021 Cabernet Sauvignon, Mt. Veeder, Napa Valley','','publish','closed','closed','','2021-cabernet-sauvignon-mt-veeder-napa-valley','','','2024-06-27 13:59:10','2024-06-27 20:59:10','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3805',0,'wine_asset','',0),(3806,3,'2024-06-27 13:58:42','2024-06-27 20:58:42','','CabernetSauvignon_MtVeeder_NV-web','','inherit','closed','closed','','cabernetsauvignon_mtveeder_nv-web','','','2024-06-27 13:58:42','2024-06-27 20:58:42','',3805,'https://www.meadowcroftwines.com/wp-content/uploads/2024/06/CabernetSauvignon_MtVeeder_NV-web.png',0,'attachment','image/png',0),(3807,3,'2024-06-27 14:07:41','2024-06-27 21:07:41','','2022-sangiovesetechsheet-FINAL-w-scores','','inherit','closed','closed','','2022-sangiovesetechsheet-final-w-scores','','','2024-06-27 15:08:09','2024-06-27 22:08:09','',3800,'https://www.meadowcroftwines.com/wp-content/uploads/2024/06/2022-sangiovesetechsheet-FINAL-w-scores.pdf',0,'attachment','application/pdf',0),(3808,1,'2024-07-02 12:59:31','2024-07-02 19:59:31','','Half Marathon Wines','','publish','closed','closed','','half-marathon-wines','','','2024-11-18 14:18:16','2024-11-18 22:18:16','',0,'https://www.meadowcroftwines.com/collection/half-marathon-wines/',0,'collection','',0),(3810,1,'2024-07-05 14:18:38','2024-07-05 21:18:38','','2023 Pinot Noir, Anderson Valley - 2024 Half Marathon Label','','publish','closed','closed','','2023-pinot-noir-anderson-valley-shiner-duplicate','','','2024-07-14 12:09:08','2024-07-14 19:09:08','',0,'https://www.meadowcroftwines.com/product/2023-pinot-noir-anderson-valley-shiner-duplicate/',0,'product','',0),(3811,1,'2024-07-05 14:21:42','2024-07-05 21:21:42','','2023 Chardonnay, Napa Carneros - 2024 Half Marathon Label','','publish','closed','closed','','2023-chardonnay-carneros-duplicate1','','','2024-07-14 12:09:44','2024-07-14 19:09:44','',0,'https://www.meadowcroftwines.com/product/2023-chardonnay-carneros-duplicate1/',0,'product','',0),(3814,2,'2024-07-05 16:46:38','2024-07-05 23:46:38','','2024 Half Marathon Wines','','draft','closed','closed','','2024-half-marathon-wines','','','2024-10-04 12:03:17','2024-10-04 19:03:17','',0,'https://www.meadowcroftwines.com/?page_id=3814',0,'page','',0),(3817,1,'2024-07-08 16:22:13','2024-07-08 23:22:13','','2022 Chardonnay, Sonoma Coast - BEE YOU','','publish','closed','closed','','2022-chardonnay-sonoma-coast-duplicate','','','2024-07-08 16:23:47','2024-07-08 23:23:47','',0,'https://www.meadowcroftwines.com/product/2022-chardonnay-sonoma-coast-duplicate/',0,'product','',0),(3818,1,'2024-07-30 15:38:21','2024-07-30 22:38:21','','Ice Pack','','publish','closed','closed','','ice-pack','','','2024-07-30 15:38:21','2024-07-30 22:38:21','',0,'https://www.meadowcroftwines.com/product/ice-pack/',0,'product','',0),(3819,1,'2024-08-01 12:09:32','2024-08-01 19:09:32','','Olives - jar','','publish','closed','closed','','olives-jar','','','2024-08-01 12:09:44','2024-08-01 19:09:44','',0,'https://www.meadowcroftwines.com/product/olives-jar/',0,'product','',0),(3823,1,'2024-09-03 16:31:27','2024-09-03 23:31:27','','Club Newsletter - FALL 2024','','publish','closed','closed','','club-newsletter-fall-2024','','','2024-09-03 16:39:53','2024-09-03 23:39:53','',0,'https://www.meadowcroftwines.com/product/club-newsletter-fall-2024/',0,'product','',0),(3824,1,'2024-09-03 16:41:51','2024-09-03 23:41:51','','Club Gift Fall 2024','','publish','closed','closed','','club-gift-fall-2024','','','2024-10-09 10:25:20','2024-10-09 17:25:20','',0,'https://www.meadowcroftwines.com/product/club-gift-fall-2024/',0,'product','',0),(3825,1,'2024-09-05 14:06:04','2024-09-05 21:06:04','','Sip and Savor cheese making demonstration','','publish','closed','closed','','sip-and-savor-cheese-making-demonstration','','','2024-09-29 11:00:58','2024-09-29 18:00:58','',0,'https://www.meadowcroftwines.com/product/sip-and-savor-cheese-making-demonstration/',0,'product','',0),(3827,3,'2024-09-05 14:11:07','2024-09-05 21:11:07','<div>Join us at Meadowcroft Wines for a cheese-making demonstration on Sunday, September 29th. You\'ll start your adventure with a sensory tour of the Cornerstone gardens, followed by a hands-on labneh cheese-making demonstration. You\'ll savor delicious cheese, paired perfectly with a glass of Meadowcroft wine, and even take home your own batch to enjoy at home!</div>\r\n<div></div>\r\n<div><a href=\"https://www.meadowcroftwines.com/product/sip-and-savor-cheese-making-demonstration\"><strong>ORDER TICKETS</strong></a></div>\r\n<div></div>\r\n<div>\r\n<div><span style=\"font-family: Poppins, Helvetica, Arial, sans-serif; font-weight: 400; font-style: normal;\"><strong><span style=\"font-size: 20px;\">When: </span></strong>Sunday, September 28th.  11am - 1pm</span></div>\r\n<div><span style=\"font-family: Poppins, Helvetica, Arial, sans-serif; font-weight: 400; font-style: normal;\"><strong><span style=\"font-size: 20px;\">Where: </span></strong> Meadowcroft Tasting Room | 23574 Arnold Dr., Sonoma</span></div>\r\n<div><span style=\"font-family: Poppins, Helvetica, Arial, sans-serif; font-weight: 400; font-style: normal;\"><strong><span style=\"font-size: 20px;\">Cost: </span></strong> Club Members - $60 |  Non-Members - $75 . Price includes glass of Meadowcroft Wine. </span></div>\r\n<div><span style=\"font-family: Poppins, Helvetica, Arial, sans-serif; font-weight: 400; font-style: normal;\"> </span></div>\r\n<div><span style=\"font-family: Poppins, Helvetica, Arial, sans-serif; font-weight: 400; font-style: normal;\"><span style=\"font-size: 12px;\">Only 12 seats available, purchase tickets soon!  All attendees must be 21 years of age or older.</span> </span></div>\r\n</div>','Sip and Savor Cheese Making Class','','publish','closed','closed','','sip-and-savor-cheese-making-class','','','2024-09-05 14:29:19','2024-09-05 21:29:19','',0,'https://www.meadowcroftwines.com/?post_type=mec-events&#038;p=3827',0,'mec-events','',0),(3828,3,'2024-09-05 14:08:44','2024-09-05 21:08:44','','CHEESEMAKING-WEB','','inherit','closed','closed','','cheesemaking-web','','','2024-09-05 14:08:44','2024-09-05 21:08:44','',3827,'https://www.meadowcroftwines.com/wp-content/uploads/2024/09/CHEESEMAKING-WEB.jpg',0,'attachment','image/jpeg',0),(3830,1,'2024-10-03 10:02:36','2024-10-03 17:02:36','','Tee Shirt - Harvest 2024','','publish','closed','closed','','tee-shirt-bee-you-unisex-duplicate1','','','2024-10-03 10:13:12','2024-10-03 17:13:12','',0,'https://www.meadowcroftwines.com/product/tee-shirt-bee-you-unisex-duplicate1/',0,'product','',0),(3834,2,'2024-10-30 14:16:36','2024-10-08 19:54:32','','Wine Gifts','','publish','closed','closed','','gifts','','','2024-10-30 14:16:36','2024-10-30 21:16:36','',0,'https://www.meadowcroftwines.com/?p=3834',14,'nav_menu_item','',0),(3836,1,'2024-10-10 14:18:20','2024-10-10 21:18:20','','Sunglasses - bee','','publish','closed','closed','','sunglasses-bee','','','2024-10-10 14:19:35','2024-10-10 21:19:35','',0,'https://www.meadowcroftwines.com/product/sunglasses-bee/',0,'product','',0),(3837,1,'2024-10-14 15:31:52','2024-10-14 22:31:52','','Maisie Jane\'s assorted nuts','','publish','closed','closed','','maisie-jane-s-assorted-nuts','','','2024-10-14 15:35:03','2024-10-14 22:35:03','',0,'https://www.meadowcroftwines.com/product/maisie-jane-s-assorted-nuts/',0,'product','',0),(3838,1,'2024-10-16 15:26:18','2024-10-16 22:26:18','','2 bottle black gift box','','publish','closed','closed','','2-bottle-black-gift-box','','','2024-10-31 11:42:28','2024-10-31 18:42:28','',0,'https://www.meadowcroftwines.com/product/2-bottle-black-gift-box/',0,'product','',0),(3839,1,'2024-10-16 15:31:11','2024-10-16 22:31:11','','Holiday celebration Pinot Noir 2 bottle gift pack','','publish','closed','closed','','holiday-celebration-pinot-noir-2-bottle-gift-pack','','','2024-10-16 15:32:03','2024-10-16 22:32:03','',0,'https://www.meadowcroftwines.com/product/holiday-celebration-pinot-noir-2-bottle-gift-pack/',0,'product','',0),(3840,1,'2024-10-17 11:17:53','2024-10-17 18:17:53','','Socks- pollinator','','publish','closed','closed','','socks-pollinator','','','2024-10-17 11:17:53','2024-10-17 18:17:53','',0,'https://www.meadowcroftwines.com/product/socks-pollinator/',0,'product','',0),(3841,1,'2024-10-18 11:26:47','2024-10-18 18:26:47','','Beeswax lotion bar','','publish','closed','closed','','beeswax-lotion-bar','','','2024-10-18 11:29:40','2024-10-18 18:29:40','',0,'https://www.meadowcroftwines.com/product/beeswax-lotion-bar/',0,'product','',0),(3842,1,'2024-10-18 11:52:20','2024-10-18 18:52:20','','Fall Tasting Room Party 2024','','publish','closed','closed','','fall-tasting-room-party-2024','','','2024-11-09 16:00:58','2024-11-10 00:00:58','',0,'https://www.meadowcroftwines.com/product/fall-tasting-room-party-2024/',0,'product','',0),(3843,1,'2024-10-18 13:33:27','2024-10-18 20:33:27','','Cheese Coins','','publish','closed','closed','','crackers-flatbreads-rosemary-olive-oil-duplicate','','','2024-10-18 13:35:03','2024-10-18 20:35:03','',0,'https://www.meadowcroftwines.com/product/crackers-flatbreads-rosemary-olive-oil-duplicate/',0,'product','',0),(3844,1,'2024-10-18 14:37:57','2024-10-18 21:37:57','','Wine Chips- small (1 oz)','','publish','closed','closed','','wine-chips-small-1-oz','','','2024-10-18 14:37:57','2024-10-18 21:37:57','',0,'https://www.meadowcroftwines.com/product/wine-chips-small-1-oz/',0,'product','',0),(3845,1,'2024-10-18 14:38:03','2024-10-18 21:38:03','','Wine Chips- large (3oz)','','publish','closed','closed','','wine-chips-small-1-oz-duplicate','','','2024-10-18 14:38:57','2024-10-18 21:38:57','',0,'https://www.meadowcroftwines.com/product/wine-chips-small-1-oz-duplicate/',0,'product','',0),(3848,1,'2024-10-29 15:59:57','2024-10-29 22:59:57','','Chocolate Truffles 6 pack','','publish','closed','closed','','chocolate-truffles-6-pack','','','2024-10-29 16:00:12','2024-10-29 23:00:12','',0,'https://www.meadowcroftwines.com/product/chocolate-truffles-6-pack/',0,'product','',0),(3849,1,'2024-10-29 16:06:56','2024-10-29 23:06:56','','All She Wrote Port and Chocolate Truffle Gift Box','','publish','closed','closed','','all-she-wrote-port-and-chocolate-truffle-gift-box','','','2024-12-02 13:18:32','2024-12-02 21:18:32','',0,'https://www.meadowcroftwines.com/product/all-she-wrote-port-and-chocolate-truffle-gift-box/',0,'product','',0),(3850,1,'2024-10-30 14:25:12','2024-10-30 21:25:12','','Caramel - salted honey dark chocolate','','publish','closed','closed','','caramel-salted-honey-dark-chocolate','','','2024-10-30 14:27:04','2024-10-30 21:27:04','',0,'https://www.meadowcroftwines.com/product/caramel-salted-honey-dark-chocolate/',0,'product','',0),(3851,1,'2024-10-31 12:04:36','2024-10-31 19:04:36','','Bordeaux Lovers Gift Box','','publish','closed','closed','','bordeaux-lovers-gift-box','','','2024-11-12 10:14:43','2024-11-12 18:14:43','',0,'https://www.meadowcroftwines.com/product/bordeaux-lovers-gift-box/',0,'product','',0),(3852,1,'2024-10-31 12:22:46','2024-10-31 19:22:46','','Grateful Gatherings Gift Box','','publish','closed','closed','','grateful-gatherings-gift-box','','','2024-11-11 15:29:06','2024-11-11 23:29:06','',0,'https://www.meadowcroftwines.com/product/grateful-gatherings-gift-box/',0,'product','',0),(3853,1,'2024-10-31 12:41:36','2024-10-31 19:41:36','','Celebration Noir Six Bottle Box','','publish','closed','closed','','celebration-noir-six-bottle-box','','','2024-12-02 13:20:34','2024-12-02 21:20:34','',0,'https://www.meadowcroftwines.com/product/celebration-noir-six-bottle-box/',0,'product','',0),(3854,1,'2024-10-31 14:01:09','2024-10-31 21:01:09','','Duck Rillettes','','publish','closed','closed','','duck-rillettes','','','2024-10-31 14:01:09','2024-10-31 21:01:09','',0,'https://www.meadowcroftwines.com/product/duck-rillettes/',0,'product','',0),(3855,1,'2024-10-31 14:01:14','2024-10-31 21:01:14','','Duck &amp; Pork Pate','','publish','closed','closed','','duck-rillettes-duplicate','','','2024-10-31 14:02:28','2024-10-31 21:02:28','',0,'https://www.meadowcroftwines.com/product/duck-rillettes-duplicate/',0,'product','',0),(3856,1,'2024-10-31 14:02:34','2024-10-31 21:02:34','','Flatbread Crackers','','publish','closed','closed','','duck-pork-pate-duplicate','','','2024-10-31 14:03:43','2024-10-31 21:03:43','',0,'https://www.meadowcroftwines.com/product/duck-pork-pate-duplicate/',0,'product','',0),(3857,1,'2024-10-31 14:13:18','2024-10-31 21:13:18','','Sip and Savor Gift Box','','publish','closed','closed','','sip-and-savor-gift-box','','','2024-11-11 15:23:56','2024-11-11 23:23:56','',0,'https://www.meadowcroftwines.com/product/sip-and-savor-gift-box/',0,'product','',0),(3858,1,'2024-10-31 14:25:34','2024-10-31 21:25:34','','Black Box of Bubbles','','publish','closed','closed','','meadowcroft-black-box-of-bubbles','','','2024-11-11 15:25:10','2024-11-11 23:25:10','',0,'https://www.meadowcroftwines.com/product/meadowcroft-black-box-of-bubbles/',0,'product','',0),(3862,3,'2024-11-06 14:25:11','2024-11-06 22:25:11','','2023-SauvignonBlanc-FINAL','','inherit','closed','closed','','2023-sauvignonblanc-final','','','2024-11-06 14:25:11','2024-11-06 22:25:11','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/11/2023-SauvignonBlanc-FINAL.pdf',0,'attachment','application/pdf',0),(3863,1,'2024-11-11 10:07:07','2024-11-11 18:07:07','','2024 Holiday Gift Bundles','','publish','closed','closed','','2024-holiday-gift-bundles','','','2024-11-11 10:07:07','2024-11-11 18:07:07','',0,'https://www.meadowcroftwines.com/collection/2024-holiday-gift-bundles/',0,'collection','',0),(3864,1,'2024-11-12 12:34:20','2024-11-12 20:34:20','','Private Label Gift Box- McLellan','','publish','closed','closed','','private-label-gift-box-mclellan','','','2024-11-12 12:34:20','2024-11-12 20:34:20','',0,'https://www.meadowcroftwines.com/product/private-label-gift-box-mclellan/',0,'product','',0),(3866,3,'2024-11-14 14:59:21','2024-11-14 22:59:21','','ALL SHE WROTE_techsheet','','inherit','closed','closed','','all-she-wrote_techsheet','','','2024-11-14 14:59:21','2024-11-14 22:59:21','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/11/ALL-SHE-WROTE_techsheet.pdf',0,'attachment','application/pdf',0),(3867,3,'2024-11-14 14:59:36','2024-11-14 22:59:36','','ALL SHE WROTE_techsheet','','inherit','closed','closed','','all-she-wrote_techsheet-2','','','2024-11-14 14:59:36','2024-11-14 22:59:36','',0,'https://www.meadowcroftwines.com/wp-content/uploads/2024/11/ALL-SHE-WROTE_techsheet-1.pdf',0,'attachment','application/pdf',0),(3868,1,'2024-11-22 13:20:54','2024-11-22 21:20:54','','Let It Bee White Port Style Wine','','publish','closed','closed','','let-it-bee-white-port-style-wine','','','2024-12-05 13:58:19','2024-12-05 21:58:19','',0,'https://www.meadowcroftwines.com/product/let-it-bee-white-port-style-wine/',0,'product','',0),(3869,1,'2024-11-25 11:39:24','2024-11-25 19:39:24','','Let It Bee release &amp; Fondue Party','','publish','closed','closed','','let-it-bee-release-fondue-party','','','2024-12-07 19:00:55','2024-12-08 03:00:55','',0,'https://www.meadowcroftwines.com/product/let-it-bee-release-fondue-party/',0,'product','',0),(3873,3,'2024-12-09 14:49:46','2024-12-09 22:49:46','','2020-LetItBee-FINAL','','inherit','closed','closed','','2020-letitbee-final','','','2024-12-09 14:56:07','2024-12-09 22:56:07','',3875,'https://www.meadowcroftwines.com/wp-content/uploads/2024/12/2020-LetItBee-FINAL.pdf',0,'attachment','application/pdf',0),(3874,3,'2024-12-09 14:53:18','2024-12-09 22:53:18','','let-it-bee-web','','inherit','closed','closed','','let-it-bee-web','','','2024-12-09 14:56:07','2024-12-09 22:56:07','',3875,'https://www.meadowcroftwines.com/wp-content/uploads/2024/12/let-it-bee-web.jpg',0,'attachment','image/jpeg',0),(3875,3,'2024-12-09 14:56:07','2024-12-09 22:56:07','','2020 Let It Bee, White Port Style Dessert Wine','','publish','closed','closed','','2020-let-it-bee-white-port-style-dessert-wine','','','2024-12-09 14:56:07','2024-12-09 22:56:07','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3875',0,'wine_asset','',0),(3876,5,'2024-12-11 01:35:58','0000-00-00 00:00:00','','Holiday Wine Gift Guide: Perfect Wines for Wine Lovers','','draft','closed','open','','','','','2024-12-11 01:35:58','2024-12-11 09:35:58','',0,'https://www.meadowcroftwines.com/?p=3876',0,'post','',0),(3877,5,'2024-12-11 02:25:50','2024-12-11 10:25:50','<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">The holidays are upon us, and finding the perfect gift for the wine enthusiast in your life can be as delightful as it is daunting. Whether you are shopping for a seasoned sommelier or someone who is just starting their wine journey, Meadowcroft Wines offers an impressive selection of thoughtfully curated gift sets that cater to every palate and occasion. From </span><a href=\"https://www.meadowcroftwines.com/sparkling-wines/\"><span style=\"font-weight: 400;\">sparkling wines</span></a><span style=\"font-weight: 400;\"> to luscious ports paired with truffles, this is your ultimate holiday gift guide to ensure your presents leave a lasting impression.</span></p>\r\n\r\n<h2 style=\"text-align: left;\"><span style=\"font-weight: 400;\">Find the Best Wine Gifts for the Holidays</span></h2>\r\n<h3 style=\"text-align: left;\"><span style=\"font-weight: 400;\">1. Meadowcroft Black Box of Bubbles – A Sparkling Wine Gift</span></h3>\r\n<p style=\"text-align: left;\"><img class=\"wp-image-3879 alignright\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/12/2E9A8548-216x300.webp\" alt=\"Meadowcroft Black Box of Bubbles\" width=\"164\" height=\"227\" /></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Effervescence in Every Sip</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">For the life of the party who loves a bit of sparkle, the </span><a href=\"https://www.meadowcroftwines.com/product/meadowcroft-black-box-of-bubbles/\"><b>Meadowcroft Black Box of Bubbles</b></a><span style=\"font-weight: 400;\"> is an exquisite choice. This elegant gift box includes a selection of sparkling wines that designed to elevate any celebration. Whether it is for New Year’s Eve toasts, festive brunches, or cozy evenings by the fire, these bubbles add a sense of joy and sophistication.</span></p>\r\n\r\n<h4 style=\"text-align: left;\">Perfect for:</h4>\r\n<ul style=\"text-align: left;\">\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Hosts who love throwing holiday parties.</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Champagne enthusiasts looking for something fresh and unique.</span></li>\r\n</ul>\r\n<h3 style=\"text-align: left;\"><span style=\"font-weight: 400;\">2. Holiday Celebration Pinot Noir: 2-Bottle Gift Pack</span></h3>\r\n<p style=\"text-align: left;\"><img class=\" wp-image-3880 alignright\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/12/2E9A8601-1-216x300.webp\" alt=\"Meadowcroft’s Holiday Celebration Pinot Noir 2-Bottle Gift Pack\" width=\"179\" height=\"249\" /></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">A Classic with a Holiday Twist</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Pinot Noir is a timeless favorite, and Meadowcroft’s </span><a href=\"https://www.meadowcroftwines.com/product/holiday-celebration-pinot-noir-2-bottle-gift-pack/\"><b>Holiday Celebration Pinot Noir 2-Bottle Gift Pack</b></a><span style=\"font-weight: 400;\"> makes an excellent choice for anyone who appreciates a smooth, elegant red wine. This duo features two of Meadowcroft’s finest Pinot Noirs, each showcasing the rich flavors and aromas that make Pinot Noir a staple at holiday dinner tables.</span></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"font-weight: 400;\">Gift this set to:</span></h4>\r\n<ul style=\"text-align: left;\">\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Friends or family hosting a holiday feast.</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Pinot Noir lovers who savor the complexities of this varietal.</span></li>\r\n</ul>\r\n<h3 style=\"text-align: left;\"><span style=\"font-weight: 400;\">3. All She Wrote Port and Chocolate Truffle Gift Box</span></h3>\r\n<p style=\"text-align: left;\"><img class=\" wp-image-3881 alignright\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/12/port-truffles-1730242854259-300x300.jpg\" alt=\"All She Wrote Port and Chocolate Truffle Gift Box\" width=\"264\" height=\"264\" /></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">A Decadent Pairing for Sweet Moments</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Nothing says indulgence like the combination of a velvety port wine with rich chocolate truffles. The </span><a href=\"https://www.meadowcroftwines.com/product/all-she-wrote-port-and-chocolate-truffle-gift-box/\"><b>All She Wrote Port and Chocolate Truffle Gift Box</b></a><span style=\"font-weight: 400;\"> is the offers a luxurious experience for anyone with a sweet tooth. This beautifully packaged set includes a luscious port paired with handcrafted chocolate truffles, making it the perfect indulgence for those who appreciate exquisite desserts.</span></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"font-weight: 400;\">Why it’s perfect:</span></h4>\r\n<ul style=\"text-align: left;\">\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Ideal for cozy nights by the fire.</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">A thoughtful choice for couples to share during the holidays.</span></li>\r\n</ul>\r\n<h3 style=\"text-align: left;\"><span style=\"font-weight: 400;\">4. Sip and Savor Gift Box</span></h3>\r\n<p style=\"text-align: left;\"><img class=\" wp-image-3882 alignright\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/12/2E9A8813-272x300.webp\" alt=\"Sip and Savor Gift Box\" width=\"228\" height=\"251\" /></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Unwind and Indulge</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">For those who  appreciate life’s simple pleasures, the </span><a href=\"https://www.meadowcroftwines.com/product/sip-and-savor-gift-box/\"><b>Sip and Savor Gift Box</b></a><span style=\"font-weight: 400;\"> is a delightful treat. This set is designed for ultimate relaxation, featuring a selection of Meadowcroft wines paired with gourmet indulgences. It’s the perfect way to encourage your loved ones to unwind and savor the moment during the hustle and bustle of the season.</span></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"font-weight: 400;\">Consider gifting this to:</span></h4>\r\n<ul style=\"text-align: left;\">\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Wine and food pairing enthusiasts.</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Busy friends who deserve a moment of tranquility.</span></li>\r\n</ul>\r\n<h3 style=\"text-align: left;\"><span style=\"font-weight: 400;\">5. Bordeaux Lovers Gift Box</span><span style=\"font-weight: 400;\">\r\n</span></h3>\r\n<p style=\"text-align: left;\"><img class=\" wp-image-3883 alignright\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/12/2E9A8570-1-216x300.webp\" alt=\"Meadowcroft’s Bordeaux Lovers Gift Box\" width=\"180\" height=\"250\" /></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">An Ode to Bordeaux’s Elegance</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Transport the wine lover on your list to the rolling hills of Bordeaux with Meadowcroft’s </span><a href=\"https://www.meadowcroftwines.com/product/bordeaux-lovers-gift-box/\"><b>Bordeaux Lovers Gift Box</b></a><span style=\"font-weight: 400;\">. This collection celebrates the classic Bordeaux style, featuring a selection of Meadowcroft’s finest reds. From rich, bold flavors to subtle, complex aromas, this gift box is truly a  connoisseur’s dream.</span></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"font-weight: 400;\">Best suited for:</span></h4>\r\n<ul style=\"text-align: left;\">\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Red wine aficionados.</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Anyone intrigued by the sophistication of Bordeaux wines.</span></li>\r\n</ul>\r\n<h3 style=\"text-align: left;\"><span style=\"font-weight: 400;\">6. Grateful Gatherings Gift Box</span><span style=\"font-weight: 400;\">\r\n</span></h3>\r\n<p style=\"text-align: left;\"><img class=\"size-medium wp-image-3884 alignright\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/12/2E9A8594-2-300x200.webp\" alt=\"Grateful Gatherings Gift Box\" width=\"300\" height=\"200\" /></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Cheers to Togetherness</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Celebrate the joy of connection with the </span><a href=\"https://www.meadowcroftwines.com/product/grateful-gatherings-gift-box/\"><b>Grateful Gatherings Gift Box</b></a><span style=\"font-weight: 400;\">. Thoughtfully curated to inspire gratitude and togetherness, this set includes wines that are perfect for sharing with loved ones during the holidays. Whether it’s a casual get-together or a formal dinner, this gift box is sure to make any gathering memorable.</span></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"font-weight: 400;\">Great for:</span></h4>\r\n<ul style=\"text-align: left;\">\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Holiday hosts who love to entertain.</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Families who enjoy sharing special wines during festive meals.</span></li>\r\n</ul>\r\n<h3 style=\"text-align: left;\"><span style=\"font-weight: 400;\">7. Celebration Noir Six-Bottle Box</span></h3>\r\n<p style=\"text-align: left;\"><img class=\"size-medium wp-image-3885 alignright\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2024/12/2E9A8614-1-300x200.webp\" alt=\"Celebration Noir Six-Bottle Box\" width=\"300\" height=\"200\" /></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">The Ultimate Gift for Pinot Noir Lovers</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">For a truly grand gesture, the </span><a href=\"https://www.meadowcroftwines.com/product/celebration-noir-six-bottle-box/\"><b>Celebration Noir Six-Bottle Box</b></a><span style=\"font-weight: 400;\"> is an unforgettable gift. Featuring six exquisite bottles of Meadowcroft Pinot Noir, this set offers a journey through the diverse expressions of this beloved varietal. Each bottle tells a story of craftsmanship and terroir, making this collection a standout gift for the most discerning wine lover.</span></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"font-weight: 400;\">Perfect for:</span></h4>\r\n<ul style=\"text-align: left;\">\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Serious wine collectors.</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Pinot Noir enthusiasts who want to explore Meadowcroft’s finest.</span></li>\r\n</ul>\r\n<h2><span style=\"font-weight: 400;\">Why Choose Meadowcroft Wines for Holiday Gifting?</span></h2>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Meadowcroft Wines is known for its dedication to crafting high-quality wines that cater toevery palate. Each bottle is a testament to the winery’s passion for creating exceptio</span><span style=\"font-weight: 400;\">nal wines that celebrate the art of winemaking. Their gift sets are thoughtfully curated to offer not just great wines, but a complete experience—featuring elegant packaging that makes holiday gifting effortless.</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Here are some additional tips for selecting the perfect wine gift:</span></p>\r\n\r\n<ul style=\"text-align: left;\">\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Know their preferences: </b><span style=\"font-weight: 400;\">If they have a favorite wine style, choose a gift set that highlights that varietal.</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Think about the occasion:</b><span style=\"font-weight: 400;\"> Some wines are perfect for celebratory moments, while others are ideal for quiet evenings at home.</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Pairing potential:</b><span style=\"font-weight: 400;\"> Gift boxes that include food pairings, like chocolate or gourmet treats, are an excellent way to introduce new flavor combinations.</span></li>\r\n</ul>\r\n<h2 style=\"text-align: left;\"><span style=\"font-weight: 400;\">Wrapping Up</span></h2>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">The holidays are a time to show appreciation and make your loved ones feel special. A thoughtfully selected gift from Meadowcroft Wines is the perfect way to do just that. From sparkling celebrations to indulgent desserts, these gift sets offer something for everyone on your list.</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Explore Meadowcroft’s full holiday collection to find the perfect gift and make this season truly memorable for the wine lovers in your life. Cheers to a season filled with love, laughter, and unforgettable moments!</span></p>\r\n<p style=\"text-align: left;\"><b>Visit </b><a href=\"https://www.meadowcroftwines.com/\"><b>Meadowcroft Wines</b></a><b> to shop these gift boxes and more.</b></p>','Holiday Wine Gift Guide: Perfect Wines for Wine Lovers','','publish','closed','open','','holiday-wine-gift-guide-perfect-wines-for-wine-lovers','','','2024-12-11 02:32:13','2024-12-11 10:32:13','',0,'https://www.meadowcroftwines.com/?p=3877',0,'post','',0),(3878,5,'2024-12-11 01:47:31','2024-12-11 09:47:31','','2E9A8594','','inherit','closed','closed','','2e9a8594','','','2024-12-11 01:47:31','2024-12-11 09:47:31','',3877,'https://www.meadowcroftwines.com/wp-content/uploads/2024/12/2E9A8594.jpg',0,'attachment','image/jpeg',0),(3879,5,'2024-12-11 02:10:51','2024-12-11 10:10:51','','2E9A8548','','inherit','closed','closed','','2e9a8548','','','2024-12-11 02:12:37','2024-12-11 10:12:37','',3877,'https://www.meadowcroftwines.com/wp-content/uploads/2024/12/2E9A8548.webp',0,'attachment','image/webp',0),(3880,5,'2024-12-11 02:14:59','2024-12-11 10:14:59','','2E9A8601 (1)','','inherit','closed','closed','','2e9a8601-1','','','2024-12-11 02:15:24','2024-12-11 10:15:24','',3877,'https://www.meadowcroftwines.com/wp-content/uploads/2024/12/2E9A8601-1.webp',0,'attachment','image/webp',0),(3881,5,'2024-12-11 02:17:24','2024-12-11 10:17:24','','port-truffles-1730242854259','','inherit','closed','closed','','port-truffles-1730242854259','','','2024-12-11 02:17:57','2024-12-11 10:17:57','',3877,'https://www.meadowcroftwines.com/wp-content/uploads/2024/12/port-truffles-1730242854259.avif',0,'attachment','image/avif',0),(3882,5,'2024-12-11 02:19:04','2024-12-11 10:19:04','','2E9A8813','','inherit','closed','closed','','2e9a8813','','','2024-12-11 02:19:20','2024-12-11 10:19:20','',3877,'https://www.meadowcroftwines.com/wp-content/uploads/2024/12/2E9A8813.webp',0,'attachment','image/webp',0),(3883,5,'2024-12-11 02:20:34','2024-12-11 10:20:34','','2E9A8570 (1)','','inherit','closed','closed','','2e9a8570-1','','','2024-12-11 02:20:50','2024-12-11 10:20:50','',3877,'https://www.meadowcroftwines.com/wp-content/uploads/2024/12/2E9A8570-1.webp',0,'attachment','image/webp',0),(3884,5,'2024-12-11 02:21:45','2024-12-11 10:21:45','','2E9A8594 (2)','','inherit','closed','closed','','2e9a8594-2','','','2024-12-11 02:22:01','2024-12-11 10:22:01','',3877,'https://www.meadowcroftwines.com/wp-content/uploads/2024/12/2E9A8594-2.webp',0,'attachment','image/webp',0),(3885,5,'2024-12-11 02:23:32','2024-12-11 10:23:32','','2E9A8614 (1)','','inherit','closed','closed','','2e9a8614-1','','','2024-12-11 02:23:50','2024-12-11 10:23:50','',3877,'https://www.meadowcroftwines.com/wp-content/uploads/2024/12/2E9A8614-1.webp',0,'attachment','image/webp',0),(3887,3,'2024-12-11 13:23:52','2024-12-11 21:23:52','','Tasting Room','','inherit','closed','closed','','445-autosave-v1','','','2024-12-11 13:23:52','2024-12-11 21:23:52','',445,'https://www.meadowcroftwines.com/?p=3887',0,'revision','',0),(3893,1,'2024-12-19 15:12:40','2024-12-19 23:12:40','','Offsite Private Tasting Fee','','publish','closed','closed','','comp-tasting-duplicate','','','2024-12-19 15:14:08','2024-12-19 23:14:08','',0,'https://www.meadowcroftwines.com/product/comp-tasting-duplicate/',0,'product','',0),(3894,1,'2024-12-21 10:48:14','2024-12-21 18:48:14','','Chocolate Pairing Set','','publish','closed','closed','','chocolate-pairing-set','','','2024-12-21 10:54:45','2024-12-21 18:54:45','',0,'https://www.meadowcroftwines.com/product/chocolate-pairing-set/',0,'product','',0),(3895,9,'2024-12-26 04:40:19','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','open','','','','','2024-12-26 04:40:19','0000-00-00 00:00:00','',0,'https://www.meadowcroftwines.com/?p=3895',0,'post','',0),(3896,9,'2024-12-26 04:46:36','2024-12-26 12:46:36','<img class=\"size-medium wp-image-1568 alignright\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/01/food-wine-blog1-300x240.jpg\" alt=\"Food-wine-pairing-blog\" width=\"300\" height=\"240\" />\n\n<span style=\"font-size: 1rem;\">The holidays are a time for family, friends, and of course, food! If you\'re looking to impress your guests with a delicious meal thisholiday season, we\'ve got the perfect wine pairing recipes for you. No matter what you\'re serving, we\'ve got a wine that will complement your dish perfectly.</span>\n<h4><strong>Pinot Noir</strong></h4>\nIf you\'re serving beef or lamb this holiday season, our pick is pinot noir. This full-bodied red wine has flavors of black cherry and cranberry, making it the perfect complement to rich meats. For a pinot noir that\'s sure to please, try the <a href=\"https://www.meadowcroftwines.com/product/2020-pinot-noir-russian-river-valley\">Meadowcroft Russian River Valley Pinot Noir</a>.\n<h4><strong>Cabernet Sauvignon</strong></h4>\nFor all you chicken lovers out there, our recommendation is cabernet sauvignon. This dry red wine pairs well with roasted chicken or turkey and has flavors of blackberry and cedar. We recommend trying our <a href=\"https://www.meadowcroftwines.com/product/2019-cabernet-sauvignon-oakville\">Cabernet Sauvignon from the Oakville District in the Napa Valley</a>.\n<h4><strong>Zinfandel</strong></h4>\nWhether you\'re making ham or pork chops, zinfandel is the wine for you. This fruity red wine has flavors of plum and pepper and is sure to please your guests. We recommend the <a href=\"https://www.meadowcroftwines.com/product/2018-zinfandel-speedy-creek-vineyard\">Speedy Creek Zinfandel from the Knight’s Valley AVA.</a>\n<h4><strong>Pinot Blanc</strong></h4>\nLooking for a white wine to pair with your holiday meal? Pinot Blanc is our top pick. This crisp white wine has hints of apple and pear and pairs well with fish or poultry dishes. For a Pinot Blanc that\'s sure to please, try the <a href=\"https://www.meadowcroftwines.com/product/2021-pinot-blanc-rivino-vineyard\">Pinot Blanc from Meadowcroft</a>.\n<h4><strong>Chardonnay    </strong></h4>\nAnd last but not least, Chardonnay! This buttery white wine pairs well with creamy dishes like mashed potatoes or macaroni and cheese. For a chardonnay that\'s sure to satisfy, we recommend the <a href=\"https://www.meadowcroftwines.com/product/2021-chardonnay-carneros\">Meadowcroft Napa-Carneros Chardonnay</a>.\n\nWith so many options to choose from, it can be hard to decide what wine to serve with your holiday meal. But don\'t worry, we\'ve got you covered! Our list of holiday wine pairing recipes has something for everyone. So, sit back, relax, and enjoy a glass of your favorite holiday wine. Cheers!\n<h2>Frequently Asked Questions</h2>\n<b>1. What are the best food pairings for Chardonnay?</b><span style=\"font-weight: 400;\">\n</span><span style=\"font-weight: 400;\">Chardonnay pairs well with a variety of foods. Try buttery dishes like lobster, roasted chicken, or creamy pasta for oaked Chardonnay. Unoaked Chardonnay complements lighter fare such as grilled fish, fresh salads, or vegetable dishes.</span>\n\n&nbsp;\n\n<script type=\"application/ld+json\">\n{\n  \"@context\": \"https://schema.org/\",\n  \"@type\": \"BlogPosting\",\n  \"mainEntityOfPage\": {\n    \"@type\": \"WebPage\",\n    \"@id\": \"https://www.meadowcroftwines.com/holiday-food-pairing-suggestions/\"\n  },\n  \"headline\": \"HOLIDAY FOOD PAIRING SUGGESTIONS\",\n  \"description\": \"Unleash your taste buds with the ultimate guide to food and wine pairing. From savory to sweet, explore the best pairings for a culinary adventure. Elevate your dining experience.\",\n  \"image\": {\n    \"@type\": \"ImageObject\",\n    \"url\": \"https://www.meadowcroftwines.com/wp-content/uploads/2023/03/Untitled-design-1-3-1024x576.webp\",\n    \"width\": \"\",\n    \"height\": \"\"\n  },\n  \"author\": {\n    \"@type\": \"Organization\",\n    \"name\": \"Meadowcroft Wines\"\n  },\n  \"publisher\": {\n    \"@type\": \"Organization\",\n    \"name\": \"Meadowcroft Wines\",\n    \"logo\": {\n      \"@type\": \"ImageObject\",\n      \"url\": \"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-Logo-Horizontal-Bee-Lighter3.png\",\n      \"width\": \"\",\n      \"height\": \"\"\n    }\n  },\n  \"datePublished\": \"2023-05-09\",\n  \"dateModified\": \"2023-05-17\"\n}\n</script>','Holiday food pairing suggestions','','inherit','closed','closed','','1565-autosave-v1','','','2024-12-26 04:46:36','2024-12-26 12:46:36','',1565,'https://www.meadowcroftwines.com/?p=3896',0,'revision','',0),(3897,9,'2024-12-26 05:10:23','2024-12-26 13:10:23','<img class=\"alignnone wp-image-1845\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/03/4-300x169.webp\" alt=\"WineCocktails - Meadowcroft Wines\" width=\"616\" height=\"347\" />\n\n<span style=\"font-weight: 400;\">For all oenophiles and aspiring vintners, there’s nothing like the classic simplicity of a glass of chilled white or full-bodied red. But sometimes, it can be fun to mix up your routine with creative enhancements — something new and exciting that you\'ve never tasted before! Whether you’re entertaining guests at a dinner party or simply relishing an intimate night in together, these recipes are sure to tantalize your taste buds and elevate even the most mundane moments. So kick up those corkscrews for the top 5 best Refreshing wine cocktails around — each one infused with unexpected flavor combinations that beg for just one more sip.</span>\n<h2>Sangria - a classic red wine cocktail with a blend of fruits, brandy and triple sec</h2>\n<span style=\"font-weight: 400;\">The allure of Sangria goes beyond its vibrant, ruby hue; this classic red wine cocktail perfectly captures the essence of a sun-kissed European getaway. Made with a carefully chosen blend of fruits, brandy, and triple sec, each sip transports you to a quaint Spanish villa, where delightful conversations with friends and loved ones are accompanied by the gentle background hum of a distant flamenco guitar melody. The beauty of this sophisticated concoction truly lies in its seamless combination of flavors; the boldness of red wine harmonizes with the tangy fruitiness while the notes of brandy and triple sec deliver a warm, inviting depth. So whether you\'re celebrating a special occasion or simply enjoying a much-deserved bask in the sun, let Sangria be your go-to libation for a truly unforgettable, sensory experience.</span>\n<h2>French 75 - a combination of champagne, gin, lemon juice and simple syrup</h2>\n<span style=\"font-weight: 400;\">The French 75 is a delectable and vivacious cocktail, designed to invigorate your senses and transport you to a world of celebration. This lavish libation flawlessly melds the bubbly effervescence of champagne with the botanical complexities of gin, creating a symphony of flavors that harmonize with citrusy lemon juice and the velvety smoothness of simple syrup. The name evokes images of jazz-filled soirées in Parisian salons, where echoes of laughter and the clink of champagne flutes resonate through the night. Whether you\'re toasting a special occasion, savoring a sumptuous meal, or simply indulging in a moment of chic sophistication, the French 75 is a time-honored classic that never fails to make a statement. Next time you reach for a glass of champagne, let your adventurous spirit soar, and delight your taste buds with the unparalleled elegance of this iconic cocktail.</span>\n\n&nbsp;\n<h2>Bellini - a fruity peach and Prosecco-based drink</h2>\n<img class=\"alignnone wp-image-1844\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/03/5-300x169.webp\" alt=\"WineCocktails-peachbellini\" width=\"618\" height=\"348\" />\n\n<span style=\"font-weight: 400;\">The Bellini is a delectably fruity and effervescent concoction that combines the sweet, fragrant notes of peach with the lively sparkle of Prosecco. This sophisticated yet refreshing cocktail is reminiscent of sun-kissed afternoons spent in the picturesque Italian countryside, where it is said to have originated. As you sip on this enchanting beverage, imagine yourself basking in the warm embrace of the Mediterranean sun, surrounded by the sound of laughter and the clinking of glasses in celebration. The Bellini\'s unique blend of flavors and effervescence makes it an ideal companion for a leisurely brunch with friends, a romantic sunset dinner, or simply a relaxed evening in the comfort of your own home. No matter the occasion, savoring a Bellini transports you to the charming heart of Italy, where life\'s simple pleasures reign supreme.</span>\n\n<span style=\"font-weight: 400;\">Spritz - an Italian concoction of Prosecco, Aperol and soda water </span>\n\n<span style=\"font-weight: 400;\">The Spritz, an iconic Italian concoction that tastefully marries Prosecco, Aperol, and soda water, is an exquisite libation to add a splash of zest to any occasion. With its rich history and origins at the heart of Venetian culture, this vibrant aperitif has managed to enchant palates across generations and borders. The effervescence of Prosecco, harmonized with the bittersweet tang of Aperol and the crisp fizz of soda water, creates a symphony of flavors that dance on your tongue, making it the ultimate expression of La Dolce Vita. Whether enjoyed as a refreshing pre-dinner drink or as a celebratory toast among friends, the Spritz continues to charm and captivate drink enthusiasts with its alluring kaleidoscope of colors and flavors, firmly cementing its position as a timeless classic in the world of cocktails.</span>\n\n&nbsp;\n<h2 style=\"text-align: left;\">Mimosa - an orange juice and sparkling wine combo perfect for brunch</h2>\n<span style=\"font-weight: 400;\">The Mimosa is the perfect choice for early morning celebrations! This classic combination of orange juice and <a href=\"https://www.meadowcroftwines.com/sparkling-wines/\">sparkling wine</a> adds a touch of refreshment for any brunch gathering. Its light and delicate flavor can turn a casual morning into a memorable event, making it one of the top ten best wine cocktails. Whether you prefer sweet or no sugar added, the Mimosa is a palate-pleasing way to start your day and perk up any guest.</span>\n\n&nbsp;\n<h2>Kir Royal - cassis liqueur mixed with chilled sparkling white wine</h2>\n<img class=\"alignnone wp-image-1843\" src=\"https://www.meadowcroftwines.com/wp-content/uploads/2023/03/3-300x169.webp\" alt=\"Kir Royal - cassis liqueur mixed with chilled sparkling white wine\" width=\"616\" height=\"347\" />\n\n<span style=\"font-weight: 400;\">A Kir Royal, the epitome of elegance and sophistication, holds its place among the most admired classic cocktails. This remarkable concoction consists of luxurious cassis liqueur, a vibrant, ruby-hued, berry-infused masterpiece, meticulously blended with chilled sparkling <a href=\"https://www.meadowcroftwines.com/white-wines/\">white wine</a>. The delicate finesse of the effervescent wine harmoniously marries the bold flavors of the cassis, engulfing one\'s senses in a whirlwind of indulgence. As the velvety bubbles grace the palate with every delightful, refreshing sip, the sumptuous melodrama unfolds before your eyes, presenting a mesmerizing visual experience. A Kir Royal transcends beyond the realm of ordinary cocktails, inviting you to immerse yourself into the allure of its captivating, delicate charm.</span>\n\n<span style=\"font-weight: 400;\"><strong>In conclusion</strong>, there are plenty of delicious ways to make a fantastic wine cocktail for any occasion. Whether you’re looking for something light and sweet like a Bellini or Kir Royal, or bold and boozy such as French 75 or Sangria, there is a perfect recipe to tantalize your taste buds. With the guidance of the ten best wine cocktails listed above, you’ll be able to craft your own unique concoctions with ease. So the next time you have an event, party or just want to relax after work, don’t forget to break out some wine, mix up one of these recipes and enjoy all that life has to offer…cheers!</span>\n<h2>Frequently Asked Questions</h2>\n<p style=\"text-align: left;\"><b>1. What are beginner-friendly wine cocktail recipes?</b><b>\n</b></p>\n<span style=\"font-weight: 400;\">Beginner-friendly wine cocktails include:</span>\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\"><strong>Sangria:</strong> Mix red or white wine with fresh fruit, juice, and a splash of soda.</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\"><strong>Mimosa:</strong> Combine sparkling wine with orange juice.</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\"><strong>Spritzers:</strong> Blend white wine with soda water and a twist of citrus.</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\"><span style=\"font-weight: 400;\"><strong>Kir:</strong> Add a splash of crème de cassis to white wine.</span></span></li>\n</ul>\n<b style=\"font-size: 1rem;\">2. What are the most popular wine cocktails for parties?</b>\n\n<span style=\"font-weight: 400;\">Popular wine cocktails for parties include:</span>\n<ul>\n 	<li style=\"list-style-type: none;\">\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Sangria:</b><span style=\"font-weight: 400;\"> Customizable and perfect for large groups.</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Mimosas:</b><span style=\"font-weight: 400;\"> A brunch favorite made with sparkling wine and juice.</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>French 75:</b><span style=\"font-weight: 400;\"> A sophisticated blend of sparkling wine, gin, lemon juice, and sugar.</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Bellini:</b><span style=\"font-weight: 400;\"> Sparkling wine with peach puree for a touch of elegance.</span></li>\n</ul>\n</li>\n</ul>\n<b>3. Why is it called a French 75 cocktail?</b><b>\n</b><span style=\"font-weight: 400;\">The French 75 cocktail is named after the French 75mm field gun used during World War I. Its potency was said to have the same kick as that of artillery!</span>\n\n<b>4. Can we use red wine for cocktails?</b><b>\n</b><span style=\"font-weight: 400;\">Yes, red wine can be used in cocktails! It’s a great base for drinks like sangria, mulled wine, or even a red wine spritzer. Its bold flavors can add depth to a variety of mixed drinks.</span>\n\n<b>5. Can you use wine for cocktails?</b><b>\n</b><span style=\"font-weight: 400;\">Absolutely! Wine is a versatile ingredient for cocktails. Both still and sparkling wines can be combined with fruits, liqueurs, or spirits to create refreshing and flavorful drinks.</span>\n\n&nbsp;\n\n\"<script type=\"\"application/ld+json\"\">\n{\n  \"\"@context\"\": \"\"https://schema.org/\"\",\n  \"\"@type\"\": \"\"Article\"\",\n  \"\"mainEntityOfPage\"\": {\n    \"\"@type\"\": \"\"WebPage\"\",\n    \"\"@id\"\": \"\"https://www.meadowcroftwines.com/refreshing-wine-cocktails/\"\"\n  },\n  \"\"headline\"\": \"\"DISCOVER 5 REFRESHING WINE COCKTAILS\"\",\n  \"\"description\"\": \"\"Elevate your cocktail game with these 5 refreshing wine cocktails that will tantalize your taste buds and leave you wanting more.\"\",\n  \"\"image\"\": {\n    \"\"@type\"\": \"\"ImageObject\"\",\n    \"\"url\"\": \"\"https://www.meadowcroftwines.com/wp-content/uploads/2023/03/Internal-Images-Meadowcroft-Wines-1200x675.webp\"\",\n    \"\"width\"\": \"\"\"\",\n    \"\"height\"\": \"\"\"\"\n  },\n  \"\"author\"\": {\n    \"\"@type\"\": \"\"Organization\"\",\n    \"\"name\"\": \"\"Meadowcroft Wines\"\"\n  },\n  \"\"publisher\"\": {\n    \"\"@type\"\": \"\"Organization\"\",\n    \"\"name\"\": \"\"Meadowcroft Wines\"\",\n    \"\"logo\"\": {\n      \"\"@type\"\": \"\"ImageObject\"\",\n      \"\"url\"\": \"\"https://www.meadowcroftwines.com/wp-content/uploads/2022/11/Meadowcroft-Logo-Horizontal-Bee-Lighter3.png\"\",\n      \"\"width\"\": \"\"\"\",\n      \"\"height\"\": \"\"\"\"\n    }\n  },\n  \"\"datePublished\"\": \"\"2023-04-14\"\",\n  \"\"dateModified\"\": \"\"2023-05-17\"\"\n}\n</script>\"','Discover 5 Refreshing Wine Cocktails','','inherit','closed','closed','','1840-autosave-v1','','','2024-12-26 05:10:23','2024-12-26 13:10:23','',1840,'https://www.meadowcroftwines.com/?p=3897',0,'revision','',0),(3898,3,'2024-12-26 15:53:49','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','open','','','','','2024-12-26 15:53:49','0000-00-00 00:00:00','',0,'https://www.meadowcroftwines.com/?p=3898',0,'post','',0),(3899,3,'2024-12-26 15:56:09','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2024-12-26 15:56:09','0000-00-00 00:00:00','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&p=3899',0,'wine_asset','',0),(3900,3,'2024-12-26 15:56:30','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2024-12-26 15:56:30','0000-00-00 00:00:00','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&p=3900',0,'wine_asset','',0),(3901,3,'2024-12-26 15:57:02','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2024-12-26 15:57:02','0000-00-00 00:00:00','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&p=3901',0,'wine_asset','',0),(3902,2,'2024-12-27 11:10:25','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','open','','','','','2024-12-27 11:10:25','0000-00-00 00:00:00','',0,'https://www.meadowcroftwines.com/?p=3902',0,'post','',0),(3903,2,'2024-12-27 11:10:25','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','open','','','','','2024-12-27 11:10:25','0000-00-00 00:00:00','',0,'https://www.meadowcroftwines.com/?p=3903',0,'post','',0),(3904,3,'2024-12-27 11:40:53','2024-12-27 19:40:53','','2024 Pinot Blanc, Rivino Vineyard, Mendocino County','','publish','closed','closed','','2024-pinot-blanc-rivino-vineyard-mendocino-county','','','2024-12-27 11:40:53','2024-12-27 19:40:53','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3904',0,'wine_asset','',0),(3905,3,'2024-12-27 11:33:57','2024-12-27 19:33:57','2024 Meadowcroft Pinot Blanc','2024 Meadowcroft Pinot Blanc','','inherit','closed','closed','','meadowcroft-pinotblanc-2024-web','','','2024-12-27 11:34:54','2024-12-27 19:34:54','',3904,'https://www.meadowcroftwines.com/wp-content/uploads/2024/12/Meadowcroft.PinotBlanc.2024-web.png',0,'attachment','image/png',0),(3906,3,'2024-12-27 11:37:48','2024-12-27 19:37:48','','2022-OakvilleCabernet-TechSheet-DRAFT','','inherit','closed','closed','','2022-oakvillecabernet-techsheet-draft','','','2024-12-27 11:47:52','2024-12-27 19:47:52','',3913,'https://www.meadowcroftwines.com/wp-content/uploads/2024/12/2022-OakvilleCabernet-TechSheet-DRAFT.pdf',0,'attachment','application/pdf',0),(3907,3,'2024-12-27 11:37:50','2024-12-27 19:37:50','','2022-StagsLeapCabernet-TechSheet-DRAFT','','inherit','closed','closed','','2022-stagsleapcabernet-techsheet-draft','','','2024-12-27 11:45:41','2024-12-27 19:45:41','',3912,'https://www.meadowcroftwines.com/wp-content/uploads/2024/12/2022-StagsLeapCabernet-TechSheet-DRAFT.pdf',0,'attachment','application/pdf',0),(3908,3,'2024-12-27 11:37:52','2024-12-27 19:37:52','','2024-PinotBlanc-TechSheet-DRAFT','','inherit','closed','closed','','2024-pinotblanc-techsheet-draft','','','2024-12-27 11:40:53','2024-12-27 19:40:53','',3904,'https://www.meadowcroftwines.com/wp-content/uploads/2024/12/2024-PinotBlanc-TechSheet-DRAFT.pdf',0,'attachment','application/pdf',0),(3909,3,'2024-12-27 11:38:04','2024-12-27 19:38:04','','Meadowcroft.CabSauv.Oakville.2022-web','','inherit','closed','closed','','meadowcroft-cabsauv-oakville-2022-web','','','2024-12-27 11:47:52','2024-12-27 19:47:52','',3913,'https://www.meadowcroftwines.com/wp-content/uploads/2024/12/Meadowcroft.CabSauv.Oakville.2022-web.png',0,'attachment','image/png',0),(3910,3,'2024-12-27 11:38:10','2024-12-27 19:38:10','','Meadowcroft.CabSauv.StagsLeap.2022-web','','inherit','closed','closed','','meadowcroft-cabsauv-stagsleap-2022-web','','','2024-12-27 11:45:41','2024-12-27 19:45:41','',3912,'https://www.meadowcroftwines.com/wp-content/uploads/2024/12/Meadowcroft.CabSauv.StagsLeap.2022-web.png',0,'attachment','image/png',0),(3911,3,'2024-12-27 11:38:17','2024-12-27 19:38:17','2024 Meadowcroft Pinot Blanc','Meadowcroft.PinotBlanc.2024-web','','inherit','closed','closed','','meadowcroft-pinotblanc-2024-web-2','','','2024-12-27 11:40:53','2024-12-27 19:40:53','',3904,'https://www.meadowcroftwines.com/wp-content/uploads/2024/12/Meadowcroft.PinotBlanc.2024-web-1.png',0,'attachment','image/png',0),(3912,3,'2024-12-27 11:45:41','2024-12-27 19:45:41','','2022 Cabernet Sauvignon, Stags Leap, Napa Valley','','publish','closed','closed','','2022-cabernet-sauvignon-stags-leap-napa-valley','','','2024-12-27 11:45:41','2024-12-27 19:45:41','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3912',0,'wine_asset','',0),(3913,3,'2024-12-27 11:47:52','2024-12-27 19:47:52','','2022 Cabernet Sauvignon, Oakville, Napa Valley','','publish','closed','closed','','2022-cabernet-sauvignon-oakville-napa-valley','','','2024-12-27 11:53:29','2024-12-27 19:53:29','',0,'https://www.meadowcroftwines.com/?post_type=wine_asset&#038;p=3913',0,'wine_asset','',0),(3914,5,'2024-12-29 21:11:34','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','open','','','','','2024-12-29 21:11:34','0000-00-00 00:00:00','',0,'https://www.meadowcroftwines.com/?p=3914',0,'post','',0),(3915,1,'2024-12-30 11:37:15','2024-12-30 19:37:15','','Soap - Honey Body Bar','','publish','closed','closed','','soap-honey-body-bar','','','2024-12-30 11:37:15','2024-12-30 19:37:15','',0,'https://www.meadowcroftwines.com/product/soap-honey-body-bar/',0,'product','',0),(3916,1,'2024-12-30 11:39:17','2024-12-30 19:39:17','','Spice Blends - Calicutt assorted','','publish','closed','closed','','spice-blends-calicutt-assorted','','','2024-12-30 11:39:17','2024-12-30 19:39:17','',0,'https://www.meadowcroftwines.com/product/spice-blends-calicutt-assorted/',0,'product','',0),(3917,1,'2024-12-30 15:56:18','2024-12-30 23:56:18','','2023 Sonoma County Rose','','publish','closed','closed','','2023-sonoma-county-rose','','','2024-12-31 10:54:36','2024-12-31 18:54:36','',0,'https://www.meadowcroftwines.com/product/2023-sonoma-county-rose/',0,'product','',0),(3918,10,'2025-01-02 04:09:41','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','open','','','','','2025-01-02 04:09:41','0000-00-00 00:00:00','',0,'https://www.meadowcroftwines.com/?p=3918',0,'post','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_redirection_404`
--

DROP TABLE IF EXISTS `wp_redirection_404`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_redirection_404` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `created` datetime NOT NULL,
  `url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `agent` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `referrer` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `ip` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `created` (`created`),
  KEY `url` (`url`(191)),
  KEY `referrer` (`referrer`(191)),
  KEY `ip` (`ip`)
) ENGINE=InnoDB AUTO_INCREMENT=116754 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_redirection_404`
--

LOCK TABLES `wp_redirection_404` WRITE;
/*!40000 ALTER TABLE `wp_redirection_404` DISABLE KEYS */;
INSERT INTO `wp_redirection_404` VALUES (114945,'2024-12-25 16:33:41','/health-benefits-of-red-wine/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36',NULL,''),(114946,'2024-12-25 16:49:14','/wines/current-releases/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(114947,'2024-12-25 17:05:26','/shop/?view=product&slug=blind_tasting_mix','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(114948,'2024-12-25 17:25:46','/shop/?view=product&slug=blind_tasting_white','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(114949,'2024-12-25 17:28:37','/collection/event-tickets','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(114950,'2024-12-25 17:30:16','/style.php','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 (.NET CLR 3.5.30729)',NULL,''),(114951,'2024-12-25 18:21:57','/shop/?view=product&slug=napavalley_blancdeblancs','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,''),(114952,'2024-12-25 18:38:37','/.well-known/assetlinks.json','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36',NULL,''),(114953,'2024-12-25 19:14:32','/wp-content/plugins/masterslider/public/assets/css/common/grabbing.cur','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(114954,'2024-12-25 20:41:52','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(114955,'2024-12-25 21:14:59','/plugins/kcfinder/upload.php','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.62 Safari/537.36',NULL,''),(114956,'2024-12-25 21:16:59','/.well-known/apple-app-site-association','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html)',NULL,''),(114957,'2024-12-25 21:33:24','/events/spring-fling-new-white-wine-releases/white-wine-800/feed/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(114958,'2024-12-25 22:27:48','/wordpress','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wordpress',''),(114959,'2024-12-25 22:27:49','/wp','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wp',''),(114960,'2024-12-25 22:27:49','/bc','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bc',''),(114961,'2024-12-25 22:27:50','/bk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bk',''),(114962,'2024-12-25 22:27:51','/backup','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/backup',''),(114963,'2024-12-25 22:27:53','/main','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/main',''),(114964,'2024-12-25 22:29:49','/apple-app-site-association','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html)',NULL,''),(114965,'2024-12-25 22:50:21','/shop','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(114966,'2024-12-25 23:27:06','/admin/ckeditor/kcfinder/upload.php','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.62 Safari/537.36',NULL,''),(114967,'2024-12-25 23:27:10','/assets/ckeditor/kcfinder/upload.php','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.62 Safari/537.36',NULL,''),(114968,'2024-12-25 23:27:13','/assets/plugins/kcfinder/upload.php','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.62 Safari/537.36',NULL,''),(114969,'2024-12-26 00:06:48','/prod-360215/2013-Meadowcroft-Dry-Creek-Valley-Sonoma-Sauvignon-Blanc.html','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(114970,'2024-12-26 00:56:15','/.vscode/sftp.json','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,''),(114971,'2024-12-26 01:04:43','/store/index.cfm?fuseaction=productdetail&product_id=67','Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36 AOLShield/83.0.4103.0',NULL,''),(114972,'2024-12-26 01:05:43','/.well-known/apple-app-site-association','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html)',NULL,''),(114973,'2024-12-26 03:39:27','/privacy-policy.cfm','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.192 Safari/537.36',NULL,''),(114974,'2024-12-26 03:44:34','/global-protect/login.esp','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.6 Safari/605.1.15','https://meadowcroftwines.com/global-protect/login.esp',''),(114975,'2024-12-26 03:45:05','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(114976,'2024-12-26 03:53:49','/vineyard/vineyard-map/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(114977,'2024-12-26 03:56:13','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(114978,'2024-12-26 04:21:38','/wp-content/themes/sahifa/?here=1111','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/242.02.8301.120 Safari/537.36','meadowcroftwines.com',''),(114979,'2024-12-26 04:22:41','/wp-content/backups-dup-pro/?here=1111','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/242.02.8301.120 Safari/537.36','meadowcroftwines.com',''),(114980,'2024-12-26 04:23:07','/wp-content/ai1wm-backups/?here=1111','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/242.02.8301.120 Safari/537.36','meadowcroftwines.com',''),(114981,'2024-12-26 04:23:09','/wp-content/backups-dup-lite/?here=1111','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/242.02.8301.120 Safari/537.36','meadowcroftwines.com',''),(114982,'2024-12-26 04:36:14','/vineyard/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.115 Safari/537.36',NULL,''),(114983,'2024-12-26 05:13:46','/events/sip-and-savor-cheese-making-class/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(114984,'2024-12-26 05:18:41','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(114985,'2024-12-26 05:27:26','/ads.txt','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko; compatible; BW/1.3; rb.gy/qyzae5) Chrome/124.0.0.0 Safari/537.36',NULL,''),(114986,'2024-12-26 05:32:19','/actuator/env','Go-http-client/1.1',NULL,''),(114987,'2024-12-26 05:32:19','/server','Go-http-client/1.1',NULL,''),(114988,'2024-12-26 05:32:20','/.vscode/sftp.json','Go-http-client/1.1',NULL,''),(114989,'2024-12-26 05:32:21','/debug/default/view?panel=config','Go-http-client/1.1',NULL,''),(114990,'2024-12-26 05:32:22','/v2/_catalog','Go-http-client/1.1',NULL,''),(114991,'2024-12-26 05:32:22','/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application','Go-http-client/1.1',NULL,''),(114992,'2024-12-26 05:32:23','/server-status','Go-http-client/1.1',NULL,''),(114993,'2024-12-26 05:32:23','/login.action','Go-http-client/1.1',NULL,''),(114994,'2024-12-26 05:32:24','/_all_dbs','Mozilla/5.0 (l9scan/2.0.0323e2331323e2339313e2134313; +https://leakix.net)',NULL,''),(114995,'2024-12-26 05:32:24','/config.json','Go-http-client/1.1',NULL,''),(114996,'2024-12-26 05:32:24','/telescope/requests','Go-http-client/1.1',NULL,''),(114997,'2024-12-26 05:32:25','/info.php','Go-http-client/1.1',NULL,''),(114998,'2024-12-26 06:14:44','/store/tel:7079344090','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36',NULL,''),(114999,'2024-12-26 06:15:03','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115000,'2024-12-26 06:24:49','/wordpress','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wordpress',''),(115001,'2024-12-26 06:24:50','/wp','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wp',''),(115002,'2024-12-26 06:24:51','/bc','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bc',''),(115003,'2024-12-26 06:24:51','/bk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bk',''),(115004,'2024-12-26 06:24:52','/backup','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/backup',''),(115005,'2024-12-26 06:24:54','/main','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/main',''),(115006,'2024-12-26 06:40:31','/privacy-policy/tel:7079344090','Mozilla/5.0 (Macintosh; Intel Mac OS X 11_3_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36',NULL,''),(115007,'2024-12-26 06:40:38','/events/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36',NULL,''),(115008,'2024-12-26 06:49:08','/ads.txt','Mozilla/5.0 (compatible)',NULL,''),(115009,'2024-12-26 06:49:09','/ads.txt','Mozilla/5.0 (compatible)',NULL,''),(115010,'2024-12-26 08:33:15','/events/pasta-making-demo-lunch','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36',NULL,''),(115011,'2024-12-26 10:27:53','/events/kintsugi-experience/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115012,'2024-12-26 10:35:48','/tasting-room/the-perfect-blend/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115013,'2024-12-26 10:39:14','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115014,'2024-12-26 11:00:58','/shop/?slug=Meadowcrofts_Annual_Wine_&_Candy_Halloween_Pairing&view=reservationtimes','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Amazonbot/0.1; +https://developer.amazon.com/support/amazonbot) Chrome/119.0.6045.214 Safari/537.36',NULL,''),(115015,'2024-12-26 11:03:48','/shop/?club_tier_name=Panorama Case Club&view=joinclub','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,''),(115016,'2024-12-26 11:03:53','/events/1318-2-2-3-2-2/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115017,'2024-12-26 11:17:38','/events/live-from-the-hive-2/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115018,'2024-12-26 11:21:08','/events/sip-and-savor-cheese-making-class/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115019,'2024-12-26 11:26:57','/store/index.cfm?fuseaction=productdetail&product_id=814','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 ADG/11.0.2510 AOLBUILD/11.0.2510 Safari/537.36',NULL,''),(115020,'2024-12-26 11:28:44','/events/rhine-river-wine-cruise/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115021,'2024-12-26 11:31:37','/product/group-wine-experience-10-guests/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115022,'2024-12-26 11:40:21','/home/tasting-640/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115023,'2024-12-26 11:49:45','/category/acclaim/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115024,'2024-12-26 11:54:00','/category/food-and-recipes/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115025,'2024-12-26 12:02:12','/tasting-room/o-2/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115026,'2024-12-26 12:13:19','/product/blending-seminar-corporate-rate/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115027,'2024-12-26 12:26:48','/about/meadowcroft-people/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115028,'2024-12-26 12:28:08','/tasting-room/honeycomb-light-gold/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115029,'2024-12-26 12:29:27','/.well-known/assetlinks.json','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115030,'2024-12-26 12:35:19','/wines/current-releases/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115031,'2024-12-26 12:36:49','/product/cheese-board-2guests/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115032,'2024-12-26 12:38:05','/category/news-and-updates/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115033,'2024-12-26 12:44:59','/events/hands-on-harvest-2019/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115034,'2024-12-26 12:47:57','/events/virtual-wine-tasting-6-3-20/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115035,'2024-12-26 12:49:20','/events/live-blind-tasting-featuring-toms-spring-wine-picks/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115036,'2024-12-26 12:54:40','/newsletter/mailing-list-header/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115037,'2024-12-26 13:00:30','/about/dd/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115038,'2024-12-26 13:00:52','/events/annual-fathers-day-2018/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115039,'2024-12-26 13:00:53','/home/meadowcroft-scene-narrow/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115040,'2024-12-26 13:01:54','/product/food-wine-pairing-7-guests/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115041,'2024-12-26 13:03:02','/home/meadowcroft-scene-narrow-2/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115042,'2024-12-26 13:06:10','/about/grapes-blurred/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115043,'2024-12-26 13:07:11','/collection/event-tickets/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115044,'2024-12-26 13:10:19','/home/video-vineyard-holder/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115045,'2024-12-26 13:13:52','/home/wine-cheese-1200x800/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115046,'2024-12-26 13:14:33','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115047,'2024-12-26 13:20:42','/product/group-wine-experience-7-guests/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115048,'2024-12-26 13:24:59','/events/live-from-the-hive/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115049,'2024-12-26 13:28:24','/tasting-room/meadowcroft-font/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115050,'2024-12-26 13:32:09','/events/meet-the-bee-team/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115051,'2024-12-26 13:32:12','/upcoming-events/o-10/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115052,'2024-12-26 13:34:24','/tasting-room/virtual-wine-tastings/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115053,'2024-12-26 13:34:35','/meta.json','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,''),(115054,'2024-12-26 13:43:13','/product/group-wine-experience-6guests/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115055,'2024-12-26 13:43:13','/events/race-weekend-exclusives/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115056,'2024-12-26 13:45:00','/events/tasting-room-closed-for-private-event/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115057,'2024-12-26 13:45:33','/tasting-room/o-1/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115058,'2024-12-26 13:49:08','/tasting-room/honeycomb-light-gold3/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115059,'2024-12-26 13:49:51','/events/taste-of-sonoma/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115060,'2024-12-26 13:50:01','/shop/?view=product&slug=blind_tasting_white','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(115061,'2024-12-26 13:50:46','/wp-plain.php','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',''),(115062,'2024-12-26 13:51:08','/bbvhjruh.php?Fox=d3wL7','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',''),(115063,'2024-12-26 13:51:18','/shop/?view=product&slug=blind_tasting_mix','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(115064,'2024-12-26 13:53:13','/about/elaine-2/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115065,'2024-12-26 13:53:25','/events/girl-scout-cookies-wine-pairing-2018/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115066,'2024-12-26 13:59:09','/events/st-pattys-sangria/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115067,'2024-12-26 13:59:09','/events/wine-and-bbq-sauce-tasting/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115068,'2024-12-26 14:00:35','/events/girl-scout-cookies-wine-pairing-2019/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115069,'2024-12-26 14:03:21','/events/meadowcroft-summer-bbq-party/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115070,'2024-12-26 14:03:27','/events/hands-on-harvest-experience/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115071,'2024-12-26 14:05:15','/product/ticket-fall-2022-club-pick-up-party/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115072,'2024-12-26 14:07:41','/product/book-cheese-wine/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115073,'2024-12-26 14:11:49','/collection/event-tickets','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(115074,'2024-12-26 14:14:38','/wine_asset/napa-carneros-napa-pinot-noir-2022/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115075,'2024-12-26 14:18:47','/events/members-virtual-tasting-and-happy-hour/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115076,'2024-12-26 14:18:49','/wines/current-releases/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(115077,'2024-12-26 14:20:51','/tasting-room/blending-experience/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115078,'2024-12-26 14:22:15','/teammember/chris-perry/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115079,'2024-12-26 14:22:20','/product/book-one-pan-two-plates/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115080,'2024-12-26 14:24:58','/events/oct-wine-club-pick-up-party/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115081,'2024-12-26 14:27:03','/home/tasting-room-exterior/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115082,'2024-12-26 14:29:30','/tasting-room/wine-cheese/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115083,'2024-12-26 14:29:35','/events/meadowcroft-wine-pick-up-party-2/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115084,'2024-12-26 14:32:18','/events/wine-club-pick-up-weekend/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115085,'2024-12-26 14:33:18','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115086,'2024-12-26 14:33:57','/trade-and-media/2015-carneros-pinot/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115087,'2024-12-26 14:37:15','/events/sunset-celebration-weekend/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115088,'2024-12-26 14:37:25','/category/lifestyle/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115089,'2024-12-26 14:38:42','/product/book-season-cookbook-duplicate/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115090,'2024-12-26 14:40:11','/tasting-room/o-9/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115091,'2024-12-26 14:43:31','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115092,'2024-12-26 14:48:22','/product/2019-cabernet-sauvignon-wyldvin-vineyard/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115093,'2024-12-26 14:51:00','/events/cirque-de-boheme-at-cornerstone-sonoma/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115094,'2024-12-26 14:51:15','/wordpress','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wordpress',''),(115095,'2024-12-26 14:51:16','/wp','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wp',''),(115096,'2024-12-26 14:51:17','/bc','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bc',''),(115097,'2024-12-26 14:51:18','/bk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bk',''),(115098,'2024-12-26 14:51:19','/backup','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/backup',''),(115099,'2024-12-26 14:51:21','/main','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/main',''),(115100,'2024-12-26 14:52:01','/events/1583/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115101,'2024-12-26 14:52:22','/collection/all-products/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115102,'2024-12-26 15:03:22','/product/food-wine-pairing-2-guests/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115103,'2024-12-26 15:19:09','/about/darby/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115104,'2024-12-26 15:27:14','/product/book-just-married-duplicate/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115105,'2024-12-26 15:33:41','/events/mount-veeder-library-tasting/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115106,'2024-12-26 15:36:37','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115107,'2024-12-26 15:40:23','/assets/plugins/elfinder/connectors/php/connector.php','ALittle Client',NULL,''),(115108,'2024-12-26 15:44:15','/events/summer-music-series/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115109,'2024-12-26 15:48:07','/product/virtual-blending-experience/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115110,'2024-12-26 15:49:49','/events/lighting-of-the-snowmen-2017/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115111,'2024-12-26 15:54:21','/home/tasting-1200-800/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115112,'2024-12-26 16:00:23','/about/mary/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115113,'2024-12-26 16:03:31','/events/wine-club-pick-up-day-spring22/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115114,'2024-12-26 16:07:28','/about/elaine/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115115,'2024-12-26 16:10:59','/vineyard/vineyard-map/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115116,'2024-12-26 16:38:01','/events/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115117,'2024-12-26 17:13:21','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115118,'2024-12-26 17:31:39','/events/live-from-the-hive','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)','https://meadowcroftwines.com/events/live-from-the-hive',''),(115119,'2024-12-26 17:42:22','/my-account','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115120,'2024-12-26 18:09:08','/events/1318-2/05-rose_2/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115121,'2024-12-26 18:45:47','/.well-known/assetlinks.json','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36',NULL,''),(115122,'2024-12-26 19:43:52','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115123,'2024-12-26 20:10:08','/click.php','Go-http-client/2.0','https://meadowcroftwines.com/click.php',''),(115124,'2024-12-26 20:10:09','/termps.php','Go-http-client/2.0','https://meadowcroftwines.com/termps.php',''),(115125,'2024-12-26 20:10:11','/sck.php','Go-http-client/2.0','https://meadowcroftwines.com/sck.php',''),(115126,'2024-12-26 20:10:12','/ans.php','Go-http-client/2.0','https://meadowcroftwines.com/ans.php',''),(115127,'2024-12-26 20:10:14','/buy.php','Go-http-client/2.0','https://meadowcroftwines.com/buy.php',''),(115128,'2024-12-26 20:10:16','/wp-content/plugins/Core-EconX/up.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/Core-EconX/up.php',''),(115129,'2024-12-26 20:10:18','/index4.php','Go-http-client/2.0','https://meadowcroftwines.com/index4.php',''),(115130,'2024-12-26 20:10:20','/wp-content/termps.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/termps.php',''),(115131,'2024-12-26 20:10:22','/rbh/log.ph','Go-http-client/2.0','https://meadowcroftwines.com/rbh/log.ph',''),(115132,'2024-12-26 20:10:23','/pwp-admin/network/login.php','Go-http-client/2.0','https://meadowcroftwines.com/pwp-admin/network/login.php',''),(115133,'2024-12-26 20:10:25','/wander.php','Go-http-client/2.0','https://meadowcroftwines.com/wander.php',''),(115134,'2024-12-26 20:10:27','/fck.php','Go-http-client/2.0','https://meadowcroftwines.com/fck.php',''),(115135,'2024-12-26 20:10:29','/wp-includes/css/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/css/about.php',''),(115136,'2024-12-26 20:10:31','/writeable.php','Go-http-client/2.0','https://meadowcroftwines.com/writeable.php',''),(115137,'2024-12-26 20:10:32','/admin/function.php','Go-http-client/2.0','https://meadowcroftwines.com/admin/function.php',''),(115138,'2024-12-26 20:10:33','/wp-content/themes/deeto/login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/deeto/login.php',''),(115139,'2024-12-26 20:10:35','/wp-includes/IXR/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/IXR/wp-login.php',''),(115140,'2024-12-26 20:10:38','/.tmb/about.php','Go-http-client/2.0','https://meadowcroftwines.com/.tmb/about.php',''),(115141,'2024-12-26 20:10:39','/wp-content/themes/newsfeed-theme/bbh.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/newsfeed-theme/bbh.php',''),(115142,'2024-12-26 20:10:42','/wp-content/plugins/helloapx/wp-apxupx.php?apx=upx','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/helloapx/wp-apxupx.php?apx=upx',''),(115143,'2024-12-26 20:10:44','/wp-content/themes/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/about.php',''),(115144,'2024-12-26 20:10:45','/shell20211028.php','Go-http-client/2.0','https://meadowcroftwines.com/shell20211028.php',''),(115145,'2024-12-26 20:10:47','/wp-includes/images/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/images/about.php',''),(115146,'2024-12-26 20:10:49','/makeasmtp.php','Go-http-client/2.0','https://meadowcroftwines.com/makeasmtp.php',''),(115147,'2024-12-26 20:10:50','/mah/function.php','Go-http-client/2.0','https://meadowcroftwines.com/mah/function.php',''),(115148,'2024-12-26 20:10:51','/simple.php','Go-http-client/2.0','https://meadowcroftwines.com/simple.php',''),(115149,'2024-12-26 20:10:53','/shell.php','Go-http-client/2.0','https://meadowcroftwines.com/shell.php',''),(115150,'2024-12-26 20:10:54','/file.php','Go-http-client/2.0','https://meadowcroftwines.com/file.php',''),(115151,'2024-12-26 20:10:56','/admin.php','Go-http-client/2.0','https://meadowcroftwines.com/admin.php',''),(115152,'2024-12-26 20:10:57','/mah.php','Go-http-client/2.0','https://meadowcroftwines.com/mah.php',''),(115153,'2024-12-26 20:10:58','/about.php','Go-http-client/2.0','https://meadowcroftwines.com/about.php',''),(115154,'2024-12-26 20:11:00','/css/','Go-http-client/2.0','https://meadowcroftwines.com/css/index.php',''),(115155,'2024-12-26 20:11:01','/index/function.php','Go-http-client/2.0','https://meadowcroftwines.com/index/function.php',''),(115156,'2024-12-26 20:11:03','/chosen.php','Go-http-client/2.0','https://meadowcroftwines.com/chosen.php',''),(115157,'2024-12-26 20:11:04','/fm.php','Go-http-client/2.0','https://meadowcroftwines.com/fm.php',''),(115158,'2024-12-26 20:11:05','/1.php','Go-http-client/2.0','https://meadowcroftwines.com/1.php',''),(115159,'2024-12-26 20:11:08','/about/function.php','Go-http-client/2.0','https://meadowcroftwines.com/about/function.php',''),(115160,'2024-12-26 20:11:09','/alfa-rex.php','Go-http-client/2.0','https://meadowcroftwines.com/alfa-rex.php',''),(115161,'2024-12-26 20:11:11','/wp-admin/css/colors/sHQwacY.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/css/colors/sHQwacY.php',''),(115162,'2024-12-26 20:11:12','/wp-content/plugins/core-plugin/include.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/core-plugin/include.php',''),(115163,'2024-12-26 20:11:14','/moon.php','Go-http-client/2.0','https://meadowcroftwines.com/moon.php',''),(115164,'2024-12-26 20:11:16','/wp-content/themes/sketch/404.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/sketch/404.php',''),(115165,'2024-12-26 20:11:19','/404.php','Go-http-client/2.0','https://meadowcroftwines.com/404.php',''),(115166,'2024-12-26 20:11:24','/autoload_classmap.php','Go-http-client/2.0','https://meadowcroftwines.com/autoload_classmap.php',''),(115167,'2024-12-26 20:11:26','/xml.php','Go-http-client/2.0','https://meadowcroftwines.com/xml.php',''),(115168,'2024-12-26 20:11:27','/jindex.php','Go-http-client/2.0','https://meadowcroftwines.com/jindex.php',''),(115169,'2024-12-26 20:11:31','/en/','Go-http-client/2.0','https://meadowcroftwines.com/en/index.php',''),(115170,'2024-12-26 20:11:32','/wp-content/plugins/WordPressCore/include.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/WordPressCore/include.php',''),(115171,'2024-12-26 20:11:34','/wso.php','Go-http-client/2.0','https://meadowcroftwines.com/wso.php',''),(115172,'2024-12-26 20:11:36','/ini.php','Go-http-client/2.0','https://meadowcroftwines.com/ini.php',''),(115173,'2024-12-26 20:11:37','/bk/','Go-http-client/2.0','https://meadowcroftwines.com/bk/index.php',''),(115174,'2024-12-26 20:11:39','/themes.php','Go-http-client/2.0','https://meadowcroftwines.com/themes.php',''),(115175,'2024-12-26 20:11:40','/wp-content/plugins/revslider/includes/external/page/','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/revslider/includes/external/page/index.php',''),(115176,'2024-12-26 20:11:42','/install.php','Go-http-client/2.0','https://meadowcroftwines.com/install.php',''),(115177,'2024-12-26 20:11:45','/classwithtostring.php','Go-http-client/2.0','https://meadowcroftwines.com/classwithtostring.php',''),(115178,'2024-12-26 20:11:48','/goods.php','Go-http-client/2.0','https://meadowcroftwines.com/goods.php',''),(115179,'2024-12-26 20:11:50','/wp-links.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-links.php',''),(115180,'2024-12-26 20:11:51','/new.php','Go-http-client/2.0','https://meadowcroftwines.com/new.php',''),(115181,'2024-12-26 20:11:53','/wp-content/languages/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/languages/wp-login.php',''),(115182,'2024-12-26 20:11:54','/wp.php','Go-http-client/2.0','https://meadowcroftwines.com/wp.php',''),(115183,'2024-12-26 20:11:56','/elp.php','Go-http-client/2.0','https://meadowcroftwines.com/elp.php',''),(115184,'2024-12-26 20:11:58','/a.php','Go-http-client/2.0','https://meadowcroftwines.com/a.php',''),(115185,'2024-12-26 20:11:59','/m.php','Go-http-client/2.0','https://meadowcroftwines.com/m.php',''),(115186,'2024-12-26 20:12:01','/wp-includes/product.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/product.php',''),(115187,'2024-12-26 20:12:02','/wp-content/admin.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/admin.php',''),(115188,'2024-12-26 20:12:03','/wp-admin/images/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/images/about.php',''),(115189,'2024-12-26 20:12:05','/log.php','Go-http-client/2.0','https://meadowcroftwines.com/log.php',''),(115190,'2024-12-26 20:12:06','/inc.php','Go-http-client/2.0','https://meadowcroftwines.com/inc.php',''),(115191,'2024-12-26 20:12:09','/wp-conflg.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-conflg.php',''),(115192,'2024-12-26 20:12:10','/cong.php','Go-http-client/2.0','https://meadowcroftwines.com/cong.php',''),(115193,'2024-12-26 20:12:11','/content.php','Go-http-client/2.0','https://meadowcroftwines.com/content.php',''),(115194,'2024-12-26 20:12:13','/wp-content/themes/seotheme/mar.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/seotheme/mar.php',''),(115195,'2024-12-26 20:12:14','/wp-info.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-info.php',''),(115196,'2024-12-26 20:12:16','/wp-content/languages/','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/languages/index.php',''),(115197,'2024-12-26 20:12:17','/edit.php','Go-http-client/2.0','https://meadowcroftwines.com/edit.php',''),(115198,'2024-12-26 20:12:21','/login.php','Go-http-client/2.0','https://meadowcroftwines.com/login.php',''),(115199,'2024-12-26 20:12:22','/text.php','Go-http-client/2.0','https://meadowcroftwines.com/text.php',''),(115200,'2024-12-26 20:12:24','/wp-content/upgrade/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/upgrade/about.php',''),(115201,'2024-12-26 20:12:29','/ws.php','Go-http-client/2.0','https://meadowcroftwines.com/ws.php',''),(115202,'2024-12-26 20:12:30','/dropdown.php','Go-http-client/2.0','https://meadowcroftwines.com/dropdown.php',''),(115203,'2024-12-26 20:12:32','/doc.php','Go-http-client/2.0','https://meadowcroftwines.com/doc.php',''),(115204,'2024-12-26 20:12:34','/radio.php','Go-http-client/2.0','https://meadowcroftwines.com/radio.php',''),(115205,'2024-12-26 20:12:36','/css.php','Go-http-client/1.1','http://meadowcroftwines.com/css.php',''),(115206,'2024-12-26 20:12:38','/wp-content/plugins/hello.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/hello.php',''),(115207,'2024-12-26 20:12:40','/function.php','Go-http-client/2.0','https://meadowcroftwines.com/function.php',''),(115208,'2024-12-26 20:12:41','/randkeyword.php','Go-http-client/2.0','https://meadowcroftwines.com/randkeyword.php',''),(115209,'2024-12-26 20:12:44','/plugin.php','Go-http-client/2.0','https://meadowcroftwines.com/plugin.php',''),(115210,'2024-12-26 20:12:45','/wp-includes/Text/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/Text/wp-login.php',''),(115211,'2024-12-26 20:12:47','/link.php','Go-http-client/2.0','https://meadowcroftwines.com/link.php',''),(115212,'2024-12-26 20:12:50','/wp-includes/fonts/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/fonts/about.php',''),(115213,'2024-12-26 20:12:51','/wp-includes/admin.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/admin.php',''),(115214,'2024-12-26 20:12:53','/defaults.php','Go-http-client/2.0','https://meadowcroftwines.com/defaults.php',''),(115215,'2024-12-26 20:12:54','/user.php','Go-http-client/2.0','https://meadowcroftwines.com/user.php',''),(115216,'2024-12-26 20:12:56','/wp-content/themes/twentyfive/include.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/twentyfive/include.php',''),(115217,'2024-12-26 20:12:57','/alfa.php','Go-http-client/2.0','https://meadowcroftwines.com/alfa.php',''),(115218,'2024-12-26 20:13:00','/wp-content/mah.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/mah.php',''),(115219,'2024-12-26 20:13:01','/x/','Go-http-client/2.0','https://meadowcroftwines.com/x/index.php',''),(115220,'2024-12-26 20:13:04','/wp-admin.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin.php',''),(115221,'2024-12-26 20:13:06','/templates/beez3/jsstrings.php','Go-http-client/2.0','https://meadowcroftwines.com/templates/beez3/jsstrings.php',''),(115222,'2024-12-26 20:13:08','/403.php','Go-http-client/2.0','https://meadowcroftwines.com/403.php',''),(115223,'2024-12-26 20:13:09','/wp-includes/mah.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/mah.php',''),(115224,'2024-12-26 20:13:11','/wp-content/shell.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/shell.php',''),(115225,'2024-12-26 20:13:13','/menu.php','Go-http-client/2.0','https://meadowcroftwines.com/menu.php',''),(115226,'2024-12-26 20:13:15','/data.php','Go-http-client/2.0','https://meadowcroftwines.com/data.php',''),(115227,'2024-12-26 20:13:17','/wp-admin/class-db.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/class-db.php',''),(115228,'2024-12-26 20:13:18','/lock.php','Go-http-client/2.0','https://meadowcroftwines.com/lock.php',''),(115229,'2024-12-26 20:13:20','/wp-header.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-header.php',''),(115230,'2024-12-26 20:13:21','/mini.php','Go-http-client/2.0','https://meadowcroftwines.com/mini.php',''),(115231,'2024-12-26 20:13:23','/atomlib.php','Go-http-client/2.0','https://meadowcroftwines.com/atomlib.php',''),(115232,'2024-12-26 20:13:25','/randkeyword.PhP7','Go-http-client/2.0','https://meadowcroftwines.com/randkeyword.PhP7',''),(115233,'2024-12-26 20:13:26','/b.php','Go-http-client/2.0','https://meadowcroftwines.com/b.php',''),(115234,'2024-12-26 20:13:27','/s.php','Go-http-client/2.0','https://meadowcroftwines.com/s.php',''),(115235,'2024-12-26 20:13:29','/hehehehe.php','Go-http-client/2.0','https://meadowcroftwines.com/hehehehe.php',''),(115236,'2024-12-26 20:13:30','/wp-includes/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/wp-login.php',''),(115237,'2024-12-26 20:13:34','/web.php','Go-http-client/2.0','https://meadowcroftwines.com/web.php',''),(115238,'2024-12-26 20:13:36','/xx.php','Go-http-client/2.0','https://meadowcroftwines.com/xx.php',''),(115239,'2024-12-26 20:13:37','/as.php','Go-http-client/2.0','https://meadowcroftwines.com/as.php',''),(115240,'2024-12-26 20:13:39','/worksec.php','Go-http-client/2.0','https://meadowcroftwines.com/worksec.php',''),(115241,'2024-12-26 20:13:40','/ioxi002.PhP7','Go-http-client/2.0','https://meadowcroftwines.com/ioxi002.PhP7',''),(115242,'2024-12-26 20:13:43','/back.php','Go-http-client/2.0','https://meadowcroftwines.com/back.php',''),(115243,'2024-12-26 20:13:45','/.well-known/about.php','Go-http-client/2.0','https://meadowcroftwines.com/.well-known/about.php',''),(115244,'2024-12-26 20:13:46','/plugins.php','Go-http-client/2.0','https://meadowcroftwines.com/plugins.php',''),(115245,'2024-12-26 20:13:48','/wp-content/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/about.php',''),(115246,'2024-12-26 20:13:49','/class.api.php','Go-http-client/2.0','https://meadowcroftwines.com/class.api.php',''),(115247,'2024-12-26 20:13:51','/baxa1.phP8','Go-http-client/2.0','https://meadowcroftwines.com/baxa1.phP8',''),(115248,'2024-12-26 20:13:52','/wp-includes/SimplePie/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/SimplePie/about.php',''),(115249,'2024-12-26 20:13:54','/wp-includes/sitemaps/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/sitemaps/about.php',''),(115250,'2024-12-26 20:13:58','/ova.php','Go-http-client/2.0','https://meadowcroftwines.com/ova.php',''),(115251,'2024-12-26 20:13:59','/wp-content/item.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/item.php',''),(115252,'2024-12-26 20:14:01','/wp-content/classwithtostring.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/classwithtostring.php',''),(115253,'2024-12-26 20:14:02','/wp-admin/css/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/css/about.php',''),(115254,'2024-12-26 20:14:04','/home.php','Go-http-client/2.0','https://meadowcroftwines.com/home.php',''),(115255,'2024-12-26 20:14:06','/wp-includes/item.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/item.php',''),(115256,'2024-12-26 20:14:09','/wp-content/cong.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/cong.php',''),(115257,'2024-12-26 20:14:10','/wp-content/themes/digital-download/new.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/digital-download/new.php',''),(115258,'2024-12-26 20:14:12','/x.php','Go-http-client/2.0','https://meadowcroftwines.com/x.php',''),(115259,'2024-12-26 20:14:13','/wp-admin/images/admin.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/images/admin.php',''),(115260,'2024-12-26 20:14:15','/byp.php','Go-http-client/2.0','https://meadowcroftwines.com/byp.php',''),(115261,'2024-12-26 20:14:17','/wp-admin/css/colors/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/css/colors/about.php',''),(115262,'2024-12-26 20:14:18','/wp-includes/customize/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/customize/about.php',''),(115263,'2024-12-26 20:14:20','/wp-admin/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/wp-login.php',''),(115264,'2024-12-26 20:14:23','/wp-content/themes/include.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/include.php',''),(115265,'2024-12-26 20:14:25','/wp-admin/classwithtostring.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/classwithtostring.php',''),(115266,'2024-12-26 20:14:26','/wp-content/plugins/WordPressCore/','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/WordPressCore/index.php',''),(115267,'2024-12-26 20:14:28','/ova-tools.php','Go-http-client/2.0','https://meadowcroftwines.com/ova-tools.php',''),(115268,'2024-12-26 20:14:29','/version.php','Go-http-client/2.0','https://meadowcroftwines.com/version.php',''),(115269,'2024-12-26 20:14:31','/lufix.php','Go-http-client/2.0','https://meadowcroftwines.com/lufix.php',''),(115270,'2024-12-26 20:14:33','/wp-includes/images/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/images/wp-login.php',''),(115271,'2024-12-26 20:14:35','/wp-includes/pomo/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/pomo/wp-login.php',''),(115272,'2024-12-26 20:14:38','/wp-content/themes.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes.php',''),(115273,'2024-12-26 20:14:42','/wp-includes/link.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/link.php',''),(115274,'2024-12-26 20:14:44','/wp-content/plugins/dummyyummy/wp-signup.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/dummyyummy/wp-signup.php',''),(115275,'2024-12-26 20:14:46','/w.php','Go-http-client/2.0','https://meadowcroftwines.com/w.php',''),(115276,'2024-12-26 20:14:48','/bypass.php','Go-http-client/2.0','https://meadowcroftwines.com/bypass.php',''),(115277,'2024-12-26 20:14:49','/wp-add.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-add.php',''),(115278,'2024-12-26 20:14:51','/wp-content/plugins/ioxi/alfa-ioxi.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/ioxi/alfa-ioxi.php',''),(115279,'2024-12-26 20:14:54','/templates/beez/jsstrings.php','Go-http-client/2.0','https://meadowcroftwines.com/templates/beez/jsstrings.php',''),(115280,'2024-12-26 20:14:57','/xl2023.php','Go-http-client/2.0','https://meadowcroftwines.com/xl2023.php',''),(115281,'2024-12-26 20:14:59','/templates/beez/','Go-http-client/2.0','https://meadowcroftwines.com/templates/beez/index.php',''),(115282,'2024-12-26 20:15:00','/wp-l0gin.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-l0gin.php',''),(115283,'2024-12-26 20:15:01','/c.php','Go-http-client/2.0','https://meadowcroftwines.com/c.php',''),(115284,'2024-12-26 20:15:03','/wp-admin/dropdown.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/dropdown.php',''),(115285,'2024-12-26 20:15:04','/small.php','Go-http-client/2.0','https://meadowcroftwines.com/small.php',''),(115286,'2024-12-26 20:15:06','/assets/library.php','Go-http-client/2.0','https://meadowcroftwines.com/assets/library.php',''),(115287,'2024-12-26 20:15:07','/h.php','Go-http-client/2.0','https://meadowcroftwines.com/h.php',''),(115288,'2024-12-26 20:15:09','/504.php','Go-http-client/2.0','https://meadowcroftwines.com/504.php',''),(115289,'2024-12-26 20:15:10','/wp-admin/css/network.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/css/network.php',''),(115290,'2024-12-26 20:15:12','/wp-content/content.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/content.php',''),(115291,'2024-12-26 20:15:13','/xt/','Go-http-client/2.0','https://meadowcroftwines.com/xt/index.php',''),(115292,'2024-12-26 20:15:16','/wp-content/json.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/json.php',''),(115293,'2024-12-26 20:15:18','/wp-includes/ID3/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/ID3/about.php',''),(115294,'2024-12-26 20:15:20','/tiny.php','Go-http-client/2.0','https://meadowcroftwines.com/tiny.php',''),(115295,'2024-12-26 20:15:22','/wp-includes/widgets/include.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/widgets/include.php',''),(115296,'2024-12-26 20:15:23','/customize.php','Go-http-client/2.0','https://meadowcroftwines.com/customize.php',''),(115297,'2024-12-26 20:15:25','/sad/about.php','Go-http-client/2.0','https://meadowcroftwines.com/sad/about.php',''),(115298,'2024-12-26 20:15:26','/jp.php','Go-http-client/2.0','https://meadowcroftwines.com/jp.php',''),(115299,'2024-12-26 20:15:27','/wp-includes/fonts/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/fonts/wp-login.php',''),(115300,'2024-12-26 20:15:29','/wp-admin/js/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/js/about.php',''),(115301,'2024-12-26 20:15:30','/wp-admin/network/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/network/wp-login.php',''),(115302,'2024-12-26 20:15:33','/1337.php','Go-http-client/2.0','https://meadowcroftwines.com/1337.php',''),(115303,'2024-12-26 20:15:35','/upgrade.php','Go-http-client/2.0','https://meadowcroftwines.com/upgrade.php',''),(115304,'2024-12-26 20:15:36','/wp-content/tmpls.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/tmpls.php',''),(115305,'2024-12-26 20:15:38','/editor.php','Go-http-client/2.0','https://meadowcroftwines.com/editor.php',''),(115306,'2024-12-26 20:15:39','/class.php','Go-http-client/2.0','https://meadowcroftwines.com/class.php',''),(115307,'2024-12-26 20:15:40','/vendor/bin/loader.php','Go-http-client/2.0','https://meadowcroftwines.com/vendor/bin/loader.php',''),(115308,'2024-12-26 20:15:42','/wp-includes/wp-includes_function.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/wp-includes_function.php',''),(115309,'2024-12-26 20:15:44','/wp-admin/css/dnIzIDf.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/css/dnIzIDf.php',''),(115310,'2024-12-26 20:15:46','/wp-content/themes/hideo/network.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/hideo/network.php',''),(115311,'2024-12-26 20:15:48','/wp-includes/Text/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/Text/about.php',''),(115312,'2024-12-26 20:15:49','/wp-includes/wp-class.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/wp-class.php',''),(115313,'2024-12-26 20:15:50','/wp-admin/css/colors/HsFPDcD.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/css/colors/HsFPDcD.php',''),(115314,'2024-12-26 20:15:52','/wp-admin/maint/upfile.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/maint/upfile.php',''),(115315,'2024-12-26 20:15:54','/wp-includes/room.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/room.php',''),(115316,'2024-12-26 20:15:56','/.tmb/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/.tmb/wp-login.php',''),(115317,'2024-12-26 20:15:57','/3m/wp-admin/css/colors/blue/','Go-http-client/2.0','https://meadowcroftwines.com/3m/wp-admin/css/colors/blue/',''),(115318,'2024-12-26 20:15:59','/defaul.php','Go-http-client/2.0','https://meadowcroftwines.com/defaul.php',''),(115319,'2024-12-26 20:16:01','/wp-includes/rest-api/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/rest-api/about.php',''),(115320,'2024-12-26 20:16:03','/repeater.php','Go-http-client/2.0','https://meadowcroftwines.com/repeater.php',''),(115321,'2024-12-26 20:16:04','/Njima.php','Go-http-client/2.0','https://meadowcroftwines.com/Njima.php',''),(115322,'2024-12-26 20:16:05','/ticket/vendor/htmlawed/htmlawed/gel4y.php','Go-http-client/2.0','https://meadowcroftwines.com/ticket/vendor/htmlawed/htmlawed/gel4y.php',''),(115323,'2024-12-26 20:16:07','/wp-content/themes/seotheme/db.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/seotheme/db.php',''),(115324,'2024-12-26 20:16:09','/wp-content/plugins/ubh/up.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/ubh/up.php',''),(115325,'2024-12-26 20:16:11','/wp-content/themes/pridmag/db.php?u','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/pridmag/db.php?u',''),(115326,'2024-12-26 20:16:13','/up.php','Go-http-client/2.0','https://meadowcroftwines.com/up.php',''),(115327,'2024-12-26 20:16:15','/wp-content/plugins/pwnd/pwnd.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/pwnd/pwnd.php',''),(115328,'2024-12-26 20:16:17','/uploader.php','Go-http-client/2.0','https://meadowcroftwines.com/uploader.php',''),(115329,'2024-12-26 20:16:18','/test.php','Go-http-client/2.0','https://meadowcroftwines.com/test.php',''),(115330,'2024-12-26 20:16:19','/85022df0ed31.php','Go-http-client/2.0','https://meadowcroftwines.com/85022df0ed31.php',''),(115331,'2024-12-26 20:16:20','/Nexus.php','Go-http-client/2.0','https://meadowcroftwines.com/Nexus.php',''),(115332,'2024-12-26 20:16:22','/upload.php','Go-http-client/2.0','https://meadowcroftwines.com/upload.php',''),(115333,'2024-12-26 21:06:52','/events/st-pattys-sangria','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)','https://meadowcroftwines.com/events/st-pattys-sangria',''),(115334,'2024-12-26 22:18:39','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115335,'2024-12-26 22:42:11','/shop/?view=products&slug=red_wine','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,''),(115336,'2024-12-26 23:00:00','/wordpress','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wordpress',''),(115337,'2024-12-26 23:00:02','/wp','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wp',''),(115338,'2024-12-26 23:00:02','/bc','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bc',''),(115339,'2024-12-26 23:00:03','/bk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bk',''),(115340,'2024-12-26 23:00:04','/backup','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/backup',''),(115341,'2024-12-26 23:00:06','/main','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/main',''),(115342,'2024-12-27 00:17:45','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115343,'2024-12-27 00:26:37','/press-releases/66-home9','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115344,'2024-12-27 01:19:01','/.vscode/sftp.json','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,''),(115345,'2024-12-27 03:38:25','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115346,'2024-12-27 05:00:47','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115347,'2024-12-27 05:04:22','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115348,'2024-12-27 05:11:35','/images/kk/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36','https://www.meadowcroftwines.com/private-label-wines/?gad_source=5',''),(115349,'2024-12-27 05:11:36','/lander/2222/index.html','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36','https://www.meadowcroftwines.com/private-label-wines/?gad_source=5',''),(115350,'2024-12-27 05:11:36','/mac/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36','https://www.meadowcroftwines.com/private-label-wines/?gad_source=5',''),(115351,'2024-12-27 05:11:36','/news/de/2/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36','https://www.meadowcroftwines.com/private-label-wines/?gad_source=5',''),(115352,'2024-12-27 05:11:36','/au-blog11-larry-edmure/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36','https://www.meadowcroftwines.com/private-label-wines/?gad_source=5',''),(115353,'2024-12-27 05:54:35','/prod-367048/2008-Mt-Veeder-Cabernet-Sauvignon.html','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115354,'2024-12-27 05:57:47','/events/','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,''),(115355,'2024-12-27 06:04:30','/scripts/tradepg.cfm','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,''),(115356,'2024-12-27 06:06:02','/res-374623/Annual-Fathers-Day-Pig-Roast.html','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,''),(115357,'2024-12-27 06:27:38','/collection/reininger-wines','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115358,'2024-12-27 06:42:43','/wordpress','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wordpress',''),(115359,'2024-12-27 06:42:45','/wp','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wp',''),(115360,'2024-12-27 06:42:45','/bc','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bc',''),(115361,'2024-12-27 06:42:46','/bk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bk',''),(115362,'2024-12-27 06:42:46','/backup','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/backup',''),(115363,'2024-12-27 06:42:48','/main','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/main',''),(115364,'2024-12-27 06:46:16','/.vscode/sftp.json','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,''),(115365,'2024-12-27 06:57:37','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115366,'2024-12-27 07:44:51','/events-at-meadowcroft','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,''),(115367,'2024-12-27 07:58:56','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115368,'2024-12-27 08:43:04','/wp-content/plugins/google-seo-rank/module.php','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36',NULL,''),(115369,'2024-12-27 09:18:37','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115370,'2024-12-27 09:37:38','/about-us.cfm','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Brave Chrome/89.0.4389.114 Safari/537.36',NULL,''),(115371,'2024-12-27 10:40:09','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115372,'2024-12-27 10:55:10','/shop/?view=product&slug=napavalley_anniversarycuvee','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,''),(115373,'2024-12-27 11:08:39','/events/kintsugi-experience/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)',NULL,''),(115374,'2024-12-27 11:24:24','/events/1318-2-2-3/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115375,'2024-12-27 12:08:56','/wines/current-releases/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(115376,'2024-12-27 12:15:34','/store/index.cfm?category_id=32&fuseaction=view','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Amazonbot/0.1; +https://developer.amazon.com/support/amazonbot) Chrome/119.0.6045.214 Safari/537.36',NULL,''),(115377,'2024-12-27 12:22:26','/shop/?view=product&slug=blind_tasting_mix','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(115378,'2024-12-27 12:41:11','/shop/?view=product&slug=blind_tasting_white','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(115379,'2024-12-27 12:51:42','/collection/event-tickets','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(115380,'2024-12-27 13:00:03','/.well-known/assetlinks.json','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115381,'2024-12-27 13:23:50','/events/st-pattys-sangria/','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,''),(115382,'2024-12-27 13:25:42','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115383,'2024-12-27 13:28:18','/wordpress','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wordpress',''),(115384,'2024-12-27 13:28:19','/wp','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wp',''),(115385,'2024-12-27 13:28:20','/bc','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bc',''),(115386,'2024-12-27 13:28:21','/bk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bk',''),(115387,'2024-12-27 13:28:22','/backup','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/backup',''),(115388,'2024-12-27 13:28:24','/main','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/main',''),(115389,'2024-12-27 13:32:59','/.well-known/assetlinks.json','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',NULL,''),(115390,'2024-12-27 13:41:52','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115391,'2024-12-27 13:51:10','/events/harvest-fest-2017/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115392,'2024-12-27 14:21:12','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115393,'2024-12-27 14:34:21','/vineyard/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115394,'2024-12-27 14:35:23','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115395,'2024-12-27 14:36:32','/events/fathers-day-bbq/06-2017_fathersday/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115396,'2024-12-27 15:06:13','/events/1318-2-2-3/600x450_meadowcroft_motherday_v1/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115397,'2024-12-27 16:05:08','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115398,'2024-12-27 16:40:41','/vineyard/tel:7079344090','Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_1) AppleWebKit/537.36 (KHTML, like Gecko) Brave Chrome/89.0.4389.90 Safari/537.36',NULL,''),(115399,'2024-12-27 17:04:46','/product/2021-cabernet-franc-rivino-vineyard/tel:7079344090','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.5 Safari/537.36',NULL,''),(115400,'2024-12-27 17:22:15','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115401,'2024-12-27 17:26:34','/.well-known/assetlinks.json','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',NULL,''),(115402,'2024-12-27 17:31:04','/store/index.cfm?fuseaction=productdetail&product_id=39','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.116 Safari/537.36',NULL,''),(115403,'2024-12-27 18:25:12','/.well-known/assetlinks.json','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36',NULL,''),(115404,'2024-12-27 18:41:50','/zb_system/login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,''),(115405,'2024-12-27 19:52:59','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115406,'2024-12-27 19:54:00','/sitemap.xml','Go-http-client/1.1',NULL,''),(115407,'2024-12-27 20:08:39','/events/pasta-making-demo-lunch','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36',NULL,''),(115408,'2024-12-27 20:23:49','/404error_test.html','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36',NULL,''),(115409,'2024-12-27 20:37:51','/meadowcroftwines_com.mdb','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0)',NULL,''),(115410,'2024-12-27 21:03:36','/packet.mdb','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0)',NULL,''),(115411,'2024-12-27 21:40:04','/events/','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,''),(115412,'2024-12-27 21:51:07','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115413,'2024-12-27 22:28:38','/public/m/server/fileupload.php?name=1.e10adc3949ba59abbe56e057f20f883e','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',NULL,''),(115414,'2024-12-27 22:34:35','/wordpress','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wordpress',''),(115415,'2024-12-27 22:34:37','/wp','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wp',''),(115416,'2024-12-27 22:34:37','/bc','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bc',''),(115417,'2024-12-27 22:34:38','/bk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bk',''),(115418,'2024-12-27 22:34:39','/backup','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/backup',''),(115419,'2024-12-27 22:34:41','/main','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/main',''),(115420,'2024-12-27 23:36:59','/events','Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.k8s.local-content---sieve.llfs-rest_client/1735371420-0',NULL,''),(115421,'2024-12-28 00:21:23','/upcoming-events/','Mozilla/5.0 (compatible; SeznamBot/4.0; +http://napoveda.seznam.cz/seznambot-intro/)',NULL,''),(115422,'2024-12-28 01:12:45','/events/pasta-making-demo-lunch/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115423,'2024-12-28 01:19:46','/prod-360230/2012-Napa-Pinot-Noir.html','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115424,'2024-12-28 01:37:37','/private-label-wines/?gad_source=5','App/0.0.1 CFNetwork/711.1.16 Darwin/14.0.0',NULL,''),(115425,'2024-12-28 02:05:34','/res-374623/Annual-Fathers-Day-Pig-Roast.html','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Amazonbot/0.1; +https://developer.amazon.com/support/amazonbot) Chrome/119.0.6045.214 Safari/537.36',NULL,''),(115426,'2024-12-28 02:12:55','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115427,'2024-12-28 03:09:51','/.vscode/sftp.json','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,''),(115428,'2024-12-28 03:43:49','/index.html','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,''),(115429,'2024-12-28 03:46:36','/old/upload/install/?step=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','https://www.meadowcroftwines.com/old/upload/install/index.php?step=1',''),(115430,'2024-12-28 03:46:36','/forum/upload/install/?step=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','https://www.meadowcroftwines.com/forum/upload/install/index.php?step=1',''),(115431,'2024-12-28 03:46:36','/upload/install/?step=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','https://www.meadowcroftwines.com/upload/install/index.php?step=1',''),(115432,'2024-12-28 03:46:37','/bbs/upload/install/?step=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','https://www.meadowcroftwines.com/bbs/upload/install/index.php?step=1',''),(115433,'2024-12-28 04:18:06','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115434,'2024-12-28 05:16:33','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115435,'2024-12-28 06:20:50','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115436,'2024-12-28 07:21:31','/wordpress','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wordpress',''),(115437,'2024-12-28 07:21:33','/wp','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wp',''),(115438,'2024-12-28 07:21:34','/bc','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bc',''),(115439,'2024-12-28 07:21:35','/bk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bk',''),(115440,'2024-12-28 07:21:35','/backup','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/backup',''),(115441,'2024-12-28 07:21:38','/main','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/main',''),(115442,'2024-12-28 07:25:57','/product/2020-bent-press-malbec-case-special/tel:7079344090','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Brave Chrome/78.0.3904.108 Safari/537.36',NULL,''),(115443,'2024-12-28 07:32:08','/events/1318-2-2-3-2/','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,''),(115444,'2024-12-28 08:07:03','/mobile/my-account','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115445,'2024-12-28 08:26:39','/shop/?view=products&slug=Special_offering','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,''),(115446,'2024-12-28 08:31:12','/meta.json','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,''),(115447,'2024-12-28 08:33:07','/events/pasta-making-demo-lunch','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36',NULL,''),(115448,'2024-12-28 08:35:10','/shop/?view=product&slug=blind_tasting_mix','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(115449,'2024-12-28 08:37:38','/res-374521/4th-Annual-St-Patricks-Day-Luncheon.html','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Amazonbot/0.1; +https://developer.amazon.com/support/amazonbot) Chrome/119.0.6045.214 Safari/537.36',NULL,''),(115450,'2024-12-28 08:45:50','/shop/?view=product&slug=blind_tasting_white','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(115451,'2024-12-28 08:48:15','/style/server/fileupload.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0',NULL,''),(115452,'2024-12-28 09:13:10','/wines/current-releases/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(115453,'2024-12-28 10:11:36','/events/girl-scout-cookies-wine-pairing-2019/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,''),(115454,'2024-12-28 10:16:34','/shop/?view=products&slug=current_releases','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,''),(115455,'2024-12-28 10:33:36','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115456,'2024-12-28 10:55:27','/.well-known/assetlinks.json','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',NULL,''),(115457,'2024-12-28 11:13:10','/event-363380/Fathers-Day-Pig-Roast.html','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Amazonbot/0.1; +https://developer.amazon.com/support/amazonbot) Chrome/119.0.6045.214 Safari/537.36',NULL,''),(115458,'2024-12-28 11:36:45','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115459,'2024-12-28 11:40:54','/store/index.cfm?category_id=32&fuseaction=view','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Amazonbot/0.1; +https://developer.amazon.com/support/amazonbot) Chrome/119.0.6045.214 Safari/537.36',NULL,''),(115460,'2024-12-28 12:01:42','/click.php','Go-http-client/2.0','https://meadowcroftwines.com/click.php',''),(115461,'2024-12-28 12:01:43','/termps.php','Go-http-client/2.0','https://meadowcroftwines.com/termps.php',''),(115462,'2024-12-28 12:01:45','/sck.php','Go-http-client/2.0','https://meadowcroftwines.com/sck.php',''),(115463,'2024-12-28 12:01:46','/ans.php','Go-http-client/2.0','https://meadowcroftwines.com/ans.php',''),(115464,'2024-12-28 12:01:47','/buy.php','Go-http-client/2.0','https://meadowcroftwines.com/buy.php',''),(115465,'2024-12-28 12:01:48','/wp-content/plugins/Core-EconX/up.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/Core-EconX/up.php',''),(115466,'2024-12-28 12:01:49','/index4.php','Go-http-client/2.0','https://meadowcroftwines.com/index4.php',''),(115467,'2024-12-28 12:01:50','/wp-content/termps.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/termps.php',''),(115468,'2024-12-28 12:01:51','/rbh/log.ph','Go-http-client/2.0','https://meadowcroftwines.com/rbh/log.ph',''),(115469,'2024-12-28 12:01:52','/pwp-admin/network/login.php','Go-http-client/2.0','https://meadowcroftwines.com/pwp-admin/network/login.php',''),(115470,'2024-12-28 12:01:54','/wander.php','Go-http-client/2.0','https://meadowcroftwines.com/wander.php',''),(115471,'2024-12-28 12:01:55','/fck.php','Go-http-client/2.0','https://meadowcroftwines.com/fck.php',''),(115472,'2024-12-28 12:01:56','/wp-includes/css/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/css/about.php',''),(115473,'2024-12-28 12:01:57','/writeable.php','Go-http-client/2.0','https://meadowcroftwines.com/writeable.php',''),(115474,'2024-12-28 12:01:58','/admin/function.php','Go-http-client/2.0','https://meadowcroftwines.com/admin/function.php',''),(115475,'2024-12-28 12:01:59','/wp-content/themes/deeto/login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/deeto/login.php',''),(115476,'2024-12-28 12:02:00','/wp-includes/IXR/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/IXR/wp-login.php',''),(115477,'2024-12-28 12:02:03','/.tmb/about.php','Go-http-client/2.0','https://meadowcroftwines.com/.tmb/about.php',''),(115478,'2024-12-28 12:02:04','/wp-content/themes/newsfeed-theme/bbh.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/newsfeed-theme/bbh.php',''),(115479,'2024-12-28 12:02:05','/wp-content/plugins/helloapx/wp-apxupx.php?apx=upx','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/helloapx/wp-apxupx.php?apx=upx',''),(115480,'2024-12-28 12:02:06','/wp-content/themes/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/about.php',''),(115481,'2024-12-28 12:02:08','/shell20211028.php','Go-http-client/2.0','https://meadowcroftwines.com/shell20211028.php',''),(115482,'2024-12-28 12:02:09','/wp-includes/images/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/images/about.php',''),(115483,'2024-12-28 12:02:10','/makeasmtp.php','Go-http-client/2.0','https://meadowcroftwines.com/makeasmtp.php',''),(115484,'2024-12-28 12:02:11','/mah/function.php','Go-http-client/2.0','https://meadowcroftwines.com/mah/function.php',''),(115485,'2024-12-28 12:02:12','/simple.php','Go-http-client/2.0','https://meadowcroftwines.com/simple.php',''),(115486,'2024-12-28 12:02:13','/shell.php','Go-http-client/2.0','https://meadowcroftwines.com/shell.php',''),(115487,'2024-12-28 12:02:14','/file.php','Go-http-client/2.0','https://meadowcroftwines.com/file.php',''),(115488,'2024-12-28 12:02:16','/admin.php','Go-http-client/2.0','https://meadowcroftwines.com/admin.php',''),(115489,'2024-12-28 12:02:17','/mah.php','Go-http-client/2.0','https://meadowcroftwines.com/mah.php',''),(115490,'2024-12-28 12:02:18','/about.php','Go-http-client/2.0','https://meadowcroftwines.com/about.php',''),(115491,'2024-12-28 12:02:19','/css/','Go-http-client/2.0','https://meadowcroftwines.com/css/index.php',''),(115492,'2024-12-28 12:02:19','/index/function.php','Go-http-client/2.0','https://meadowcroftwines.com/index/function.php',''),(115493,'2024-12-28 12:02:21','/chosen.php','Go-http-client/2.0','https://meadowcroftwines.com/chosen.php',''),(115494,'2024-12-28 12:02:22','/fm.php','Go-http-client/2.0','https://meadowcroftwines.com/fm.php',''),(115495,'2024-12-28 12:02:23','/1.php','Go-http-client/2.0','https://meadowcroftwines.com/1.php',''),(115496,'2024-12-28 12:02:24','/about/function.php','Go-http-client/2.0','https://meadowcroftwines.com/about/function.php',''),(115497,'2024-12-28 12:02:25','/alfa-rex.php','Go-http-client/2.0','https://meadowcroftwines.com/alfa-rex.php',''),(115498,'2024-12-28 12:02:27','/wp-admin/css/colors/sHQwacY.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/css/colors/sHQwacY.php',''),(115499,'2024-12-28 12:02:28','/wp-content/plugins/core-plugin/include.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/core-plugin/include.php',''),(115500,'2024-12-28 12:02:29','/moon.php','Go-http-client/2.0','https://meadowcroftwines.com/moon.php',''),(115501,'2024-12-28 12:02:31','/wp-content/themes/sketch/404.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/sketch/404.php',''),(115502,'2024-12-28 12:02:33','/404.php','Go-http-client/2.0','https://meadowcroftwines.com/404.php',''),(115503,'2024-12-28 12:02:36','/autoload_classmap.php','Go-http-client/2.0','https://meadowcroftwines.com/autoload_classmap.php',''),(115504,'2024-12-28 12:02:37','/xml.php','Go-http-client/2.0','https://meadowcroftwines.com/xml.php',''),(115505,'2024-12-28 12:02:38','/jindex.php','Go-http-client/2.0','https://meadowcroftwines.com/jindex.php',''),(115506,'2024-12-28 12:02:40','/en/','Go-http-client/2.0','https://meadowcroftwines.com/en/index.php',''),(115507,'2024-12-28 12:02:41','/wp-content/plugins/WordPressCore/include.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/WordPressCore/include.php',''),(115508,'2024-12-28 12:02:43','/wso.php','Go-http-client/2.0','https://meadowcroftwines.com/wso.php',''),(115509,'2024-12-28 12:02:44','/ini.php','Go-http-client/2.0','https://meadowcroftwines.com/ini.php',''),(115510,'2024-12-28 12:02:45','/bk/','Go-http-client/2.0','https://meadowcroftwines.com/bk/index.php',''),(115511,'2024-12-28 12:02:46','/themes.php','Go-http-client/2.0','https://meadowcroftwines.com/themes.php',''),(115512,'2024-12-28 12:02:47','/wp-content/plugins/revslider/includes/external/page/','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/revslider/includes/external/page/index.php',''),(115513,'2024-12-28 12:02:48','/install.php','Go-http-client/2.0','https://meadowcroftwines.com/install.php',''),(115514,'2024-12-28 12:02:50','/classwithtostring.php','Go-http-client/2.0','https://meadowcroftwines.com/classwithtostring.php',''),(115515,'2024-12-28 12:02:52','/goods.php','Go-http-client/2.0','https://meadowcroftwines.com/goods.php',''),(115516,'2024-12-28 12:02:54','/wp-links.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-links.php',''),(115517,'2024-12-28 12:02:55','/new.php','Go-http-client/2.0','https://meadowcroftwines.com/new.php',''),(115518,'2024-12-28 12:02:56','/wp-content/languages/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/languages/wp-login.php',''),(115519,'2024-12-28 12:02:57','/wp.php','Go-http-client/2.0','https://meadowcroftwines.com/wp.php',''),(115520,'2024-12-28 12:02:58','/elp.php','Go-http-client/2.0','https://meadowcroftwines.com/elp.php',''),(115521,'2024-12-28 12:02:59','/a.php','Go-http-client/2.0','https://meadowcroftwines.com/a.php',''),(115522,'2024-12-28 12:03:00','/m.php','Go-http-client/2.0','https://meadowcroftwines.com/m.php',''),(115523,'2024-12-28 12:03:01','/wp-includes/product.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/product.php',''),(115524,'2024-12-28 12:03:02','/wp-content/admin.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/admin.php',''),(115525,'2024-12-28 12:03:03','/wp-admin/images/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/images/about.php',''),(115526,'2024-12-28 12:03:05','/log.php','Go-http-client/2.0','https://meadowcroftwines.com/log.php',''),(115527,'2024-12-28 12:03:06','/inc.php','Go-http-client/2.0','https://meadowcroftwines.com/inc.php',''),(115528,'2024-12-28 12:03:08','/wp-conflg.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-conflg.php',''),(115529,'2024-12-28 12:03:09','/cong.php','Go-http-client/2.0','https://meadowcroftwines.com/cong.php',''),(115530,'2024-12-28 12:03:10','/content.php','Go-http-client/2.0','https://meadowcroftwines.com/content.php',''),(115531,'2024-12-28 12:03:11','/wp-content/themes/seotheme/mar.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/seotheme/mar.php',''),(115532,'2024-12-28 12:03:13','/wp-info.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-info.php',''),(115533,'2024-12-28 12:03:14','/wp-content/languages/','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/languages/index.php',''),(115534,'2024-12-28 12:03:15','/edit.php','Go-http-client/2.0','https://meadowcroftwines.com/edit.php',''),(115535,'2024-12-28 12:03:17','/login.php','Go-http-client/2.0','https://meadowcroftwines.com/login.php',''),(115536,'2024-12-28 12:03:18','/text.php','Go-http-client/2.0','https://meadowcroftwines.com/text.php',''),(115537,'2024-12-28 12:03:19','/wp-content/upgrade/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/upgrade/about.php',''),(115538,'2024-12-28 12:03:22','/ws.php','Go-http-client/2.0','https://meadowcroftwines.com/ws.php',''),(115539,'2024-12-28 12:03:23','/dropdown.php','Go-http-client/2.0','https://meadowcroftwines.com/dropdown.php',''),(115540,'2024-12-28 12:03:25','/doc.php','Go-http-client/2.0','https://meadowcroftwines.com/doc.php',''),(115541,'2024-12-28 12:03:26','/radio.php','Go-http-client/2.0','https://meadowcroftwines.com/radio.php',''),(115542,'2024-12-28 12:03:28','/css.php','Go-http-client/1.1','http://meadowcroftwines.com/css.php',''),(115543,'2024-12-28 12:03:29','/wp-content/plugins/hello.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/hello.php',''),(115544,'2024-12-28 12:03:30','/function.php','Go-http-client/2.0','https://meadowcroftwines.com/function.php',''),(115545,'2024-12-28 12:03:31','/randkeyword.php','Go-http-client/2.0','https://meadowcroftwines.com/randkeyword.php',''),(115546,'2024-12-28 12:03:33','/plugin.php','Go-http-client/2.0','https://meadowcroftwines.com/plugin.php',''),(115547,'2024-12-28 12:03:34','/wp-includes/Text/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/Text/wp-login.php',''),(115548,'2024-12-28 12:03:35','/link.php','Go-http-client/2.0','https://meadowcroftwines.com/link.php',''),(115549,'2024-12-28 12:03:37','/wp-includes/fonts/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/fonts/about.php',''),(115550,'2024-12-28 12:03:39','/wp-includes/admin.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/admin.php',''),(115551,'2024-12-28 12:03:40','/defaults.php','Go-http-client/2.0','https://meadowcroftwines.com/defaults.php',''),(115552,'2024-12-28 12:03:41','/user.php','Go-http-client/2.0','https://meadowcroftwines.com/user.php',''),(115553,'2024-12-28 12:03:42','/wp-content/themes/twentyfive/include.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/twentyfive/include.php',''),(115554,'2024-12-28 12:03:43','/alfa.php','Go-http-client/2.0','https://meadowcroftwines.com/alfa.php',''),(115555,'2024-12-28 12:03:45','/wp-content/mah.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/mah.php',''),(115556,'2024-12-28 12:03:46','/x/','Go-http-client/2.0','https://meadowcroftwines.com/x/index.php',''),(115557,'2024-12-28 12:03:47','/wp-admin.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin.php',''),(115558,'2024-12-28 12:03:48','/templates/beez3/jsstrings.php','Go-http-client/2.0','https://meadowcroftwines.com/templates/beez3/jsstrings.php',''),(115559,'2024-12-28 12:03:49','/403.php','Go-http-client/2.0','https://meadowcroftwines.com/403.php',''),(115560,'2024-12-28 12:03:50','/wp-includes/mah.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/mah.php',''),(115561,'2024-12-28 12:03:51','/wp-content/shell.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/shell.php',''),(115562,'2024-12-28 12:03:53','/menu.php','Go-http-client/2.0','https://meadowcroftwines.com/menu.php',''),(115563,'2024-12-28 12:03:54','/data.php','Go-http-client/2.0','https://meadowcroftwines.com/data.php',''),(115564,'2024-12-28 12:03:55','/wp-admin/class-db.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/class-db.php',''),(115565,'2024-12-28 12:03:56','/lock.php','Go-http-client/2.0','https://meadowcroftwines.com/lock.php',''),(115566,'2024-12-28 12:03:57','/wp-header.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-header.php',''),(115567,'2024-12-28 12:03:58','/mini.php','Go-http-client/2.0','https://meadowcroftwines.com/mini.php',''),(115568,'2024-12-28 12:03:59','/atomlib.php','Go-http-client/2.0','https://meadowcroftwines.com/atomlib.php',''),(115569,'2024-12-28 12:04:00','/randkeyword.PhP7','Go-http-client/2.0','https://meadowcroftwines.com/randkeyword.PhP7',''),(115570,'2024-12-28 12:04:01','/b.php','Go-http-client/2.0','https://meadowcroftwines.com/b.php',''),(115571,'2024-12-28 12:04:02','/s.php','Go-http-client/2.0','https://meadowcroftwines.com/s.php',''),(115572,'2024-12-28 12:04:03','/hehehehe.php','Go-http-client/2.0','https://meadowcroftwines.com/hehehehe.php',''),(115573,'2024-12-28 12:04:04','/wp-includes/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/wp-login.php',''),(115574,'2024-12-28 12:04:07','/web.php','Go-http-client/2.0','https://meadowcroftwines.com/web.php',''),(115575,'2024-12-28 12:04:08','/xx.php','Go-http-client/2.0','https://meadowcroftwines.com/xx.php',''),(115576,'2024-12-28 12:04:09','/as.php','Go-http-client/2.0','https://meadowcroftwines.com/as.php',''),(115577,'2024-12-28 12:04:10','/worksec.php','Go-http-client/2.0','https://meadowcroftwines.com/worksec.php',''),(115578,'2024-12-28 12:04:11','/ioxi002.PhP7','Go-http-client/2.0','https://meadowcroftwines.com/ioxi002.PhP7',''),(115579,'2024-12-28 12:04:13','/back.php','Go-http-client/2.0','https://meadowcroftwines.com/back.php',''),(115580,'2024-12-28 12:04:14','/.well-known/about.php','Go-http-client/2.0','https://meadowcroftwines.com/.well-known/about.php',''),(115581,'2024-12-28 12:04:15','/plugins.php','Go-http-client/2.0','https://meadowcroftwines.com/plugins.php',''),(115582,'2024-12-28 12:04:16','/wp-content/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/about.php',''),(115583,'2024-12-28 12:04:17','/class.api.php','Go-http-client/2.0','https://meadowcroftwines.com/class.api.php',''),(115584,'2024-12-28 12:04:18','/baxa1.phP8','Go-http-client/2.0','https://meadowcroftwines.com/baxa1.phP8',''),(115585,'2024-12-28 12:04:19','/wp-includes/SimplePie/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/SimplePie/about.php',''),(115586,'2024-12-28 12:04:20','/wp-includes/sitemaps/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/sitemaps/about.php',''),(115587,'2024-12-28 12:04:22','/ova.php','Go-http-client/2.0','https://meadowcroftwines.com/ova.php',''),(115588,'2024-12-28 12:04:23','/wp-content/item.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/item.php',''),(115589,'2024-12-28 12:04:24','/wp-content/classwithtostring.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/classwithtostring.php',''),(115590,'2024-12-28 12:04:25','/wp-admin/css/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/css/about.php',''),(115591,'2024-12-28 12:04:26','/home.php','Go-http-client/2.0','https://meadowcroftwines.com/home.php',''),(115592,'2024-12-28 12:04:28','/wp-includes/item.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/item.php',''),(115593,'2024-12-28 12:04:29','/wp-content/cong.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/cong.php',''),(115594,'2024-12-28 12:04:30','/wp-content/themes/digital-download/new.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/digital-download/new.php',''),(115595,'2024-12-28 12:04:32','/x.php','Go-http-client/2.0','https://meadowcroftwines.com/x.php',''),(115596,'2024-12-28 12:04:33','/wp-admin/images/admin.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/images/admin.php',''),(115597,'2024-12-28 12:04:34','/byp.php','Go-http-client/2.0','https://meadowcroftwines.com/byp.php',''),(115598,'2024-12-28 12:04:35','/wp-admin/css/colors/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/css/colors/about.php',''),(115599,'2024-12-28 12:04:36','/wp-includes/customize/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/customize/about.php',''),(115600,'2024-12-28 12:04:37','/wp-admin/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/wp-login.php',''),(115601,'2024-12-28 12:04:39','/wp-content/themes/include.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/include.php',''),(115602,'2024-12-28 12:04:40','/wp-admin/classwithtostring.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/classwithtostring.php',''),(115603,'2024-12-28 12:04:41','/wp-content/plugins/WordPressCore/','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/WordPressCore/index.php',''),(115604,'2024-12-28 12:04:42','/ova-tools.php','Go-http-client/2.0','https://meadowcroftwines.com/ova-tools.php',''),(115605,'2024-12-28 12:04:43','/version.php','Go-http-client/2.0','https://meadowcroftwines.com/version.php',''),(115606,'2024-12-28 12:04:44','/lufix.php','Go-http-client/2.0','https://meadowcroftwines.com/lufix.php',''),(115607,'2024-12-28 12:04:45','/wp-includes/images/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/images/wp-login.php',''),(115608,'2024-12-28 12:04:47','/wp-includes/pomo/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/pomo/wp-login.php',''),(115609,'2024-12-28 12:04:49','/wp-content/themes.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes.php',''),(115610,'2024-12-28 12:04:51','/wp-includes/link.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/link.php',''),(115611,'2024-12-28 12:04:52','/wp-content/plugins/dummyyummy/wp-signup.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/dummyyummy/wp-signup.php',''),(115612,'2024-12-28 12:04:54','/w.php','Go-http-client/2.0','https://meadowcroftwines.com/w.php',''),(115613,'2024-12-28 12:04:55','/bypass.php','Go-http-client/2.0','https://meadowcroftwines.com/bypass.php',''),(115614,'2024-12-28 12:04:56','/wp-add.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-add.php',''),(115615,'2024-12-28 12:04:57','/wp-content/plugins/ioxi/alfa-ioxi.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/ioxi/alfa-ioxi.php',''),(115616,'2024-12-28 12:04:59','/templates/beez/jsstrings.php','Go-http-client/2.0','https://meadowcroftwines.com/templates/beez/jsstrings.php',''),(115617,'2024-12-28 12:05:02','/xl2023.php','Go-http-client/2.0','https://meadowcroftwines.com/xl2023.php',''),(115618,'2024-12-28 12:05:03','/templates/beez/','Go-http-client/2.0','https://meadowcroftwines.com/templates/beez/index.php',''),(115619,'2024-12-28 12:05:04','/wp-l0gin.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-l0gin.php',''),(115620,'2024-12-28 12:05:05','/c.php','Go-http-client/2.0','https://meadowcroftwines.com/c.php',''),(115621,'2024-12-28 12:05:06','/wp-admin/dropdown.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/dropdown.php',''),(115622,'2024-12-28 12:05:07','/small.php','Go-http-client/2.0','https://meadowcroftwines.com/small.php',''),(115623,'2024-12-28 12:05:08','/assets/library.php','Go-http-client/2.0','https://meadowcroftwines.com/assets/library.php',''),(115624,'2024-12-28 12:05:09','/h.php','Go-http-client/2.0','https://meadowcroftwines.com/h.php',''),(115625,'2024-12-28 12:05:10','/504.php','Go-http-client/2.0','https://meadowcroftwines.com/504.php',''),(115626,'2024-12-28 12:05:11','/wp-admin/css/network.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/css/network.php',''),(115627,'2024-12-28 12:05:12','/wp-content/content.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/content.php',''),(115628,'2024-12-28 12:05:13','/xt/','Go-http-client/2.0','https://meadowcroftwines.com/xt/index.php',''),(115629,'2024-12-28 12:05:15','/wp-content/json.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/json.php',''),(115630,'2024-12-28 12:05:16','/wp-includes/ID3/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/ID3/about.php',''),(115631,'2024-12-28 12:05:18','/tiny.php','Go-http-client/2.0','https://meadowcroftwines.com/tiny.php',''),(115632,'2024-12-28 12:05:19','/wp-includes/widgets/include.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/widgets/include.php',''),(115633,'2024-12-28 12:05:20','/customize.php','Go-http-client/2.0','https://meadowcroftwines.com/customize.php',''),(115634,'2024-12-28 12:05:21','/sad/about.php','Go-http-client/2.0','https://meadowcroftwines.com/sad/about.php',''),(115635,'2024-12-28 12:05:22','/jp.php','Go-http-client/2.0','https://meadowcroftwines.com/jp.php',''),(115636,'2024-12-28 12:05:23','/wp-includes/fonts/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/fonts/wp-login.php',''),(115637,'2024-12-28 12:05:25','/wp-admin/js/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/js/about.php',''),(115638,'2024-12-28 12:05:26','/wp-admin/network/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/network/wp-login.php',''),(115639,'2024-12-28 12:05:28','/1337.php','Go-http-client/2.0','https://meadowcroftwines.com/1337.php',''),(115640,'2024-12-28 12:05:29','/upgrade.php','Go-http-client/2.0','https://meadowcroftwines.com/upgrade.php',''),(115641,'2024-12-28 12:05:30','/wp-content/tmpls.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/tmpls.php',''),(115642,'2024-12-28 12:05:32','/editor.php','Go-http-client/2.0','https://meadowcroftwines.com/editor.php',''),(115643,'2024-12-28 12:05:33','/class.php','Go-http-client/2.0','https://meadowcroftwines.com/class.php',''),(115644,'2024-12-28 12:05:34','/vendor/bin/loader.php','Go-http-client/2.0','https://meadowcroftwines.com/vendor/bin/loader.php',''),(115645,'2024-12-28 12:05:35','/wp-includes/wp-includes_function.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/wp-includes_function.php',''),(115646,'2024-12-28 12:05:36','/wp-admin/css/dnIzIDf.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/css/dnIzIDf.php',''),(115647,'2024-12-28 12:05:38','/wp-content/themes/hideo/network.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/hideo/network.php',''),(115648,'2024-12-28 12:05:39','/wp-includes/Text/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/Text/about.php',''),(115649,'2024-12-28 12:05:41','/wp-includes/wp-class.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/wp-class.php',''),(115650,'2024-12-28 12:05:42','/wp-admin/css/colors/HsFPDcD.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/css/colors/HsFPDcD.php',''),(115651,'2024-12-28 12:05:43','/wp-admin/maint/upfile.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/maint/upfile.php',''),(115652,'2024-12-28 12:05:45','/wp-includes/room.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/room.php',''),(115653,'2024-12-28 12:05:46','/.tmb/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/.tmb/wp-login.php',''),(115654,'2024-12-28 12:05:47','/3m/wp-admin/css/colors/blue/','Go-http-client/2.0','https://meadowcroftwines.com/3m/wp-admin/css/colors/blue/',''),(115655,'2024-12-28 12:05:48','/defaul.php','Go-http-client/2.0','https://meadowcroftwines.com/defaul.php',''),(115656,'2024-12-28 12:05:49','/wp-includes/rest-api/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/rest-api/about.php',''),(115657,'2024-12-28 12:05:51','/repeater.php','Go-http-client/2.0','https://meadowcroftwines.com/repeater.php',''),(115658,'2024-12-28 12:05:52','/Njima.php','Go-http-client/2.0','https://meadowcroftwines.com/Njima.php',''),(115659,'2024-12-28 12:05:53','/ticket/vendor/htmlawed/htmlawed/gel4y.php','Go-http-client/2.0','https://meadowcroftwines.com/ticket/vendor/htmlawed/htmlawed/gel4y.php',''),(115660,'2024-12-28 12:05:54','/wp-content/themes/seotheme/db.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/seotheme/db.php',''),(115661,'2024-12-28 12:05:55','/wp-content/plugins/ubh/up.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/ubh/up.php',''),(115662,'2024-12-28 12:05:57','/wp-content/themes/pridmag/db.php?u','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/pridmag/db.php?u',''),(115663,'2024-12-28 12:05:58','/up.php','Go-http-client/2.0','https://meadowcroftwines.com/up.php',''),(115664,'2024-12-28 12:05:59','/wp-content/plugins/pwnd/pwnd.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/pwnd/pwnd.php',''),(115665,'2024-12-28 12:06:01','/uploader.php','Go-http-client/2.0','https://meadowcroftwines.com/uploader.php',''),(115666,'2024-12-28 12:06:02','/test.php','Go-http-client/2.0','https://meadowcroftwines.com/test.php',''),(115667,'2024-12-28 12:06:03','/85022df0ed31.php','Go-http-client/2.0','https://meadowcroftwines.com/85022df0ed31.php',''),(115668,'2024-12-28 12:06:04','/Nexus.php','Go-http-client/2.0','https://meadowcroftwines.com/Nexus.php',''),(115669,'2024-12-28 12:06:05','/upload.php','Go-http-client/2.0','https://meadowcroftwines.com/upload.php',''),(115670,'2024-12-28 12:55:34','/wp-content/plugins/fix/up.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',NULL,''),(115671,'2024-12-28 13:02:42','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115672,'2024-12-28 13:11:24','/.well-known/assetlinks.json','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115673,'2024-12-28 13:36:20','/upcoming-events','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115674,'2024-12-28 13:55:24','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115675,'2024-12-28 13:57:53','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115676,'2024-12-28 13:58:48','/upcoming-events/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115677,'2024-12-28 14:19:38','/wp-content/plugins/fix/up.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',NULL,''),(115678,'2024-12-28 14:49:43','/trade-and-media/','rogerbot/1.1 (http://moz.com/help/pro/what-is-rogerbot-, rogerbot-crawler+vanguard@moz.com)',NULL,''),(115679,'2024-12-28 14:49:48','/tasting-room/blending-experience/','rogerbot/1.1 (http://moz.com/help/pro/what-is-rogerbot-, rogerbot-crawler+vanguard@moz.com)',NULL,''),(115680,'2024-12-28 14:49:55','/vineyard/','rogerbot/1.1 (http://moz.com/help/pro/what-is-rogerbot-, rogerbot-crawler+vanguard@moz.com)',NULL,''),(115681,'2024-12-28 14:58:06','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115682,'2024-12-28 15:57:46','/actuator/env','Go-http-client/1.1',NULL,''),(115683,'2024-12-28 15:57:46','/server','Go-http-client/1.1',NULL,''),(115684,'2024-12-28 15:57:46','/.vscode/sftp.json','Go-http-client/1.1',NULL,''),(115685,'2024-12-28 15:57:47','/debug/default/view?panel=config','Go-http-client/1.1',NULL,''),(115686,'2024-12-28 15:57:48','/v2/_catalog','Go-http-client/1.1',NULL,''),(115687,'2024-12-28 15:57:48','/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application','Go-http-client/1.1',NULL,''),(115688,'2024-12-28 15:57:49','/server-status','Go-http-client/1.1',NULL,''),(115689,'2024-12-28 15:57:49','/login.action','Go-http-client/1.1',NULL,''),(115690,'2024-12-28 15:57:49','/_all_dbs','Mozilla/5.0 (l9scan/2.0.0323e2331323e2339313e2134313; +https://leakix.net)',NULL,''),(115691,'2024-12-28 15:57:50','/config.json','Go-http-client/1.1',NULL,''),(115692,'2024-12-28 15:57:50','/telescope/requests','Go-http-client/1.1',NULL,''),(115693,'2024-12-28 15:57:50','/info.php','Go-http-client/1.1',NULL,''),(115694,'2024-12-28 16:20:40','/product/2022-meadowcroft-blending-cab-sauv','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115695,'2024-12-28 16:44:00','/events/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115696,'2024-12-28 16:47:26','/shop?slug=special_offering&view=products','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115697,'2024-12-28 16:49:39','/events/total-solar-wine-eclipse/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Brave Chrome/79.0.3945.130 Safari/537.36',NULL,''),(115698,'2024-12-28 17:18:20','/store/index.cfm?fuseaction=productdetail&product_id=84','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36',NULL,''),(115699,'2024-12-28 17:21:19','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115700,'2024-12-28 17:48:40','/product/2022-meadowcroft-blending-cab-sauv/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115701,'2024-12-28 18:33:19','/.well-known/assetlinks.json','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36',NULL,''),(115702,'2024-12-28 19:04:13','/events','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(115703,'2024-12-28 21:35:53','/product/ticket-spring-23-pick-up-party-non-member-ticket-duplicate/tel:7079344090','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4450.0 Safari/537.36',NULL,''),(115704,'2024-12-28 23:35:03','/events','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36',NULL,''),(115705,'2024-12-28 23:59:29','/meta.json','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,''),(115706,'2024-12-29 00:30:03','/payment/','Mozilla/5.0 (Linux; Android 4.0.3; HTC One V Build/IML74K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.72 Mobile Safari/537.36',NULL,''),(115707,'2024-12-29 00:59:20','/privacy-policy.cfm','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',NULL,''),(115708,'2024-12-29 01:36:58','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115709,'2024-12-29 02:02:55','/wp-content/plugins/fix/up.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',NULL,''),(115710,'2024-12-29 03:56:15','/tips-to-aging-wine/','Grammarly/1.0 (http://www.grammarly.com)',NULL,''),(115711,'2024-12-29 04:06:16','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115712,'2024-12-29 04:10:51','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115713,'2024-12-29 04:26:03','/health-benefits-of-red-wine/','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36',NULL,''),(115714,'2024-12-29 04:27:34','/.vscode/sftp.json','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,''),(115715,'2024-12-29 04:50:40','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115716,'2024-12-29 05:09:52','/wines/current-releases/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(115717,'2024-12-29 05:15:47','/phengite.php','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.meadowcroftwines.com/phengite.php',''),(115718,'2024-12-29 05:15:47','/files.php','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.meadowcroftwines.com/files.php',''),(115719,'2024-12-29 05:15:47','/alfa-rex.php','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.meadowcroftwines.com/alfa-rex.php',''),(115720,'2024-12-29 05:15:47','/index-bak2.php','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.meadowcroftwines.com/index-bak2.php',''),(115721,'2024-12-29 05:24:38','/collection/event-tickets','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(115722,'2024-12-29 05:44:16','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115723,'2024-12-29 05:54:10','/shop/?view=product&slug=blind_tasting_mix','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(115724,'2024-12-29 05:56:12','/shop/?view=product&slug=blind_tasting_white','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(115725,'2024-12-29 08:26:23','/shop/?view=reservationtimes&slug=Meadowcrofts_Annual_Wine_&_Candy_Halloween_Pairing','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115726,'2024-12-29 08:41:00','/privacy-policy/tel:7079344090','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36',NULL,''),(115727,'2024-12-29 08:41:22','/Wine-Clubs','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,''),(115728,'2024-12-29 08:49:20','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115729,'2024-12-29 09:11:40','/mec-events-sitemap.xml','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115730,'2024-12-29 09:24:30','/shop/?view=product&slug=blind_tasting_red','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,''),(115731,'2024-12-29 09:55:26','/upcoming-events','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)',NULL,''),(115732,'2024-12-29 10:07:29','/store/','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,''),(115733,'2024-12-29 11:03:45','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115734,'2024-12-29 12:42:58','/events/sip-and-savor-cheese-making-class/','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,''),(115735,'2024-12-29 12:45:01','/.well-known/assetlinks.json','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115736,'2024-12-29 12:49:13','/visit','Mozilla/5.0 (compatible; MojeekBot/0.11; +https://www.mojeek.com/bot.html)',NULL,''),(115737,'2024-12-29 12:53:58','/store/index.cfm?category_id=32&fuseaction=view','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Amazonbot/0.1; +https://developer.amazon.com/support/amazonbot) Chrome/119.0.6045.214 Safari/537.36',NULL,''),(115738,'2024-12-29 13:31:07','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115739,'2024-12-29 13:38:11','/admin.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://meadowcroftwines.com',''),(115740,'2024-12-29 14:07:27','/wp-content/plugins/fix/up.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',NULL,''),(115741,'2024-12-29 14:17:08','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115742,'2024-12-29 14:25:52','/shop/?view=product&slug=blind_tasting_red','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,''),(115743,'2024-12-29 14:28:41','/our-wines','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,''),(115744,'2024-12-29 14:29:08','/upcoming-events','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15',NULL,''),(115745,'2024-12-29 15:01:54','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115746,'2024-12-29 15:09:47','/admin.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://meadowcroftwines.com',''),(115747,'2024-12-29 15:43:14','/wordpress','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wordpress',''),(115748,'2024-12-29 15:43:16','/wp','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wp',''),(115749,'2024-12-29 15:43:16','/bc','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bc',''),(115750,'2024-12-29 15:43:17','/bk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bk',''),(115751,'2024-12-29 15:43:18','/backup','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/backup',''),(115752,'2024-12-29 15:43:20','/main','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/main',''),(115753,'2024-12-29 16:41:19','/wp-plain.php','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',''),(115754,'2024-12-29 16:41:20','/btpfwqim.php?Fox=d3wL7','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',''),(115755,'2024-12-29 17:08:56','/wuxibike/uploadpdf/upload.php?name=1.e10adc3949ba59abbe56e057f20f883e','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',NULL,''),(115756,'2024-12-29 17:10:33','/plugins/elfinder/connectors/php/connector.php','ALittle Client',NULL,''),(115757,'2024-12-29 17:16:05','/ads.txt','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko; compatible; BW/1.3; rb.gy/qyzae5) Chrome/124.0.0.0 Safari/537.36',NULL,''),(115758,'2024-12-29 18:03:19','/store/','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,''),(115759,'2024-12-29 18:25:13','/.well-known/assetlinks.json','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36',NULL,''),(115760,'2024-12-29 19:07:51','/events/live-from-the-hive/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,''),(115761,'2024-12-29 19:09:03','/upcoming-events/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,''),(115762,'2024-12-29 19:15:41','/images/images/cache.php?pass=3a0e007c895888c9c4bf234e2772a0dd','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,''),(115763,'2024-12-29 19:23:22','/events/customer-appreciation-barbeque','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36','http://www.meadowcroftwines.com/events/customer-appreciation-barbeque',''),(115764,'2024-12-29 20:10:34','/events/pasta-making-demo-lunch','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',NULL,''),(115765,'2024-12-29 20:14:49','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115766,'2024-12-29 21:26:32','/apple-app-site-association','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html)',NULL,''),(115767,'2024-12-29 21:45:26','/events','Mozilla/5.0 (compatible; DataForSeoBot/1.0; +https://dataforseo.com/dataforseo-bot)',NULL,''),(115768,'2024-12-29 21:53:57','/shop/?view=products&slug=current_releases','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,''),(115769,'2024-12-29 22:13:29','/product/2021-cabernet-franc-rivino-vineyard/tel:7079344090','Mozilla/5.0 (Microsoft Windows NT 10.0.16299.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36 (FTM)',NULL,''),(115770,'2024-12-29 22:17:05','/.well-known/apple-app-site-association','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html)',NULL,''),(115771,'2024-12-29 23:27:02','/meta.json','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,''),(115772,'2024-12-30 01:09:36','/apple-app-site-association','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html)',NULL,''),(115773,'2024-12-30 01:26:00','/wordpress','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wordpress',''),(115774,'2024-12-30 01:26:01','/wp','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wp',''),(115775,'2024-12-30 01:26:02','/bc','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bc',''),(115776,'2024-12-30 01:26:03','/bk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bk',''),(115777,'2024-12-30 01:26:03','/backup','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/backup',''),(115778,'2024-12-30 01:26:05','/main','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/main',''),(115779,'2024-12-30 02:01:57','/.env.example','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko/20100101 Firefox/58.0',NULL,''),(115780,'2024-12-30 03:10:52','/collection/featured','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,''),(115781,'2024-12-30 03:46:15','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115782,'2024-12-30 03:46:21','/ads.txt','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko; compatible; BW/1.3; rb.gy/qyzae5) Chrome/124.0.0.0 Safari/537.36',NULL,''),(115783,'2024-12-30 04:09:16','/our-story','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36',NULL,''),(115784,'2024-12-30 04:22:48','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(115785,'2024-12-30 04:47:00','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115786,'2024-12-30 05:34:06','/events/hands-on-harvest-2019/','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,''),(115787,'2024-12-30 05:46:54','/shop/?view=products&slug=Wine_Gifts','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,''),(115788,'2024-12-30 06:01:32','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(115789,'2024-12-30 06:51:11','/click.php','Go-http-client/2.0','https://meadowcroftwines.com/click.php',''),(115790,'2024-12-30 06:51:12','/termps.php','Go-http-client/2.0','https://meadowcroftwines.com/termps.php',''),(115791,'2024-12-30 06:51:14','/sck.php','Go-http-client/2.0','https://meadowcroftwines.com/sck.php',''),(115792,'2024-12-30 06:51:15','/ans.php','Go-http-client/2.0','https://meadowcroftwines.com/ans.php',''),(115793,'2024-12-30 06:51:17','/buy.php','Go-http-client/2.0','https://meadowcroftwines.com/buy.php',''),(115794,'2024-12-30 06:51:18','/wp-content/plugins/Core-EconX/up.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/Core-EconX/up.php',''),(115795,'2024-12-30 06:51:21','/index4.php','Go-http-client/2.0','https://meadowcroftwines.com/index4.php',''),(115796,'2024-12-30 06:51:22','/wp-content/termps.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/termps.php',''),(115797,'2024-12-30 06:51:23','/rbh/log.ph','Go-http-client/2.0','https://meadowcroftwines.com/rbh/log.ph',''),(115798,'2024-12-30 06:51:25','/pwp-admin/network/login.php','Go-http-client/2.0','https://meadowcroftwines.com/pwp-admin/network/login.php',''),(115799,'2024-12-30 06:51:26','/wander.php','Go-http-client/2.0','https://meadowcroftwines.com/wander.php',''),(115800,'2024-12-30 06:51:28','/fck.php','Go-http-client/2.0','https://meadowcroftwines.com/fck.php',''),(115801,'2024-12-30 06:51:29','/wp-includes/css/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/css/about.php',''),(115802,'2024-12-30 06:51:31','/writeable.php','Go-http-client/2.0','https://meadowcroftwines.com/writeable.php',''),(115803,'2024-12-30 06:51:32','/admin/function.php','Go-http-client/2.0','https://meadowcroftwines.com/admin/function.php',''),(115804,'2024-12-30 06:51:33','/wp-content/themes/deeto/login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/deeto/login.php',''),(115805,'2024-12-30 06:51:35','/wp-includes/IXR/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/IXR/wp-login.php',''),(115806,'2024-12-30 06:51:38','/.tmb/about.php','Go-http-client/2.0','https://meadowcroftwines.com/.tmb/about.php',''),(115807,'2024-12-30 06:51:39','/wp-content/themes/newsfeed-theme/bbh.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/newsfeed-theme/bbh.php',''),(115808,'2024-12-30 06:51:41','/wp-content/plugins/helloapx/wp-apxupx.php?apx=upx','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/helloapx/wp-apxupx.php?apx=upx',''),(115809,'2024-12-30 06:51:42','/wp-content/themes/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/about.php',''),(115810,'2024-12-30 06:51:44','/shell20211028.php','Go-http-client/2.0','https://meadowcroftwines.com/shell20211028.php',''),(115811,'2024-12-30 06:51:45','/wp-includes/images/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/images/about.php',''),(115812,'2024-12-30 06:51:47','/makeasmtp.php','Go-http-client/2.0','https://meadowcroftwines.com/makeasmtp.php',''),(115813,'2024-12-30 06:51:48','/mah/function.php','Go-http-client/2.0','https://meadowcroftwines.com/mah/function.php',''),(115814,'2024-12-30 06:51:50','/simple.php','Go-http-client/2.0','https://meadowcroftwines.com/simple.php',''),(115815,'2024-12-30 06:51:51','/shell.php','Go-http-client/2.0','https://meadowcroftwines.com/shell.php',''),(115816,'2024-12-30 06:51:52','/file.php','Go-http-client/2.0','https://meadowcroftwines.com/file.php',''),(115817,'2024-12-30 06:51:54','/admin.php','Go-http-client/2.0','https://meadowcroftwines.com/admin.php',''),(115818,'2024-12-30 06:51:55','/mah.php','Go-http-client/2.0','https://meadowcroftwines.com/mah.php',''),(115819,'2024-12-30 06:51:56','/about.php','Go-http-client/2.0','https://meadowcroftwines.com/about.php',''),(115820,'2024-12-30 06:51:57','/css/','Go-http-client/2.0','https://meadowcroftwines.com/css/index.php',''),(115821,'2024-12-30 06:51:59','/index/function.php','Go-http-client/2.0','https://meadowcroftwines.com/index/function.php',''),(115822,'2024-12-30 06:52:00','/chosen.php','Go-http-client/2.0','https://meadowcroftwines.com/chosen.php',''),(115823,'2024-12-30 06:52:01','/fm.php','Go-http-client/2.0','https://meadowcroftwines.com/fm.php',''),(115824,'2024-12-30 06:52:03','/1.php','Go-http-client/2.0','https://meadowcroftwines.com/1.php',''),(115825,'2024-12-30 06:52:05','/about/function.php','Go-http-client/2.0','https://meadowcroftwines.com/about/function.php',''),(115826,'2024-12-30 06:52:06','/alfa-rex.php','Go-http-client/2.0','https://meadowcroftwines.com/alfa-rex.php',''),(115827,'2024-12-30 06:52:08','/wp-admin/css/colors/sHQwacY.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/css/colors/sHQwacY.php',''),(115828,'2024-12-30 06:52:09','/wp-content/plugins/core-plugin/include.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/core-plugin/include.php',''),(115829,'2024-12-30 06:52:11','/moon.php','Go-http-client/2.0','https://meadowcroftwines.com/moon.php',''),(115830,'2024-12-30 06:52:13','/wp-content/themes/sketch/404.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/sketch/404.php',''),(115831,'2024-12-30 06:52:15','/404.php','Go-http-client/2.0','https://meadowcroftwines.com/404.php',''),(115832,'2024-12-30 06:52:19','/autoload_classmap.php','Go-http-client/2.0','https://meadowcroftwines.com/autoload_classmap.php',''),(115833,'2024-12-30 06:52:21','/xml.php','Go-http-client/2.0','https://meadowcroftwines.com/xml.php',''),(115834,'2024-12-30 06:52:22','/jindex.php','Go-http-client/2.0','https://meadowcroftwines.com/jindex.php',''),(115835,'2024-12-30 06:52:25','/en/','Go-http-client/2.0','https://meadowcroftwines.com/en/index.php',''),(115836,'2024-12-30 06:52:26','/wp-content/plugins/WordPressCore/include.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/WordPressCore/include.php',''),(115837,'2024-12-30 06:52:28','/wso.php','Go-http-client/2.0','https://meadowcroftwines.com/wso.php',''),(115838,'2024-12-30 06:52:29','/ini.php','Go-http-client/2.0','https://meadowcroftwines.com/ini.php',''),(115839,'2024-12-30 06:52:30','/bk/','Go-http-client/2.0','https://meadowcroftwines.com/bk/index.php',''),(115840,'2024-12-30 06:52:32','/themes.php','Go-http-client/2.0','https://meadowcroftwines.com/themes.php',''),(115841,'2024-12-30 06:52:33','/wp-content/plugins/revslider/includes/external/page/','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/revslider/includes/external/page/index.php',''),(115842,'2024-12-30 06:52:35','/install.php','Go-http-client/2.0','https://meadowcroftwines.com/install.php',''),(115843,'2024-12-30 06:52:37','/classwithtostring.php','Go-http-client/2.0','https://meadowcroftwines.com/classwithtostring.php',''),(115844,'2024-12-30 06:52:40','/goods.php','Go-http-client/2.0','https://meadowcroftwines.com/goods.php',''),(115845,'2024-12-30 06:52:42','/wp-links.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-links.php',''),(115846,'2024-12-30 06:52:43','/new.php','Go-http-client/2.0','https://meadowcroftwines.com/new.php',''),(115847,'2024-12-30 06:52:44','/wp-content/languages/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/languages/wp-login.php',''),(115848,'2024-12-30 06:52:46','/wp.php','Go-http-client/2.0','https://meadowcroftwines.com/wp.php',''),(115849,'2024-12-30 06:52:47','/elp.php','Go-http-client/2.0','https://meadowcroftwines.com/elp.php',''),(115850,'2024-12-30 06:52:48','/a.php','Go-http-client/2.0','https://meadowcroftwines.com/a.php',''),(115851,'2024-12-30 06:52:50','/m.php','Go-http-client/2.0','https://meadowcroftwines.com/m.php',''),(115852,'2024-12-30 06:52:51','/wp-includes/product.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/product.php',''),(115853,'2024-12-30 06:52:52','/wp-content/admin.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/admin.php',''),(115854,'2024-12-30 06:52:53','/wp-admin/images/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/images/about.php',''),(115855,'2024-12-30 06:52:55','/log.php','Go-http-client/2.0','https://meadowcroftwines.com/log.php',''),(115856,'2024-12-30 06:52:56','/inc.php','Go-http-client/2.0','https://meadowcroftwines.com/inc.php',''),(115857,'2024-12-30 06:52:59','/wp-conflg.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-conflg.php',''),(115858,'2024-12-30 06:53:00','/cong.php','Go-http-client/2.0','https://meadowcroftwines.com/cong.php',''),(115859,'2024-12-30 06:53:01','/content.php','Go-http-client/2.0','https://meadowcroftwines.com/content.php',''),(115860,'2024-12-30 06:53:02','/wp-content/themes/seotheme/mar.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/seotheme/mar.php',''),(115861,'2024-12-30 06:53:04','/wp-info.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-info.php',''),(115862,'2024-12-30 06:53:05','/wp-content/languages/','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/languages/index.php',''),(115863,'2024-12-30 06:53:06','/edit.php','Go-http-client/2.0','https://meadowcroftwines.com/edit.php',''),(115864,'2024-12-30 06:53:10','/login.php','Go-http-client/2.0','https://meadowcroftwines.com/login.php',''),(115865,'2024-12-30 06:53:11','/text.php','Go-http-client/2.0','https://meadowcroftwines.com/text.php',''),(115866,'2024-12-30 06:53:12','/wp-content/upgrade/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/upgrade/about.php',''),(115867,'2024-12-30 06:53:16','/ws.php','Go-http-client/2.0','https://meadowcroftwines.com/ws.php',''),(115868,'2024-12-30 06:53:18','/dropdown.php','Go-http-client/2.0','https://meadowcroftwines.com/dropdown.php',''),(115869,'2024-12-30 06:53:19','/doc.php','Go-http-client/2.0','https://meadowcroftwines.com/doc.php',''),(115870,'2024-12-30 06:53:21','/radio.php','Go-http-client/2.0','https://meadowcroftwines.com/radio.php',''),(115871,'2024-12-30 06:53:23','/css.php','Go-http-client/1.1','http://meadowcroftwines.com/css.php',''),(115872,'2024-12-30 06:53:24','/wp-content/plugins/hello.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/hello.php',''),(115873,'2024-12-30 06:53:26','/function.php','Go-http-client/2.0','https://meadowcroftwines.com/function.php',''),(115874,'2024-12-30 06:53:27','/randkeyword.php','Go-http-client/2.0','https://meadowcroftwines.com/randkeyword.php',''),(115875,'2024-12-30 06:53:30','/plugin.php','Go-http-client/2.0','https://meadowcroftwines.com/plugin.php',''),(115876,'2024-12-30 06:53:31','/wp-includes/Text/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/Text/wp-login.php',''),(115877,'2024-12-30 06:53:33','/link.php','Go-http-client/2.0','https://meadowcroftwines.com/link.php',''),(115878,'2024-12-30 06:53:35','/wp-includes/fonts/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/fonts/about.php',''),(115879,'2024-12-30 06:53:37','/wp-includes/admin.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/admin.php',''),(115880,'2024-12-30 06:53:38','/defaults.php','Go-http-client/2.0','https://meadowcroftwines.com/defaults.php',''),(115881,'2024-12-30 06:53:39','/user.php','Go-http-client/2.0','https://meadowcroftwines.com/user.php',''),(115882,'2024-12-30 06:53:41','/wp-content/themes/twentyfive/include.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/twentyfive/include.php',''),(115883,'2024-12-30 06:53:42','/alfa.php','Go-http-client/2.0','https://meadowcroftwines.com/alfa.php',''),(115884,'2024-12-30 06:53:45','/wp-content/mah.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/mah.php',''),(115885,'2024-12-30 06:53:46','/x/','Go-http-client/2.0','https://meadowcroftwines.com/x/index.php',''),(115886,'2024-12-30 06:53:47','/wp-admin.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin.php',''),(115887,'2024-12-30 06:53:49','/templates/beez3/jsstrings.php','Go-http-client/2.0','https://meadowcroftwines.com/templates/beez3/jsstrings.php',''),(115888,'2024-12-30 06:53:50','/403.php','Go-http-client/2.0','https://meadowcroftwines.com/403.php',''),(115889,'2024-12-30 06:53:51','/wp-includes/mah.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/mah.php',''),(115890,'2024-12-30 06:53:53','/wp-content/shell.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/shell.php',''),(115891,'2024-12-30 06:53:55','/menu.php','Go-http-client/2.0','https://meadowcroftwines.com/menu.php',''),(115892,'2024-12-30 06:53:56','/data.php','Go-http-client/2.0','https://meadowcroftwines.com/data.php',''),(115893,'2024-12-30 06:53:57','/wp-admin/class-db.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/class-db.php',''),(115894,'2024-12-30 06:53:59','/lock.php','Go-http-client/2.0','https://meadowcroftwines.com/lock.php',''),(115895,'2024-12-30 06:54:00','/wp-header.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-header.php',''),(115896,'2024-12-30 06:54:01','/mini.php','Go-http-client/2.0','https://meadowcroftwines.com/mini.php',''),(115897,'2024-12-30 06:54:03','/atomlib.php','Go-http-client/2.0','https://meadowcroftwines.com/atomlib.php',''),(115898,'2024-12-30 06:54:04','/randkeyword.PhP7','Go-http-client/2.0','https://meadowcroftwines.com/randkeyword.PhP7',''),(115899,'2024-12-30 06:54:05','/b.php','Go-http-client/2.0','https://meadowcroftwines.com/b.php',''),(115900,'2024-12-30 06:54:06','/s.php','Go-http-client/2.0','https://meadowcroftwines.com/s.php',''),(115901,'2024-12-30 06:54:08','/hehehehe.php','Go-http-client/2.0','https://meadowcroftwines.com/hehehehe.php',''),(115902,'2024-12-30 06:54:09','/wp-includes/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/wp-login.php',''),(115903,'2024-12-30 06:54:14','/web.php','Go-http-client/2.0','https://meadowcroftwines.com/web.php',''),(115904,'2024-12-30 06:54:15','/xx.php','Go-http-client/2.0','https://meadowcroftwines.com/xx.php',''),(115905,'2024-12-30 06:54:16','/as.php','Go-http-client/2.0','https://meadowcroftwines.com/as.php',''),(115906,'2024-12-30 06:54:17','/worksec.php','Go-http-client/2.0','https://meadowcroftwines.com/worksec.php',''),(115907,'2024-12-30 06:54:19','/ioxi002.PhP7','Go-http-client/2.0','https://meadowcroftwines.com/ioxi002.PhP7',''),(115908,'2024-12-30 06:54:21','/back.php','Go-http-client/2.0','https://meadowcroftwines.com/back.php',''),(115909,'2024-12-30 06:54:23','/.well-known/about.php','Go-http-client/2.0','https://meadowcroftwines.com/.well-known/about.php',''),(115910,'2024-12-30 06:54:24','/plugins.php','Go-http-client/2.0','https://meadowcroftwines.com/plugins.php',''),(115911,'2024-12-30 06:54:25','/wp-content/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/about.php',''),(115912,'2024-12-30 06:54:26','/class.api.php','Go-http-client/2.0','https://meadowcroftwines.com/class.api.php',''),(115913,'2024-12-30 06:54:28','/baxa1.phP8','Go-http-client/2.0','https://meadowcroftwines.com/baxa1.phP8',''),(115914,'2024-12-30 06:54:29','/wp-includes/SimplePie/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/SimplePie/about.php',''),(115915,'2024-12-30 06:54:30','/wp-includes/sitemaps/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/sitemaps/about.php',''),(115916,'2024-12-30 06:54:33','/ova.php','Go-http-client/2.0','https://meadowcroftwines.com/ova.php',''),(115917,'2024-12-30 06:54:34','/wp-content/item.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/item.php',''),(115918,'2024-12-30 06:54:36','/wp-content/classwithtostring.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/classwithtostring.php',''),(115919,'2024-12-30 06:54:37','/wp-admin/css/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/css/about.php',''),(115920,'2024-12-30 06:54:38','/home.php','Go-http-client/2.0','https://meadowcroftwines.com/home.php',''),(115921,'2024-12-30 06:54:40','/wp-includes/item.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/item.php',''),(115922,'2024-12-30 06:54:42','/wp-content/cong.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/cong.php',''),(115923,'2024-12-30 06:54:43','/wp-content/themes/digital-download/new.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/digital-download/new.php',''),(115924,'2024-12-30 06:54:45','/x.php','Go-http-client/2.0','https://meadowcroftwines.com/x.php',''),(115925,'2024-12-30 06:54:46','/wp-admin/images/admin.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/images/admin.php',''),(115926,'2024-12-30 06:54:48','/byp.php','Go-http-client/2.0','https://meadowcroftwines.com/byp.php',''),(115927,'2024-12-30 06:54:49','/wp-admin/css/colors/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/css/colors/about.php',''),(115928,'2024-12-30 06:54:51','/wp-includes/customize/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/customize/about.php',''),(115929,'2024-12-30 06:54:52','/wp-admin/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/wp-login.php',''),(115930,'2024-12-30 06:54:55','/wp-content/themes/include.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/include.php',''),(115931,'2024-12-30 06:54:56','/wp-admin/classwithtostring.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/classwithtostring.php',''),(115932,'2024-12-30 06:54:57','/wp-content/plugins/WordPressCore/','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/WordPressCore/index.php',''),(115933,'2024-12-30 06:54:59','/ova-tools.php','Go-http-client/2.0','https://meadowcroftwines.com/ova-tools.php',''),(115934,'2024-12-30 06:55:00','/version.php','Go-http-client/2.0','https://meadowcroftwines.com/version.php',''),(115935,'2024-12-30 06:55:02','/lufix.php','Go-http-client/2.0','https://meadowcroftwines.com/lufix.php',''),(115936,'2024-12-30 06:55:03','/wp-includes/images/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/images/wp-login.php',''),(115937,'2024-12-30 06:55:04','/wp-includes/pomo/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/pomo/wp-login.php',''),(115938,'2024-12-30 06:55:07','/wp-content/themes.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes.php',''),(115939,'2024-12-30 06:55:10','/wp-includes/link.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/link.php',''),(115940,'2024-12-30 06:55:11','/wp-content/plugins/dummyyummy/wp-signup.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/dummyyummy/wp-signup.php',''),(115941,'2024-12-30 06:55:12','/w.php','Go-http-client/2.0','https://meadowcroftwines.com/w.php',''),(115942,'2024-12-30 06:55:14','/bypass.php','Go-http-client/2.0','https://meadowcroftwines.com/bypass.php',''),(115943,'2024-12-30 06:55:15','/wp-add.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-add.php',''),(115944,'2024-12-30 06:55:16','/wp-content/plugins/ioxi/alfa-ioxi.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/ioxi/alfa-ioxi.php',''),(115945,'2024-12-30 06:55:19','/templates/beez/jsstrings.php','Go-http-client/2.0','https://meadowcroftwines.com/templates/beez/jsstrings.php',''),(115946,'2024-12-30 06:55:22','/xl2023.php','Go-http-client/2.0','https://meadowcroftwines.com/xl2023.php',''),(115947,'2024-12-30 06:55:23','/templates/beez/','Go-http-client/2.0','https://meadowcroftwines.com/templates/beez/index.php',''),(115948,'2024-12-30 06:55:25','/wp-l0gin.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-l0gin.php',''),(115949,'2024-12-30 06:55:26','/c.php','Go-http-client/2.0','https://meadowcroftwines.com/c.php',''),(115950,'2024-12-30 06:55:27','/wp-admin/dropdown.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/dropdown.php',''),(115951,'2024-12-30 06:55:28','/small.php','Go-http-client/2.0','https://meadowcroftwines.com/small.php',''),(115952,'2024-12-30 06:55:30','/assets/library.php','Go-http-client/2.0','https://meadowcroftwines.com/assets/library.php',''),(115953,'2024-12-30 06:55:31','/h.php','Go-http-client/2.0','https://meadowcroftwines.com/h.php',''),(115954,'2024-12-30 06:55:32','/504.php','Go-http-client/2.0','https://meadowcroftwines.com/504.php',''),(115955,'2024-12-30 06:55:33','/wp-admin/css/network.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/css/network.php',''),(115956,'2024-12-30 06:55:35','/wp-content/content.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/content.php',''),(115957,'2024-12-30 06:55:36','/xt/','Go-http-client/2.0','https://meadowcroftwines.com/xt/index.php',''),(115958,'2024-12-30 06:55:39','/wp-content/json.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/json.php',''),(115959,'2024-12-30 06:55:40','/wp-includes/ID3/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/ID3/about.php',''),(115960,'2024-12-30 06:55:42','/tiny.php','Go-http-client/2.0','https://meadowcroftwines.com/tiny.php',''),(115961,'2024-12-30 06:55:43','/wp-includes/widgets/include.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/widgets/include.php',''),(115962,'2024-12-30 06:55:45','/customize.php','Go-http-client/2.0','https://meadowcroftwines.com/customize.php',''),(115963,'2024-12-30 06:55:46','/sad/about.php','Go-http-client/2.0','https://meadowcroftwines.com/sad/about.php',''),(115964,'2024-12-30 06:55:47','/jp.php','Go-http-client/2.0','https://meadowcroftwines.com/jp.php',''),(115965,'2024-12-30 06:55:49','/wp-includes/fonts/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/fonts/wp-login.php',''),(115966,'2024-12-30 06:55:50','/wp-admin/js/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/js/about.php',''),(115967,'2024-12-30 06:55:52','/wp-admin/network/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/network/wp-login.php',''),(115968,'2024-12-30 06:55:54','/1337.php','Go-http-client/2.0','https://meadowcroftwines.com/1337.php',''),(115969,'2024-12-30 06:55:55','/upgrade.php','Go-http-client/2.0','https://meadowcroftwines.com/upgrade.php',''),(115970,'2024-12-30 06:55:56','/wp-content/tmpls.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/tmpls.php',''),(115971,'2024-12-30 06:55:58','/editor.php','Go-http-client/2.0','https://meadowcroftwines.com/editor.php',''),(115972,'2024-12-30 06:55:59','/class.php','Go-http-client/2.0','https://meadowcroftwines.com/class.php',''),(115973,'2024-12-30 06:56:00','/vendor/bin/loader.php','Go-http-client/2.0','https://meadowcroftwines.com/vendor/bin/loader.php',''),(115974,'2024-12-30 06:56:02','/wp-includes/wp-includes_function.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/wp-includes_function.php',''),(115975,'2024-12-30 06:56:03','/wp-admin/css/dnIzIDf.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/css/dnIzIDf.php',''),(115976,'2024-12-30 06:56:05','/wp-content/themes/hideo/network.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/hideo/network.php',''),(115977,'2024-12-30 06:56:07','/wp-includes/Text/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/Text/about.php',''),(115978,'2024-12-30 06:56:08','/wp-includes/wp-class.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/wp-class.php',''),(115979,'2024-12-30 06:56:10','/wp-admin/css/colors/HsFPDcD.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/css/colors/HsFPDcD.php',''),(115980,'2024-12-30 06:56:11','/wp-admin/maint/upfile.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/maint/upfile.php',''),(115981,'2024-12-30 06:56:13','/wp-includes/room.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/room.php',''),(115982,'2024-12-30 06:56:14','/.tmb/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/.tmb/wp-login.php',''),(115983,'2024-12-30 06:56:15','/3m/wp-admin/css/colors/blue/','Go-http-client/2.0','https://meadowcroftwines.com/3m/wp-admin/css/colors/blue/',''),(115984,'2024-12-30 06:56:17','/defaul.php','Go-http-client/2.0','https://meadowcroftwines.com/defaul.php',''),(115985,'2024-12-30 06:56:18','/wp-includes/rest-api/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/rest-api/about.php',''),(115986,'2024-12-30 06:56:20','/repeater.php','Go-http-client/2.0','https://meadowcroftwines.com/repeater.php',''),(115987,'2024-12-30 06:56:21','/Njima.php','Go-http-client/2.0','https://meadowcroftwines.com/Njima.php',''),(115988,'2024-12-30 06:56:22','/ticket/vendor/htmlawed/htmlawed/gel4y.php','Go-http-client/2.0','https://meadowcroftwines.com/ticket/vendor/htmlawed/htmlawed/gel4y.php',''),(115989,'2024-12-30 06:56:24','/wp-content/themes/seotheme/db.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/seotheme/db.php',''),(115990,'2024-12-30 06:56:26','/wp-content/plugins/ubh/up.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/ubh/up.php',''),(115991,'2024-12-30 06:56:27','/wp-content/themes/pridmag/db.php?u','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/pridmag/db.php?u',''),(115992,'2024-12-30 06:56:29','/up.php','Go-http-client/2.0','https://meadowcroftwines.com/up.php',''),(115993,'2024-12-30 06:56:30','/wp-content/plugins/pwnd/pwnd.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/pwnd/pwnd.php',''),(115994,'2024-12-30 06:56:32','/uploader.php','Go-http-client/2.0','https://meadowcroftwines.com/uploader.php',''),(115995,'2024-12-30 06:56:33','/test.php','Go-http-client/2.0','https://meadowcroftwines.com/test.php',''),(115996,'2024-12-30 06:56:35','/85022df0ed31.php','Go-http-client/2.0','https://meadowcroftwines.com/85022df0ed31.php',''),(115997,'2024-12-30 06:56:36','/Nexus.php','Go-http-client/2.0','https://meadowcroftwines.com/Nexus.php',''),(115998,'2024-12-30 06:56:37','/upload.php','Go-http-client/2.0','https://meadowcroftwines.com/upload.php',''),(115999,'2024-12-30 07:14:15','/events/','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)',NULL,''),(116000,'2024-12-30 07:26:15','/prod-363947/2012-Thomas-Henry-California-Zinfandel.html','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(116001,'2024-12-30 07:35:26','/admin.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://meadowcroftwines.com',''),(116002,'2024-12-30 07:44:28','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116003,'2024-12-30 07:57:11','/events/live-from-the-hive/','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,''),(116004,'2024-12-30 08:26:59','/events/pasta-making-demo-lunch','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36',NULL,''),(116005,'2024-12-30 08:58:33','/wp-plain.php','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',''),(116006,'2024-12-30 08:58:34','/dheinzfq.php?Fox=d3wL7','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',''),(116007,'2024-12-30 09:27:37','/events/kintsugi-experience/','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)',NULL,''),(116008,'2024-12-30 09:31:36','/events/st-pattys-sangria/','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)',NULL,''),(116009,'2024-12-30 09:39:50','/events/sip-and-savor-cheese-making-class/','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)',NULL,''),(116010,'2024-12-30 09:48:26','/events/wine-club-pick-up-day-spring22/','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)',NULL,''),(116011,'2024-12-30 09:50:26','/wordpress','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wordpress',''),(116012,'2024-12-30 09:50:28','/wp','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wp',''),(116013,'2024-12-30 09:50:28','/bc','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bc',''),(116014,'2024-12-30 09:50:29','/bk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bk',''),(116015,'2024-12-30 09:50:29','/backup','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/backup',''),(116016,'2024-12-30 09:50:32','/main','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/main',''),(116017,'2024-12-30 10:01:01','/shop/?view=product&slug=blind_tasting_white','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)',NULL,''),(116018,'2024-12-30 10:39:33','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116019,'2024-12-30 10:47:12','/wordpress','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wordpress',''),(116020,'2024-12-30 10:47:13','/wp','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wp',''),(116021,'2024-12-30 10:47:13','/bc','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bc',''),(116022,'2024-12-30 10:47:13','/bk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bk',''),(116023,'2024-12-30 10:47:14','/backup','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/backup',''),(116024,'2024-12-30 10:47:15','/main','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/main',''),(116025,'2024-12-30 11:10:20','/events/sfvintnersestate_april2019/tel:7079344090','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.2 Safari/537.36',NULL,''),(116026,'2024-12-30 11:20:15','/shop/?view=product&slug=Rose_of_Malbec_2019','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)',NULL,''),(116027,'2024-12-30 11:24:25','/shop/?view=product&slug=napavalley_blancdeblancs','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)',NULL,''),(116028,'2024-12-30 12:01:44','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116029,'2024-12-30 12:16:29','/gzak2w.php','Go-http-client/2.0','https://meadowcroftwines.com/gzak2w.php',''),(116030,'2024-12-30 12:16:32','/templates/beez3/','Go-http-client/2.0','https://meadowcroftwines.com/templates/beez3/index.php',''),(116031,'2024-12-30 12:16:33','/insoamv.php','Go-http-client/2.0','https://meadowcroftwines.com/insoamv.php',''),(116032,'2024-12-30 12:16:34','/hehehehe.php','Go-http-client/2.0','https://meadowcroftwines.com/hehehehe.php',''),(116033,'2024-12-30 12:16:35','/print/bkindex.php','Go-http-client/2.0','https://meadowcroftwines.com/print/bkindex.php',''),(116034,'2024-12-30 12:16:36','/wp-includes/fonts/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/fonts/about.php',''),(116035,'2024-12-30 12:16:37','/wp-admin/images/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/images/about.php',''),(116036,'2024-12-30 12:16:38','/edit.php','Go-http-client/2.0','https://meadowcroftwines.com/edit.php',''),(116037,'2024-12-30 12:16:39','/wp-content/themes/seotheme/mar.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/seotheme/mar.php',''),(116038,'2024-12-30 12:16:40','/wp-content/plugins/seoplugins/mar.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/seoplugins/mar.php',''),(116039,'2024-12-30 12:16:42','/sad/about.php','Go-http-client/2.0','https://meadowcroftwines.com/sad/about.php',''),(116040,'2024-12-30 12:16:43','/wp-content/plugins/not/includes/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/not/includes/about.php',''),(116041,'2024-12-30 12:16:44','/wp-add.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-add.php',''),(116042,'2024-12-30 12:16:46','/vendor/bin/loader.php','Go-http-client/2.0','https://meadowcroftwines.com/vendor/bin/loader.php',''),(116043,'2024-12-30 12:16:46','/wp-admin/network/gzak2w.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/network/gzak2w.php',''),(116044,'2024-12-30 12:16:48','/wp-admin/network/back.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/network/back.php',''),(116045,'2024-12-30 12:16:49','/back.php','Go-http-client/2.0','https://meadowcroftwines.com/back.php',''),(116046,'2024-12-30 12:16:50','/ova.php','Go-http-client/2.0','https://meadowcroftwines.com/ova.php',''),(116047,'2024-12-30 12:16:51','/wp-content/x/','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/x/index.php',''),(116048,'2024-12-30 12:16:52','/randkeyword.PhP7','Go-http-client/2.0','https://meadowcroftwines.com/randkeyword.PhP7',''),(116049,'2024-12-30 12:16:53','/wp-content/themes/digital-download/new.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/digital-download/new.php',''),(116050,'2024-12-30 12:16:53','/ticket/vendor/htmlawed/htmlawed/gel4y.php','Go-http-client/2.0','https://meadowcroftwines.com/ticket/vendor/htmlawed/htmlawed/gel4y.php',''),(116051,'2024-12-30 12:16:54','/glpi/vendor/network.php','Go-http-client/2.0','https://meadowcroftwines.com/glpi/vendor/network.php',''),(116052,'2024-12-30 12:16:56','/vendor/htmlawed/htmlawed/gel4y.php','Go-http-client/2.0','https://meadowcroftwines.com/vendor/htmlawed/htmlawed/gel4y.php',''),(116053,'2024-12-30 12:16:57','/wp-includes/sodium_compat/src/Core/Curve25519/Ge/network.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/sodium_compat/src/Core/Curve25519/Ge/network.php',''),(116054,'2024-12-30 12:16:58','/wp-22.php?bction=ping','Go-http-client/2.0','https://meadowcroftwines.com/wp-22.php?bction=ping',''),(116055,'2024-12-30 12:16:59','/wp-content/plugins/core-plugin/include.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/core-plugin/include.php',''),(116056,'2024-12-30 12:17:00','/upload.php','Go-http-client/2.0','https://meadowcroftwines.com/upload.php',''),(116057,'2024-12-30 12:17:01','/wp-content/plugins/WordPressCore/include.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/WordPressCore/include.php',''),(116058,'2024-12-30 12:17:01','/about.php','Go-http-client/2.0','https://meadowcroftwines.com/about.php',''),(116059,'2024-12-30 12:17:02','/chosen.php','Go-http-client/2.0','https://meadowcroftwines.com/chosen.php',''),(116060,'2024-12-30 12:17:03','/admin.php','Go-http-client/2.0','https://meadowcroftwines.com/admin.php',''),(116061,'2024-12-30 12:17:04','/file.php','Go-http-client/2.0','https://meadowcroftwines.com/file.php',''),(116062,'2024-12-30 12:17:05','/simple.php','Go-http-client/2.0','https://meadowcroftwines.com/simple.php',''),(116063,'2024-12-30 12:17:06','/alfanew.PhP7','Go-http-client/2.0','https://meadowcroftwines.com/alfanew.PhP7',''),(116064,'2024-12-30 12:17:07','/mah.php','Go-http-client/2.0','https://meadowcroftwines.com/mah.php',''),(116065,'2024-12-30 12:17:08','/wp-content/plugins/revslider/includes/external/page/','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/revslider/includes/external/page/index.php',''),(116066,'2024-12-30 12:17:09','/css/','Go-http-client/2.0','https://meadowcroftwines.com/css/index.php',''),(116067,'2024-12-30 12:17:10','/test.php','Go-http-client/2.0','https://meadowcroftwines.com/test.php',''),(116068,'2024-12-30 12:17:11','/wp-content/plugins/pwnd/pwnd.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/pwnd/pwnd.php',''),(116069,'2024-12-30 12:17:12','/dropdown.php','Go-http-client/2.0','https://meadowcroftwines.com/dropdown.php',''),(116070,'2024-12-30 12:17:14','/home.php?xsec=team','Go-http-client/2.0','https://meadowcroftwines.com/home.php?xsec=team',''),(116071,'2024-12-30 12:17:15','/themes.php','Go-http-client/2.0','https://meadowcroftwines.com/themes.php',''),(116072,'2024-12-30 12:17:16','/1.php','Go-http-client/2.0','https://meadowcroftwines.com/1.php',''),(116073,'2024-12-30 12:17:16','/wp-content/themes/sketch/404.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/sketch/404.php',''),(116074,'2024-12-30 12:17:18','/wp-content/languages/','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/languages/index.php',''),(116075,'2024-12-30 12:17:21','/wp-content/themes/pridmag/db.php?u','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/pridmag/db.php?u',''),(116076,'2024-12-30 12:17:22','/wp-content/admin.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/admin.php',''),(116077,'2024-12-30 12:17:23','/index/function.php','Go-http-client/2.0','https://meadowcroftwines.com/index/function.php',''),(116078,'2024-12-30 12:17:23','/lala.php','Go-http-client/2.0','https://meadowcroftwines.com/lala.php',''),(116079,'2024-12-30 12:17:25','/shell.php','Go-http-client/2.0','https://meadowcroftwines.com/shell.php',''),(116080,'2024-12-30 12:17:26','/about/function.php','Go-http-client/2.0','https://meadowcroftwines.com/about/function.php',''),(116081,'2024-12-30 12:17:27','/lock.php','Go-http-client/2.0','https://meadowcroftwines.com/lock.php',''),(116082,'2024-12-30 12:17:27','/autoload_classmap.php','Go-http-client/2.0','https://meadowcroftwines.com/autoload_classmap.php',''),(116083,'2024-12-30 12:17:28','/goods.php','Go-http-client/2.0','https://meadowcroftwines.com/goods.php',''),(116084,'2024-12-30 12:17:29','/x/','Go-http-client/2.0','https://meadowcroftwines.com/x/index.php',''),(116085,'2024-12-30 12:17:30','/uploader.php','Go-http-client/2.0','https://meadowcroftwines.com/uploader.php',''),(116086,'2024-12-30 12:17:30','/credits.php','Go-http-client/2.0','https://meadowcroftwines.com/credits.php',''),(116087,'2024-12-30 12:17:31','/wp-links.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-links.php',''),(116088,'2024-12-30 12:17:33','/wp-header.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-header.php',''),(116089,'2024-12-30 12:17:36','/cong.php','Go-http-client/2.0','https://meadowcroftwines.com/cong.php',''),(116090,'2024-12-30 12:17:36','/en/','Go-http-client/2.0','https://meadowcroftwines.com/en/index.php',''),(116091,'2024-12-30 12:17:37','/wp-includes/widgets/include.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/widgets/include.php',''),(116092,'2024-12-30 12:17:38','/jindex.php','Go-http-client/2.0','https://meadowcroftwines.com/jindex.php',''),(116093,'2024-12-30 12:17:39','/b.php','Go-http-client/2.0','https://meadowcroftwines.com/b.php',''),(116094,'2024-12-30 12:17:40','/function.php','Go-http-client/2.0','https://meadowcroftwines.com/function.php',''),(116095,'2024-12-30 12:17:40','/classwithtostring.php','Go-http-client/2.0','https://meadowcroftwines.com/classwithtostring.php',''),(116096,'2024-12-30 12:17:41','/404.php','Go-http-client/2.0','https://meadowcroftwines.com/404.php',''),(116097,'2024-12-30 12:17:42','/moon.php','Go-http-client/2.0','https://meadowcroftwines.com/moon.php',''),(116098,'2024-12-30 12:17:43','/wp-info.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-info.php',''),(116099,'2024-12-30 12:17:44','/wp-includes/js/jcrop/Jcrop.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/js/jcrop/Jcrop.php',''),(116100,'2024-12-30 12:17:45','/a.php','Go-http-client/2.0','https://meadowcroftwines.com/a.php',''),(116101,'2024-12-30 12:17:46','/wp-admin.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin.php',''),(116102,'2024-12-30 12:17:47','/atomlib.php','Go-http-client/2.0','https://meadowcroftwines.com/atomlib.php',''),(116103,'2024-12-30 12:17:48','/wp-content/themes.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes.php',''),(116104,'2024-12-30 12:17:49','/wp.php','Go-http-client/2.0','https://meadowcroftwines.com/wp.php',''),(116105,'2024-12-30 12:17:50','/fm.php','Go-http-client/2.0','https://meadowcroftwines.com/fm.php',''),(116106,'2024-12-30 12:17:51','/wp-content/themes/twentyfive/include.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/twentyfive/include.php',''),(116107,'2024-12-30 12:17:52','/wso.php','Go-http-client/2.0','https://meadowcroftwines.com/wso.php',''),(116108,'2024-12-30 12:17:53','/wp-content/plugins/ubh/up.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/ubh/up.php',''),(116109,'2024-12-30 12:17:54','/text.php','Go-http-client/2.0','https://meadowcroftwines.com/text.php',''),(116110,'2024-12-30 12:17:54','/content.php','Go-http-client/2.0','https://meadowcroftwines.com/content.php',''),(116111,'2024-12-30 12:17:55','/install.php','Go-http-client/2.0','https://meadowcroftwines.com/install.php',''),(116112,'2024-12-30 12:17:56','/ova-tools.php','Go-http-client/2.0','https://meadowcroftwines.com/ova-tools.php',''),(116113,'2024-12-30 12:17:57','/wp-conflg.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-conflg.php',''),(116114,'2024-12-30 12:17:58','/log.php','Go-http-client/2.0','https://meadowcroftwines.com/log.php',''),(116115,'2024-12-30 12:17:58','/radio.php','Go-http-client/2.0','https://meadowcroftwines.com/radio.php',''),(116116,'2024-12-30 12:17:59','/wp-includes/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/wp-login.php',''),(116117,'2024-12-30 12:18:00','/xml.php','Go-http-client/2.0','https://meadowcroftwines.com/xml.php',''),(116118,'2024-12-30 12:18:01','/wp-includes/images/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/images/wp-login.php',''),(116119,'2024-12-30 12:18:05','/inc.php','Go-http-client/2.0','https://meadowcroftwines.com/inc.php',''),(116120,'2024-12-30 12:18:05','/wp-includes/item.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/item.php',''),(116121,'2024-12-30 12:18:07','/wp-includes/Text/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/Text/wp-login.php',''),(116122,'2024-12-30 12:18:08','/wp-content/plugins/hello.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/hello.php',''),(116123,'2024-12-30 12:18:09','/wp-includes/admin.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/admin.php',''),(116124,'2024-12-30 12:18:09','/web.php','Go-http-client/2.0','https://meadowcroftwines.com/web.php',''),(116125,'2024-12-30 12:18:10','/wp-includes/fonts/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/fonts/wp-login.php',''),(116126,'2024-12-30 12:18:12','/wp-content/classwithtostring.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/classwithtostring.php',''),(116127,'2024-12-30 12:18:13','/wp-includes/Text/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/Text/about.php',''),(116128,'2024-12-30 12:18:14','/wp-content/tmpls.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/tmpls.php',''),(116129,'2024-12-30 12:18:15','/cjfuns.php','Go-http-client/2.0','https://meadowcroftwines.com/cjfuns.php',''),(116130,'2024-12-30 12:18:16','/wp-admin/css/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/css/about.php',''),(116131,'2024-12-30 12:18:17','/1.php?apx=upx','Go-http-client/2.0','https://meadowcroftwines.com/1.php?apx=upx',''),(116132,'2024-12-30 12:18:19','/jp.php','Go-http-client/2.0','https://meadowcroftwines.com/jp.php',''),(116133,'2024-12-30 12:18:20','/wp-admin/network/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/network/wp-login.php',''),(116134,'2024-12-30 12:18:21','/wp-includes/customize/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/customize/about.php',''),(116135,'2024-12-30 12:18:22','/wp-includes/rest-api/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/rest-api/about.php',''),(116136,'2024-12-30 12:18:23','/wp-content/plugins/dummyyummy/wp-signup.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/dummyyummy/wp-signup.php',''),(116137,'2024-12-30 12:18:24','/alfa.php','Go-http-client/2.0','https://meadowcroftwines.com/alfa.php',''),(116138,'2024-12-30 12:18:25','/wp-admin/js/network.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/js/network.php',''),(116139,'2024-12-30 12:18:26','/wp-admin/images/admin.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/images/admin.php',''),(116140,'2024-12-30 12:18:28','/wp-content/plugins/press/wp-class.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/press/wp-class.php',''),(116141,'2024-12-30 12:18:29','/wp-admin/wso.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/wso.php',''),(116142,'2024-12-30 12:18:30','/worksec.php','Go-http-client/2.0','https://meadowcroftwines.com/worksec.php',''),(116143,'2024-12-30 12:18:32','/up.php','Go-http-client/2.0','https://meadowcroftwines.com/up.php',''),(116144,'2024-12-30 12:18:34','/wp-content/cong.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/cong.php',''),(116145,'2024-12-30 12:18:35','/byp.php','Go-http-client/2.0','https://meadowcroftwines.com/byp.php',''),(116146,'2024-12-30 12:18:36','/504.php','Go-http-client/2.0','https://meadowcroftwines.com/504.php',''),(116147,'2024-12-30 12:18:38','/403.php','Go-http-client/2.0','https://meadowcroftwines.com/403.php',''),(116148,'2024-12-30 12:18:38','/wp-includes/style-engine/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/style-engine/about.php',''),(116149,'2024-12-30 12:18:40','/goat.php','Go-http-client/2.0','https://meadowcroftwines.com/goat.php',''),(116150,'2024-12-30 12:18:41','/wp-content/mah.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/mah.php',''),(116151,'2024-12-30 12:18:42','/wp-includes/IXR/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/IXR/wp-login.php',''),(116152,'2024-12-30 12:18:43','/wp-includes/mah.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/mah.php',''),(116153,'2024-12-30 12:18:44','/wp-2019.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-2019.php',''),(116154,'2024-12-30 12:18:45','/.tmb/cloud.php','Go-http-client/2.0','https://meadowcroftwines.com/.tmb/cloud.php',''),(116155,'2024-12-30 12:18:46','/xt/','Go-http-client/2.0','https://meadowcroftwines.com/xt/index.php',''),(116156,'2024-12-30 12:18:46','/init.php','Go-http-client/2.0','https://meadowcroftwines.com/init.php',''),(116157,'2024-12-30 12:18:47','/wp-admin/classwithtostring.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/classwithtostring.php',''),(116158,'2024-12-30 12:18:49','/sidwsi.PhP7','Go-http-client/2.0','https://meadowcroftwines.com/sidwsi.PhP7',''),(116159,'2024-12-30 12:18:50','/wp-content/radio.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/radio.php',''),(116160,'2024-12-30 12:18:51','/wp-admin/dropdown.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/dropdown.php',''),(116161,'2024-12-30 12:18:52','/wp-l0gin.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-l0gin.php',''),(116162,'2024-12-30 12:18:53','/s.php','Go-http-client/2.0','https://meadowcroftwines.com/s.php',''),(116163,'2024-12-30 12:18:54','/lock360.php','Go-http-client/2.0','https://meadowcroftwines.com/lock360.php',''),(116164,'2024-12-30 12:18:55','/ioxi-rex3.php7','Go-http-client/2.0','https://meadowcroftwines.com/ioxi-rex3.php7',''),(116165,'2024-12-30 12:18:56','/mini.php','Go-http-client/2.0','https://meadowcroftwines.com/mini.php',''),(116166,'2024-12-30 12:18:56','/alfa-rex.php8','Go-http-client/2.0','https://meadowcroftwines.com/alfa-rex.php8',''),(116167,'2024-12-30 12:18:57','/wp-content/themes/include.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/include.php',''),(116168,'2024-12-30 12:18:58','/defaul1.php','Go-http-client/2.0','https://meadowcroftwines.com/defaul1.php',''),(116169,'2024-12-30 12:19:00','/wp-includes/product.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/product.php',''),(116170,'2024-12-30 12:19:01','/m.php','Go-http-client/2.0','https://meadowcroftwines.com/m.php',''),(116171,'2024-12-30 12:19:01','/shell20211028.php','Go-http-client/2.0','https://meadowcroftwines.com/shell20211028.php',''),(116172,'2024-12-30 12:19:02','/fw.php','Go-http-client/2.0','https://meadowcroftwines.com/fw.php',''),(116173,'2024-12-30 12:19:03','/wp-admin/js/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/js/about.php',''),(116174,'2024-12-30 12:19:04','/x.php','Go-http-client/2.0','https://meadowcroftwines.com/x.php',''),(116175,'2024-12-30 12:19:05','/wp-content/shell.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/shell.php',''),(116176,'2024-12-30 12:19:06','/wp-content/json.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/json.php',''),(116177,'2024-12-30 12:19:07','/randkeyword.php','Go-http-client/2.0','https://meadowcroftwines.com/randkeyword.php',''),(116178,'2024-12-30 12:19:08','/doc.php','Go-http-client/2.0','https://meadowcroftwines.com/doc.php',''),(116179,'2024-12-30 12:19:09','/rc.php','Go-http-client/2.0','https://meadowcroftwines.com/rc.php',''),(116180,'2024-12-30 12:19:10','/wp-includes/ID3/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/ID3/about.php',''),(116181,'2024-12-30 12:19:11','/wp-content/item.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/item.php',''),(116182,'2024-12-30 12:19:11','/defaults.php','Go-http-client/2.0','https://meadowcroftwines.com/defaults.php',''),(116183,'2024-12-30 12:19:12','/wp-includes/Requests/network.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/Requests/network.php',''),(116184,'2024-12-30 12:19:14','/editor.php','Go-http-client/2.0','https://meadowcroftwines.com/editor.php',''),(116185,'2024-12-30 12:19:15','/tiny.php','Go-http-client/2.0','https://meadowcroftwines.com/tiny.php',''),(116186,'2024-12-30 12:19:15','/plugin.php','Go-http-client/2.0','https://meadowcroftwines.com/plugin.php',''),(116187,'2024-12-30 12:19:16','/ini.php','Go-http-client/2.0','https://meadowcroftwines.com/ini.php',''),(116188,'2024-12-30 12:19:17','/link.php','Go-http-client/2.0','https://meadowcroftwines.com/link.php',''),(116189,'2024-12-30 12:19:18','/wp-content/batm.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/batm.php',''),(116190,'2024-12-30 12:19:20','/wp-admin/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/wp-login.php',''),(116191,'2024-12-30 12:19:21','/1337.php','Go-http-client/2.0','https://meadowcroftwines.com/1337.php',''),(116192,'2024-12-30 12:19:22','/upgrade.php','Go-http-client/2.0','https://meadowcroftwines.com/upgrade.php',''),(116193,'2024-12-30 12:19:22','/alfa-rex.php','Go-http-client/2.0','https://meadowcroftwines.com/alfa-rex.php',''),(116194,'2024-12-30 12:19:23','/wso.PHP','Go-http-client/2.0','https://meadowcroftwines.com/wso.PHP',''),(116195,'2024-12-30 12:19:24','/css.php','Go-http-client/1.1','http://meadowcroftwines.com/css.php',''),(116196,'2024-12-30 12:19:25','/indosec.php','Go-http-client/2.0','https://meadowcroftwines.com/indosec.php',''),(116197,'2024-12-30 12:19:26','/c.php','Go-http-client/2.0','https://meadowcroftwines.com/c.php',''),(116198,'2024-12-30 12:19:26','/wp-includes/Requests/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/Requests/about.php',''),(116199,'2024-12-30 12:19:28','/ws.php','Go-http-client/2.0','https://meadowcroftwines.com/ws.php',''),(116200,'2024-12-30 12:19:28','/alfa-rex.php56','Go-http-client/2.0','https://meadowcroftwines.com/alfa-rex.php56',''),(116201,'2024-12-30 12:19:29','/wp-admin/network/wp-term.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/network/wp-term.php',''),(116202,'2024-12-30 12:19:31','/wp-admin/maint/upfile.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/maint/upfile.php',''),(116203,'2024-12-30 12:19:32','/wp-includes/css/dist/niil.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/css/dist/niil.php',''),(116204,'2024-12-30 12:19:34','/ee.php','Go-http-client/2.0','https://meadowcroftwines.com/ee.php',''),(116205,'2024-12-30 12:19:35','/wp-content/themes/travelscape/json.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/travelscape/json.php',''),(116206,'2024-12-30 12:19:37','/bypass.php','Go-http-client/2.0','https://meadowcroftwines.com/bypass.php',''),(116207,'2024-12-30 12:19:38','/xx.php','Go-http-client/2.0','https://meadowcroftwines.com/xx.php',''),(116208,'2024-12-30 12:19:39','/wp-includes/SimplePie/plugins.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/SimplePie/plugins.php',''),(116209,'2024-12-30 12:19:40','/wp-content/content.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/content.php',''),(116210,'2024-12-30 12:19:41','/lufix.php','Go-http-client/2.0','https://meadowcroftwines.com/lufix.php',''),(116211,'2024-12-30 12:19:42','/wp-includes/wp-class.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/wp-class.php',''),(116212,'2024-12-30 12:19:43','/.well-known/radio.php','Go-http-client/2.0','https://meadowcroftwines.com/.well-known/radio.php',''),(116213,'2024-12-30 12:19:45','/wp-content/themes/hideo/network.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/hideo/network.php',''),(116214,'2024-12-30 12:19:46','/okaoka.php','Go-http-client/2.0','https://meadowcroftwines.com/okaoka.php',''),(116215,'2024-12-30 12:19:48','/hshs.php','Go-http-client/2.0','https://meadowcroftwines.com/hshs.php',''),(116216,'2024-12-30 12:19:48','/data.php','Go-http-client/2.0','https://meadowcroftwines.com/data.php',''),(116217,'2024-12-30 12:19:50','/w.php','Go-http-client/2.0','https://meadowcroftwines.com/w.php',''),(116218,'2024-12-30 12:19:51','/wp-HbJxZ2.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-HbJxZ2.php',''),(116219,'2024-12-30 12:19:52','/as.php','Go-http-client/2.0','https://meadowcroftwines.com/as.php',''),(116220,'2024-12-30 12:19:53','/wp-cXjq2.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-cXjq2.php',''),(116221,'2024-12-30 12:19:54','/ioxi-rex4.php7','Go-http-client/2.0','https://meadowcroftwines.com/ioxi-rex4.php7',''),(116222,'2024-12-30 12:19:56','/assets/library.php','Go-http-client/2.0','https://meadowcroftwines.com/assets/library.php',''),(116223,'2024-12-30 12:19:57','/copypaths.php','Go-http-client/2.0','https://meadowcroftwines.com/copypaths.php',''),(116224,'2024-12-30 12:19:58','/fr/priv8.php','Go-http-client/2.0','https://meadowcroftwines.com/fr/priv8.php',''),(116225,'2024-12-30 12:19:58','/wp-content/plugins/Core-Econ/upH.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/Core-Econ/upH.php',''),(116226,'2024-12-30 12:20:00','/menu.php','Go-http-client/2.0','https://meadowcroftwines.com/menu.php',''),(116227,'2024-12-30 12:20:01','/user.php','Go-http-client/2.0','https://meadowcroftwines.com/user.php',''),(116228,'2024-12-30 12:20:01','/small.php','Go-http-client/2.0','https://meadowcroftwines.com/small.php',''),(116229,'2024-12-30 12:20:02','/classwithtostring.php?zet','Go-http-client/2.0','https://meadowcroftwines.com/classwithtostring.php?zet',''),(116230,'2024-12-30 12:20:03','/plugins.php','Go-http-client/2.0','https://meadowcroftwines.com/plugins.php',''),(116231,'2024-12-30 12:20:04','/wp-content/plugins/core/include.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/core/include.php',''),(116232,'2024-12-30 12:20:05','/version.php','Go-http-client/2.0','https://meadowcroftwines.com/version.php',''),(116233,'2024-12-30 12:20:07','/wp-content/plugins/book-form/lndex.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/book-form/lndex.php',''),(116234,'2024-12-30 12:20:08','/lv.php','Go-http-client/2.0','https://meadowcroftwines.com/lv.php',''),(116235,'2024-12-30 12:20:09','/wp-admin/images/wp-signup.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/images/wp-signup.php',''),(116236,'2024-12-30 12:20:10','/mariju.php','Go-http-client/2.0','https://meadowcroftwines.com/mariju.php',''),(116237,'2024-12-30 12:20:11','/assets/dropdown.php','Go-http-client/2.0','https://meadowcroftwines.com/assets/dropdown.php',''),(116238,'2024-12-30 12:20:12','/wp-content/ice.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/ice.php',''),(116239,'2024-12-30 12:20:13','/h.php','Go-http-client/2.0','https://meadowcroftwines.com/h.php',''),(116240,'2024-12-30 12:20:14','/class.php','Go-http-client/2.0','https://meadowcroftwines.com/class.php',''),(116241,'2024-12-30 12:20:16','/wp-admin/network/MdFvb.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/network/MdFvb.php',''),(116242,'2024-12-30 12:20:17','/Wordpress/wp-content/','Go-http-client/2.0','https://meadowcroftwines.com/Wordpress/wp-content/',''),(116243,'2024-12-30 12:20:18','/wp-content/themes/extol/settings.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/extol/settings.php',''),(116244,'2024-12-30 12:20:19','/3m/wp-admin/css/colors/blue/','Go-http-client/2.0','https://meadowcroftwines.com/3m/wp-admin/css/colors/blue/',''),(116245,'2024-12-30 12:20:21','/WSOEnigma.php','Go-http-client/2.0','https://meadowcroftwines.com/WSOEnigma.php',''),(116246,'2024-12-30 12:20:22','/customize.php','Go-http-client/2.0','https://meadowcroftwines.com/customize.php',''),(116247,'2024-12-30 12:20:23','/wp-content/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/about.php',''),(116248,'2024-12-30 12:20:24','/x.php?action=768776e296b6f286f26796e2a72607e2972647','Go-http-client/2.0','https://meadowcroftwines.com/x.php?action=768776e296b6f286f26796e2a72607e2972647',''),(116249,'2024-12-30 12:20:26','/wp-includes/pomo/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/pomo/wp-login.php',''),(116250,'2024-12-30 12:20:27','/wp-includes/js/themes.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/js/themes.php',''),(116251,'2024-12-30 12:30:14','/events/live-blind-tasting-featuring-toms-spring-wine-picks/','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)',NULL,''),(116252,'2024-12-30 12:41:55','/.well-known/assetlinks.json','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(116253,'2024-12-30 13:02:30','/store/index.cfm?fuseaction=productdetail&product_id=814','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36',NULL,''),(116254,'2024-12-30 13:23:02','/store/index.cfm?fuseaction=productdetail&product_id=789','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36',NULL,''),(116255,'2024-12-30 13:23:13','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(116256,'2024-12-30 13:29:02','/wp-plain.php','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',''),(116257,'2024-12-30 13:29:10','/ntvfufvz.php?Fox=d3wL7','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',''),(116258,'2024-12-30 13:37:56','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116259,'2024-12-30 14:28:32','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(116260,'2024-12-30 14:49:08','/shop/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(116261,'2024-12-30 15:40:34','/events/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) Gecko/20100101 Firefox superpagesbot2.0','http://www.komenwestmichigan.org',''),(116262,'2024-12-30 15:47:34','/our-story','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36',NULL,''),(116263,'2024-12-30 15:56:00','/actuator/env','Go-http-client/1.1',NULL,''),(116264,'2024-12-30 15:56:00','/server','Go-http-client/1.1',NULL,''),(116265,'2024-12-30 15:56:00','/.vscode/sftp.json','Go-http-client/1.1',NULL,''),(116266,'2024-12-30 15:56:01','/debug/default/view?panel=config','Go-http-client/1.1',NULL,''),(116267,'2024-12-30 15:56:01','/v2/_catalog','Go-http-client/1.1',NULL,''),(116268,'2024-12-30 15:56:02','/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application','Go-http-client/1.1',NULL,''),(116269,'2024-12-30 15:56:02','/server-status','Go-http-client/1.1',NULL,''),(116270,'2024-12-30 15:56:02','/login.action','Go-http-client/1.1',NULL,''),(116271,'2024-12-30 15:56:02','/_all_dbs','Mozilla/5.0 (l9scan/2.0.0323e2331323e2339313e2134313; +https://leakix.net)',NULL,''),(116272,'2024-12-30 15:56:03','/config.json','Go-http-client/1.1',NULL,''),(116273,'2024-12-30 15:56:03','/telescope/requests','Go-http-client/1.1',NULL,''),(116274,'2024-12-30 15:56:03','/info.php','Go-http-client/1.1',NULL,''),(116275,'2024-12-30 15:56:15','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116276,'2024-12-30 16:19:25','/our-story','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36',NULL,''),(116277,'2024-12-30 17:21:39','/blog/Meadowcroft-Cabernet-Sauvignon-Garners-91-Point-Rating','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(116278,'2024-12-30 17:58:32','/.well-known/assetlinks.json','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36',NULL,''),(116279,'2024-12-30 18:45:28','/wordpress','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wordpress',''),(116280,'2024-12-30 18:45:29','/wp','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wp',''),(116281,'2024-12-30 18:45:30','/bc','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bc',''),(116282,'2024-12-30 18:45:31','/bk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bk',''),(116283,'2024-12-30 18:45:31','/backup','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/backup',''),(116284,'2024-12-30 18:45:34','/main','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/main',''),(116285,'2024-12-30 19:12:55','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116286,'2024-12-30 19:23:38','/wordpress','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wordpress',''),(116287,'2024-12-30 19:23:39','/wp','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wp',''),(116288,'2024-12-30 19:23:39','/bc','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bc',''),(116289,'2024-12-30 19:23:40','/bk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bk',''),(116290,'2024-12-30 19:23:40','/backup','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/backup',''),(116291,'2024-12-30 19:23:42','/main','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/main',''),(116292,'2024-12-30 19:41:23','/admin.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://meadowcroftwines.com',''),(116293,'2024-12-30 20:21:21','/admin.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://meadowcroftwines.com',''),(116294,'2024-12-30 20:23:53','/events/1583/','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,''),(116295,'2024-12-30 20:57:08','/shop/?view=product&slug=blind_tasting_mix','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(116296,'2024-12-30 21:03:48','/collection/event-tickets','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(116297,'2024-12-30 21:19:29','/admin.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://meadowcroftwines.com',''),(116298,'2024-12-30 21:27:58','/shop/?view=product&slug=blind_tasting_white','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(116299,'2024-12-30 21:56:37','/wines/current-releases/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(116300,'2024-12-30 22:57:03','/admin.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://meadowcroftwines.com',''),(116301,'2024-12-30 23:01:45','/tasting-room/blending-experience/','Mozilla/5.0 (compatible; MojeekBot/0.11; +https://www.mojeek.com/bot.html)',NULL,''),(116302,'2024-12-30 23:12:05','/admin.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://meadowcroftwines.com',''),(116303,'2024-12-30 23:27:40','/admin.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://meadowcroftwines.com',''),(116304,'2024-12-30 23:37:56','/shipping-policy.cfm','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',NULL,''),(116305,'2024-12-30 23:47:04','/admin.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://meadowcroftwines.com',''),(116306,'2024-12-30 23:48:25','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116307,'2024-12-31 01:12:44','/admin.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://meadowcroftwines.com',''),(116308,'2024-12-31 01:41:19','/events','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,''),(116309,'2024-12-31 02:24:58','/admin.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://meadowcroftwines.com',''),(116310,'2024-12-31 03:01:02','/meta.json','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,''),(116311,'2024-12-31 03:20:46','/admin.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://meadowcroftwines.com',''),(116312,'2024-12-31 03:28:09','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(116313,'2024-12-31 03:32:16','/admin.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://meadowcroftwines.com',''),(116314,'2024-12-31 03:33:34','/wordpress','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wordpress',''),(116315,'2024-12-31 03:33:35','/wp','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wp',''),(116316,'2024-12-31 03:33:36','/bc','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bc',''),(116317,'2024-12-31 03:33:37','/bk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bk',''),(116318,'2024-12-31 03:33:38','/backup','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/backup',''),(116319,'2024-12-31 03:33:41','/main','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/main',''),(116320,'2024-12-31 03:36:47','/shop/?view=products&slug=wine_gifts','Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)',NULL,''),(116321,'2024-12-31 03:42:56','/product/book-one-pan-two-plates/','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,''),(116322,'2024-12-31 04:12:31','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(116323,'2024-12-31 04:23:16','/privacy-policy/tel:7079344090','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36',NULL,''),(116324,'2024-12-31 05:06:49','/events/hands-on-harvest-2019/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36',NULL,''),(116325,'2024-12-31 05:39:30','/news.cfm','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36',NULL,''),(116326,'2024-12-31 07:00:34','/privacy-policy.cfm','Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',NULL,''),(116327,'2024-12-31 07:37:15','/assets/admin/plugins/elfinder/connectors/php/connector.php','ALittle Client',NULL,''),(116328,'2024-12-31 07:42:49','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116329,'2024-12-31 07:58:13','/store/index.cfm?fuseaction=productdetail&product_id=67','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36',NULL,''),(116330,'2024-12-31 08:17:45','/events/pasta-making-demo-lunch','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,''),(116331,'2024-12-31 08:25:59','/shop/?view=products&slug=Wines_Under_40','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,''),(116332,'2024-12-31 08:47:37','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116333,'2024-12-31 09:02:47','/vineyard/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',NULL,''),(116334,'2024-12-31 09:07:39','/events/valentines-day-wines-treats-at-meadowcroft/','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,''),(116335,'2024-12-31 09:52:09','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116336,'2024-12-31 10:21:55','/visit','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.80 Safari/537.36',NULL,''),(116337,'2024-12-31 10:51:18','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116338,'2024-12-31 10:57:07','/events/mardi-gras-2013','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,''),(116339,'2024-12-31 11:13:05','/2024-half-marathon-wines/','Mozilla/5.0 (compatible; ImagesiftBot; +imagesift.com)',NULL,''),(116340,'2024-12-31 11:45:22','/meta.json','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,''),(116341,'2024-12-31 12:08:31','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116342,'2024-12-31 12:15:18','/wp-content/plugins/fix/up.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',NULL,''),(116343,'2024-12-31 12:35:11','/.well-known/assetlinks.json','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(116344,'2024-12-31 13:02:03','/wp-content/themes/twentystd/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36',NULL,''),(116345,'2024-12-31 13:15:35','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(116346,'2024-12-31 14:06:52','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(116347,'2024-12-31 14:24:11','/shop/?view=products&slug=current_releases','Mozilla/5.0 (iPhone; CPU iPhone OS 18_1_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/22B91 Instagram 361.0.0.35.82 (iPhone14,2; iOS 18_1_1; en_US; en; scale=3.00; 1170x2532; 674117118)','https://linktr.ee/',''),(116348,'2024-12-31 14:35:54','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116349,'2024-12-31 14:48:15','/about-us.cfm','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36',NULL,''),(116350,'2024-12-31 15:21:53','/collection/event-tickets','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,''),(116351,'2024-12-31 15:23:43','/zqxjaxLOIyZIoN.html','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,''),(116352,'2024-12-31 15:23:49','/wp-content/themes/wp-spectratheme/js/zqxjaxLOIyZIoN.html','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,''),(116353,'2024-12-31 15:23:50','/brand/meadowcroft-wines/zqxjaxLOIyZIoN.html','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,''),(116354,'2024-12-31 15:23:52','/subscribe/zqxjaxLOIyZIoN.html','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,''),(116355,'2024-12-31 15:23:57','/newsletters/zqxjaxLOIyZIoN.html','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,''),(116356,'2024-12-31 15:24:00','/wp-content/plugins/age-gate/dist/zqxjaxLOIyZIoN.html','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,''),(116357,'2024-12-31 15:24:04','/inquiry/zqxjaxLOIyZIoN.html','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,''),(116358,'2024-12-31 15:24:05','/wp-content/plugins/responsive-accordion-and-collapse/js/zqxjaxLOIyZIoN.html','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,''),(116359,'2024-12-31 15:24:07','/wine-club-exclusives/zqxjaxLOIyZIoN.html','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,''),(116360,'2024-12-31 15:24:08','/tasting-room/zqxjaxLOIyZIoN.html','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,''),(116361,'2024-12-31 15:24:12','/balloon-blending/zqxjaxLOIyZIoN.html','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,''),(116362,'2024-12-31 15:24:16','/wine-club/zqxjaxLOIyZIoN.html','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,''),(116363,'2024-12-31 15:24:18','/shipping-faq/zqxjaxLOIyZIoN.html','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,''),(116364,'2024-12-31 15:24:22','/awards-and-news/zqxjaxLOIyZIoN.html','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,''),(116365,'2024-12-31 15:24:23','/policies/zqxjaxLOIyZIoN.html','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,''),(116366,'2024-12-31 15:24:26','/privacy-policy/zqxjaxLOIyZIoN.html','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,''),(116367,'2024-12-31 15:24:31','/about/zqxjaxLOIyZIoN.html','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,''),(116368,'2024-12-31 15:24:34','/sparkling-wines/zqxjaxLOIyZIoN.html','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,''),(116369,'2024-12-31 15:24:36','/wine-gifts/zqxjaxLOIyZIoN.html','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,''),(116370,'2024-12-31 15:24:38','/white-wines/zqxjaxLOIyZIoN.html','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,''),(116371,'2024-12-31 15:24:43','/private-label-wines/zqxjaxLOIyZIoN.html','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,''),(116372,'2024-12-31 15:24:48','/wines/zqxjaxLOIyZIoN.html','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,''),(116373,'2024-12-31 15:24:50','/rose-wines/zqxjaxLOIyZIoN.html','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,''),(116374,'2024-12-31 15:24:51','/red-wines/zqxjaxLOIyZIoN.html','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,''),(116375,'2024-12-31 15:24:53','/blog/zqxjaxLOIyZIoN.html','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,''),(116376,'2024-12-31 15:24:56','/wine-blending-experience/zqxjaxLOIyZIoN.html','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,''),(116377,'2024-12-31 15:24:58','/event-tickets/zqxjaxLOIyZIoN.html','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,''),(116378,'2024-12-31 15:25:03','/wp-content/themes/wp-spectratheme-child/js/zqxjaxLOIyZIoN.html','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,''),(116379,'2024-12-31 15:35:52','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116380,'2024-12-31 15:36:09','/shop/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(116381,'2024-12-31 16:59:57','/shop/?view=products&slug=current_releases','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,''),(116382,'2024-12-31 17:13:21','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116383,'2024-12-31 17:15:33','/wp-plain.php','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',''),(116384,'2024-12-31 17:15:35','/incynaew.php?Fox=d3wL7','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',''),(116385,'2024-12-31 17:15:55','/shop/?view=product&slug=blind_tasting_white','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(116386,'2024-12-31 17:21:32','/wp-plain.php','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',''),(116387,'2024-12-31 17:21:36','/njycraal.php?Fox=d3wL7','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',''),(116388,'2024-12-31 17:21:37','/wp-content/plugins/fix/up.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',NULL,''),(116389,'2024-12-31 18:13:12','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116390,'2024-12-31 18:29:23','/.well-known/assetlinks.json','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36',NULL,''),(116391,'2024-12-31 19:03:56','/shop/?view=product&slug=blind_tasting_mix','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(116392,'2024-12-31 19:05:22','/collection/event-tickets','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(116393,'2024-12-31 19:09:06','/.vscode/sftp.json','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,''),(116394,'2024-12-31 19:09:08','/.vscode/ftp-sync.json','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,''),(116395,'2024-12-31 19:09:10','/ftp-sync.json','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,''),(116396,'2024-12-31 19:09:14','/.ftp-sync.json','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,''),(116397,'2024-12-31 19:09:15','/.ftpconfig','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,''),(116398,'2024-12-31 19:09:18','/.vscode/.ftpconfig','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,''),(116399,'2024-12-31 19:09:20','/sftp.json','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,''),(116400,'2024-12-31 19:11:58','/wines/current-releases/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(116401,'2024-12-31 19:14:47','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116402,'2024-12-31 19:17:21','/wp-content/plugins/fix/up.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',NULL,''),(116403,'2024-12-31 19:20:41','/events/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.26 Safari/537.36',NULL,''),(116404,'2024-12-31 19:25:55','/wp-content/plugins/wp-file-manager-pro/lib/php/connector.minimal.php','ALittle Client',NULL,''),(116405,'2024-12-31 19:27:29','/shop/','Mozilla/5.0 (iPhone; CPU iPhone OS 18_1_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.1.1 Mobile/15E148 Safari/604.1',NULL,''),(116406,'2024-12-31 20:31:02','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116407,'2024-12-31 20:52:38','/shop/?view=products&slug=white_wine','AdsBot-Google (+http://www.google.com/adsbot.html)',NULL,''),(116408,'2024-12-31 21:23:29','/events/summer-wine-carafe-party/','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,''),(116409,'2024-12-31 21:42:40','/event-362356/tel:7079344090','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36',NULL,''),(116410,'2024-12-31 22:42:30','/shop/?view=product&slug=blind_tasting_mix','Mozilla/5.0 (Linux; Android 13) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.5359.128 Mobile Safari/537.36 (compatible; AhrefsSiteAudit/6.1; +http://ahrefs.com/robot/site-audit)',NULL,''),(116411,'2024-12-31 22:45:56','/wines/current-releases/','Mozilla/5.0 (Linux; Android 13) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.5359.128 Mobile Safari/537.36 (compatible; AhrefsSiteAudit/6.1; +http://ahrefs.com/robot/site-audit)',NULL,''),(116412,'2024-12-31 22:47:30','/shop/?view=product&slug=blind_tasting_white','Mozilla/5.0 (Linux; Android 13) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.5359.128 Mobile Safari/537.36 (compatible; AhrefsSiteAudit/6.1; +http://ahrefs.com/robot/site-audit)',NULL,''),(116413,'2024-12-31 22:54:24','/collection/event-tickets','Mozilla/5.0 (Linux; Android 13) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.5359.128 Mobile Safari/537.36 (compatible; AhrefsSiteAudit/6.1; +http://ahrefs.com/robot/site-audit)',NULL,''),(116414,'2025-01-01 01:19:33','/.vscode/sftp.json','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,''),(116415,'2025-01-01 03:07:13','/events/meet-the-bee-team/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(116416,'2025-01-01 03:11:51','/click.php','Go-http-client/2.0','https://meadowcroftwines.com/click.php',''),(116417,'2025-01-01 03:11:52','/termps.php','Go-http-client/2.0','https://meadowcroftwines.com/termps.php',''),(116418,'2025-01-01 03:11:53','/sck.php','Go-http-client/2.0','https://meadowcroftwines.com/sck.php',''),(116419,'2025-01-01 03:11:54','/ans.php','Go-http-client/2.0','https://meadowcroftwines.com/ans.php',''),(116420,'2025-01-01 03:11:55','/buy.php','Go-http-client/2.0','https://meadowcroftwines.com/buy.php',''),(116421,'2025-01-01 03:11:56','/wp-content/plugins/Core-EconX/up.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/Core-EconX/up.php',''),(116422,'2025-01-01 03:11:58','/index4.php','Go-http-client/2.0','https://meadowcroftwines.com/index4.php',''),(116423,'2025-01-01 03:11:59','/wp-content/termps.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/termps.php',''),(116424,'2025-01-01 03:12:00','/rbh/log.ph','Go-http-client/2.0','https://meadowcroftwines.com/rbh/log.ph',''),(116425,'2025-01-01 03:12:01','/pwp-admin/network/login.php','Go-http-client/2.0','https://meadowcroftwines.com/pwp-admin/network/login.php',''),(116426,'2025-01-01 03:12:02','/wander.php','Go-http-client/2.0','https://meadowcroftwines.com/wander.php',''),(116427,'2025-01-01 03:12:03','/fck.php','Go-http-client/2.0','https://meadowcroftwines.com/fck.php',''),(116428,'2025-01-01 03:12:04','/wp-includes/css/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/css/about.php',''),(116429,'2025-01-01 03:12:05','/writeable.php','Go-http-client/2.0','https://meadowcroftwines.com/writeable.php',''),(116430,'2025-01-01 03:12:06','/admin/function.php','Go-http-client/2.0','https://meadowcroftwines.com/admin/function.php',''),(116431,'2025-01-01 03:12:07','/wp-content/themes/deeto/login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/deeto/login.php',''),(116432,'2025-01-01 03:12:09','/wp-includes/IXR/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/IXR/wp-login.php',''),(116433,'2025-01-01 03:12:11','/.tmb/about.php','Go-http-client/2.0','https://meadowcroftwines.com/.tmb/about.php',''),(116434,'2025-01-01 03:12:12','/wp-content/themes/newsfeed-theme/bbh.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/newsfeed-theme/bbh.php',''),(116435,'2025-01-01 03:12:14','/wp-content/plugins/helloapx/wp-apxupx.php?apx=upx','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/helloapx/wp-apxupx.php?apx=upx',''),(116436,'2025-01-01 03:12:15','/wp-content/themes/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/about.php',''),(116437,'2025-01-01 03:12:17','/shell20211028.php','Go-http-client/2.0','https://meadowcroftwines.com/shell20211028.php',''),(116438,'2025-01-01 03:12:18','/wp-includes/images/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/images/about.php',''),(116439,'2025-01-01 03:12:19','/makeasmtp.php','Go-http-client/2.0','https://meadowcroftwines.com/makeasmtp.php',''),(116440,'2025-01-01 03:12:20','/mah/function.php','Go-http-client/2.0','https://meadowcroftwines.com/mah/function.php',''),(116441,'2025-01-01 03:12:21','/simple.php','Go-http-client/2.0','https://meadowcroftwines.com/simple.php',''),(116442,'2025-01-01 03:12:22','/shell.php','Go-http-client/2.0','https://meadowcroftwines.com/shell.php',''),(116443,'2025-01-01 03:12:23','/file.php','Go-http-client/2.0','https://meadowcroftwines.com/file.php',''),(116444,'2025-01-01 03:12:24','/admin.php','Go-http-client/2.0','https://meadowcroftwines.com/admin.php',''),(116445,'2025-01-01 03:12:25','/mah.php','Go-http-client/2.0','https://meadowcroftwines.com/mah.php',''),(116446,'2025-01-01 03:12:26','/about.php','Go-http-client/2.0','https://meadowcroftwines.com/about.php',''),(116447,'2025-01-01 03:12:27','/css/','Go-http-client/2.0','https://meadowcroftwines.com/css/index.php',''),(116448,'2025-01-01 03:12:28','/index/function.php','Go-http-client/2.0','https://meadowcroftwines.com/index/function.php',''),(116449,'2025-01-01 03:12:29','/chosen.php','Go-http-client/2.0','https://meadowcroftwines.com/chosen.php',''),(116450,'2025-01-01 03:12:30','/fm.php','Go-http-client/2.0','https://meadowcroftwines.com/fm.php',''),(116451,'2025-01-01 03:12:31','/1.php','Go-http-client/2.0','https://meadowcroftwines.com/1.php',''),(116452,'2025-01-01 03:12:33','/about/function.php','Go-http-client/2.0','https://meadowcroftwines.com/about/function.php',''),(116453,'2025-01-01 03:12:34','/alfa-rex.php','Go-http-client/2.0','https://meadowcroftwines.com/alfa-rex.php',''),(116454,'2025-01-01 03:12:35','/wp-admin/css/colors/sHQwacY.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/css/colors/sHQwacY.php',''),(116455,'2025-01-01 03:12:36','/wp-content/plugins/core-plugin/include.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/core-plugin/include.php',''),(116456,'2025-01-01 03:12:38','/moon.php','Go-http-client/2.0','https://meadowcroftwines.com/moon.php',''),(116457,'2025-01-01 03:12:39','/wp-content/themes/sketch/404.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/sketch/404.php',''),(116458,'2025-01-01 03:12:42','/404.php','Go-http-client/2.0','https://meadowcroftwines.com/404.php',''),(116459,'2025-01-01 03:12:45','/autoload_classmap.php','Go-http-client/2.0','https://meadowcroftwines.com/autoload_classmap.php',''),(116460,'2025-01-01 03:12:46','/xml.php','Go-http-client/2.0','https://meadowcroftwines.com/xml.php',''),(116461,'2025-01-01 03:12:47','/jindex.php','Go-http-client/2.0','https://meadowcroftwines.com/jindex.php',''),(116462,'2025-01-01 03:12:49','/en/','Go-http-client/2.0','https://meadowcroftwines.com/en/index.php',''),(116463,'2025-01-01 03:12:50','/wp-content/plugins/WordPressCore/include.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/WordPressCore/include.php',''),(116464,'2025-01-01 03:12:52','/wso.php','Go-http-client/2.0','https://meadowcroftwines.com/wso.php',''),(116465,'2025-01-01 03:12:53','/ini.php','Go-http-client/2.0','https://meadowcroftwines.com/ini.php',''),(116466,'2025-01-01 03:12:54','/bk/','Go-http-client/2.0','https://meadowcroftwines.com/bk/index.php',''),(116467,'2025-01-01 03:12:55','/themes.php','Go-http-client/2.0','https://meadowcroftwines.com/themes.php',''),(116468,'2025-01-01 03:12:56','/wp-content/plugins/revslider/includes/external/page/','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/revslider/includes/external/page/index.php',''),(116469,'2025-01-01 03:12:57','/install.php','Go-http-client/2.0','https://meadowcroftwines.com/install.php',''),(116470,'2025-01-01 03:12:59','/classwithtostring.php','Go-http-client/2.0','https://meadowcroftwines.com/classwithtostring.php',''),(116471,'2025-01-01 03:13:01','/goods.php','Go-http-client/2.0','https://meadowcroftwines.com/goods.php',''),(116472,'2025-01-01 03:13:03','/wp-links.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-links.php',''),(116473,'2025-01-01 03:13:04','/new.php','Go-http-client/2.0','https://meadowcroftwines.com/new.php',''),(116474,'2025-01-01 03:13:05','/wp-content/languages/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/languages/wp-login.php',''),(116475,'2025-01-01 03:13:06','/wp.php','Go-http-client/2.0','https://meadowcroftwines.com/wp.php',''),(116476,'2025-01-01 03:13:07','/elp.php','Go-http-client/2.0','https://meadowcroftwines.com/elp.php',''),(116477,'2025-01-01 03:13:08','/a.php','Go-http-client/2.0','https://meadowcroftwines.com/a.php',''),(116478,'2025-01-01 03:13:09','/m.php','Go-http-client/2.0','https://meadowcroftwines.com/m.php',''),(116479,'2025-01-01 03:13:10','/wp-includes/product.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/product.php',''),(116480,'2025-01-01 03:13:11','/wp-content/admin.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/admin.php',''),(116481,'2025-01-01 03:13:12','/wp-admin/images/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/images/about.php',''),(116482,'2025-01-01 03:13:13','/log.php','Go-http-client/2.0','https://meadowcroftwines.com/log.php',''),(116483,'2025-01-01 03:13:14','/inc.php','Go-http-client/2.0','https://meadowcroftwines.com/inc.php',''),(116484,'2025-01-01 03:13:16','/wp-conflg.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-conflg.php',''),(116485,'2025-01-01 03:13:17','/cong.php','Go-http-client/2.0','https://meadowcroftwines.com/cong.php',''),(116486,'2025-01-01 03:13:18','/content.php','Go-http-client/2.0','https://meadowcroftwines.com/content.php',''),(116487,'2025-01-01 03:13:19','/wp-content/themes/seotheme/mar.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/seotheme/mar.php',''),(116488,'2025-01-01 03:13:20','/wp-info.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-info.php',''),(116489,'2025-01-01 03:13:21','/wp-content/languages/','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/languages/index.php',''),(116490,'2025-01-01 03:13:22','/edit.php','Go-http-client/2.0','https://meadowcroftwines.com/edit.php',''),(116491,'2025-01-01 03:13:25','/login.php','Go-http-client/2.0','https://meadowcroftwines.com/login.php',''),(116492,'2025-01-01 03:13:26','/text.php','Go-http-client/2.0','https://meadowcroftwines.com/text.php',''),(116493,'2025-01-01 03:13:27','/wp-content/upgrade/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/upgrade/about.php',''),(116494,'2025-01-01 03:13:30','/ws.php','Go-http-client/2.0','https://meadowcroftwines.com/ws.php',''),(116495,'2025-01-01 03:13:31','/dropdown.php','Go-http-client/2.0','https://meadowcroftwines.com/dropdown.php',''),(116496,'2025-01-01 03:13:32','/doc.php','Go-http-client/2.0','https://meadowcroftwines.com/doc.php',''),(116497,'2025-01-01 03:13:33','/radio.php','Go-http-client/2.0','https://meadowcroftwines.com/radio.php',''),(116498,'2025-01-01 03:13:35','/css.php','Go-http-client/1.1','http://meadowcroftwines.com/css.php',''),(116499,'2025-01-01 03:13:36','/wp-content/plugins/hello.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/hello.php',''),(116500,'2025-01-01 03:13:38','/function.php','Go-http-client/2.0','https://meadowcroftwines.com/function.php',''),(116501,'2025-01-01 03:13:39','/randkeyword.php','Go-http-client/2.0','https://meadowcroftwines.com/randkeyword.php',''),(116502,'2025-01-01 03:13:41','/plugin.php','Go-http-client/2.0','https://meadowcroftwines.com/plugin.php',''),(116503,'2025-01-01 03:13:42','/wp-includes/Text/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/Text/wp-login.php',''),(116504,'2025-01-01 03:13:43','/link.php','Go-http-client/2.0','https://meadowcroftwines.com/link.php',''),(116505,'2025-01-01 03:13:45','/wp-includes/fonts/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/fonts/about.php',''),(116506,'2025-01-01 03:13:46','/wp-includes/admin.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/admin.php',''),(116507,'2025-01-01 03:13:47','/defaults.php','Go-http-client/2.0','https://meadowcroftwines.com/defaults.php',''),(116508,'2025-01-01 03:13:48','/user.php','Go-http-client/2.0','https://meadowcroftwines.com/user.php',''),(116509,'2025-01-01 03:13:49','/wp-content/themes/twentyfive/include.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/twentyfive/include.php',''),(116510,'2025-01-01 03:13:50','/alfa.php','Go-http-client/2.0','https://meadowcroftwines.com/alfa.php',''),(116511,'2025-01-01 03:13:52','/wp-content/mah.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/mah.php',''),(116512,'2025-01-01 03:13:53','/x/','Go-http-client/2.0','https://meadowcroftwines.com/x/index.php',''),(116513,'2025-01-01 03:13:54','/wp-admin.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin.php',''),(116514,'2025-01-01 03:13:55','/templates/beez3/jsstrings.php','Go-http-client/2.0','https://meadowcroftwines.com/templates/beez3/jsstrings.php',''),(116515,'2025-01-01 03:13:57','/403.php','Go-http-client/2.0','https://meadowcroftwines.com/403.php',''),(116516,'2025-01-01 03:13:58','/wp-includes/mah.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/mah.php',''),(116517,'2025-01-01 03:13:59','/wp-content/shell.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/shell.php',''),(116518,'2025-01-01 03:14:01','/menu.php','Go-http-client/2.0','https://meadowcroftwines.com/menu.php',''),(116519,'2025-01-01 03:14:02','/data.php','Go-http-client/2.0','https://meadowcroftwines.com/data.php',''),(116520,'2025-01-01 03:14:03','/wp-admin/class-db.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/class-db.php',''),(116521,'2025-01-01 03:14:04','/lock.php','Go-http-client/2.0','https://meadowcroftwines.com/lock.php',''),(116522,'2025-01-01 03:14:05','/wp-header.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-header.php',''),(116523,'2025-01-01 03:14:06','/mini.php','Go-http-client/2.0','https://meadowcroftwines.com/mini.php',''),(116524,'2025-01-01 03:14:07','/atomlib.php','Go-http-client/2.0','https://meadowcroftwines.com/atomlib.php',''),(116525,'2025-01-01 03:14:08','/randkeyword.PhP7','Go-http-client/2.0','https://meadowcroftwines.com/randkeyword.PhP7',''),(116526,'2025-01-01 03:14:09','/b.php','Go-http-client/2.0','https://meadowcroftwines.com/b.php',''),(116527,'2025-01-01 03:14:10','/s.php','Go-http-client/2.0','https://meadowcroftwines.com/s.php',''),(116528,'2025-01-01 03:14:11','/hehehehe.php','Go-http-client/2.0','https://meadowcroftwines.com/hehehehe.php',''),(116529,'2025-01-01 03:14:12','/wp-includes/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/wp-login.php',''),(116530,'2025-01-01 03:14:15','/web.php','Go-http-client/2.0','https://meadowcroftwines.com/web.php',''),(116531,'2025-01-01 03:14:16','/xx.php','Go-http-client/2.0','https://meadowcroftwines.com/xx.php',''),(116532,'2025-01-01 03:14:17','/as.php','Go-http-client/2.0','https://meadowcroftwines.com/as.php',''),(116533,'2025-01-01 03:14:18','/worksec.php','Go-http-client/2.0','https://meadowcroftwines.com/worksec.php',''),(116534,'2025-01-01 03:14:19','/ioxi002.PhP7','Go-http-client/2.0','https://meadowcroftwines.com/ioxi002.PhP7',''),(116535,'2025-01-01 03:14:20','/back.php','Go-http-client/2.0','https://meadowcroftwines.com/back.php',''),(116536,'2025-01-01 03:14:21','/.well-known/about.php','Go-http-client/2.0','https://meadowcroftwines.com/.well-known/about.php',''),(116537,'2025-01-01 03:14:22','/plugins.php','Go-http-client/2.0','https://meadowcroftwines.com/plugins.php',''),(116538,'2025-01-01 03:14:23','/wp-content/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/about.php',''),(116539,'2025-01-01 03:14:24','/class.api.php','Go-http-client/2.0','https://meadowcroftwines.com/class.api.php',''),(116540,'2025-01-01 03:14:25','/baxa1.phP8','Go-http-client/2.0','https://meadowcroftwines.com/baxa1.phP8',''),(116541,'2025-01-01 03:14:26','/wp-includes/SimplePie/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/SimplePie/about.php',''),(116542,'2025-01-01 03:14:28','/wp-includes/sitemaps/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/sitemaps/about.php',''),(116543,'2025-01-01 03:14:30','/ova.php','Go-http-client/2.0','https://meadowcroftwines.com/ova.php',''),(116544,'2025-01-01 03:14:31','/wp-content/item.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/item.php',''),(116545,'2025-01-01 03:14:32','/wp-content/classwithtostring.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/classwithtostring.php',''),(116546,'2025-01-01 03:14:33','/wp-admin/css/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/css/about.php',''),(116547,'2025-01-01 03:14:34','/home.php','Go-http-client/2.0','https://meadowcroftwines.com/home.php',''),(116548,'2025-01-01 03:14:35','/wp-includes/item.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/item.php',''),(116549,'2025-01-01 03:14:37','/wp-content/cong.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/cong.php',''),(116550,'2025-01-01 03:14:38','/wp-content/themes/digital-download/new.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/digital-download/new.php',''),(116551,'2025-01-01 03:14:39','/x.php','Go-http-client/2.0','https://meadowcroftwines.com/x.php',''),(116552,'2025-01-01 03:14:40','/wp-admin/images/admin.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/images/admin.php',''),(116553,'2025-01-01 03:14:41','/byp.php','Go-http-client/2.0','https://meadowcroftwines.com/byp.php',''),(116554,'2025-01-01 03:14:42','/wp-admin/css/colors/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/css/colors/about.php',''),(116555,'2025-01-01 03:14:43','/wp-includes/customize/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/customize/about.php',''),(116556,'2025-01-01 03:14:45','/wp-admin/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/wp-login.php',''),(116557,'2025-01-01 03:14:46','/wp-content/themes/include.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/include.php',''),(116558,'2025-01-01 03:14:48','/wp-admin/classwithtostring.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/classwithtostring.php',''),(116559,'2025-01-01 03:14:48','/wp-content/plugins/WordPressCore/','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/WordPressCore/index.php',''),(116560,'2025-01-01 03:14:50','/ova-tools.php','Go-http-client/2.0','https://meadowcroftwines.com/ova-tools.php',''),(116561,'2025-01-01 03:14:51','/version.php','Go-http-client/2.0','https://meadowcroftwines.com/version.php',''),(116562,'2025-01-01 03:14:52','/lufix.php','Go-http-client/2.0','https://meadowcroftwines.com/lufix.php',''),(116563,'2025-01-01 03:14:53','/wp-includes/images/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/images/wp-login.php',''),(116564,'2025-01-01 03:14:54','/wp-includes/pomo/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/pomo/wp-login.php',''),(116565,'2025-01-01 03:14:56','/wp-content/themes.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes.php',''),(116566,'2025-01-01 03:14:58','/wp-includes/link.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/link.php',''),(116567,'2025-01-01 03:14:59','/wp-content/plugins/dummyyummy/wp-signup.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/dummyyummy/wp-signup.php',''),(116568,'2025-01-01 03:15:00','/w.php','Go-http-client/2.0','https://meadowcroftwines.com/w.php',''),(116569,'2025-01-01 03:15:01','/bypass.php','Go-http-client/2.0','https://meadowcroftwines.com/bypass.php',''),(116570,'2025-01-01 03:15:02','/wp-add.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-add.php',''),(116571,'2025-01-01 03:15:03','/wp-content/plugins/ioxi/alfa-ioxi.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/ioxi/alfa-ioxi.php',''),(116572,'2025-01-01 03:15:05','/templates/beez/jsstrings.php','Go-http-client/2.0','https://meadowcroftwines.com/templates/beez/jsstrings.php',''),(116573,'2025-01-01 03:15:08','/xl2023.php','Go-http-client/2.0','https://meadowcroftwines.com/xl2023.php',''),(116574,'2025-01-01 03:15:09','/templates/beez/','Go-http-client/2.0','https://meadowcroftwines.com/templates/beez/index.php',''),(116575,'2025-01-01 03:15:10','/wp-l0gin.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-l0gin.php',''),(116576,'2025-01-01 03:15:11','/c.php','Go-http-client/2.0','https://meadowcroftwines.com/c.php',''),(116577,'2025-01-01 03:15:12','/wp-admin/dropdown.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/dropdown.php',''),(116578,'2025-01-01 03:15:13','/small.php','Go-http-client/2.0','https://meadowcroftwines.com/small.php',''),(116579,'2025-01-01 03:15:14','/assets/library.php','Go-http-client/2.0','https://meadowcroftwines.com/assets/library.php',''),(116580,'2025-01-01 03:15:15','/h.php','Go-http-client/2.0','https://meadowcroftwines.com/h.php',''),(116581,'2025-01-01 03:15:16','/504.php','Go-http-client/2.0','https://meadowcroftwines.com/504.php',''),(116582,'2025-01-01 03:15:17','/wp-admin/css/network.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/css/network.php',''),(116583,'2025-01-01 03:15:18','/wp-content/content.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/content.php',''),(116584,'2025-01-01 03:15:19','/xt/','Go-http-client/2.0','https://meadowcroftwines.com/xt/index.php',''),(116585,'2025-01-01 03:15:21','/wp-content/json.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/json.php',''),(116586,'2025-01-01 03:15:22','/wp-includes/ID3/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/ID3/about.php',''),(116587,'2025-01-01 03:15:23','/tiny.php','Go-http-client/2.0','https://meadowcroftwines.com/tiny.php',''),(116588,'2025-01-01 03:15:24','/wp-includes/widgets/include.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/widgets/include.php',''),(116589,'2025-01-01 03:15:25','/customize.php','Go-http-client/2.0','https://meadowcroftwines.com/customize.php',''),(116590,'2025-01-01 03:15:26','/sad/about.php','Go-http-client/2.0','https://meadowcroftwines.com/sad/about.php',''),(116591,'2025-01-01 03:15:27','/jp.php','Go-http-client/2.0','https://meadowcroftwines.com/jp.php',''),(116592,'2025-01-01 03:15:28','/wp-includes/fonts/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/fonts/wp-login.php',''),(116593,'2025-01-01 03:15:31','/wp-admin/js/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/js/about.php',''),(116594,'2025-01-01 03:15:33','/wp-admin/network/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/network/wp-login.php',''),(116595,'2025-01-01 03:15:36','/1337.php','Go-http-client/2.0','https://meadowcroftwines.com/1337.php',''),(116596,'2025-01-01 03:15:37','/upgrade.php','Go-http-client/2.0','https://meadowcroftwines.com/upgrade.php',''),(116597,'2025-01-01 03:15:38','/wp-content/tmpls.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/tmpls.php',''),(116598,'2025-01-01 03:15:39','/editor.php','Go-http-client/2.0','https://meadowcroftwines.com/editor.php',''),(116599,'2025-01-01 03:15:40','/class.php','Go-http-client/2.0','https://meadowcroftwines.com/class.php',''),(116600,'2025-01-01 03:15:41','/vendor/bin/loader.php','Go-http-client/2.0','https://meadowcroftwines.com/vendor/bin/loader.php',''),(116601,'2025-01-01 03:15:43','/wp-includes/wp-includes_function.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/wp-includes_function.php',''),(116602,'2025-01-01 03:15:44','/wp-admin/css/dnIzIDf.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/css/dnIzIDf.php',''),(116603,'2025-01-01 03:15:46','/wp-content/themes/hideo/network.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/hideo/network.php',''),(116604,'2025-01-01 03:15:48','/wp-includes/Text/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/Text/about.php',''),(116605,'2025-01-01 03:15:50','/wp-includes/wp-class.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/wp-class.php',''),(116606,'2025-01-01 03:15:51','/wp-admin/css/colors/HsFPDcD.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/css/colors/HsFPDcD.php',''),(116607,'2025-01-01 03:15:53','/wp-admin/maint/upfile.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-admin/maint/upfile.php',''),(116608,'2025-01-01 03:15:55','/wp-includes/room.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/room.php',''),(116609,'2025-01-01 03:15:56','/.tmb/wp-login.php','Go-http-client/2.0','https://meadowcroftwines.com/.tmb/wp-login.php',''),(116610,'2025-01-01 03:15:57','/3m/wp-admin/css/colors/blue/','Go-http-client/2.0','https://meadowcroftwines.com/3m/wp-admin/css/colors/blue/',''),(116611,'2025-01-01 03:15:59','/defaul.php','Go-http-client/2.0','https://meadowcroftwines.com/defaul.php',''),(116612,'2025-01-01 03:16:00','/wp-includes/rest-api/about.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-includes/rest-api/about.php',''),(116613,'2025-01-01 03:16:02','/repeater.php','Go-http-client/2.0','https://meadowcroftwines.com/repeater.php',''),(116614,'2025-01-01 03:16:03','/Njima.php','Go-http-client/2.0','https://meadowcroftwines.com/Njima.php',''),(116615,'2025-01-01 03:16:04','/ticket/vendor/htmlawed/htmlawed/gel4y.php','Go-http-client/2.0','https://meadowcroftwines.com/ticket/vendor/htmlawed/htmlawed/gel4y.php',''),(116616,'2025-01-01 03:16:05','/wp-content/themes/seotheme/db.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/seotheme/db.php',''),(116617,'2025-01-01 03:16:07','/wp-content/plugins/ubh/up.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/ubh/up.php',''),(116618,'2025-01-01 03:16:08','/wp-content/themes/pridmag/db.php?u','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/themes/pridmag/db.php?u',''),(116619,'2025-01-01 03:16:10','/up.php','Go-http-client/2.0','https://meadowcroftwines.com/up.php',''),(116620,'2025-01-01 03:16:11','/wp-content/plugins/pwnd/pwnd.php','Go-http-client/2.0','https://meadowcroftwines.com/wp-content/plugins/pwnd/pwnd.php',''),(116621,'2025-01-01 03:16:13','/uploader.php','Go-http-client/2.0','https://meadowcroftwines.com/uploader.php',''),(116622,'2025-01-01 03:16:14','/test.php','Go-http-client/2.0','https://meadowcroftwines.com/test.php',''),(116623,'2025-01-01 03:16:15','/85022df0ed31.php','Go-http-client/2.0','https://meadowcroftwines.com/85022df0ed31.php',''),(116624,'2025-01-01 03:16:16','/Nexus.php','Go-http-client/2.0','https://meadowcroftwines.com/Nexus.php',''),(116625,'2025-01-01 03:16:17','/upload.php','Go-http-client/2.0','https://meadowcroftwines.com/upload.php',''),(116626,'2025-01-01 03:22:52','/wordpress/wp-admin/setup-config.php?step=1','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36','https://meadowcroftwines.com/wordpress/wp-admin/setup-config.php?step=1',''),(116627,'2025-01-01 03:27:02','/config.json','Go-http-client/1.1','https://meadowcroftwines.com/config.json',''),(116628,'2025-01-01 03:27:02','/config.yml','Go-http-client/1.1','https://meadowcroftwines.com/config.yml',''),(116629,'2025-01-01 03:27:02','/etc/ssl/private/server.key','Go-http-client/1.1','https://meadowcroftwines.com/etc/ssl/private/server.key',''),(116630,'2025-01-01 03:27:02','/_vti_pvt/service.pwd','Go-http-client/1.1','https://meadowcroftwines.com/_vti_pvt/service.pwd',''),(116631,'2025-01-01 03:27:02','/config.php','Go-http-client/1.1','https://meadowcroftwines.com/config.php',''),(116632,'2025-01-01 03:27:02','/.aws/credentials','Go-http-client/1.1','https://meadowcroftwines.com/.aws/credentials',''),(116633,'2025-01-01 03:27:03','/user_secrets.yml','Go-http-client/1.1','https://meadowcroftwines.com/user_secrets.yml',''),(116634,'2025-01-01 03:27:03','/secrets.json','Go-http-client/1.1','https://meadowcroftwines.com/secrets.json',''),(116635,'2025-01-01 03:27:03','/cloud-config.yml','Go-http-client/1.1','https://meadowcroftwines.com/cloud-config.yml',''),(116636,'2025-01-01 03:27:03','/etc/shadow','Go-http-client/1.1','https://meadowcroftwines.com/etc/shadow',''),(116637,'2025-01-01 03:27:03','/_vti_pvt/authors.pwd','Go-http-client/1.1','https://meadowcroftwines.com/_vti_pvt/authors.pwd',''),(116638,'2025-01-01 03:27:03','/config/production.json','Go-http-client/1.1','https://meadowcroftwines.com/config/production.json',''),(116639,'2025-01-01 03:27:03','/config/database.php','Go-http-client/1.1','https://meadowcroftwines.com/config/database.php',''),(116640,'2025-01-01 03:27:03','/.env.production','Go-http-client/1.1','https://meadowcroftwines.com/.env.production',''),(116641,'2025-01-01 03:27:03','/config.yaml','Go-http-client/1.1','https://meadowcroftwines.com/config.yaml',''),(116642,'2025-01-01 03:27:03','/_vti_pvt/administrators.pwd','Go-http-client/1.1','https://meadowcroftwines.com/_vti_pvt/administrators.pwd',''),(116643,'2025-01-01 03:27:03','/config.xml','Go-http-client/1.1','https://meadowcroftwines.com/config.xml',''),(116644,'2025-01-01 03:27:03','/server.key','Go-http-client/1.1','https://meadowcroftwines.com/server.key',''),(116645,'2025-01-01 03:27:03','/.vscode/sftp.json','Go-http-client/1.1','https://meadowcroftwines.com/.vscode/sftp.json',''),(116646,'2025-01-01 03:27:03','/.kube/config','Go-http-client/1.1','https://meadowcroftwines.com/.kube/config',''),(116647,'2025-01-01 03:27:03','/server-status','Go-http-client/1.1','https://meadowcroftwines.com/server-status',''),(116648,'2025-01-01 03:27:03','/docker-compose.yml','Go-http-client/1.1','https://meadowcroftwines.com/docker-compose.yml',''),(116649,'2025-01-01 03:38:35','/tasting-room/blending-experience/','Mozilla/5.0 (compatible; Pinterestbot/1.0; +http://www.pinterest.com/bot.html)',NULL,''),(116650,'2025-01-01 03:38:35','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(116651,'2025-01-01 03:41:15','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116652,'2025-01-01 04:23:59','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(116653,'2025-01-01 04:27:18','/meta.json','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,''),(116654,'2025-01-01 04:38:45','/our-brands','Mozilla/5.0 (compatible; MojeekBot/0.11; +https://www.mojeek.com/bot.html)',NULL,''),(116655,'2025-01-01 05:14:28','/manage/js/plupload/upload.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',NULL,''),(116656,'2025-01-01 05:25:11','/.vscode/sftp.json','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,''),(116657,'2025-01-01 05:33:39','/events/summer-music-series/?occurrence=2022-10-15','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,''),(116658,'2025-01-01 07:06:34','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116659,'2025-01-01 07:06:39','/actuator/env','Go-http-client/1.1',NULL,''),(116660,'2025-01-01 07:06:40','/server','Go-http-client/1.1',NULL,''),(116661,'2025-01-01 07:06:40','/.vscode/sftp.json','Go-http-client/1.1',NULL,''),(116662,'2025-01-01 07:06:40','/debug/default/view?panel=config','Go-http-client/1.1',NULL,''),(116663,'2025-01-01 07:06:41','/v2/_catalog','Go-http-client/1.1',NULL,''),(116664,'2025-01-01 07:06:41','/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application','Go-http-client/1.1',NULL,''),(116665,'2025-01-01 07:06:42','/server-status','Go-http-client/1.1',NULL,''),(116666,'2025-01-01 07:06:42','/login.action','Go-http-client/1.1',NULL,''),(116667,'2025-01-01 07:06:43','/_all_dbs','Mozilla/5.0 (l9scan/2.0.1323e2331323e2339313e2134313; +https://leakix.net)',NULL,''),(116668,'2025-01-01 07:06:43','/config.json','Go-http-client/1.1',NULL,''),(116669,'2025-01-01 07:06:44','/telescope/requests','Go-http-client/1.1',NULL,''),(116670,'2025-01-01 07:06:44','/info.php','Go-http-client/1.1',NULL,''),(116671,'2025-01-01 08:08:02','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116672,'2025-01-01 08:16:10','/event-363379/Mothers-Day-Celebration.html','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36',NULL,''),(116673,'2025-01-01 08:27:02','/wp-content/plugins/google-seo-rank/module.php','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36',NULL,''),(116674,'2025-01-01 08:31:45','/events/pasta-making-demo-lunch','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36',NULL,''),(116675,'2025-01-01 09:04:36','/store/index.cfm?fuseaction=productdetail&product_id=67','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36',NULL,''),(116676,'2025-01-01 09:24:50','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116677,'2025-01-01 10:46:31','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116678,'2025-01-01 11:10:43','/events-at-meadowcroft','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,''),(116679,'2025-01-01 12:15:59','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116680,'2025-01-01 12:19:07','/.well-known/assetlinks.json','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(116681,'2025-01-01 12:59:01','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(116682,'2025-01-01 13:24:06','/shop/?view=reservationtimes&slug=Taste_of_Meadowcroft','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,''),(116683,'2025-01-01 13:36:46','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116684,'2025-01-01 13:43:50','/our-wines','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,''),(116685,'2025-01-01 14:14:09','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(116686,'2025-01-01 14:19:33','/shop/?view=products&slug=current_releases','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,''),(116687,'2025-01-01 14:22:43','/shop/?view=products&slug=current_releases','Mozilla/5.0 (Linux; Android 12; SM-G975F Build/SP1A.210812.016; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/131.0.6778.131 Mobile Safari/537.36 [FBAN/FB4A;FBAV/494.0.0.55.73;FBBV/674947293;FBDM/{density=2.625,width=1080,height=2047};FBLC',NULL,''),(116688,'2025-01-01 14:37:47','/shop/?view=product&slug=blind_tasting_white','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(116689,'2025-01-01 14:38:36','/store/index.cfm?fuseaction=productdetail&product_id=67','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36',NULL,''),(116690,'2025-01-01 14:40:29','/wordpress','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wordpress',''),(116691,'2025-01-01 14:40:31','/wp','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wp',''),(116692,'2025-01-01 14:40:31','/bc','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bc',''),(116693,'2025-01-01 14:40:32','/bk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bk',''),(116694,'2025-01-01 14:40:33','/backup','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/backup',''),(116695,'2025-01-01 14:40:35','/main','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/main',''),(116696,'2025-01-01 15:07:22','/actuator/env','Go-http-client/1.1',NULL,''),(116697,'2025-01-01 15:07:23','/server','Go-http-client/1.1',NULL,''),(116698,'2025-01-01 15:07:23','/.vscode/sftp.json','Go-http-client/1.1',NULL,''),(116699,'2025-01-01 15:07:23','/debug/default/view?panel=config','Go-http-client/1.1',NULL,''),(116700,'2025-01-01 15:07:24','/v2/_catalog','Go-http-client/1.1',NULL,''),(116701,'2025-01-01 15:07:24','/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application','Go-http-client/1.1',NULL,''),(116702,'2025-01-01 15:07:25','/server-status','Go-http-client/1.1',NULL,''),(116703,'2025-01-01 15:07:26','/login.action','Go-http-client/1.1',NULL,''),(116704,'2025-01-01 15:07:26','/_all_dbs','Mozilla/5.0 (l9scan/2.0.0323e2331323e2339313e2134313; +https://leakix.net)',NULL,''),(116705,'2025-01-01 15:07:26','/config.json','Go-http-client/1.1',NULL,''),(116706,'2025-01-01 15:07:26','/telescope/requests','Go-http-client/1.1',NULL,''),(116707,'2025-01-01 15:07:27','/info.php','Go-http-client/1.1',NULL,''),(116708,'2025-01-01 15:10:00','/collection/event-tickets','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(116709,'2025-01-01 15:10:40','/wines/current-releases/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(116710,'2025-01-01 15:38:50','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116711,'2025-01-01 15:46:31','/store/index.cfm?fuseaction=productdetail&product_id=84','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',NULL,''),(116712,'2025-01-01 15:47:01','/shop/?view=product&slug=blind_tasting_mix','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36',NULL,''),(116713,'2025-01-01 16:00:33','/tasting-room/)-','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36',NULL,''),(116714,'2025-01-01 16:15:40','/shop/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(116715,'2025-01-01 16:40:08','/admin/elfinder/connectors/php/connector.php','ALittle Client',NULL,''),(116716,'2025-01-01 17:29:24','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116717,'2025-01-01 17:35:08','/store/index.cfm?fuseaction=productdetail&product_id=84','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36',NULL,''),(116718,'2025-01-01 18:07:20','/.well-known/assetlinks.json','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36',NULL,''),(116719,'2025-01-01 19:34:14','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116720,'2025-01-01 20:17:14','/.well-known/apple-app-site-association','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html)',NULL,''),(116721,'2025-01-01 20:51:06','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116722,'2025-01-01 21:21:20','/wp-content/plugins/WordPressCore/include.php','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36','www.google.com',''),(116723,'2025-01-01 21:21:41','/wp-content/themes/include.php','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36','www.google.com',''),(116724,'2025-01-01 21:25:49','/privacy-policy/tel:7079344090','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',NULL,''),(116725,'2025-01-01 21:40:18','/apple-app-site-association','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html)',NULL,''),(116726,'2025-01-01 21:54:02','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116727,'2025-01-01 22:54:41','/shop','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,''),(116728,'2025-01-01 23:46:49','/wordpress','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wordpress',''),(116729,'2025-01-01 23:46:50','/wp','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/wp',''),(116730,'2025-01-01 23:46:51','/bc','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bc',''),(116731,'2025-01-01 23:46:51','/bk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/bk',''),(116732,'2025-01-01 23:46:52','/backup','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/backup',''),(116733,'2025-01-01 23:46:54','/main','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://meadowcroftwines.com/main',''),(116734,'2025-01-02 00:01:51','/tasting-room/)-','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36',NULL,''),(116735,'2025-01-02 00:08:57','/vineyard/tel:7079344090','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.517 Safari/537.36',NULL,''),(116736,'2025-01-02 00:27:13','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116737,'2025-01-02 00:41:01','/apple-app-site-association','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.139 Mobile Safari/537.36 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html)',NULL,''),(116738,'2025-01-02 00:58:13','/2024-half-marathon-wines/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,''),(116739,'2025-01-02 01:00:47','/wp-includes/images/w-logo-blue.png 2x','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,''),(116740,'2025-01-02 01:05:07','/shop/?amp;slug=blind_tasting_red&view=product','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,''),(116741,'2025-01-02 01:07:12','/upcoming-events/embed/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,''),(116742,'2025-01-02 01:19:51','/events/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36',NULL,''),(116743,'2025-01-02 02:00:32','/.well-known/traffic-advice','Chrome Privacy Preserving Prefetch Proxy',NULL,''),(116744,'2025-01-02 03:01:26','/tasting-room/)-','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:132.0) Gecko/20100101 Firefox/133.0',NULL,''),(116745,'2025-01-02 03:10:05','/adminer-4.6.2.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36',NULL,''),(116746,'2025-01-02 03:10:07','/adminer-4.6.1.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36',NULL,''),(116747,'2025-01-02 03:10:08','/adminer-4.6.0.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36',NULL,''),(116748,'2025-01-02 03:10:09','/adminer-4.5.0.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36',NULL,''),(116749,'2025-01-02 03:10:10','/adminer-4.6.2-mysql-en.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36',NULL,''),(116750,'2025-01-02 03:10:12','/adminer-4.6.1-mysql-en.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36',NULL,''),(116751,'2025-01-02 03:10:13','/adminer-4.6.1-mysql.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36',NULL,''),(116752,'2025-01-02 03:10:14','/adminer-4.6.2-mysql.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36',NULL,''),(116753,'2025-01-02 03:46:10','/ads.txt','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'');
/*!40000 ALTER TABLE `wp_redirection_404` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_redirection_groups`
--

DROP TABLE IF EXISTS `wp_redirection_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_redirection_groups` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `tracking` int NOT NULL DEFAULT '1',
  `module_id` int unsigned NOT NULL DEFAULT '0',
  `status` enum('enabled','disabled') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'enabled',
  `position` int unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `module_id` (`module_id`),
  KEY `status` (`status`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_redirection_groups`
--

LOCK TABLES `wp_redirection_groups` WRITE;
/*!40000 ALTER TABLE `wp_redirection_groups` DISABLE KEYS */;
INSERT INTO `wp_redirection_groups` VALUES (1,'Redirections',1,1,'enabled',0),(2,'Modified Posts',1,1,'enabled',1);
/*!40000 ALTER TABLE `wp_redirection_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_redirection_items`
--

DROP TABLE IF EXISTS `wp_redirection_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_redirection_items` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `url` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `regex` int unsigned NOT NULL DEFAULT '0',
  `position` int unsigned NOT NULL DEFAULT '0',
  `last_count` int unsigned NOT NULL DEFAULT '0',
  `last_access` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `group_id` int NOT NULL DEFAULT '0',
  `status` enum('enabled','disabled') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'enabled',
  `action_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `action_code` int unsigned NOT NULL,
  `action_data` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `match_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `title` text COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`id`),
  KEY `url` (`url`(191)),
  KEY `status` (`status`),
  KEY `regex` (`regex`),
  KEY `group_idpos` (`group_id`,`position`),
  KEY `group` (`group_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_redirection_items`
--

LOCK TABLES `wp_redirection_items` WRITE;
/*!40000 ALTER TABLE `wp_redirection_items` DISABLE KEYS */;
INSERT INTO `wp_redirection_items` VALUES (1,'^/profile/.+',1,0,3531,'2024-10-24 19:05:17',1,'disabled','pass',0,'/profile/','url','Commerce7 redirect for customer account pages'),(4,'^/club/.+',1,3,695,'2023-05-01 00:11:35',1,'disabled','pass',0,'/club/','url','Commerce7 redirect for club signup'),(5,'^/checkout/.+',1,4,1060,'2024-10-24 19:09:51',1,'disabled','pass',0,'/checkout/','url','Commerce7 redirect for checkout'),(6,'/reservation/checkout/.+',1,5,0,'0000-00-00 00:00:00',1,'disabled','pass',0,'/reservation/checkout/','url','Commerce7 redirect for reservation checkout'),(7,'/reservation/type/.+',1,5,73,'2021-08-17 18:39:20',1,'enabled','pass',0,'/reservation/type/','url','Commerce7 redirect for reservation type'),(8,'/wp-content/uploads/2018/04/Meadowcroft_2015ZinfandelDCV_TECHSheet.pdf/',0,7,3,'2024-01-11 10:16:26',1,'disabled','url',301,'https://www.meadowcroftwines.com/trade-and-media/','url','');
/*!40000 ALTER TABLE `wp_redirection_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_redirection_logs`
--

DROP TABLE IF EXISTS `wp_redirection_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_redirection_logs` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `created` datetime NOT NULL,
  `url` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `sent_to` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `agent` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `referrer` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `redirection_id` int unsigned DEFAULT NULL,
  `ip` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `module_id` int unsigned NOT NULL,
  `group_id` int unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `created` (`created`),
  KEY `redirection_id` (`redirection_id`),
  KEY `ip` (`ip`),
  KEY `group_id` (`group_id`),
  KEY `module_id` (`module_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_redirection_logs`
--

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

--
-- Table structure for table `wp_redirects`
--

DROP TABLE IF EXISTS `wp_redirects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_redirects` (
  `id` mediumint NOT NULL AUTO_INCREMENT,
  `url_from` varchar(256) NOT NULL DEFAULT '',
  `url_to` varchar(256) NOT NULL DEFAULT '',
  `status` varchar(12) NOT NULL DEFAULT '301',
  `type` varchar(12) NOT NULL DEFAULT 'url',
  `count` mediumint NOT NULL DEFAULT '0',
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_redirects`
--

LOCK TABLES `wp_redirects` WRITE;
/*!40000 ALTER TABLE `wp_redirects` DISABLE KEYS */;
INSERT INTO `wp_redirects` VALUES (1,'events/holiday-wine-cocktails-1/','https://www.meadowcroftwines.com/blog/','301','url',48),(2,'product/book-cocktails-with-a-twist-duplicate/','https://www.meadowcroftwines.com/product/','301','url',31),(3,'top-5-wineries-in-sonoma-county/','3009','301','url',7),(4,'events/meet-the-bee-team-2018/meadowcroft_beeteam/','https://www.meadowcroftwines.com/tasting-room/','301','url',3),(5,'events/girl-scout-cookies-wine-pairing/','https://www.meadowcroftwines.com/holiday-food-pairing-suggestions/','301','url',15),(6,'events/1318-2-3-2/','https://www.meadowcroftwines.com/events/','301','url',68),(7,'trade-and-media/2015-chardonnay-2/','2749','301','url',6),(8,'events/wine-candy-pairing-2019/','1565','301','url',32),(9,'events/spring-fling-new-white-wine-releases/','https://www.meadowcroftwines.com/events/','301','url',10),(10,'sustainably-sourced-red-wines-for-sale/','642','301','url',41),(11,'events/napa-to-sonoma-half-marathon/','https://www.meadowcroftwines.com/events/','301','url',26),(12,'tasting-room/bottle-service/','445','301','url',11),(13,'vineyard/vineyard-header/','https://www.meadowcroftwines.com/','301','url',25),(14,'events/magnum-party/09-2019_magnumparty/','https://www.meadowcroftwines.com/events/','301','url',3),(15,'events/virtual-wine-candy-pairing/','https://www.meadowcroftwines.com/holiday-food-pairing-suggestions/','301','url',57),(16,'product/food-wine-pairing-8-guests/','https://www.meadowcroftwines.com/holiday-food-pairing-suggestions/','301','url',45),(17,'events/san-francisco-chronicle-wine-competition-event-2/','https://www.meadowcroftwines.com/product/anniversary-cuv-e/','301','url',34),(18,'events/inside-the-beehive/','https://www.meadowcroftwines.com/events/','301','url',31),(19,'tasting-room/tasteofmeadowcroft/','https://www.meadowcroftwines.com/about/','301','url',11),(20,'events/wine-club-pick-up-day/','https://www.meadowcroftwines.com/wine-club/','301','url',68),(21,'events/meadowcroft-wines-folktable-harvest-dinner/','https://www.meadowcroftwines.com/tag/folktable/','301','url',67),(22,'events/wine-candy-pairing/','1565','301','url',19),(23,'about/andrew_smith_v2/','444','301','url',22),(24,'about/petar-2/','444','301','url',19),(25,'events/wine-club-pick-party/','https://www.meadowcroftwines.com/events/','301','url',94),(26,'events/1318/','https://www.meadowcroftwines.com/events/','301','url',22),(27,'events/magnum-party/','https://www.meadowcroftwines.com/events/','301','url',18),(28,'vineyard/vineyard-vista/','3151','301','url',7),(29,'earthday_post1/','412','301','url',19),(30,'blind-tastings/','431','301','url',47),(31,'tasting-room/meadowcroft-wine-tasting/','445','301','url',8),(32,'events/meet-the-bee-team-nov-2019/','https://www.meadowcroftwines.com/events/','301','url',27),(33,'events/casino-night-party/','https://www.meadowcroftwines.com/events/','301','url',29),(34,'about/nickhess/','517','301','url',15),(35,'events/meet-the-bee-team-2018/','https://www.meadowcroftwines.com/events/','301','url',29),(36,'tasting-room/o-6/','445','301','url',13),(37,'about/meadowcroft-signature/','444','301','url',20),(38,'events/fathers-day-bbq/','https://www.meadowcroftwines.com/blog/','301','url',18),(39,'tasting-room/vineyard-tour/','445','301','url',20),(40,'product/meadowcroft-wines-wooden-gift-box/','445','301','url',186),(41,'sustainability/','642','301','url',31),(42,'events/live-blind-tasting-featuring-toms-spring-wine-picks/blindtasting_whitney-1/','431','301','url',3),(43,'events/1318-2-3-2/?occurrence=2021-12-03/','https://www.meadowcroftwines.com/events/','301','url',5),(44,'events/1318-2-3-2/?occurrence=2018-12-08','https://www.meadowcroftwines.com/events/','301','url',4),(45,'events/1318-2-3-2/?occurrence=2018-12-22','https://www.meadowcroftwines.com/events/','301','url',3),(46,'events/1318-2-3-2/?occurrence=2018-12-29','https://www.meadowcroftwines.com/events/','301','url',3),(47,'img_0031_1/','412','301','url',5),(48,'events/12-days-of-christmas-day-1-garden-light-show/','https://www.meadowcroftwines.com/events/','301','url',19),(49,'sustainably-sourced-sparkling-wines-for-sale/','642','301','url',43),(50,'wp-content/uploads/2022/03/Meadowcroft_2020Rose_TECHSheet.pdf','508','301','url',2),(51,'home/meadowcroft-footer-art/','412','301','url',19),(52,'summers-perfect-pairings/','1565','301','url',38),(53,'events/rose-all-day/','1576','301','url',32),(54,'tasting-room/blending-experience/beldning-2/','https://www.meadowcroftwines.com/wine-blending-experience/','301','url',5),(55,'tasting-room/blending-experience/blending-3/','3151','301','url',13),(56,'wp-content/uploads/2022/05/Meadowcroft-MC_DRYCREEKZIN_20_Techsheet.pdf/','508','301','url',2),(57,'wp-content/uploads/2021/04/Meadowcroft_2019CruDeLaRucheMalbec_TECHSheet.pdf/','508','301','url',2),(58,'wp-content/uploads/2020/01/Meadowcroft_2017_NapaPinotnoir_TECHSheet.pdf/','https://www.meadowcroftwines.com/','301','url',2),(59,'wp-content/uploads/2017/02/Meadowcroft_2013SpeedyCreekZin_TECHSheet.pdf','412','301','url',2),(60,'wp-content/uploads/2020/10/Meadowcroft_2018Zinfandel_Amador_TECHSheet.pdf/','412','301','url',2),(61,'events/meet-the-bee-team-2017/','https://www.meadowcroftwines.com/events/meet-the-bee-team-2017/','301','url',176),(62,'visit.cfm','https://www.meadowcroftwines.com/','301','url',30),(63,'home/meadowcroft-scene-footer-colors-corrected/','412','301','url',19),(64,'wp-content/uploads/2022/03/MC_2020_DryValleyCreek_LouvauVineyard_Viognier_TECHSheet.pdf/','412','301','url',2),(65,'wp-content/uploads/2018/03/Meadowcroft_2016RussianRiverPinotNoir_TECHSheet.pdf/','412','301','url',2),(66,'wp-content/uploads/2022/05/Meadowcroft-MC_DRYCREEKZIN_20_Techsheet-1.pdf/','412','301','url',2),(67,'wp-content/uploads/2022/05/Meadowcroft_2021_AV_Mendo_TECHSheet-1.pdf/','412','301','url',2),(68,'wp-content/uploads/2020/10/Meadowcroft_2019PinotAnderson_TECHSheet.pdf/','412','301','url',2),(69,'wp-content/uploads/2017/02/Meadowcroft_2015SonomaCoastPinot_TECHSheet.pdf/','412','301','url',1),(70,'wp-content/uploads/2018/03/Meadowcorft_Distributors_2018.pdf/','412','301','url',2),(71,'wp-content/uploads/2021/04/Meadowcroft_2018ZinfandelDCV_TECHSheet.pdf/','412','301','url',2),(72,'wp-content/uploads/2021/03/Meadowcroft_2019_RussianRiverValley_Pinotnoir_TECHSheet.pdf/','508','301','url',2),(73,'wp-content/uploads/2020/01/Meadowcroft_2016Zinfandel_Amador_TECHSheet_v1.pdf/','508','301','url',2),(74,'wp-content/uploads/2017/04/Meadowcroft_PrivateEvents_v3.pdf/','508','301','url',2),(75,'wp-content/uploads/2022/03/MC_2019_Roussanne_Louvau_DryCreekValley_TECHSheet.pdf/','508','301','url',2),(76,'wp-content/uploads/2018/06/Meadowcorft_Distributors_06.2018.pdf/','447','301','url',2),(77,'wp-content/uploads/2022/03/Meadowcroft_2019RoseSC_TECHSheet.pdf/','508','301','url',2),(78,'wp-content/uploads/2022/05/Meadowcroft-2019_Cabernet_Oakville_Techsheet.pdf/','508','301','url',2),(79,'wp-content/uploads/2022/03/Meadowcroft_2018_PinotAnderson_TECHSheet.pdf/','508','301','url',2),(80,'wp-content/uploads/2022/05/Meadowcroft_2020CabernetSauvignonRedHills_TECHSheet.pdf/','508','301','url',2),(81,'wp-content/uploads/2020/10/MC_2018SangioveseSpeedyCreekKnightsValley_TECHSheet.pdf/','508','301','url',2),(82,'wp-content/uploads/2020/12/Meadowcroft_2017CabernetSauvignon_MountVeederNapaValley_TECHSheet.pdf/','508','301','url',2),(83,'wp-content/uploads/2017/02/Meadowcroft_2015_PinotNoir_Cornerstone_TECHSheet.pdf/','508','301','url',2),(84,'wp-content/uploads/2021/09/Meadowcroft_2019_CornerstoneVineyard_Pinotnoir_TECHSheet.pdf/','508','301','url',2),(85,'wp-content/uploads/2020/01/Meadowcroft_2017_River-Trace_ChalkHill_GSM_TECHSheet.pdf/','508','301','url',2),(86,'wp-content/uploads/2020/01/Meadowcroft_2019LosCarneros_NapaChard_TECHSheet.pdf/','508','301','url',2),(87,'wp-content/uploads/2019/03/Meadowcroft_2016Riesling_TECHSheet.pdf/','508','301','url',2),(88,'wp-content/uploads/2019/03/Meadowcroft_2016_RussianRiverValley_SonomaChard_TECHSheet.pdf/','508','301','url',2),(89,'wp-content/uploads/2022/03/Meadowcroft_2018Rose_TECHSheet.pdf/','508','301','url',2),(90,'wp-content/uploads/2022/03/MC_2020_Pinot-Blanc_RivinoVNYD_Mendocino_TECHSheet-1.pdf/','508','301','url',2),(91,'wp-content/uploads/2021/04/Meadowcroft_2018Riesling_TECHSheet.pdf/','508','301','url',2),(92,'wp-content/uploads/2017/02/MC14_MALBEC_SuisunValley_TECHSHEET.pdf/','508','301','url',2),(93,'events/speakeasy-casino-night-party/','/events/','301','url',14),(94,'events/meadowcroft-wine-pick-up-party/','/events/','301','url',36),(95,'about/meadowcorft_ourpeople_dec2018/','444','301','post',10),(96,'return-policy.cfm','518','301','post',16),(97,'wine-club-old/','1554','301','post',36),(98,'earthday_post1/tom-signature_hi-2-copy/','412','301','post',3),(99,'events/live-music-season-begins-at-cornerstone/','/events','301','url',84);
/*!40000 ALTER TABLE `wp_redirects` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (337,3,0),(351,4,0),(456,6,0),(554,3,0),(759,6,0),(880,6,0),(920,6,0),(948,6,0),(949,6,0),(950,6,0),(1007,5,0),(1009,5,0),(1012,5,0),(1022,5,0),(1042,5,0),(1512,29,0),(1514,29,0),(1516,29,0),(1517,29,0),(1518,29,0),(1519,29,0),(1520,29,0),(1524,30,0),(1525,30,0),(1541,6,0),(1563,6,0),(1565,8,0),(1581,31,0),(1840,2,0),(1859,2,0),(2989,6,0),(2990,6,0),(2991,6,0),(2992,6,0),(2993,6,0),(3009,2,0),(3027,6,0),(3032,2,0),(3075,2,0),(3095,2,0),(3103,2,0),(3103,13,0),(3178,6,0),(3179,6,0),(3272,6,0),(3302,1,0),(3440,1,0),(3682,6,0),(3683,5,0),(3692,6,0),(3695,11,0),(3695,13,0),(3695,24,0),(3695,157,0),(3827,11,0),(3827,13,0),(3827,15,0),(3834,6,0),(3876,1,0),(3877,1,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `parent` bigint unsigned NOT NULL DEFAULT '0',
  `count` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=159 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'category','',0,7),(3,3,'recipe_category','',0,2),(4,4,'recipe_category','',0,1),(5,5,'nav_menu','',0,6),(6,6,'nav_menu','',0,21),(7,7,'category','',0,0),(8,8,'category','',0,1),(9,9,'post_tag','',0,0),(10,10,'post_tag','',0,0),(11,11,'post_tag','',0,2),(12,12,'post_tag','',0,0),(13,13,'post_tag','',0,3),(14,14,'mec_location','',0,0),(15,15,'mec_location','',0,1),(16,16,'post_tag','',0,0),(17,17,'post_tag','',0,0),(18,18,'post_tag','',0,0),(19,19,'mec_location','',0,0),(20,20,'post_tag','',0,0),(21,21,'post_tag','',0,0),(22,22,'mec_location','',0,0),(23,23,'mec_location','',0,0),(24,24,'mec_location','',0,1),(25,25,'mec_location','',0,0),(26,26,'mec_location','',0,0),(27,27,'mec_location','',0,0),(28,28,'mec_location','',0,0),(29,29,'wpsisac_slider-category','',0,7),(30,30,'wpsisac_slider-category','',0,2),(31,31,'mec_location','',0,0),(32,32,'mec_organizer','',0,0),(33,33,'post_tag','',0,0),(34,34,'post_tag','',0,0),(35,35,'post_tag','',0,0),(36,36,'post_tag','',0,0),(37,37,'post_tag','',0,0),(38,38,'post_tag','',0,0),(39,39,'post_tag','',0,0),(40,40,'post_tag','',0,0),(41,41,'post_tag','',0,0),(42,42,'post_tag','',0,0),(43,43,'post_tag','',0,0),(44,44,'post_tag','',0,0),(45,45,'post_tag','',0,0),(46,46,'platform','',0,0),(47,47,'platform','',0,0),(48,48,'platform','',0,0),(49,49,'platform','',0,0),(50,50,'platform','',0,0),(51,51,'platform','',0,0),(52,52,'platform','',0,0),(53,53,'platform','',0,0),(54,54,'platform','',0,0),(55,55,'platform','',0,0),(56,56,'platform','',0,0),(57,57,'platform','',0,0),(58,58,'platform','',0,0),(59,59,'platform','',0,0),(60,60,'platform','',0,0),(61,61,'platform','',0,0),(62,62,'platform','',0,0),(63,63,'platform','',0,0),(64,64,'platform','',0,0),(65,65,'platform','',0,0),(66,66,'platform','',0,0),(67,67,'platform','',0,0),(68,68,'platform','',0,0),(69,69,'platform','',0,0),(70,70,'platform','',0,0),(71,71,'platform','',0,0),(72,72,'platform','',0,0),(73,73,'platform','',0,0),(74,74,'platform','',0,0),(75,75,'platform','',0,0),(76,76,'platform','',0,0),(77,77,'platform','',0,0),(78,78,'platform','',0,0),(79,79,'platform','',0,0),(80,80,'platform','',0,0),(81,81,'platform','',0,0),(82,82,'platform','',0,0),(83,83,'platform','',0,0),(84,84,'platform','',0,0),(85,85,'platform','',0,0),(86,86,'platform','',0,0),(87,87,'platform','',0,0),(88,88,'platform','',0,0),(89,89,'platform','',0,0),(90,90,'platform','',0,0),(91,91,'platform','',0,0),(92,92,'platform','',0,0),(93,93,'platform','',0,0),(94,94,'platform','',0,0),(95,95,'platform','',0,0),(96,96,'platform','',0,0),(97,97,'platform','',0,0),(98,98,'platform','',0,0),(99,99,'platform','',0,0),(100,100,'platform','',0,0),(101,101,'platform','',0,0),(102,102,'platform','',0,0),(103,103,'platform','',0,0),(104,104,'platform','',0,0),(105,105,'platform','',0,0),(106,106,'platform','',0,0),(107,107,'platform','',0,0),(108,108,'platform','',0,0),(109,109,'platform','',0,0),(110,110,'platform','',0,0),(111,111,'platform','',0,0),(112,112,'platform','',0,0),(113,113,'platform','',0,0),(114,114,'platform','',0,0),(115,115,'platform','',0,0),(116,116,'platform','',0,0),(117,117,'platform','',0,0),(118,118,'platform','',0,0),(119,119,'platform','',0,0),(120,120,'platform','',0,0),(121,121,'platform','',0,0),(122,122,'platform','',0,0),(123,123,'platform','',0,0),(124,124,'platform','',0,0),(125,125,'platform','',0,0),(126,126,'platform','',0,0),(127,127,'platform','',0,0),(128,128,'platform','',0,0),(129,129,'platform','',0,0),(130,130,'platform','',0,0),(131,131,'platform','',0,0),(132,132,'platform','',0,0),(133,133,'platform','',0,0),(134,134,'platform','',0,0),(135,135,'platform','',0,0),(136,136,'platform','',0,0),(137,137,'platform','',0,0),(138,138,'platform','',0,0),(139,139,'platform','',0,0),(140,140,'platform','',0,0),(141,141,'platform','',0,0),(142,142,'platform','',0,0),(143,143,'platform','',0,0),(144,144,'platform','',0,0),(145,145,'platform','',0,0),(146,146,'platform','',0,0),(147,147,'platform','',0,0),(148,148,'platform','',0,0),(149,149,'post_tag','',0,0),(150,150,'post_tag','',0,0),(151,151,'platform','',0,0),(152,152,'post_tag','',0,0),(153,153,'post_tag','',0,0),(154,154,'post_tag','',0,0),(155,155,'post_tag','',0,0),(156,156,'post_tag','',0,0),(157,157,'post_tag','',0,1),(158,158,'platform','',0,0);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
INSERT INTO `wp_termmeta` VALUES (1,14,'address',''),(2,14,'latitude','0'),(3,14,'longitude','0'),(4,14,'url',''),(5,15,'address','Cornerstone Sonoma, Sonoma, California'),(6,15,'latitude','38.2275362'),(7,15,'longitude','-122.457741'),(8,15,'url',''),(9,15,'thumbnail','https://meadowcroft.wpengine.com/wp-content/uploads/2017/04/Meadowcroft-Tasting-Room.png'),(10,19,'address','5007 Fulton Road, Fulton, CA, USA'),(11,19,'latitude','38.5069455'),(12,19,'longitude','-122.7728977'),(13,19,'url',''),(14,22,'address','Folktable Restaurant, Arnold Drive, Sonoma, CA, USA'),(15,22,'latitude','38.2272607'),(16,22,'longitude','-122.4575293'),(17,22,'url',''),(18,22,'thumbnail','https://www.meadowcroftwines.com/wp-content/uploads/2021/07/IMG_3806-2.jpeg'),(19,23,'address',''),(20,23,'latitude','0'),(21,23,'longitude','0'),(22,23,'url',''),(23,23,'thumbnail','https://www.meadowcroftwines.com/wp-content/uploads/2021/02/AdobeStock_400633292-1.png'),(24,24,'address','1446 Industrial Ave, Sebastopol CA 95472'),(25,24,'latitude','38.3857924'),(26,24,'longitude','-122.813571'),(27,24,'url',''),(28,25,'address','23570 Arnold Drive, Sonoma, CA, United States'),(29,25,'latitude','38.2277757'),(30,25,'longitude','-122.4576599'),(31,25,'url',''),(32,25,'thumbnail','https://meadowcroft.wpengine.com/wp-content/uploads/2018/01/cornerstone-garden-barn.png'),(33,26,'address','Fort Mason Center, San Francisco'),(34,26,'latitude','37.8065865'),(35,26,'longitude','-122.4314472'),(36,26,'url',''),(37,26,'thumbnail','https://meadowcroft.wpengine.com/wp-content/uploads/2017/02/1416795114-venue-fort-mason.jpg'),(38,27,'address','836 57th Street, Sacramento, CA 95819, United States'),(39,27,'latitude','38.56652'),(40,27,'longitude','-121.433117'),(41,27,'url',''),(42,28,'address','2 Marina Boulevard, San Francisco, CA, United States'),(43,28,'latitude','37.8052'),(44,28,'longitude','-122.432091'),(45,28,'url',''),(46,31,'address','Sonoma, CA'),(47,31,'latitude','38.2275° N'),(48,31,'longitude','122.4573° W'),(49,31,'url','https://www.cornerstonesonoma.com/'),(50,31,'thumbnail',''),(51,32,'tel',''),(52,32,'email',''),(53,32,'url',''),(54,32,'page_label',''),(55,32,'thumbnail',''),(56,39,'_age_gate-bypass','1');
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'News','news',0),(3,'Appetizers','appetizers',0),(4,'Desserts','desserts',0),(5,'Footer','footer',0),(6,'Header','header',0),(7,'News &amp; Updates','news-updates',0),(8,'Food &amp; Recipes','food-recipes',0),(9,'Cornerstone','cornerstone',0),(10,'Life Opens Up','life-opens-up',0),(11,'Meadowcroft Wines','meadowcroft-wines',0),(12,'Sonoma','sonoma',0),(13,'Wine','wine',0),(14,'Cornerstone Sonom','cornerstone-sonom',0),(15,'Meadowcroft Tasting Room','meadowcroft-tasting-room',0),(16,'Sangria','sangria',0),(17,'St Patricks Day','st-patricks-day',0),(18,'St Pattys','st-pattys',0),(19,'Kendall-Jackson Wine Estate and Gardens','kendall-jackson-wine-estate-and-gardens',0),(20,'Kendall Jackson','kendall-jackson',0),(21,'Taste of Sonoma','taste-of-sonoma',0),(22,'Folktable Restaurant','folktable-restaurant',0),(23,'Virtual','virtual',0),(24,'Meadowcroft Winery','meadowcroft-winery',0),(25,'Cornerstone Garden Barn','cornerstone-garden-barn',0),(26,'Festival Pavilion','festival-pavilion',0),(27,'Caverna 57','caverna-57',0),(28,'Fort Mason Center','fort-mason-center',0),(29,'Tasting Room','tasting-room',0),(30,'Wine Club','wine-club',0),(31,'Cornerstone, Sonoma','cornerstone-sonoma',0),(32,'Organizer Name','organizer-name',0),(33,'Folktable','folktable',0),(34,'restaurant','restaurant',0),(35,'flowers','flowers',0),(36,'Fleur Sauvage','fleur-sauvage',0),(37,'valentine\'s day','valentines-day',0),(38,'wine and chocolate','wine-and-chocolate',0),(39,'gerard\'s paella','gerards-paella',0),(40,'sonomavalley','sonomavalley',0),(41,'sonomawine','sonomawine',0),(42,'sonomamusic','sonomamusic',0),(43,'livemusic','livemusic',0),(44,'DLcatering','dlcatering',0),(45,'j.mo_music','j-mo_music',0),(46,'Self','self',0),(47,'Agoda','agoda',0),(48,'Avvo','avvo',0),(49,'Angies List','angies-list',0),(50,'Apple AppStore','apple-appstore',0),(51,'Expedia','expedia',0),(52,'Feefo','feefo',0),(53,'Facebook','facebook',0),(54,'Google','google',0),(55,'Cusrev','cusrev',0),(56,'Google Shopping','google-shopping',0),(57,'Goodreads','goodreads',0),(58,'TripAdvisor','tripadvisor',0),(59,'Yelp','yelp',0),(60,'Zillow','zillow',0),(61,'Zomato','zomato',0),(62,'Airbnb','airbnb',0),(63,'Airbnb Experiences','airbnb-experiences',0),(64,'AliExpress','aliexpress',0),(65,'AlternativeTo','alternativeto',0),(66,'Amazon','amazon',0),(67,'BBB','bbb',0),(68,'bidvine','bidvine',0),(69,'BestBuy','bestbuy',0),(70,'Booking.com','booking-com',0),(71,'Bark.com','bark-com',0),(72,'advieskeuze.nl','advieskeuze-nl',0),(73,'Capterra','capterra',0),(74,'CarGurus','cargurus',0),(75,'Cars.com','cars-com',0),(76,'Citysearch','citysearch',0),(77,'Classpass','classpass',0),(78,'Consumer Affairs','consumer-affairs',0),(79,'Clutch.co','clutch-co',0),(80,'Clutch.com','clutch-com',0),(81,'CreditKarma','creditkarma',0),(82,'CustomerLobby','customerlobby',0),(83,'DealerRater','dealerrater',0),(84,'Ebay','ebay',0),(85,'Edmunds','edmunds',0),(86,'Etsy','etsy',0),(87,'Foursquare','foursquare',0),(88,'Flipkart','flipkart',0),(89,'Freelancer','freelancer',0),(90,'G2Crowd','g2crowd',0),(91,'Gearbest','gearbest',0),(92,'Gartner','gartner',0),(93,'Glassdoor','glassdoor',0),(94,'Healthgrades','healthgrades',0),(95,'HomeAdvisor','homeadvisor',0),(96,'Homestars','homestars',0),(97,'Houzz','houzz',0),(98,'Hotels.com','hotels-com',0),(99,'Hipages','hipages',0),(100,'HungerStation','hungerstation',0),(101,'Indeed','indeed',0),(102,'IMDB','imdb',0),(103,'Insider Pages','insider-pages',0),(104,'Jet','jet',0),(105,'Judge.me','judge-me',0),(106,'Lawyers.com','lawyers-com',0),(107,'Lending Tree','lending-tree',0),(108,'Martindale','martindale',0),(109,'mariages.net','mariages-net',0),(110,'Newegg','newegg',0),(111,'OpenRice','openrice',0),(112,'Opentable','opentable',0),(113,'Oneflare','oneflare',0),(114,'ProductHunt','producthunt',0),(115,'ProductReview','productreview',0),(116,'Playstore','playstore',0),(117,'Podcasts','podcasts',0),(118,'RateMDs','ratemds',0),(119,'ReserveOut','reserveout',0),(120,'Rotten Tomatoes','rotten-tomatoes',0),(121,'Sitejabber','sitejabber',0),(122,'Siftery','siftery',0),(123,'Steam','steam',0),(124,'StyleSeat','styleseat',0),(125,'SoftwareAdvice','softwareadvice',0),(126,'Shopify App Store','shopify-app-store',0),(127,'Shopper Approved','shopper-approved',0),(128,'Serviceseeking','serviceseeking',0),(129,'solarquotes','solarquotes',0),(130,'Talabat','talabat',0),(131,'The Knot','the-knot',0),(132,'Thumbtack','thumbtack',0),(133,'Trulia','trulia',0),(134,'TrustedShops','trustedshops',0),(135,'Trustpilot','trustpilot',0),(136,'TrustRadius','trustradius',0),(137,'Upwork','upwork',0),(138,'Vitals','vitals',0),(139,'Walmart','walmart',0),(140,'WeddingWire','weddingwire',0),(141,'Wish','wish',0),(142,'Yell','yell',0),(143,'YellowPages','yellowpages',0),(144,'ZocDoc','zocdoc',0),(145,'zankyou','zankyou',0),(146,'Abia.com','abia-com',0),(147,'WordofMouth','wordofmouth',0),(148,'Guaranteed','guaranteed',0),(149,'circus','circus',0),(150,'cirquedeboheme','cirquedeboheme',0),(151,'Webwinkelkeur','webwinkelkeur',0),(152,'cabernet sauvignon','cabernet-sauvignon',0),(153,'wine tasting','wine-tasting',0),(154,'#bayviewpasta','bayviewpasta',0),(155,'#foodandwine','foodandwine',0),(156,'#freshpasta','freshpasta',0),(157,'kintsugi','kintsugi',0),(158,'Dreams.co','dreams-co',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','wpengine'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description','This is the \"wpengine\" admin user that our staff uses to gain access to your admin area to provide support and troubleshooting. It can only be accessed by a button in our secure log that auto generates a password and dumps that password after the staff member has logged in. We have taken extreme measures to ensure that our own user is not going to be misused to harm any of our clients sites.'),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,2,'nickname','c7template'),(17,2,'first_name',''),(18,2,'last_name',''),(19,2,'description',''),(20,2,'rich_editing','true'),(21,2,'syntax_highlighting','true'),(22,2,'comment_shortcuts','false'),(23,2,'admin_color','fresh'),(24,2,'use_ssl','0'),(25,2,'show_admin_bar_front','true'),(26,2,'locale',''),(27,2,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(28,2,'wp_user_level','10'),(30,2,'wp_dashboard_quick_press_last_post_id','3903'),(31,2,'community-events-location','a:1:{s:2:\"ip\";s:10:\"50.67.94.0\";}'),(32,2,'dismissed_wp_pointers','wp496_privacy,theme_editor_notice,plugin_editor_notice,saswp_subscribe_pointer'),(33,2,'show_welcome_panel','0'),(34,2,'wp_user-settings','libraryContent=browse&editor=tinymce&imgsize=full&advImgDetails=show&hidetb=1'),(35,2,'wp_user-settings-time','1707776756'),(36,2,'closedpostboxes_page','a:1:{i:0;s:10:\"wpseo_meta\";}'),(37,2,'metaboxhidden_page','a:4:{i:0;s:16:\"commentstatusdiv\";i:1;s:11:\"commentsdiv\";i:2;s:7:\"slugdiv\";i:3;s:9:\"authordiv\";}'),(38,2,'meta-box-order_page','a:4:{s:15:\"acf_after_title\";s:71:\"acf-group_5bbe126a7cd25,acf-group_5bc4e4ea01f72,acf-group_5bc128633b4dd\";s:4:\"side\";s:36:\"submitdiv,pageparentdiv,postimagediv\";s:6:\"normal\";s:166:\"acf-group_5bb7cebf3ea38,acf-group_5bb7bcc0c6c74,acf-group_5bb7e42712338,acf-group_5bc60f89de2f0,commentstatusdiv,commentsdiv,slugdiv,authordiv,acf-group_5bbe1999c757e\";s:8:\"advanced\";s:0:\"\";}'),(39,2,'screen_layout_page','2'),(40,2,'nav_menu_recently_edited','6'),(41,2,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(42,2,'metaboxhidden_nav-menus','a:4:{i:0;s:20:\"add-post-type-recipe\";i:1;s:24:\"add-post-type-teammember\";i:2;s:12:\"add-post_tag\";i:3;s:19:\"add-recipe_category\";}'),(44,2,'edit_page_per_page','50'),(45,2,'closedpostboxes_dashboard','a:0:{}'),(46,2,'metaboxhidden_dashboard','a:3:{i:0;s:18:\"wpe_dify_news_feed\";i:1;s:21:\"dashboard_quick_press\";i:2;s:17:\"dashboard_primary\";}'),(47,2,'meta-box-order_dashboard','a:4:{s:6:\"normal\";s:37:\"wpe_dify_news_feed,dashboard_activity\";s:4:\"side\";s:59:\"dashboard_quick_press,dashboard_primary,dashboard_right_now\";s:7:\"column3\";s:0:\"\";s:7:\"column4\";s:0:\"\";}'),(51,1,'googleplus',''),(56,2,'wporg_favorites','juliangelo'),(58,1,'session_tokens','a:34:{s:64:\"70833585dcdab1729509cae742b39ac4f51374c49c3534d4e5290fb712fd65c0\";a:4:{s:10:\"expiration\";i:1735753636;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733161636;}s:64:\"e0a88488c43d7e6d44ccbc98e2a067b27ba88247e992f095ea2166a66817422c\";a:4:{s:10:\"expiration\";i:1735753636;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733161636;}s:64:\"74328e2e154e436501c791b572d6654aa6eb8539d9f8de37d21f90a7d40b782a\";a:4:{s:10:\"expiration\";i:1735962306;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733370306;}s:64:\"0a492868c2eef59bf345b5483851fbbc21344e06b3cade0bc2c28fc0d68f634e\";a:4:{s:10:\"expiration\";i:1735962306;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733370306;}s:64:\"5bd36ce0216b9f816b5c485d33426792274473c9cae8ba7a5928576cfa560165\";a:4:{s:10:\"expiration\";i:1736015174;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733423174;}s:64:\"a2fd24cd185279c29d3dc1cd770648e7c7b9dfd04cb639d7c95e0d41400684aa\";a:4:{s:10:\"expiration\";i:1736015174;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733423174;}s:64:\"005ef8be0742c9e7c14b76db2c4390892259754861d4a875d14bbe84a9262216\";a:4:{s:10:\"expiration\";i:1736018720;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733426720;}s:64:\"f47a11104179712b48ffdd25e098818ed7f015c193c904e5f0c4388428e3c4ca\";a:4:{s:10:\"expiration\";i:1736018720;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733426720;}s:64:\"abf3bfebe7a8e8a83eac1d07b80d8ee5d171684a5e21189db4d31850fb0f04ba\";a:4:{s:10:\"expiration\";i:1736033213;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733441213;}s:64:\"4daf34fc722c586a7add601e36ca73b4f97f674ed197e12162b0894ed5a752db\";a:4:{s:10:\"expiration\";i:1736033213;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733441213;}s:64:\"7c01f9b23fc0951d29cf8ec3562b5975503eb7eccde8439b75d4a09724b7f85e\";a:4:{s:10:\"expiration\";i:1736099537;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733507537;}s:64:\"33da1792cc91ee74463a0cbf25032a96eaa224ca89b12506c44a8a73fe249da5\";a:4:{s:10:\"expiration\";i:1736099537;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733507537;}s:64:\"4c9c9dc62a98e20a928d8b8ce3a684424b563eb4bb1ff8d19022c831ae4c59e8\";a:4:{s:10:\"expiration\";i:1736104443;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733512443;}s:64:\"6fd26537a5e293b7b8de533549dd720ec13a920204ea6849a5b97ece69a49e51\";a:4:{s:10:\"expiration\";i:1736104443;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733512443;}s:64:\"6726a530cef25355802ef3a1e381cec24fdc63d2d416ffbafe58f6f1fb5de34c\";a:4:{s:10:\"expiration\";i:1736111136;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733519136;}s:64:\"8667b7a8616330d3d90a12ee102a2c8f342623cc8c6b2656cd85fab62575c5a7\";a:4:{s:10:\"expiration\";i:1736111136;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733519136;}s:64:\"609361c33efcf8691bafab3f91e0d1a0823d263b3daab69a81a4fe02bfe68660\";a:4:{s:10:\"expiration\";i:1736128488;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733536488;}s:64:\"38fa9b352266e46b003141590f6657287857b86bbc3907d929671a6c1a6c03fb\";a:4:{s:10:\"expiration\";i:1736128488;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733536488;}s:64:\"001c5b3c0b3f56853901d5d79988a17c31b87c0a090ac333e89137ea889779ec\";a:4:{s:10:\"expiration\";i:1736444141;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733852141;}s:64:\"9da8393c515d4dbf0893f6085b270c6a2ebf6eab2ce9a1819413b79d334d7fe8\";a:4:{s:10:\"expiration\";i:1736444141;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733852141;}s:64:\"2d8d49d06a6430c5f11c1a9102278389400014a0e59eacba43e03e93759cb5d1\";a:4:{s:10:\"expiration\";i:1736444994;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733852994;}s:64:\"d1c252f19f38a28cb0b669bdb807c8fc034107df3c69b8700787310cb188af1a\";a:4:{s:10:\"expiration\";i:1736444994;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733852994;}s:64:\"3751fe6c4f0a305475ebb6b8b220d3810054e7cb50713398c11836ac9ba1a435\";a:4:{s:10:\"expiration\";i:1736451218;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733859218;}s:64:\"30a9ff446469819b0b8bd0db43faec3629906f718e0c31535f3527c42b120eab\";a:4:{s:10:\"expiration\";i:1736451218;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733859218;}s:64:\"a23bbe315fe1ee6444253c3108f3bb5a8f2947ce282cf7384a133f722797db02\";a:4:{s:10:\"expiration\";i:1736451370;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733859370;}s:64:\"7adf9beee9dc7de0e0e6d357196f8465b3a410a9ab0bcd5fa0d378cbe7fbf373\";a:4:{s:10:\"expiration\";i:1736451370;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733859370;}s:64:\"b072f17b03e1d0e23e565f5862bfce54a40dee0ba5cf2a5ab2f3ea33282b844e\";a:4:{s:10:\"expiration\";i:1736451452;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733859452;}s:64:\"6d1ad0e0ba4fa229c73cb4b77c3684805b949b466f1df702a7a85c01d8d39d06\";a:4:{s:10:\"expiration\";i:1736451452;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733859452;}s:64:\"5de9095c642f842b6f6f0a3b4fea7e54b0f8f2880e5cbf809c8a8653a8be5a53\";a:4:{s:10:\"expiration\";i:1736452076;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733860076;}s:64:\"ca31a0fd71dcb0e9643514b881a17caf5764c905bcd2992a6187adac8f304734\";a:4:{s:10:\"expiration\";i:1736452076;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733860076;}s:64:\"15f2fd45adbcf3c0584abb78b74de31c154ad0deba252e3cce0b7ba0946fdc80\";a:4:{s:10:\"expiration\";i:1736464704;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733872704;}s:64:\"3931693716100b31c09a7269e9ac92069bdd9dbe0099b6bf6aac4006c3c528c5\";a:4:{s:10:\"expiration\";i:1736464704;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1733872704;}s:64:\"81daec05ec80d005403802d593969ee5c795befae8b9ba28c8477c95390368e8\";a:4:{s:10:\"expiration\";i:1737839691;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1735247691;}s:64:\"d13e1c52db627bbea45a97966d0c94b988082eff6c72d8308a066ff5eb3164e1\";a:4:{s:10:\"expiration\";i:1737839691;s:2:\"ip\";s:13:\"54.191.137.17\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1735247691;}}'),(67,2,'closedpostboxes_toplevel_page_theme-settings','a:0:{}'),(68,2,'metaboxhidden_toplevel_page_theme-settings','a:0:{}'),(70,2,'tribe_setDefaultNavMenuBoxes','1'),(71,1,'wp_dashboard_quick_press_last_post_id','651'),(73,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"12.118.137.0\";}'),(78,2,'closedpostboxes_theme-settings_page_acf-options-admin-restrictions','a:0:{}'),(79,2,'metaboxhidden_theme-settings_page_acf-options-admin-restrictions','a:0:{}'),(81,2,'_yoast_wpseo_profile_updated','1712255239'),(82,1,'_yoast_wpseo_profile_updated','1712255239'),(91,2,'tribe-dismiss-notice','tribe-virtual-events'),(93,2,'closedpostboxes_acf-field-group','a:0:{}'),(94,2,'metaboxhidden_acf-field-group','a:1:{i:0;s:7:\"slugdiv\";}'),(98,3,'nickname','david.messerli'),(99,3,'first_name','David'),(100,3,'last_name','Messerli'),(101,3,'description',''),(102,3,'rich_editing','true'),(103,3,'syntax_highlighting','true'),(104,3,'comment_shortcuts','false'),(105,3,'admin_color','fresh'),(106,3,'use_ssl','0'),(107,3,'show_admin_bar_front','true'),(108,3,'locale',''),(109,3,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(110,3,'wp_user_level','10'),(111,3,'_yoast_wpseo_profile_updated','1712255239'),(112,3,'dismissed_wp_pointers','saswp_subscribe_pointer'),(113,2,'session_tokens','a:2:{s:64:\"bcc6defb19e43840227658effdcbb06dabec7cad6ec4f1b908ac440c6ac56473\";a:4:{s:10:\"expiration\";i:1735499423;s:2:\"ip\";s:12:\"50.67.94.151\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\";s:5:\"login\";i:1735326623;}s:64:\"7bd78d96271624a54618a974a31b80f63cabeb48648be671bd9178d98d064c5c\";a:4:{s:10:\"expiration\";i:1735499458;s:2:\"ip\";s:12:\"50.67.94.151\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\";s:5:\"login\";i:1735326658;}}'),(114,2,'user_last_view_date','20221201070249'),(115,2,'user_last_view_date_events','20221221102913'),(116,2,'mec_op','a:0:{}'),(117,2,'closedpostboxes_slick_slider','a:1:{i:0;s:24:\"wpsisac-post-metabox-pro\";}'),(118,2,'metaboxhidden_slick_slider','a:1:{i:0;s:7:\"slugdiv\";}'),(120,3,'user_last_view_date','20221207162439'),(121,3,'user_last_view_date_events','20240905142826'),(122,3,'wp_dashboard_quick_press_last_post_id','3898'),(123,3,'community-events-location','a:1:{s:2:\"ip\";s:11:\"73.158.88.0\";}'),(128,3,'mec_op','a:0:{}'),(138,3,'wp_user-settings','editor=tinymce&libraryContent=browse'),(139,3,'wp_user-settings-time','1733952220'),(142,3,'nav_menu_recently_edited','6'),(143,3,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(144,3,'metaboxhidden_nav-menus','a:7:{i:0;s:24:\"add-post-type-mec-events\";i:1;s:20:\"add-post-type-recipe\";i:2;s:24:\"add-post-type-teammember\";i:3;s:12:\"add-post_tag\";i:4;s:16:\"add-mec_category\";i:5;s:27:\"add-wpsisac_slider-category\";i:6;s:19:\"add-recipe_category\";}'),(150,3,'wp_persisted_preferences','a:2:{s:17:\"core/edit-widgets\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2023-01-02T00:47:59.328Z\";}'),(153,3,'meta-box-order_post','a:4:{s:15:\"acf_after_title\";s:48:\"acf-group_5c1d78f3982cad,acf-group_5c1d78f3982ca\";s:4:\"side\";s:84:\"acf-group_5bbe1999c757e,age_gate,submitdiv,categorydiv,tagsdiv-post_tag,postimagediv\";s:6:\"normal\";s:83:\"wpseo_meta,postexcerpt,trackbacksdiv,commentstatusdiv,commentsdiv,slugdiv,authordiv\";s:8:\"advanced\";s:0:\"\";}'),(154,3,'screen_layout_post','2'),(166,2,'wp_persisted_preferences','a:2:{s:17:\"core/edit-widgets\";a:1:{s:26:\"isComplementaryAreaVisible\";b:1;}s:9:\"_modified\";s:24:\"2023-01-07T00:21:08.325Z\";}'),(172,4,'nickname','Growth Natives'),(173,4,'first_name',''),(174,4,'last_name',''),(175,4,'description',''),(176,4,'rich_editing','true'),(177,4,'syntax_highlighting','true'),(178,4,'comment_shortcuts','false'),(179,4,'admin_color','fresh'),(180,4,'use_ssl','0'),(181,4,'show_admin_bar_front','true'),(182,4,'locale',''),(183,4,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(184,4,'wp_user_level','10'),(185,4,'_yoast_wpseo_profile_updated','1712255239'),(186,4,'dismissed_wp_pointers',''),(199,3,'meta-box-order_mec-events','a:4:{s:15:\"acf_after_title\";s:0:\"\";s:4:\"side\";s:82:\"age_gate,submitdiv,tagsdiv-post_tag,mec_categorydiv,mec_metabox_color,postimagediv\";s:6:\"normal\";s:95:\"mec_metabox_label,mec_metabox_details,wpseo_meta,postexcerpt,commentstatusdiv,slugdiv,authordiv\";s:8:\"advanced\";s:0:\"\";}'),(200,3,'screen_layout_mec-events','2'),(202,4,'default_password_nag',''),(203,4,'session_tokens','a:2:{s:64:\"a304d00800b4b1b8c6a5df339df37f1162584246956c8a7b6a7a9ffda78fd9a0\";a:4:{s:10:\"expiration\";i:1675143974;s:2:\"ip\";s:14:\"103.66.205.247\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36\";s:5:\"login\";i:1673934374;}s:64:\"7dcc28c2421be284f0b525a54d5007271dadd7ecf02ff89262aabccd81b185f5\";a:4:{s:10:\"expiration\";i:1675147420;s:2:\"ip\";s:14:\"122.160.253.49\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36\";s:5:\"login\";i:1673937820;}}'),(204,4,'user_last_view_date','20230116214616'),(205,4,'wp_dashboard_quick_press_last_post_id','1598'),(206,4,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";O:61:\"Yoast\\WP\\SEO\\Presenters\\Admin\\Indexing_Notification_Presenter\":3:{s:18:\"\0*\0total_unindexed\";i:213;s:9:\"\0*\0reason\";s:23:\"home_url_option_changed\";s:20:\"\0*\0short_link_helper\";O:38:\"Yoast\\WP\\SEO\\Helpers\\Short_Link_Helper\":2:{s:17:\"\0*\0options_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Options_Helper\":0:{}s:17:\"\0*\0product_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Product_Helper\":0:{}}}s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:13:\"wpseo-reindex\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"4\";s:10:\"user_login\";s:14:\"Growth Natives\";s:9:\"user_pass\";s:34:\"$P$BNUmoLH1iHOHNeXTl5/MiaWJ6OnZ36.\";s:13:\"user_nicename\";s:14:\"growth-natives\";s:10:\"user_email\";s:25:\"paidads@growthnatives.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2023-01-16 21:50:16\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:14:\"Growth Natives\";}s:2:\"ID\";i:4;s:4:\"caps\";a:1:{s:13:\"wpseo_manager\";b:1;}s:7:\"cap_key\";s:15:\"wp_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"wpseo_manager\";}s:7:\"allcaps\";a:42:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;s:23:\"view_site_health_checks\";b:1;s:33:\"ag_manage_set_content_restriction\";b:1;s:28:\"ag_manage_set_content_bypass\";b:1;s:24:\"ag_manage_set_custom_age\";b:1;s:13:\"wpseo_manager\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";d:0.8;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(207,4,'community-events-location','a:1:{s:2:\"ip\";s:13:\"122.160.253.0\";}'),(210,4,'wpseo_title',''),(211,4,'wpseo_metadesc',''),(213,4,'wpseo_content_analysis_disable',''),(214,4,'wpseo_keyword_analysis_disable',''),(215,4,'wpseo_inclusive_language_analysis_disable',''),(216,4,'user_last_view_date_events','20230120213926'),(217,5,'nickname','vishal.mehta'),(218,5,'first_name','Vishal'),(219,5,'last_name','Mehta'),(220,5,'description',''),(221,5,'rich_editing','true'),(222,5,'syntax_highlighting','true'),(223,5,'comment_shortcuts','false'),(224,5,'admin_color','fresh'),(225,5,'use_ssl','0'),(226,5,'show_admin_bar_front','true'),(227,5,'locale',''),(228,5,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(229,5,'wp_user_level','10'),(230,5,'_yoast_wpseo_profile_updated','1712255239'),(231,5,'dismissed_wp_pointers','theme_editor_notice,saswp_subscribe_pointer'),(244,5,'user_last_view_date','20230206020828'),(245,5,'user_last_view_date_events','20230206020828'),(246,5,'wp_dashboard_quick_press_last_post_id','3914'),(248,5,'community-events-location','a:1:{s:2:\"ip\";s:11:\"14.195.60.0\";}'),(249,5,'wp_user-settings','editor=tinymce&libraryContent=browse'),(250,5,'wp_user-settings-time','1733912747'),(251,2,'closedpostboxes_post','a:0:{}'),(252,2,'metaboxhidden_post','a:5:{i:0;s:11:\"postexcerpt\";i:1;s:13:\"trackbacksdiv\";i:2;s:16:\"commentstatusdiv\";i:3;s:7:\"slugdiv\";i:4;s:9:\"authordiv\";}'),(291,1,'user_last_view_date','20230309150958'),(292,1,'user_last_view_date_events','20230309150958'),(295,7,'nickname','Erica Walter'),(296,7,'first_name','Erica'),(297,7,'last_name','Walter'),(298,7,'description',''),(299,7,'rich_editing','true'),(300,7,'syntax_highlighting','true'),(301,7,'comment_shortcuts','false'),(302,7,'admin_color','fresh'),(303,7,'use_ssl','0'),(304,7,'show_admin_bar_front','true'),(305,7,'locale',''),(306,7,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(307,7,'wp_user_level','10'),(308,7,'_yoast_wpseo_profile_updated','1712255239'),(309,7,'dismissed_wp_pointers','saswp_subscribe_pointer'),(320,7,'wpseo_title',''),(321,7,'wpseo_metadesc',''),(323,7,'wpseo_content_analysis_disable',''),(324,7,'wpseo_keyword_analysis_disable',''),(325,7,'wpseo_inclusive_language_analysis_disable',''),(327,5,'meta-box-order_page','a:4:{s:15:\"acf_after_title\";s:0:\"\";s:4:\"side\";s:45:\"age_gate,submitdiv,pageparentdiv,postimagediv\";s:6:\"normal\";s:70:\"commentstatusdiv,commentsdiv,slugdiv,authordiv,acf-group_5bbe1999c757e\";s:8:\"advanced\";s:30:\"wpseo_meta,saswp_post_specific\";}'),(328,5,'screen_layout_page','2'),(332,5,'closedpostboxes_post','a:1:{i:0;s:24:\"acf-group_5c1d78f3982cad\";}'),(333,5,'metaboxhidden_post','a:5:{i:0;s:11:\"postexcerpt\";i:1;s:13:\"trackbacksdiv\";i:2;s:16:\"commentstatusdiv\";i:3;s:7:\"slugdiv\";i:4;s:9:\"authordiv\";}'),(334,5,'meta-box-order_post','a:4:{s:15:\"acf_after_title\";s:72:\"acf-group_5c1d78f3982ca,acf-group_5c1d78f3982cad,acf-group_5bbe1999c757e\";s:4:\"side\";s:60:\"age_gate,submitdiv,categorydiv,tagsdiv-post_tag,postimagediv\";s:6:\"normal\";s:71:\"wpseo_meta,postexcerpt,trackbacksdiv,commentstatusdiv,slugdiv,authordiv\";s:8:\"advanced\";s:19:\"saswp_post_specific\";}'),(335,5,'screen_layout_post','2'),(339,3,'default_password_nag',''),(343,2,'wp_yoast_notifications','a:2:{i:0;a:2:{s:7:\"message\";s:206:\"You&#039;ve added a new type of content. We recommend that you review the corresponding <a href=\"https://www.meadowcroftwines.com/wp-admin/admin.php?page=wpseo_page_settings\">Search appearance settings</a>.\";s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:25:\"content-types-made-public\";s:7:\"user_id\";i:2;s:5:\"nonce\";N;s:8:\"priority\";d:0.8;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}i:1;a:2:{s:7:\"message\";s:370:\"<p>We need to re-analyze some of your SEO data because of a change in the visibility of your post types. Please help us do that by running the SEO data optimization. </p><p>We estimate this will take less than a minute.</p><a class=\"button\" href=\"https://www.meadowcroftwines.com/wp-admin/admin.php?page=wpseo_tools&start-indexation=true\">Start SEO data optimization</a>\";s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:13:\"wpseo-reindex\";s:7:\"user_id\";i:2;s:5:\"nonce\";N;s:8:\"priority\";d:0.8;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(344,2,'closedpostboxes_collection','a:2:{i:0;s:10:\"wpseo_meta\";i:1;s:40:\"c7c_meta_box_collection_imported_details\";}'),(345,2,'metaboxhidden_collection','a:1:{i:0;s:7:\"slugdiv\";}'),(347,3,'wp_yoast_notifications','a:2:{i:0;a:2:{s:7:\"message\";s:206:\"You&#039;ve added a new type of content. We recommend that you review the corresponding <a href=\"https://www.meadowcroftwines.com/wp-admin/admin.php?page=wpseo_page_settings\">Search appearance settings</a>.\";s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:25:\"content-types-made-public\";s:7:\"user_id\";i:3;s:5:\"nonce\";N;s:8:\"priority\";d:0.8;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}i:1;a:2:{s:7:\"message\";O:61:\"Yoast\\WP\\SEO\\Presenters\\Admin\\Indexing_Notification_Presenter\":3:{s:18:\"\0*\0total_unindexed\";i:1;s:9:\"\0*\0reason\";s:21:\"post_type_made_public\";s:20:\"\0*\0short_link_helper\";O:38:\"Yoast\\WP\\SEO\\Helpers\\Short_Link_Helper\":2:{s:17:\"\0*\0options_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Options_Helper\":0:{}s:17:\"\0*\0product_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Product_Helper\":0:{}}}s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:13:\"wpseo-reindex\";s:7:\"user_id\";i:3;s:5:\"nonce\";N;s:8:\"priority\";d:0.8;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(350,7,'default_password_nag',''),(351,2,'closedpostboxes_product','a:0:{}'),(352,2,'metaboxhidden_product','a:1:{i:0;s:7:\"slugdiv\";}'),(353,5,'closedpostboxes_product','a:0:{}'),(354,5,'metaboxhidden_product','a:1:{i:0;s:7:\"slugdiv\";}'),(355,5,'meta-box-order_product','a:4:{s:15:\"acf_after_title\";s:0:\"\";s:4:\"side\";s:18:\"age_gate,submitdiv\";s:6:\"normal\";s:7:\"slugdiv\";s:8:\"advanced\";s:147:\"wpseo_meta,c7c_meta_box_product_imported_details,c7c_meta_box_product_additional_details,saswp_post_specific,c7c_meta_box_product_layout_attributes\";}'),(356,5,'screen_layout_product','2'),(359,3,'closedpostboxes_collection','a:1:{i:0;s:36:\"c7c_meta_box_collection_product_list\";}'),(360,3,'metaboxhidden_collection','a:1:{i:0;s:7:\"slugdiv\";}'),(362,8,'nickname','divaya.rana@growthnatives.com'),(363,8,'first_name','Divaya'),(364,8,'last_name','Rana'),(365,8,'description',''),(366,8,'rich_editing','true'),(367,8,'syntax_highlighting','true'),(368,8,'comment_shortcuts','false'),(369,8,'admin_color','fresh'),(370,8,'use_ssl','0'),(371,8,'show_admin_bar_front','true'),(372,8,'locale',''),(373,8,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(374,8,'wp_user_level','10'),(375,8,'dismissed_wp_pointers',''),(376,8,'WPE_USER_CREATED_TIME','1685086601'),(378,8,'session_tokens','a:1:{s:64:\"be98766715ed992953343d54c68463f4ac52fd8a339244265f4a9c570d45d4a8\";a:4:{s:10:\"expiration\";i:1725890552;s:2:\"ip\";s:14:\"65.108.133.105\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36\";s:5:\"login\";i:1724680952;}}'),(379,8,'WPE_LAST_LOGIN_TIME','1724680952'),(380,8,'WPE_LOGGED_REQUEST_IDS','a:0:{}'),(381,8,'user_last_view_date','20230526003645'),(382,8,'user_last_view_date_events','20230526003645'),(383,8,'wp_dashboard_quick_press_last_post_id','3822'),(385,8,'community-events-location','a:1:{s:2:\"ip\";s:12:\"65.108.133.0\";}'),(386,8,'_yoast_wpseo_profile_updated','1712255239'),(389,7,'user_last_view_date','20230607210112'),(390,7,'user_last_view_date_events','20230607210112'),(391,7,'wp_dashboard_quick_press_last_post_id','3070'),(392,7,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";O:61:\"Yoast\\WP\\SEO\\Presenters\\Admin\\Indexing_Notification_Presenter\":3:{s:18:\"\0*\0total_unindexed\";i:301;s:9:\"\0*\0reason\";s:21:\"post_type_made_public\";s:20:\"\0*\0short_link_helper\";O:38:\"Yoast\\WP\\SEO\\Helpers\\Short_Link_Helper\":2:{s:17:\"\0*\0options_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Options_Helper\":0:{}s:17:\"\0*\0product_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Product_Helper\":0:{}}}s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:13:\"wpseo-reindex\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"7\";s:10:\"user_login\";s:12:\"Erica Walter\";s:9:\"user_pass\";s:34:\"$P$BSiGevczrb1bIN7SSY/XVxH3VotPbu/\";s:13:\"user_nicename\";s:12:\"erica-walter\";s:10:\"user_email\";s:27:\"erica@ericawalterwrites.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2023-03-09 23:57:54\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:12:\"Erica Walter\";}s:2:\"ID\";i:7;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:15:\"wp_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:153:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;s:16:\"amelia_read_menu\";b:1;s:21:\"amelia_read_dashboard\";b:1;s:20:\"amelia_read_calendar\";b:1;s:24:\"amelia_read_appointments\";b:1;s:21:\"amelia_read_employees\";b:1;s:20:\"amelia_read_services\";b:1;s:21:\"amelia_read_locations\";b:1;s:19:\"amelia_read_coupons\";b:1;s:21:\"amelia_read_customers\";b:1;s:19:\"amelia_read_finance\";b:1;s:25:\"amelia_read_notifications\";b:1;s:21:\"amelia_read_customize\";b:1;s:20:\"amelia_read_settings\";b:1;s:27:\"amelia_read_others_calendar\";b:1;s:31:\"amelia_read_others_appointments\";b:1;s:28:\"amelia_read_others_employees\";b:1;s:22:\"amelia_write_dashboard\";b:1;s:21:\"amelia_write_calendar\";b:1;s:25:\"amelia_write_appointments\";b:1;s:22:\"amelia_write_employees\";b:1;s:21:\"amelia_write_services\";b:1;s:22:\"amelia_write_locations\";b:1;s:20:\"amelia_write_coupons\";b:1;s:22:\"amelia_write_customers\";b:1;s:20:\"amelia_write_finance\";b:1;s:26:\"amelia_write_notifications\";b:1;s:22:\"amelia_write_customize\";b:1;s:21:\"amelia_write_settings\";b:1;s:19:\"amelia_write_status\";b:1;s:28:\"amelia_write_others_calendar\";b:1;s:32:\"amelia_write_others_appointments\";b:1;s:29:\"amelia_write_others_employees\";b:1;s:27:\"amelia_write_others_finance\";b:1;s:23:\"amelia_delete_dashboard\";b:1;s:22:\"amelia_delete_calendar\";b:1;s:26:\"amelia_delete_appointments\";b:1;s:23:\"amelia_delete_employees\";b:1;s:22:\"amelia_delete_services\";b:1;s:23:\"amelia_delete_locations\";b:1;s:21:\"amelia_delete_coupons\";b:1;s:23:\"amelia_delete_customers\";b:1;s:21:\"amelia_delete_finance\";b:1;s:27:\"amelia_delete_notifications\";b:1;s:23:\"amelia_delete_customize\";b:1;s:22:\"amelia_delete_settings\";b:1;s:32:\"amelia_write_status_appointments\";b:1;s:18:\"amelia_read_events\";b:1;s:25:\"amelia_read_custom_fields\";b:1;s:27:\"amelia_read_others_settings\";b:1;s:28:\"amelia_read_others_customers\";b:1;s:19:\"amelia_write_events\";b:1;s:26:\"amelia_write_custom_fields\";b:1;s:28:\"amelia_write_others_settings\";b:1;s:26:\"amelia_write_others_events\";b:1;s:29:\"amelia_write_others_dashboard\";b:1;s:20:\"amelia_delete_events\";b:1;s:27:\"amelia_delete_custom_fields\";b:1;s:26:\"amelia_write_status_events\";b:1;s:30:\"amelia_write_time_appointments\";b:1;s:22:\"ag_manage_restrictions\";b:1;s:20:\"ag_manage_appearance\";b:1;s:18:\"ag_manage_advanced\";b:1;s:19:\"ag_manage_messaging\";b:1;s:18:\"ag_manage_settings\";b:1;s:33:\"ag_manage_set_content_restriction\";b:1;s:28:\"ag_manage_set_content_bypass\";b:1;s:24:\"ag_manage_set_custom_age\";b:1;s:17:\"ag_manage_content\";b:1;s:21:\"ag_manage_set_content\";b:1;s:15:\"ag_manage_tools\";b:1;s:9:\"ag_export\";b:1;s:9:\"ag_import\";b:1;s:13:\"ag_hard_reset\";b:1;s:12:\"mec_bookings\";b:1;s:15:\"mec_add_booking\";b:1;s:11:\"mec_coupons\";b:1;s:10:\"mec_report\";b:1;s:17:\"mec_import_export\";b:1;s:12:\"mec_settings\";b:1;s:14:\"mec_shortcodes\";b:1;s:20:\"wpseo_manage_options\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";d:0.8;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(393,7,'community-events-location','a:1:{s:2:\"ip\";s:11:\"96.39.149.0\";}'),(394,7,'wp_user-settings','editor=tinymce'),(395,7,'wp_user-settings-time','1686197382'),(397,5,'closedpostboxes_page','a:2:{i:0;s:8:\"age_gate\";i:1;s:13:\"pageparentdiv\";}'),(398,5,'metaboxhidden_page','a:4:{i:0;s:16:\"commentstatusdiv\";i:1;s:11:\"commentsdiv\";i:2;s:7:\"slugdiv\";i:3;s:9:\"authordiv\";}'),(399,5,'manageedit-acf-post-typecolumnshidden','a:1:{i:0;s:7:\"acf-key\";}'),(400,5,'acf_user_settings','a:2:{s:19:\"post-type-first-run\";b:1;s:20:\"taxonomies-first-run\";b:1;}'),(401,5,'manageedit-acf-taxonomycolumnshidden','a:1:{i:0;s:7:\"acf-key\";}'),(418,5,'nav_menu_recently_edited','6'),(419,5,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(420,5,'metaboxhidden_nav-menus','a:10:{i:0;s:21:\"add-post-type-product\";i:1;s:24:\"add-post-type-collection\";i:2;s:24:\"add-post-type-mec-events\";i:3;s:19:\"add-post-type-saswp\";i:4;s:20:\"add-post-type-recipe\";i:5;s:24:\"add-post-type-teammember\";i:6;s:31:\"add-post-type-saswp-collections\";i:7;s:12:\"add-post_tag\";i:8;s:16:\"add-mec_category\";i:9;s:19:\"add-recipe_category\";}'),(433,3,'meta-box-order_collection','a:4:{s:15:\"acf_after_title\";s:0:\"\";s:4:\"side\";s:18:\"age_gate,submitdiv\";s:6:\"normal\";s:7:\"slugdiv\";s:8:\"advanced\";s:193:\"wpseo_meta,c7c_meta_box_collection_imported_details,c7c_meta_box_collection_product_list,c7c_meta_box_collection_additional_details,c7c_meta_box_collection_layout_attributes,saswp_post_specific\";}'),(434,3,'screen_layout_collection','2'),(446,3,'wp_media_library_mode','grid'),(455,5,'_yoast_wpseo_introductions','a:1:{s:42:\"ai-generate-titles-and-descriptions-upsell\";b:1;}'),(476,2,'closedpostboxes_brand','a:1:{i:0;s:10:\"wpseo_meta\";}'),(477,2,'metaboxhidden_brand','a:3:{i:0;s:11:\"categorydiv\";i:1;s:12:\"postimagediv\";i:2;s:7:\"slugdiv\";}'),(491,5,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";O:61:\"Yoast\\WP\\SEO\\Presenters\\Admin\\Indexing_Notification_Presenter\":3:{s:18:\"\0*\0total_unindexed\";i:1;s:9:\"\0*\0reason\";s:21:\"post_type_made_public\";s:20:\"\0*\0short_link_helper\";O:38:\"Yoast\\WP\\SEO\\Helpers\\Short_Link_Helper\":2:{s:17:\"\0*\0options_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Options_Helper\":0:{}s:17:\"\0*\0product_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Product_Helper\":0:{}}}s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:13:\"wpseo-reindex\";s:7:\"user_id\";i:5;s:5:\"nonce\";N;s:8:\"priority\";d:0.8;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(515,8,'WPE_NONCE','O:8:\"stdClass\":3:{s:5:\"nonce\";s:64:\"bf8866e7d6bf8795148a3b6ed495f77e97f4bc4d9bac0eb5e673d138a9e49bda\";s:10:\"expiration\";i:1724680961;s:12:\"install_name\";s:13:\"meadowcroftca\";}'),(516,8,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";O:61:\"Yoast\\WP\\SEO\\Presenters\\Admin\\Indexing_Notification_Presenter\":3:{s:18:\"\0*\0total_unindexed\";i:1;s:9:\"\0*\0reason\";s:21:\"post_type_made_public\";s:20:\"\0*\0short_link_helper\";O:38:\"Yoast\\WP\\SEO\\Helpers\\Short_Link_Helper\":2:{s:17:\"\0*\0options_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Options_Helper\":0:{}s:17:\"\0*\0product_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Product_Helper\":0:{}}}s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:13:\"wpseo-reindex\";s:7:\"user_id\";i:8;s:5:\"nonce\";N;s:8:\"priority\";d:0.8;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(527,5,'session_tokens','a:2:{s:64:\"6ec35aec3f377693475f6d64a31705066dd2327ad08b6e687b3ee46ffbc247ab\";a:4:{s:10:\"expiration\";i:1735708291;s:2:\"ip\";s:14:\"223.178.210.86\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\";s:5:\"login\";i:1735535491;}s:64:\"6fb815b15ee574037865dbcb5f169ae24ae6d83de3bb12c7bddddb003afd7cdb\";a:4:{s:10:\"expiration\";i:1735796213;s:2:\"ip\";s:12:\"14.195.60.42\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\";s:5:\"login\";i:1735623413;}}'),(529,9,'nickname','Komal'),(530,9,'first_name',''),(531,9,'last_name',''),(532,9,'description',''),(533,9,'rich_editing','true'),(534,9,'syntax_highlighting','true'),(535,9,'comment_shortcuts','false'),(536,9,'admin_color','fresh'),(537,9,'use_ssl','0'),(538,9,'show_admin_bar_front','true'),(539,9,'locale',''),(540,9,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(541,9,'wp_user_level','10'),(542,9,'_yoast_wpseo_profile_updated','1733933186'),(543,9,'dismissed_wp_pointers',''),(545,9,'default_password_nag',''),(546,9,'session_tokens','a:1:{s:64:\"1bfd93c35510a44f17ec2ccb1bafadf11f390a5f9e0c05164fcd1a3a20bcbe20\";a:4:{s:10:\"expiration\";i:1736426416;s:2:\"ip\";s:13:\"146.70.142.25\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\";s:5:\"login\";i:1735216816;}}'),(547,9,'wp_dashboard_quick_press_last_post_id','3895'),(548,9,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";O:61:\"Yoast\\WP\\SEO\\Presenters\\Admin\\Indexing_Notification_Presenter\":3:{s:18:\"\0*\0total_unindexed\";i:1;s:9:\"\0*\0reason\";s:21:\"post_type_made_public\";s:20:\"\0*\0short_link_helper\";O:38:\"Yoast\\WP\\SEO\\Helpers\\Short_Link_Helper\":2:{s:17:\"\0*\0options_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Options_Helper\":0:{}s:17:\"\0*\0product_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Product_Helper\":0:{}}}s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:13:\"wpseo-reindex\";s:7:\"user_id\";i:9;s:5:\"nonce\";N;s:8:\"priority\";d:0.8;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(549,9,'_yoast_wpseo_introductions','a:1:{s:25:\"ai-fix-assessments-upsell\";b:1;}'),(550,9,'_yoast_alerts_dismissed','a:1:{s:26:\"webinar-promo-notification\";b:1;}'),(558,10,'nickname','ashish.chauhan@growthnatives.com'),(559,10,'first_name','Ashish'),(560,10,'last_name','Chauhan'),(561,10,'description',''),(562,10,'rich_editing','true'),(563,10,'syntax_highlighting','true'),(564,10,'comment_shortcuts','false'),(565,10,'admin_color','fresh'),(566,10,'use_ssl','0'),(567,10,'show_admin_bar_front','true'),(568,10,'locale',''),(569,10,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(570,10,'wp_user_level','10'),(571,10,'dismissed_wp_pointers',''),(572,10,'WPE_USER_CREATED_TIME','1735819776'),(574,10,'session_tokens','a:1:{s:64:\"2274ad5d7e00f06652bb9a2a474e92919595b04f5c51e8de053290bc6676067d\";a:4:{s:10:\"expiration\";i:1737029378;s:2:\"ip\";s:12:\"14.195.60.42\";s:2:\"ua\";s:101:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\";s:5:\"login\";i:1735819778;}}'),(575,10,'WPE_LAST_LOGIN_TIME','1735819778'),(576,10,'WPE_LOGGED_REQUEST_IDS','a:0:{}'),(577,10,'wp_dashboard_quick_press_last_post_id','3918'),(578,10,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";O:61:\"Yoast\\WP\\SEO\\Presenters\\Admin\\Indexing_Notification_Presenter\":3:{s:18:\"\0*\0total_unindexed\";i:1;s:9:\"\0*\0reason\";s:21:\"post_type_made_public\";s:20:\"\0*\0short_link_helper\";O:38:\"Yoast\\WP\\SEO\\Helpers\\Short_Link_Helper\":2:{s:17:\"\0*\0options_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Options_Helper\":0:{}s:17:\"\0*\0product_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Product_Helper\":0:{}}}s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:13:\"wpseo-reindex\";s:7:\"user_id\";i:10;s:5:\"nonce\";N;s:8:\"priority\";d:0.8;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'wpengine','$P$B5Kd.etElFZMnvHqiMKyu7Y0Bfy41a1','wpengine','bitbucket@wpengine.com','http://wpengine.com','2017-11-16 14:47:09','',0,'wpengine'),(2,'wineworks','$P$B9S6EZrRGke8ecqalU31CVqf2jzi1E/','c7template','info@creativeculturecompany.com','http://c7template.wpengine.com','2018-10-17 20:49:11','',0,'c7template'),(3,'david.messerli','$P$BrM1/T4t7RxGTI.2PaLL0WhrcLXGRs.','david-messerli','david@meadowcroftwines.com','','2022-11-02 23:23:41','',0,'David Messerli'),(4,'Growth Natives','$P$BNUmoLH1iHOHNeXTl5/MiaWJ6OnZ36.','growth-natives','paidads@growthnatives.com','','2023-01-16 21:50:16','',0,'Growth Natives'),(5,'vishal.mehta','$P$B0WPSZOtYODseLlVR4PT8c3OwkylEP0','vishal-mehta','vishal.mehta@growthnatives.com','','2023-01-21 05:55:04','',0,'Vishal Mehta'),(7,'Erica Walter','$P$BSiGevczrb1bIN7SSY/XVxH3VotPbu/','erica-walter','erica@ericawalterwrites.com','','2023-03-09 23:57:54','',0,'Erica Walter'),(8,'divaya.rana@growthnatives.com','$P$ByahJh3burjBwj75VVfJ23T6IAszR..','divaya-ranagrowthnatives-com','divaya.rana@growthnatives.com','','2023-05-26 07:36:41','',0,'Divaya Rana'),(9,'Komal','$P$BuQCN7Yq1Zl5yyE0QCa7X1vVXG/6.v0','komal','komal@growthnatives.co','','2024-12-11 16:06:26','',0,'Komal'),(10,'ashish.chauhan@growthnatives.com','$P$BSdhJ3UpNB5cKrdMoJeFAKUWHNNASv/','ashish-chauhangrowthnatives-com','ashish.chauhan@growthnatives.com','','2025-01-02 12:09:36','',0,'Ashish Chauhan');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_indexable`
--

DROP TABLE IF EXISTS `wp_yoast_indexable`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_indexable` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `permalink` longtext COLLATE utf8mb4_unicode_520_ci,
  `permalink_hash` varchar(40) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `object_id` bigint DEFAULT NULL,
  `object_type` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `object_sub_type` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `author_id` bigint DEFAULT NULL,
  `post_parent` bigint DEFAULT NULL,
  `title` text COLLATE utf8mb4_unicode_520_ci,
  `description` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `breadcrumb_title` text COLLATE utf8mb4_unicode_520_ci,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `is_public` tinyint(1) DEFAULT NULL,
  `is_protected` tinyint(1) DEFAULT '0',
  `has_public_posts` tinyint(1) DEFAULT NULL,
  `number_of_pages` int unsigned DEFAULT NULL,
  `canonical` longtext COLLATE utf8mb4_unicode_520_ci,
  `primary_focus_keyword` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `primary_focus_keyword_score` int DEFAULT NULL,
  `readability_score` int DEFAULT NULL,
  `is_cornerstone` tinyint(1) DEFAULT '0',
  `is_robots_noindex` tinyint(1) DEFAULT '0',
  `is_robots_nofollow` tinyint(1) DEFAULT '0',
  `is_robots_noarchive` tinyint(1) DEFAULT '0',
  `is_robots_noimageindex` tinyint(1) DEFAULT '0',
  `is_robots_nosnippet` tinyint(1) DEFAULT '0',
  `twitter_title` text COLLATE utf8mb4_unicode_520_ci,
  `twitter_image` longtext COLLATE utf8mb4_unicode_520_ci,
  `twitter_description` longtext COLLATE utf8mb4_unicode_520_ci,
  `twitter_image_id` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `twitter_image_source` text COLLATE utf8mb4_unicode_520_ci,
  `open_graph_title` text COLLATE utf8mb4_unicode_520_ci,
  `open_graph_description` longtext COLLATE utf8mb4_unicode_520_ci,
  `open_graph_image` longtext COLLATE utf8mb4_unicode_520_ci,
  `open_graph_image_id` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `open_graph_image_source` text COLLATE utf8mb4_unicode_520_ci,
  `open_graph_image_meta` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `link_count` int DEFAULT NULL,
  `incoming_link_count` int DEFAULT NULL,
  `prominent_words_version` int unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `blog_id` bigint NOT NULL DEFAULT '1',
  `language` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `region` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `schema_page_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `schema_article_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `has_ancestors` tinyint(1) DEFAULT '0',
  `estimated_reading_time_minutes` int DEFAULT NULL,
  `version` int DEFAULT '1',
  `object_last_modified` datetime DEFAULT NULL,
  `object_published_at` datetime DEFAULT NULL,
  `inclusive_language_score` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `object_type_and_sub_type` (`object_type`,`object_sub_type`),
  KEY `object_id_and_type` (`object_id`,`object_type`),
  KEY `subpages` (`post_parent`,`object_type`,`post_status`,`object_id`),
  KEY `permalink_hash_and_object_type` (`permalink_hash`,`object_type`),
  KEY `prominent_words` (`prominent_words_version`,`object_type`,`object_sub_type`,`post_status`),
  KEY `published_sitemap_index` (`object_published_at`,`is_robots_noindex`,`object_type`,`object_sub_type`)
) ENGINE=InnoDB AUTO_INCREMENT=2374 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_indexable`
--

LOCK TABLES `wp_yoast_indexable` WRITE;
/*!40000 ALTER TABLE `wp_yoast_indexable` DISABLE KEYS */;
INSERT INTO `wp_yoast_indexable` VALUES (4,'https://www.meadowcroftwines.com/contact-us/','44:b2bd971934d2d6f61da6c3ec132691ac',446,'post','page',2,0,NULL,NULL,'Contact Us','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-13 17:29:26','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-10-12 17:57:12','2018-10-23 18:02:42',NULL),(5,NULL,NULL,NULL,'system-page','404',NULL,NULL,'Page not found %%sep%% %%sitename%%',NULL,'Error 404: Page not found',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-13 17:29:27','2022-12-21 16:58:52',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL),(7,'https://www.meadowcroftwines.com/inquiry/','41:da84eddd7a226f08ab37c46c866eae89',461,'post','page',2,0,NULL,NULL,'Inquiry','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-13 18:15:10','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,0,2,'2022-11-30 00:45:30','2018-10-23 18:07:14',NULL),(8,'https://www.meadowcroftwines.com/','33:0d6855806f1f73a87e9820ed7dbee699',412,'post','page',2,0,'Meadowcroft Wines | Best Winery in Sonoma County, CA','Looking for the best winery in Sonoma? Our guide provides all the information you need to find the perfect spot for a wine-tasting getaway. Click now to learn more!','Home','publish',NULL,0,NULL,NULL,NULL,'Winery in Sonoma',65,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-13 18:24:06','2024-04-04 21:15:23',1,NULL,NULL,NULL,NULL,0,4,2,'2024-04-04 21:15:22','2018-10-17 03:38:56',0),(9,'https://www.meadowcroftwines.com/virtual-experiences/','53:d9b3eeeee617c41e086cb48e75f881ae',431,'post','page',2,0,NULL,'Situated in Cornerstone in Sonoma, the Tasting Room of Meadowcroft Wines is the ideal location for your wine country experience.','Virtual Experiences','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-13 18:25:33','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,0,2,'2022-12-12 18:55:48','2018-10-17 05:48:29',NULL),(51,'https://www.meadowcroftwines.com/?page_id=443','45:65f3b32ad80f74eaf8e7fe8b7c20e79b',443,'post','page',2,0,'Meadowcroft Wine Club Membership | Meadowcroft Wines','Join the Meadowcroft wine club membership to discover limited production wines from Napa and Sonoma, including small lots of Cabernet Sauvignon, Pinot Noir, etc.','Wine Club Old','draft',0,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-13 20:42:12','2023-09-19 14:28:52',1,NULL,NULL,NULL,NULL,0,0,2,'2023-09-19 14:28:52','2018-10-23 18:02:16',0),(54,'https://www.meadowcroftwines.com/about/','39:482010c18f9d1ffdfcc666811ad07ebd',444,'post','page',2,0,'About Tom Meadowcroft and Team - Meadowcroft Wines','At Meadowcroft, we proudly focus on a wide array of beautiful varietals, including Cabernet Sauvignon, Pinot Noir, and Viognier by Tom Meadowcroft.','About','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-13 20:42:12','2023-12-21 17:58:24',1,NULL,NULL,NULL,NULL,0,4,2,'2023-12-21 17:58:23','2018-10-23 18:02:24',0),(61,'https://www.meadowcroftwines.com/about/our-vineyards/','53:1499eec31275a0d89ac89140308a5064',516,'post','page',2,444,'Our Vineyard Mount Veeder Napa - Meadowcroft Wines','Meadowcroft\'s Mount Veeder cabernet sauvignon is a classic expression of Napa cabernet sauvignon. Perched at 1,200 feet elevation with sedimentary clay and volcanic soils, Meadowcroft’s Mount Veeder Vineyard has extremely steep slopes.','Our Vineyards','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-13 20:42:12','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,1,0,2,'2022-11-15 17:52:41','2018-10-24 22:35:36',NULL),(75,'https://www.meadowcroftwines.com/policies/','42:cfe98282d0fb0b4ea12d19d535a0b576',518,'post','page',2,0,NULL,NULL,'Policies','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-13 20:42:13','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,0,2,'2022-12-09 23:12:40','2018-10-24 22:36:32',NULL),(88,'https://www.meadowcroftwines.com/recipe/butternut-squash-soup/','62:f7430cdd4bfe31af90ceca0b1dace71d',337,'post','recipe',2,0,NULL,NULL,'Butternut Squash Soup','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-13 20:42:13','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2018-11-01 16:45:32','2018-10-15 19:36:54',NULL),(90,'https://www.meadowcroftwines.com/tasting-room/','46:f2616bcaafa0fe204d3866f5a5faf7bd',445,'post','page',2,0,'Wine Tasting Room at Cornerstone, Sonoma County, CA','Have a experience of unique wine-tasting at Cornerstone, Sonoma County. Our wine experts will guide you through a variety of delicious wines & you\'ll thoroughly enjoy it.','Tasting Room','publish',NULL,0,NULL,NULL,NULL,'Wine Tasting Room',69,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-05-13 20:42:13','2024-12-11 21:23:45',1,NULL,NULL,NULL,NULL,0,7,2,'2024-12-11 21:23:44','2018-10-23 18:02:32',0),(95,'https://www.meadowcroftwines.com/recipe/grilled-lemon-chicken/','62:0da859d2f207df29fc58d42cbb3595dd',554,'post','recipe',2,0,NULL,NULL,'Grilled Lemon Chicken','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-13 20:42:13','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2018-11-01 16:44:16','2018-10-25 20:08:48',NULL),(100,'https://www.meadowcroftwines.com/recipe/chocolate-brownie/','58:af47c462d5be767a51f7f9d32ca8f6af',351,'post','recipe',2,0,NULL,NULL,'Chocolate Raspberry Brownie','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-13 20:42:13','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2018-11-01 16:44:45','2018-10-15 23:00:00',NULL),(107,'https://www.meadowcroftwines.com/privacy-policy/','48:6c3050e30935905e7613edb29521491c',410,'post','page',2,0,NULL,NULL,'Privacy Policy','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-13 20:42:13','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2018-11-06 18:58:05','2018-08-06 08:30:34',NULL),(108,'https://www.meadowcroftwines.com/shipping-faq/','46:fb28388548d6af21522db8fd8715d573',447,'post','page',2,0,NULL,NULL,'Shipping Policies','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-13 20:42:13','2024-11-26 17:38:56',1,NULL,NULL,NULL,NULL,0,3,2,'2024-11-26 17:38:55','2018-10-23 18:03:12',0),(109,'https://www.meadowcroftwines.com/newsletters/','45:b10e0928edc9988a3cee01cb09c6afbd',449,'post','page',2,0,NULL,'Join the mailing list of Meadowcroft Wines to receive periodic updates about upcoming events, wine specials and news from the winery.','Newsletters','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-13 20:42:13','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,0,2,'2023-02-07 10:58:26','2018-10-23 18:03:43',NULL),(110,'https://www.meadowcroftwines.com/wines/','39:9b7f7d790539c38b3e0571e94213d9ea',501,'post','page',2,0,'Shop Wines in Sonoma County, CA | Meadowcroft Wines','Looking for the perfect wine? Look no further! Shop Meadowcroft Wines & discover the best selection of red, white, & sparkling wines. Order now & savor every sip!','Shop Wines','publish',NULL,0,NULL,NULL,NULL,'wines',41,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-13 20:42:13','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,0,2,'2023-03-21 00:17:20','2018-10-23 23:27:57',NULL),(111,'https://www.meadowcroftwines.com/red-wines/','43:a0db05db8cfdad64cbc2c206e3ccf8de',504,'post','page',2,0,'Experience the Best Sonoma Red Wines Today | Meadowcroft Wines','Our Sonoma red wines are perfect for any occasion. With a variety of flavors to choose from, we have the perfect wine for you. Click now and find the best wine for your next party.','Red Wines','publish',NULL,0,NULL,NULL,NULL,'Sonoma red wines',48,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,NULL,'2020-05-13 20:42:13','2024-05-02 17:39:15',1,NULL,NULL,NULL,NULL,0,2,2,'2024-02-13 10:27:34','2018-10-23 23:41:25',0),(112,'https://www.meadowcroftwines.com/white-wines/','45:64dc7fd4a429f6266e130930d866d2cb',506,'post','page',2,0,'Experience the Best White Wines in Sonoma County, CA','Looking to buy white wine in Sonoma County? Explore Meadowcroft\'s top picks of white wines from Sonoma County\'s winery.','White Wines','publish',NULL,0,NULL,NULL,NULL,'White Wines',61,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-05-13 20:42:13','2024-02-13 10:27:44',1,NULL,NULL,NULL,NULL,0,1,2,'2024-02-13 10:27:43','2018-10-23 23:47:57',0),(113,'https://www.meadowcroftwines.com/?page_id=508','45:c5f8334a2a3404cc1d50345d001a3810',508,'post','page',2,0,'Wine Media and Trade - Meadowcroft Wines','Meadowcroft Wine Trade and Media with Bottle Shots, Tech Sheets and Distributor Material for use by the wine media and wine trade','Trade &#038; Media &#8211; Old','draft',0,0,NULL,NULL,NULL,'Meadowcroft wine information - for the trade and media',56,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-13 20:42:13','2024-04-02 00:42:29',1,NULL,NULL,NULL,NULL,0,13,2,'2024-04-02 00:42:29','2018-10-23 23:51:25',0),(114,'https://www.meadowcroftwines.com/about/our-team/','48:79ee83bdeb46a0128f33a8cf0686b884',517,'post','page',2,444,NULL,NULL,'Our Team','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-13 20:42:13','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,1,NULL,2,'2019-09-13 18:51:40','2018-10-24 22:36:09',NULL),(119,'https://www.meadowcroftwines.com/product-2/','46:35376975b145de9cc9d95d0f6f5a394a',567,'post','page',2,0,'2019 CABERNET SAUVIGNON, OAKVILLE | MEADOWCROFT WINES','Looking for a delicious and well-priced Cabernet Sauvignon? Check out our 2019 vintage, Oakville edition. This wine is perfect for any occasion, so order a bottle today','Product','publish',NULL,0,NULL,NULL,NULL,'CABERNET SAUVIGNON',30,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-13 20:42:13','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,0,2,'2023-05-02 17:55:16','2018-10-29 20:43:05',NULL),(128,'https://www.meadowcroftwines.com/blog/','38:329e27e115b0379057565869654f10ef',637,'post','page',2,0,NULL,NULL,'Blog','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-13 20:42:14','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-06-26 21:07:18','2019-06-26 21:07:18',NULL),(129,'https://www.meadowcroftwines.com/sustainable-wines/','51:1b7c410d35826f2ab2fdefeb6251d643',642,'post','page',2,0,NULL,'Meadowcroft offers a variety of sustainably sourced wines for sale. Stock up on your favorites online or visit our Tasting Room to sip something new.','Sustainable Wines','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-13 20:42:14','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,0,2,'2022-11-15 17:51:41','2019-07-05 16:16:21',NULL),(131,'https://www.meadowcroftwines.com/awards-and-news/','49:a61eddf70ab863ad458ce12793e6c8ee',670,'post','page',2,0,'Awards and Ratings - Meadowcroft Wines','Love Meadowcroft Wines? Here are some of our latest ratings and awards on Meadowcroft wines.','Awards and News','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-13 20:42:14','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,0,2,'2022-11-17 23:55:19','2019-09-09 22:52:24',NULL),(132,'https://www.meadowcroftwines.com/?page_id=726','45:a0e6f72f5a6d921add2938773b9de94d',726,'post','page',2,0,'Upcoming Sonoma Wine Events - Meadowcroft Wines','View the upcoming Sonoma wine events at Meadowcroft Wines in Carneros, Sonoma, and Napa areas including special wine tastings, winemaker dinners and more','Winery Events','draft',0,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-13 20:42:14','2024-10-30 21:20:56',1,NULL,NULL,NULL,NULL,0,0,2,'2024-10-30 21:20:56','2019-12-10 21:29:13',0),(140,'https://www.meadowcroftwines.com/category/uncategorized/','56:3e924e5af8f402807e03aed138e17c8f',1,'term','category',NULL,NULL,NULL,NULL,'Uncategorized',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-13 20:42:14','2024-12-11 10:32:13',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-11 10:32:13',NULL,NULL),(141,'https://www.meadowcroftwines.com/category/news/','47:64383ad0bda36aeacfaa007b3bcc6769',2,'term','category',NULL,NULL,NULL,NULL,'News',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-13 20:42:14','2024-12-26 13:12:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-26 13:12:19',NULL,NULL),(142,'https://www.meadowcroftwines.com/recipe_category/appetizers/','60:2715407bbbc211a1511567a9000a0725',3,'term','recipe_category',NULL,NULL,NULL,NULL,'Appetizers',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-13 20:42:14','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2018-11-01 16:45:32','2018-10-15 19:36:54',NULL),(143,'https://www.meadowcroftwines.com/recipe_category/desserts/','58:d551730300f5cbd44df93857a93f51c0',4,'term','recipe_category',NULL,NULL,NULL,NULL,'Desserts',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-13 20:42:14','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2018-11-01 16:44:45','2018-10-15 23:00:00',NULL),(145,NULL,NULL,NULL,'system-page','search-result',NULL,NULL,'You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-13 20:42:15','2022-12-21 18:31:53',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL),(146,NULL,NULL,NULL,'date-archive',NULL,NULL,NULL,'%%date%% %%page%% %%sep%% %%sitename%%','',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-13 20:42:15','2022-12-21 18:31:53',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL),(165,'https://www.meadowcroftwines.com/','33:0d6855806f1f73a87e9820ed7dbee699',NULL,'home-page',NULL,NULL,NULL,'%%sitename%% %%page%% %%sep%% %%sitedesc%%','Award-winning wines from Napa &amp; Sonoma','Home',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,'%%sitename%%','','','0',NULL,NULL,NULL,3,NULL,'2020-10-27 13:20:31','2024-12-31 18:54:36',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-31 18:54:36','2022-04-21 15:30:34',NULL),(300,'https://www.meadowcroftwines.com/teammember/tom-meadowcroft/','60:283c0a56fc497adabaf5b0344e6755ee',954,'post','teammember',2,0,NULL,NULL,'TOM MEADOWCROFT','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-11-04 20:57:19','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,0,2,'2023-02-07 09:52:03','2022-11-04 21:00:41',NULL),(303,'https://www.meadowcroftwines.com/teammember/petar-kirilov/','58:e9f7786abff5918fe696729b5adf345b',957,'post','teammember',2,0,NULL,NULL,'PETAR KIRILOV','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-11-04 21:04:09','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,0,2,'2023-02-06 13:33:07','2022-11-04 21:08:39',NULL),(323,'https://www.meadowcroftwines.com/category/news-updates/','55:862c16b1a9b82cb146acb384e28a0261',7,'term','category',NULL,NULL,NULL,NULL,'News &amp; Updates',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-11-07 22:25:55','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-02-07 11:01:28','2022-04-21 15:30:34',NULL),(326,'https://www.meadowcroftwines.com/category/food-recipes/','55:d9ef7d196cbf0ca396356b801bf2d94c',8,'term','category',NULL,NULL,NULL,NULL,'Food &amp; Recipes',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-11-07 22:35:33','2024-12-26 12:47:38',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-26 12:47:37','2022-06-07 21:51:14',NULL),(699,'https://www.meadowcroftwines.com/tag/cornerstone/','49:cacfadf24a89c31cf194097526463019',9,'term','post_tag',NULL,NULL,NULL,NULL,'Cornerstone',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-12-01 15:03:16','2024-02-28 21:52:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-02-28 21:52:27',NULL,NULL),(700,'https://www.meadowcroftwines.com/tag/life-opens-up/','51:520966b025fb6f154176cafab14daf14',10,'term','post_tag',NULL,NULL,NULL,NULL,'Life Opens Up',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-12-01 15:03:16','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(701,'https://www.meadowcroftwines.com/tag/meadowcroft-wines/','55:60c301fd718307cc2f86ead36e322d66',11,'term','post_tag',NULL,NULL,NULL,NULL,'Meadowcroft Wines',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-12-01 15:03:16','2024-09-05 21:29:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-09-05 21:29:19',NULL,NULL),(702,'https://www.meadowcroftwines.com/tag/sonoma/','44:81f9f7cb0f7b61cdf59589b294515e93',12,'term','post_tag',NULL,NULL,NULL,NULL,'Sonoma',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-12-01 15:03:16','2023-12-28 17:50:40',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-12-28 17:50:39',NULL,NULL),(703,'https://www.meadowcroftwines.com/tag/wine/','42:360b81b666cc34d377d282cf07638afb',13,'term','post_tag',NULL,NULL,NULL,NULL,'Wine',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-12-01 15:03:16','2024-09-05 21:29:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-09-05 21:29:19',NULL,NULL),(725,'https://www.meadowcroftwines.com/tag/sangria/','45:1119182425eabb2a52dda3589c4717a2',16,'term','post_tag',NULL,NULL,NULL,NULL,'Sangria',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-12-01 15:03:44','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(726,'https://www.meadowcroftwines.com/tag/st-patricks-day/','53:be8787c47b2d9a8f901a00687100625c',17,'term','post_tag',NULL,NULL,NULL,NULL,'St Patricks Day',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-12-01 15:03:44','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(727,'https://www.meadowcroftwines.com/tag/st-pattys/','47:f98c19cf520d672b95e219f1be7de306',18,'term','post_tag',NULL,NULL,NULL,NULL,'St Pattys',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-12-01 15:03:44','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(730,'https://www.meadowcroftwines.com/tag/kendall-jackson/','53:a9f5b3dfdaade7e68e0b42af9a00c748',20,'term','post_tag',NULL,NULL,NULL,NULL,'Kendall Jackson',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-12-01 15:03:46','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(731,'https://www.meadowcroftwines.com/tag/taste-of-sonoma/','53:daac37ad0d3bdd88b05376b524a05172',21,'term','post_tag',NULL,NULL,NULL,NULL,'Taste of Sonoma',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-12-01 15:03:46','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(869,'https://www.meadowcroftwines.com/subscribe/','43:880e29a69cf3abc9a9972e379cded1f2',1538,'post','page',2,0,NULL,'Our email subscribers receive priority access to our extremely limited production wines and first look at our vibrant events, both in the tasting room and at Cornerstone Gardens.','Subscribe','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-12-13 00:14:09','2023-06-08 04:10:33',1,NULL,NULL,NULL,NULL,0,0,2,'2023-06-08 04:10:32','2022-12-13 00:16:35',0),(875,'https://www.meadowcroftwines.com/wine-club/','43:fba0e4b0efbbc4ac58ced73ea4c277b4',1554,'post','page',2,0,'Meadowcroft Wine Club Membership | Meadowcroft Wines','Join the Meadowcroft wine club membership to discover limited production wines from Napa and Sonoma, including small lots of Cabernet Sauvignon, Pinot Noir, etc.','Wine Club','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2022-12-29 21:29:53','2024-12-19 18:49:02',1,NULL,NULL,NULL,NULL,0,4,2,'2024-12-19 18:49:02','2022-12-29 21:35:01',0),(879,'https://www.meadowcroftwines.com/holiday-food-pairing-suggestions/','66:03aab677b3961a081394079fc66a35f8',1565,'post','post',3,0,'The Ultimate Guide to Food and Wine Pairing: Elevate Your Palate','Unleash your taste buds with the ultimate guide to food and wine pairing. From savory to sweet, explore the best pairings for a culinary adventure. Elevate your dining experience.','Holiday food pairing suggestions','publish',NULL,0,NULL,NULL,NULL,'holiday food and wine pairing',59,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/food-wine-blog1.jpg',NULL,'1664','featured-image',NULL,NULL,'https://www.meadowcroftwines.com/wp-content/uploads/2023/02/food-wine-blog1.jpg','1664','featured-image','{\"width\":800,\"height\":800,\"filesize\":100276,\"url\":\"https://www.meadowcroftwines.com/wp-content/uploads/2023/02/food-wine-blog1.jpg\",\"path\":\"/nas/content/live/meadowcroftca/wp-content/uploads/2023/02/food-wine-blog1.jpg\",\"size\":\"full\",\"id\":1664,\"alt\":\"Food-wine-pairing-blog\",\"pixels\":640000,\"type\":\"image/jpeg\"}',5,NULL,NULL,'2023-01-02 20:17:37','2024-12-26 12:47:38',1,NULL,NULL,NULL,'BlogPosting',0,4,2,'2024-12-26 12:47:37','2023-01-02 20:24:01',0),(881,'https://www.meadowcroftwines.com/author/david-messerli/','55:9c943c6a63b8d6118d1c1b74b7f182b9',3,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/ec85840931a01ced537bbccc42a22da9?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/ec85840931a01ced537bbccc42a22da9?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2023-01-02 20:24:02','2024-12-27 19:53:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-27 19:53:29','2023-01-02 20:24:01',NULL),(884,'https://www.meadowcroftwines.com/sparkling-wines/','49:45abaf4c71a0044e49a6ec4d7ce488f1',1574,'post','page',2,0,'Buy Best Sparkling Wines in Sonoma County, California','Explore the best sparkling wines Sonoma County has to offer! From crisp Chardonnays to rich Pinot Noirs, find your perfect bottle at our Meadowcroft Wines.','Sparkling Wines','publish',NULL,0,NULL,NULL,NULL,'Sparkling Wines',44,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,NULL,'2023-01-06 23:03:18','2024-12-11 10:30:17',1,NULL,NULL,NULL,NULL,0,2,2,'2024-02-13 10:21:00','2023-01-06 23:04:49',0),(885,'https://www.meadowcroftwines.com/rose-wines/','44:824dd2f51ae75945e3d8e643c7fbbf38',1576,'post','page',2,0,'Discover the Best California Rose Wines | Meadowcroft Wines','Looking for a top-quality California rose wine? From the best wineries to the perfect food pairings, we\'ve got you covered. Click now and have great taste of it.','Rosé Wines','publish',NULL,0,NULL,NULL,NULL,'California Rose Wines',52,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2023-01-07 00:19:27','2024-05-02 17:39:15',1,NULL,NULL,NULL,NULL,0,2,2,'2024-02-13 10:27:25','2023-01-07 00:19:47',0),(886,'https://www.meadowcroftwines.com/wine-club-exclusives/','54:08c2fdf7bc8d644b2966cafa984378f8',1577,'post','page',2,0,'Join Our Wine Club for Exclusive Wine Offerings - Meadowcroft Wines','Elevate your wine collection with our exclusive wine club. Get access to limited-edition bottles and rare blends.','Wine Club Exclusives','publish',NULL,0,NULL,NULL,NULL,'Exclusive Wine Club',34,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-01-07 00:20:13','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,0,2,'2023-03-31 10:49:56','2023-01-07 00:20:40',NULL),(893,'https://www.meadowcroftwines.com/tag/folktable/','47:919771b0c786f86ed39dd0a63f5acd14',33,'term','post_tag',NULL,NULL,NULL,NULL,'Folktable',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-01-16 23:57:25','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-17 00:02:20',NULL,NULL),(894,'https://www.meadowcroftwines.com/tag/restaurant/','48:f8d14b9cdeddfa7e485598b059273cab',34,'term','post_tag',NULL,NULL,NULL,NULL,'restaurant',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-01-16 23:57:25','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-17 00:02:20',NULL,NULL),(895,'https://www.meadowcroftwines.com/tag/flowers/','45:8ed10060dd572e0984e1e5595a0c346e',35,'term','post_tag',NULL,NULL,NULL,NULL,'flowers',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-01-16 23:59:04','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-02-07 09:50:52',NULL,NULL),(900,'https://www.meadowcroftwines.com/tag/fleur-sauvage/','51:e1d484b3d51f7d1b9224b73d0ec844a0',36,'term','post_tag',NULL,NULL,NULL,NULL,'Fleur Sauvage',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-01-23 19:43:37','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-23 20:27:26',NULL,NULL),(901,'https://www.meadowcroftwines.com/tag/valentines-day/','52:678192ca4e18a7328661c91d91194a16',37,'term','post_tag',NULL,NULL,NULL,NULL,'valentine\'s day',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-01-23 19:43:37','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-23 20:27:26',NULL,NULL),(902,'https://www.meadowcroftwines.com/tag/wine-and-chocolate/','56:1815ff4d5eb6b65d0e8bad208449025c',38,'term','post_tag',NULL,NULL,NULL,NULL,'wine and chocolate',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-01-23 19:43:37','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-23 20:27:26',NULL,NULL),(1087,'https://www.meadowcroftwines.com/thank-you/','43:9a28c618eedd1a7022cd5457356b0a82',1799,'post','page',5,0,NULL,NULL,'Thank You','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-02-22 09:51:38','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,0,2,'2023-02-22 10:02:02','2023-02-22 09:52:13',NULL),(1090,'https://www.meadowcroftwines.com/tag/gerards-paella/','52:0c2485c550acb795fcb240857341add6',39,'term','post_tag',NULL,NULL,NULL,NULL,'gerard\'s paella',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-02-22 23:19:09','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-02-22 23:26:28',NULL,NULL),(1093,'https://www.meadowcroftwines.com/author/vishal-mehta/','53:e84269b148610a511e494b63802fbf40',5,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/44cb82d4ded9ca15b4ea4968fa278200?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/44cb82d4ded9ca15b4ea4968fa278200?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2023-03-24 13:08:30','2024-12-26 13:12:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-26 13:12:19','2023-02-22 09:52:13',NULL),(1095,'https://www.meadowcroftwines.com/refreshing-wine-cocktails/','59:a50267e0778eaaecfbd808ef6a7eb38e',1840,'post','post',5,0,'Discover 5 Refreshing Wine Cocktails','Elevate your cocktail game with these 5 refreshing wine cocktails that will tantalize your taste buds and leave you wanting more.','Discover 5 Refreshing Wine Cocktails','publish',NULL,0,NULL,NULL,NULL,'Wine Cocktails',74,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.meadowcroftwines.com/wp-content/uploads/2023/03/Featured-Image-800px.webp',NULL,'1842','featured-image',NULL,NULL,'https://www.meadowcroftwines.com/wp-content/uploads/2023/03/Featured-Image-800px.webp','1842','featured-image','{\"width\":800,\"height\":800,\"filesize\":45442,\"url\":\"https://www.meadowcroftwines.com/wp-content/uploads/2023/03/Featured-Image-800px.webp\",\"path\":\"/nas/content/live/meadowcroftca/wp-content/uploads/2023/03/Featured-Image-800px.webp\",\"size\":\"full\",\"id\":1842,\"alt\":\"5 Refreshing Wine Cocktails\",\"pixels\":640000,\"type\":\"image/webp\"}',2,NULL,NULL,'2023-03-27 10:34:14','2024-12-26 13:12:19',1,NULL,NULL,NULL,NULL,0,7,2,'2024-12-26 13:12:19','2023-03-27 11:05:56',0),(1098,'https://www.meadowcroftwines.com/tag/sonomavalley/','50:37ef7d59a12cae14726f83ad6fbec5d9',40,'term','post_tag',NULL,NULL,NULL,NULL,'sonomavalley',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-03-30 01:12:00','2023-12-28 17:50:40',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-12-28 17:50:39',NULL,NULL),(1099,'https://www.meadowcroftwines.com/tag/sonomawine/','48:17e666bebe75734f6723cc6ade0a7d3e',41,'term','post_tag',NULL,NULL,NULL,NULL,'sonomawine',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-03-30 01:12:00','2023-10-12 22:34:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-10-12 22:34:15',NULL,NULL),(1100,'https://www.meadowcroftwines.com/tag/sonomamusic/','49:672516d17ab28ae42c5efe09a8bb5cf5',42,'term','post_tag',NULL,NULL,NULL,NULL,'sonomamusic',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-03-30 01:12:00','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-04-27 22:43:33',NULL,NULL),(1101,'https://www.meadowcroftwines.com/tag/livemusic/','47:bf5f52cd900107482180b1bcfb3aa368',43,'term','post_tag',NULL,NULL,NULL,NULL,'livemusic',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-03-30 01:12:00','2023-08-08 21:12:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-08-08 21:12:56',NULL,NULL),(1103,'https://www.meadowcroftwines.com/history-and-tradition-of-making-red-wine/','74:e13d4cd38c627396869cc55fa66cb2f4',1859,'post','post',5,0,'An Exploration of the History and Tradition of Making Red Wine','Discover the captivating history and tradition behind the art of red wine making. Unveil the secrets of the finest grapes, fermenting techniques, & more in this in-depth exploration.','An Exploration of the History and Tradition of Making Red Wine','publish',NULL,0,NULL,NULL,NULL,'Making Red Wine',65,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.meadowcroftwines.com/wp-content/uploads/2023/04/Sonoma-Valley-Meadowcroft-Wines-2.webp',NULL,'1866','featured-image',NULL,NULL,'https://www.meadowcroftwines.com/wp-content/uploads/2023/04/Sonoma-Valley-Meadowcroft-Wines-2.webp','1866','featured-image','{\"width\":800,\"height\":800,\"filesize\":83154,\"url\":\"https://www.meadowcroftwines.com/wp-content/uploads/2023/04/Sonoma-Valley-Meadowcroft-Wines-2.webp\",\"path\":\"/nas/content/live/meadowcroftca/wp-content/uploads/2023/04/Sonoma-Valley-Meadowcroft-Wines-2.webp\",\"size\":\"full\",\"id\":1866,\"alt\":\"Sonoma Valley - Meadowcroft Wines\",\"pixels\":640000,\"type\":\"image/webp\"}',2,NULL,NULL,'2023-04-08 09:39:54','2023-05-17 12:20:41',1,NULL,NULL,NULL,NULL,0,6,2,'2023-05-17 12:20:39','2023-04-10 11:00:03',NULL),(1111,'https://www.meadowcroftwines.com/collection/','47:0301b8ce37c204a4d99d9309b51351b7',1885,'post','page',0,0,NULL,NULL,'Collection','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 17:56:24','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 17:56:23','2023-05-02 17:56:23',NULL),(1112,'https://www.meadowcroftwines.com/product/','44:43273c6dca4a5e8ccdcd7afee232438d',1886,'post','page',0,0,NULL,NULL,'Product','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 17:56:24','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 17:56:24','2023-05-02 17:56:24',NULL),(1113,'https://www.meadowcroftwines.com/cart/','41:9e4cc1ee8c5b086b8868f4d41d8b7ff1',1887,'post','page',0,0,NULL,NULL,'Cart','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 17:56:25','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 17:56:24','2023-05-02 17:56:24',NULL),(1114,'https://www.meadowcroftwines.com/checkout/','45:4ba524ab60101fbb925ad6f4bd81b680',1888,'post','page',0,0,NULL,NULL,'Checkout','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 17:56:25','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 17:56:25','2023-05-02 17:56:25',NULL),(1115,'https://www.meadowcroftwines.com/profile/','44:44772d3b4c7a6fe1b06e1e34cf844f04',1889,'post','page',0,0,NULL,NULL,'Profile','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2023-05-02 17:56:26','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 17:56:25','2023-05-02 17:56:25',NULL),(1116,'https://www.meadowcroftwines.com/club/','41:8ac6bf35b99121d36f04815f6b324c55',1890,'post','page',0,0,NULL,NULL,'Club','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 17:56:26','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 17:56:26','2023-05-02 17:56:26',NULL),(1117,'https://www.meadowcroftwines.com/reservation/','48:2fb8177878b2230b074943dcff62b671',1891,'post','page',0,0,NULL,NULL,'Reservation','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 17:56:27','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 17:56:26','2023-05-02 17:56:26',NULL),(1118,'https://www.meadowcroftwines.com/access-denied/','50:fd304041a67cc0e420562daa0fe54a96',1892,'post','page',0,0,NULL,NULL,'Access Denied','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2023-05-02 17:56:27','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 17:56:27','2023-05-02 17:56:27',NULL),(1348,'https://www.meadowcroftwines.com/product/','41:5865337cffc2e71bb8f18f01c1adb04e',NULL,'post-type-archive','product',NULL,NULL,'%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%','','Products',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-05-02 18:13:38','2024-12-31 18:54:36',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-31 18:54:36','2023-05-02 18:11:49',NULL),(1349,'https://www.meadowcroftwines.com/collection/','44:6a2ab561ef625ed36568cd0475b50bc2',NULL,'post-type-archive','collection',NULL,NULL,'%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%','','Collections',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-05-02 18:13:38','2024-11-18 22:18:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-18 22:18:16',NULL,NULL),(1637,'https://www.meadowcroftwines.com/collection/wines/','50:d9f5bec44ee046d83e4e9b65450e8333',2980,'post','collection',1,0,NULL,NULL,'Wines','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 19:47:28','2023-11-16 19:04:01',1,NULL,NULL,NULL,NULL,0,0,2,'2023-11-16 19:04:01','2023-05-02 19:41:16',0),(1638,'https://www.meadowcroftwines.com/collection/wine-club-exclusives/','65:05a771961960e2a0a6a4cca7bb2e93ab',2979,'post','collection',1,0,NULL,NULL,'Wine Club Exclusives','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 19:47:28','2023-06-13 10:14:27',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:15','2023-05-02 19:41:15',NULL),(1639,'https://www.meadowcroftwines.com/collection/tastings-glasses/','64:b6d672d60563cdc5aa91162259eb4469',2977,'post','collection',1,0,NULL,NULL,'Tastings &#038; Glasses','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 19:47:28','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:14','2023-05-02 19:41:14',NULL),(1640,'https://www.meadowcroftwines.com/collection/white/','50:e4feb97afbf72c822737464b1c409489',2978,'post','collection',1,0,NULL,NULL,'White Wines','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 19:47:28','2023-06-13 10:14:27',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:14','2023-05-02 19:41:14',NULL),(1641,'https://www.meadowcroftwines.com/collection/ros-wines/','57:a9019490b6c4fbf958abb48aa31c1d5e',2975,'post','collection',1,0,NULL,NULL,'Rosé Wines','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 19:47:28','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:13','2023-05-02 19:41:13',NULL),(1642,'https://www.meadowcroftwines.com/collection/sparkling-champagne/','67:f874634c1d31e50a949af2ca6921ec64',2976,'post','collection',1,0,NULL,NULL,'Sparkling Wines','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 19:47:28','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,0,2,'2023-05-02 19:57:02','2023-05-02 19:41:13',NULL),(1643,'https://www.meadowcroftwines.com/collection/gifts/','50:b7c2418951144165d5936f5eac744b43',2973,'post','collection',1,0,NULL,NULL,'Gifts &amp; Bundles','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 19:47:28','2024-10-31 21:16:54',1,NULL,NULL,NULL,NULL,0,0,2,'2024-10-31 21:16:54','2023-05-02 19:41:12',0),(1644,'https://www.meadowcroftwines.com/collection/red/','48:718a2463c93bef31239b77e87e8d93d7',2974,'post','collection',1,0,NULL,NULL,'Red Wines','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 19:47:28','2023-08-01 20:20:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-08-01 20:20:23','2023-05-02 19:41:12',0),(1645,'https://www.meadowcroftwines.com/collection/current-releases/','64:88f22e37118dd6772fa7ee2e778acecf',2971,'post','collection',1,0,NULL,NULL,'Current Releases','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 19:47:28','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:11','2023-05-02 19:41:11',NULL),(1646,'https://www.meadowcroftwines.com/collection/fees/','52:31326905c84d31fed2c0ac3ac0a7b5b6',2972,'post','collection',1,0,NULL,NULL,'Fees','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 19:47:28','2023-05-09 23:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:11','2023-05-02 19:41:11',NULL),(1647,'https://www.meadowcroftwines.com/product/blanc-de-noir-rose/','60:b167df4a2e8a59f56f1165083c919253',2792,'post','product',1,0,'Blanc de Noir Rosé - Handcrafted with Napa Valley Grapes','Enjoy the crisp, refreshing taste of our handcrafted Blanc de Noir Rosé. Made from premium Napa Valley grapes, this wine is perfect for any occasion. Order now from Meadowcroft Wines.','Blanc de Noirs Rosé','publish',NULL,0,NULL,NULL,NULL,'Blanc de Noir Rosé',49,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:30:20','2024-02-01 22:35:28',1,NULL,NULL,NULL,NULL,0,0,2,'2024-02-01 22:35:28','2023-05-02 19:40:48',0),(1648,'https://www.meadowcroftwines.com/product/z2-2-bottle/','53:fa6cf87edd6759275ef35db9189bbf65',2967,'post','product',1,0,NULL,NULL,'Z2-2 Bottle','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:31:38','2023-06-13 17:41:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:10','2023-05-02 19:41:10',NULL),(1649,'https://www.meadowcroftwines.com/product/z2-4-bottle/','53:6b305291e92e800bb64f31841fb0ae8a',2968,'post','product',1,0,NULL,NULL,'Z2-4 Bottle','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:31:38','2023-06-13 17:41:51',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:10','2023-05-02 19:41:10',NULL),(1650,'https://www.meadowcroftwines.com/product/z2-6-bottle/','53:2554b2ae985659a74b1228918392bffb',2969,'post','product',1,0,NULL,NULL,'Z2-6 Bottle','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:31:38','2023-06-13 17:41:51',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:10','2023-05-02 19:41:10',NULL),(1651,'https://www.meadowcroftwines.com/product/z2-highlands-5/','56:b56f9d99b2e371f496a309decc6802cd',2970,'post','product',1,0,NULL,NULL,'Z2-Highlands $5','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:31:38','2023-06-13 17:41:51',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:10','2023-05-02 19:41:10',NULL),(1652,'https://www.meadowcroftwines.com/product/z1-2-bottle/','53:5eb7042da4bb865c5e4d73d900b20695',2962,'post','product',1,0,NULL,NULL,'Z1-2 Bottle','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:31:38','2023-06-13 17:40:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:09','2023-05-02 19:41:09',NULL),(1653,'https://www.meadowcroftwines.com/product/z1-4-bottle/','53:00447b7b64a5caeded1170f1c77b1a89',2963,'post','product',1,0,NULL,NULL,'Z1-4 Bottle','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:31:38','2023-06-13 17:40:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:09','2023-05-02 19:41:09',NULL),(1654,'https://www.meadowcroftwines.com/product/z1-6-bottle/','53:2bfba48ae337bbccdae5e200683517b9',2964,'post','product',1,0,NULL,NULL,'Z1-6 Bottle','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:31:38','2023-06-13 17:40:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:09','2023-05-02 19:41:09',NULL),(1655,'https://www.meadowcroftwines.com/product/z2-1-bottle/','53:53685ba79942b97a8312da18f9c74625',2965,'post','product',1,0,NULL,NULL,'Z2-1 Bottle','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:31:38','2023-06-13 17:41:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:09','2023-05-02 19:41:09',NULL),(1656,'https://www.meadowcroftwines.com/product/z2-12-bottle/','54:f626538cf8300cf757e8c96f351dfca6',2966,'post','product',1,0,NULL,NULL,'Z2-12 Bottle','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:31:38','2023-06-13 17:41:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:09','2023-05-02 19:41:09',NULL),(1657,'https://www.meadowcroftwines.com/product/z1-1-bottle/','53:3feae99f69c4d8966db9d7583375a6f8',2961,'post','product',1,0,NULL,NULL,'Z1-1 Bottle','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:31:38','2023-06-13 17:31:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:09','2023-05-02 19:41:09',NULL),(1658,'https://www.meadowcroftwines.com/product/womens-polo-t-shirt/','61:8e9f9f74976de86307fe852f5d6f29e9',2956,'post','product',1,0,NULL,NULL,'Women&#8217;s POLO T Shirt','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:31:38','2024-01-14 02:08:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 02:08:00','2023-05-02 19:41:08',0),(1659,'https://www.meadowcroftwines.com/product/womens-t-shirt/','56:4b6fc8ce97d353c240d4d10d2be346a2',2957,'post','product',1,0,NULL,NULL,'Women&#8217;s T Shirt','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:31:38','2024-01-14 02:10:46',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 02:10:46','2023-05-02 19:41:08',0),(1660,'https://www.meadowcroftwines.com/product/women-s-t-shirt/','57:0ccc02822ffcf37d65545bd124399a1c',2958,'post','product',1,0,NULL,NULL,'Women&#8217;s T-Shirt','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:31:38','2023-06-13 17:30:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:08','2023-05-02 19:41:08',NULL),(1661,'https://www.meadowcroftwines.com/product/wood-handle-cheese-knife/','66:24fe9a0661bf07be8ae772ae3035c972',2959,'post','product',1,0,NULL,NULL,'Wood Handle Cheese Knife','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:31:38','2023-06-13 17:31:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:08','2023-05-02 19:41:08',NULL),(1662,'https://www.meadowcroftwines.com/product/z1-12-bottle/','54:10fca27b27f2c0849eaa4e1e48266292',2960,'post','product',1,0,NULL,NULL,'Z1- 12 Bottle','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:31:38','2023-06-13 17:31:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:08','2023-05-02 19:41:08',NULL),(1663,'https://www.meadowcroftwines.com/product/12-glass/','50:d42335fcf694039c7271ac47d6d7ad1e',2946,'post','product',1,0,NULL,NULL,'Wine By The Glass','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:31:38','2024-05-27 23:47:51',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-05-27 23:47:51','2023-05-02 19:41:07',0),(1664,'https://www.meadowcroftwines.com/product/wine-charms/','53:10add30a9e0533955af92be28b42148a',2947,'post','product',1,0,NULL,NULL,'Wine Charms','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:31:38','2023-06-13 17:00:47',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:07','2023-05-02 19:41:07',NULL),(1665,'https://www.meadowcroftwines.com/product/wine-club-pick-up-no-tasting/','70:4dde20297cd052ffa46c83b3d0923e1b',2948,'post','product',1,0,NULL,NULL,'Wine Club Pick Up &#8211; No Tasting','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:31:38','2023-05-22 17:44:58',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-22 17:44:58','2023-05-02 19:41:07',NULL),(1666,'https://www.meadowcroftwines.com/product/wine-taste-companion/','62:6bfbb283c55f01803226431ec4a8a4da',2949,'post','product',1,0,NULL,NULL,'Wine Taste Companion','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:31:38','2024-01-14 01:39:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 01:39:23','2023-05-02 19:41:07',0),(1667,'https://www.meadowcroftwines.com/product/wine-tote-insulated-12-bottle-with-wheels/','83:0e2a5461bda910f697891ba0e418c176',2950,'post','product',1,0,NULL,NULL,'Wine tote &#8211; insulated 12 bottle with wheels','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:31:38','2023-06-13 17:01:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:07','2023-05-02 19:41:07',NULL),(1668,'https://www.meadowcroftwines.com/product/flatbreads-rosemary-olive-oil/','71:d0875f341c9b983dabd35e5a69c68e50',2810,'post','product',1,0,NULL,NULL,'Crackers, Flatbreads- Rosemary &amp; Olive oil','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:31:49','2024-10-18 20:33:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-10-18 20:33:23','2023-05-02 19:40:50',0),(1669,'https://www.meadowcroftwines.com/product/rose-bundle-2023/','58:3f81f0eb866ae95ec3628deda960004e',2799,'post','product',1,0,'Bouquet of Rose - Sonoma County-California | Meadowcroft Wines','Bouquet of Rose, a delightful collection of exquisite Rose wines. Discover the perfect blend of elegance and flavor. Order now!','Bouquet of Rose','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:31:49','2024-10-20 23:45:20',1,NULL,NULL,NULL,NULL,0,0,2,'2024-10-20 23:45:20','2023-05-02 19:40:49',0),(1670,'https://www.meadowcroftwines.com/product/2022-river-trace-ros/','62:9d5811e82df3a184d81c4f0b8b38ae1a',2772,'post','product',1,0,NULL,'Experience the essence of summer with our 2022 River Trace Rosé. Crafted with care by Meadowcroft Wines, this refreshing rosé embodies the vibrant flavors of the season. Order now and savor the taste of sunshine in every sip.','2022 River Trace Rosé','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:31:49','2024-04-23 07:39:08',1,NULL,NULL,NULL,NULL,0,0,2,'2024-04-23 07:39:08','2023-05-02 19:40:46',0),(1671,'https://www.meadowcroftwines.com/product/2022-ros-of-pinot-noir/','64:a101b051314594400a0957ec1657f8fc',2773,'post','product',1,0,NULL,'Experience the delicate flavors of our 2022 Rosé of Pinot Noir from Sonoma Coast. Meadowcroft Wines presents a refreshing blend with hints of strawberries and citrus. Order now for a delightful tasting experience.','2022 Rosé of Pinot Noir, Sonoma Coast','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:31:49','2024-07-08 23:24:54',1,NULL,NULL,NULL,NULL,0,0,2,'2024-07-08 23:24:54','2023-05-02 19:40:46',0),(1672,'https://www.meadowcroftwines.com/product/2021-river-trace-ros-grenache-syrah-malbec/','84:6f1496bdf40cd15c8711ebbcd1b2ab84',2759,'post','product',1,0,NULL,NULL,'2021 River Trace Rosé','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:31:49','2023-09-05 17:54:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-09-05 17:54:18','2023-05-02 19:40:45',0),(1673,'https://www.meadowcroftwines.com/product/2021-ros-of-pinot-noir-sonoma-coast/','77:24d48479360f388145951560e8a3055a',2760,'post','product',1,0,'Rosé of Pinot Noir-Sonoma County-California | Meadowcroft Wines','Indulge in the exquisite 2021 Rosé of Pinot Noir. Delicate, refreshing, and perfectly crafted. Discover the essence of rosé sophistication.','2021 Rosé of Pinot Noir, Sonoma Coast','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:31:49','2024-04-09 20:31:40',1,NULL,NULL,NULL,NULL,0,0,2,'2024-04-09 20:31:40','2023-05-02 19:40:45',0),(1674,'https://www.meadowcroftwines.com/product/2020-ros-of-malbec-clements-hill/','74:1f28110467c87f5192726eb3457699b4',2735,'post','product',1,0,NULL,NULL,'2020 Rosé of Malbec Clements Hill','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:31:49','2023-06-12 12:33:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:49','2023-05-02 19:40:42',0),(1675,'https://www.meadowcroftwines.com/product/2020-ros-of-pinot-noir-sonoma-coast/','77:65fd1c75d7cd48a399c0aea2e7d6b778',2736,'post','product',1,0,NULL,NULL,'2020 Rosé of Pinot Noir, Sonoma Coast','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:31:49','2023-06-12 12:33:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:49','2023-05-02 19:40:42',0),(1676,'https://www.meadowcroftwines.com/product/2005-cabernet-sauvignon-mt-veeder-estate/','82:48a5ff4d10aa0d596a053d576c825d30',2629,'post','product',1,0,NULL,NULL,'2005 Cabernet Sauvignon, Mt. Veeder Estate','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:33:27','2024-11-29 18:28:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-29 18:28:18','2023-05-02 19:40:30',0),(1677,'https://www.meadowcroftwines.com/product/2006-mt-veeder-cabernet-sauvignon/','75:50911ab67eff6d7df2c4ca667d380c0a',2630,'post','product',1,0,NULL,NULL,'2006 Cabernet Sauvignon, Mt. Veeder Estate','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:33:27','2024-11-29 18:28:35',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-29 18:28:35','2023-05-02 19:40:30',0),(1678,'https://www.meadowcroftwines.com/product/2007-cabernet-sauvignon-mt-veeder-estate/','82:8a28dcf861a10ba7af0ad414006e454c',2631,'post','product',1,0,NULL,NULL,'2007 Cabernet Sauvignon, Mt. Veeder Estate','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 20:33:27','2023-06-12 12:32:37',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:32:36','2023-05-02 19:40:30',0),(1679,'https://www.meadowcroftwines.com/product/wine-tote-washable-paper/','66:19cebfdff58c45bc8264341ca937e01d',2951,'post','product',1,0,NULL,NULL,'Wine Tote &#8211; washable paper','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:41:45','2023-06-13 17:01:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:07','2023-05-02 19:41:07',NULL),(1680,'https://www.meadowcroftwines.com/product/wine-travel-silicon-cup/','65:983a25227c794b4bcd96338aab8a46e7',2952,'post','product',1,0,NULL,NULL,'Wine Travel Silicon Tumbler','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:41:45','2024-01-14 02:16:46',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 02:16:46','2023-05-02 19:41:07',0),(1681,'https://www.meadowcroftwines.com/product/winter-whites-chardonnay-bundle/','73:1fc8c3881941f91d55a9531935bc522c',2953,'post','product',1,0,NULL,NULL,'Winter whites Chardonnay Bundle','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:41:45','2024-04-19 20:35:14',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-04-19 20:35:14','2023-05-02 19:41:07',0),(1682,'https://www.meadowcroftwines.com/product/gift-pack-sauv-blanc-and-anniversary-cuvee/','84:48320cb66c11ff7631a810136be75ff6',2827,'post','product',1,0,NULL,NULL,'Gift Pack Sauv Blanc and Anniversary Cuvee','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:41:55','2023-06-13 13:20:14',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:52','2023-05-02 19:40:52',NULL),(1683,'https://www.meadowcroftwines.com/product/blancs-de-blancs/','58:029d2522f37169506e81d9874782e3e6',2793,'post','product',1,0,'Blancs de Blancs - Premium Sparkling Wine from Sonoma Valley','Savor the crisp, refreshing taste of Meadowcroft Wines Blancs de Blancs - a premium sparkling wine made from the finest Chardonnay grapes in Sonoma Valley. Order now.','Blanc de Blancs','publish',NULL,0,NULL,NULL,NULL,'Blancs de Blancs',49,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:41:55','2024-09-24 19:43:43',1,NULL,NULL,NULL,NULL,0,0,2,'2024-09-24 19:43:43','2023-05-02 19:40:48',0),(1684,'https://www.meadowcroftwines.com/product/2022-pinot-blanc/','58:21a8f631c34575702b99fffc1fa89b2a',2769,'post','product',1,0,NULL,'Indulge in the refined excellence of our 2022 Pinot Blanc from Rivino Vineyard. Meadowcroft Wines offers a symphony of flavors in every sip. Order now to experience elegance!','2022 Pinot Blanc, Rivino Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:41:55','2024-07-08 23:38:59',1,NULL,NULL,NULL,NULL,0,0,2,'2024-07-08 23:38:58','2023-05-02 19:40:46',0),(1685,'https://www.meadowcroftwines.com/product/2022-sauvignon-blanc-sonoma-coast/','75:35b4da29ba7fe7015c9603928d23e229',2775,'post','product',1,0,'Meadowcroft Wines | 2022 Sauvignon Blanc | Sonoma Valley','Discover the bright and refreshing 2022 Sauvignon Blanc from Meadowcroft Wines, crafted with grapes from the Sonoma Valley. Order online today!','2022 Sauvignon Blanc, Sonoma Coast','publish',NULL,0,NULL,NULL,NULL,'2022 Sauvignon Blanc',46,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:41:55','2023-09-27 19:18:25',1,NULL,NULL,NULL,NULL,0,0,2,'2023-09-27 19:18:25','2023-05-02 19:40:46',0),(1686,'https://www.meadowcroftwines.com/product/2021-sauvignon-blanc-sonoma-coast/','75:0e3e941813fccf082b11115eda058e9e',2762,'post','product',1,0,NULL,NULL,'2021 Sauvignon Blanc, Sonoma Coast','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:41:55','2023-06-12 12:34:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:34:02','2023-05-02 19:40:45',0),(1687,'https://www.meadowcroftwines.com/product/2021-pinot-blanc-rivino-vineyard/','74:19be61fbb55858b2a811bba93d77c7a3',2752,'post','product',1,0,'2021 Pinot Blanc from Sonoma County - Meadowcroft Wines\"','Discover the crisp elegance of our 2021 Pinot Blanc from Sonoma County. Experience a refreshing and vibrant wine that embodies the essence of Meadowcroft Wines','2021 Pinot Blanc, Rivino Vineyard','publish',NULL,0,NULL,NULL,NULL,'2021 Pinot Blanc',49,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:41:55','2023-08-31 20:22:32',1,NULL,NULL,NULL,NULL,0,0,2,'2023-08-31 20:22:32','2023-05-02 19:40:44',0),(1688,'https://www.meadowcroftwines.com/product/2020-sonoma-coast-sauvignon-blanc/','75:f011c9df49b03a2683a48adee52ab4c5',2740,'post','product',1,0,NULL,NULL,'2020 Sauvignon Blanc, Sonoma Coast','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:41:55','2023-06-12 12:33:51',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:51','2023-05-02 19:40:43',0),(1689,'https://www.meadowcroftwines.com/product/2020-pinot-blanc-rivino-vineyard-mendocino/','84:bf95cfea9b9648c4ddb2c707462949a9',2728,'post','product',1,0,NULL,NULL,'2020 Pinot Blanc, Rivino Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:41:55','2023-06-12 12:33:46',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:46','2023-05-02 19:40:41',0),(1690,'https://www.meadowcroftwines.com/product/2019-sauvignon-blanc-napa-valley-shiner/','81:3d0b4ac736570d346850d4f52d0aa406',2707,'post','product',1,0,NULL,NULL,'2019 Sauvignon Blanc, Napa Valley **SHINER**','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:41:55','2023-06-12 12:33:36',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:36','2023-05-02 19:40:39',0),(1691,'https://www.meadowcroftwines.com/product/winter-whites-mixed-bundle-duplicate/','78:20e793b44d3d096ec0583296ce00da19',2954,'post','product',1,0,NULL,NULL,'Winter Whites Mixed 6 Pack Bundle','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:47:34','2024-04-19 20:35:47',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-04-19 20:35:47','2023-05-02 19:41:07',0),(1692,'https://www.meadowcroftwines.com/product/winter-whites-mixed-bundle/','68:6c70e21a9c5fd1db80c0a24246adfeb0',2955,'post','product',1,0,NULL,NULL,'Winter Whites Mixed Bundle','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:47:34','2024-04-19 20:35:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-04-19 20:35:54','2023-05-02 19:41:07',0),(1693,'https://www.meadowcroftwines.com/product/5-00-glass-deposit/','60:9f4f808fdad85ff832f8b2557bd959f1',2628,'post','product',1,0,NULL,NULL,'$5.00 Glass Deposit','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:48:22','2023-06-12 12:32:34',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:32:33','2023-05-02 19:40:30',0),(1694,'https://www.meadowcroftwines.com/product/2007-1-5-liter-meadowcroft-mt-veeder-cabernet/','87:2524b8361ab56299405b1fed32a12c9e',2632,'post','product',1,0,NULL,NULL,'2007 Cabernet Sauvignon, Mt. Veeder Estate 1.5L','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:48:22','2023-06-12 12:32:38',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:32:37','2023-05-02 19:40:31',0),(1695,'https://www.meadowcroftwines.com/product/2008-mt-veeder-cabernet-sauvignon/','75:3e1e62338f89a2fefed5982dd387c9da',2633,'post','product',1,0,NULL,NULL,'2008 Cabernet Sauvignon, Mt. Veeder Estate','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:48:22','2023-06-12 12:32:39',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:32:38','2023-05-02 19:40:31',0),(1696,'https://www.meadowcroftwines.com/product/2009-mount-veeder-cabernet-3l/','71:061bf25034cd54d2245c666776f8f8ba',2634,'post','product',1,0,NULL,NULL,'2009 Cabernet Sauvignon, Mt. Veeder Estate 3L','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:48:22','2023-06-12 12:32:40',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:32:39','2023-05-02 19:40:31',0),(1697,'https://www.meadowcroftwines.com/product/2009-mt-veeder-cabernet-sauvignon/','75:d2406ebd00ad532bf4cdc2af25f73729',2635,'post','product',1,0,NULL,NULL,'2009 Cabernet Sauvignon, Mt. Veeder Estate','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:48:22','2023-06-12 12:32:40',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:32:40','2023-05-02 19:40:31',0),(1698,'https://www.meadowcroftwines.com/product/2009-1-5-liter-meadowcroft-mt-veeder-cabernet/','87:3be60f34a564c6465d474690509c0335',2636,'post','product',1,0,NULL,NULL,'2009 Cabernet Sauvignon, Mt. Veeder Estate 1.5L','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:48:22','2023-06-12 12:32:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:32:40','2023-05-02 19:40:31',0),(1699,'https://www.meadowcroftwines.com/product/2009-cabernet-sauvignon-mt-veeder-estate-375ml/','88:814d7f327e27b31f896d5f6040e4162a',2637,'post','product',1,0,NULL,NULL,'2009 Cabernet Sauvignon, Mt. Veeder Estate 375ml','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:48:22','2023-06-12 12:32:42',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:32:41','2023-05-02 19:40:31',0),(1700,'https://www.meadowcroftwines.com/product/2009-meadowcroft-sonoma-valley-sangiovese/','83:423f98ef032cd1e7ba82feac600ef11f',2638,'post','product',1,0,NULL,NULL,'2009 Sangiovese, Sonoma Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:48:22','2023-06-12 12:32:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:32:42','2023-05-02 19:40:32',0),(1701,'https://www.meadowcroftwines.com/product/2010-cabernet-sauvignon-oak-knoll-reserve/','83:5dd7fd28046bdc73ce6d5080e5cac2e9',2639,'post','product',1,0,NULL,NULL,'2010 Cabernet Sauvignon, Oak Knoll Reserve','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:48:22','2023-11-14 19:24:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-11-14 19:24:03','2023-05-02 19:40:32',0),(1702,'https://www.meadowcroftwines.com/product/2010-sangiovese-sonoma-valley/','71:b0005c3d0629051e9e585b8da83e6ac8',2640,'post','product',1,0,NULL,NULL,'2010 Sangiovese, Sonoma Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:48:22','2023-06-12 12:32:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:32:44','2023-05-02 19:40:32',0),(1703,'https://www.meadowcroftwines.com/product/2011-cabernet-sauvignon-mt-veeder-estate/','82:81cc00548a467778c195d7470945cc11',2641,'post','product',1,0,NULL,NULL,'2011 Cabernet Sauvignon, Mt. Veeder Estate','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:48:22','2023-06-12 12:32:46',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:32:45','2023-05-02 19:40:32',0),(1704,'https://www.meadowcroftwines.com/product/2012-cabernet-sauvignon-mt-veeder-estate-15l/','86:835bcaf9733a870e00d8489266cf5280',2642,'post','product',1,0,'Discover the Richness of 2012 Cabernet Sauvignon | Mt. Veeder Estate','Immerse yourself in the opulence of our 2012 Cabernet Sauvignon from Mt. Veeder Estate. Experience the perfect blend of bold flavors and refined elegance.','2012 Cabernet Sauvignon, Mt. Veeder 1.5 liter','publish',NULL,0,NULL,NULL,NULL,'2012 Cabernet Sauvignon',38,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:48:22','2023-08-08 12:46:44',1,NULL,NULL,NULL,NULL,0,0,2,'2023-08-08 12:46:43','2023-05-02 19:40:32',0),(1705,'https://www.meadowcroftwines.com/product/2012-mt-veeder-cabernet-sauvignon/','75:9a441e7fce28b38d92155af82e03d7bd',2643,'post','product',1,0,NULL,NULL,'2012 Cabernet Sauvignon, Mt. Veeder Estate','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:48:22','2024-01-05 20:41:14',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-05 20:41:14','2023-05-02 19:40:32',0),(1706,'https://www.meadowcroftwines.com/product/2012-mt-vedeer-3l/','59:0dd71dbb9c2c752760d9851143861945',2644,'post','product',1,0,NULL,NULL,'2012 Cabernet Sauvignon, Mt. Veeder Estate 3L','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:48:22','2023-06-12 12:32:48',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:32:47','2023-05-02 19:40:32',0),(1707,'https://www.meadowcroftwines.com/product/2012-cabernet-sauvignon-napa-valley-college/','85:2c47d79063f20c6b1ff938a781602958',2645,'post','product',1,0,NULL,NULL,'2012 Cabernet Sauvignon, Napa Valley College','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:48:22','2023-06-12 12:32:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:32:48','2023-05-02 19:40:32',0),(1708,'https://www.meadowcroftwines.com/product/2012-cabernet-sauvignon-sonoma-county/','79:94e567526dad3ced631d9a72af99fcdf',2646,'post','product',1,0,NULL,NULL,'2012 Cabernet Sauvignon, Sonoma County','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:48:22','2023-11-14 19:24:30',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-11-14 19:24:30','2023-05-02 19:40:32',0),(1709,'https://www.meadowcroftwines.com/product/2013-cabernet-franc-giles-vineyard/','76:554b293cb73c29b6c5313c1224da3e3c',2647,'post','product',1,0,NULL,NULL,'2013 Cabernet Franc, Giles Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:48:22','2023-06-12 12:32:51',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:32:50','2023-05-02 19:40:32',0),(1710,'https://www.meadowcroftwines.com/product/2013-cabernet-sauvignon-mt-veeder-estate/','82:40a8b82ffe51797e44fbdddf272af4e8',2648,'post','product',1,0,NULL,NULL,'2013 Cabernet Sauvignon, Mt. Veeder Estate','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:48:22','2023-11-14 20:13:22',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-11-14 20:13:22','2023-05-02 19:40:32',0),(1711,'https://www.meadowcroftwines.com/product/2013-cabernet-sauvignon-mt-veeder-estate-1-5l-duplicate/','97:abea039ee9d5e4fdc931f28ec8661149',2649,'post','product',1,0,NULL,NULL,'2013 Cabernet Sauvignon, Mt. Veeder Estate 1.5L','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:48:22','2023-06-12 12:32:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:32:52','2023-05-02 19:40:32',0),(1712,'https://www.meadowcroftwines.com/product/2014-cabernet-sauvignon-mt-veeder-estate/','82:89314fd5f35867a37aadc242d7cfcdca',2650,'post','product',1,0,NULL,NULL,'2014 Cabernet Sauvignon, Mt. Veeder Estate','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:48:22','2023-06-12 12:32:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:32:53','2023-05-02 19:40:33',0),(1713,'https://www.meadowcroftwines.com/product/2014-cabernet-sauvignon-napa-valley/','77:995283acab1f6107078057c39627cae1',2651,'post','product',1,0,NULL,NULL,'2014 Cabernet Sauvignon, Napa Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:48:22','2023-11-14 19:25:14',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-11-14 19:25:14','2023-05-02 19:40:33',0),(1714,'https://www.meadowcroftwines.com/product/2014-cornerstone-vineyards-pinot-noir/','79:6f71d61bae20f05191e5ed0170c698c6',2652,'post','product',1,0,NULL,NULL,'2014 Pinot Noir, Cornerstone Vineyards','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:48:22','2023-06-12 12:32:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:32:55','2023-05-02 19:40:33',0),(1715,'https://www.meadowcroftwines.com/product/2014-zinfandel-speedy-creek-vineyard/','78:624abc5b0d628a917ea2830c7eb5e549',2653,'post','product',1,0,NULL,NULL,'2014 Zinfandel, Speedy Creek Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:48:22','2023-09-05 17:55:09',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-09-05 17:55:09','2023-05-02 19:40:33',0),(1716,'https://www.meadowcroftwines.com/product/2015-cabernet-sauvignon-mt-veeder-estate/','82:4ccc8f5d46e8823f2c4e5af15ad4affa',2654,'post','product',1,0,NULL,NULL,'2015 Cabernet Sauvignon, Mt. Veeder Estate','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:48:22','2023-06-12 12:32:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:32:56','2023-05-02 19:40:33',0),(1717,'https://www.meadowcroftwines.com/product/2015-louvau-vineyard-dry-creek-zinfandel/','82:fe2cec00116b07f9aaed6fdfb4f451b4',2655,'post','product',1,0,NULL,NULL,'2015 Zinfandel, Louvau Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 21:48:22','2024-01-14 01:22:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 01:22:00','2023-05-02 19:40:33',0),(1718,'https://www.meadowcroftwines.com/product/2021-roussanne-wyldvin-vineyard/','73:4bb98bf5eeb3723c378528dfe4c9b584',2761,'post','product',1,0,'2021 Roussanne from Sonoma County - Meadowcroft Wines','Experience the alluring flavors of our 2021 Roussanne from Sonoma County. Delight in the harmonious blend of floral notes and luscious fruit, meticulously crafted by Meadowcroft Wines','2021 Roussanne','publish',NULL,0,NULL,NULL,NULL,'2021 Roussanne',49,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-02 22:16:27','2023-08-08 12:34:45',1,NULL,NULL,NULL,NULL,0,0,2,'2023-08-08 12:34:44','2023-05-02 19:40:45',0),(1719,'https://www.meadowcroftwines.com/product/wine-food-pairing-magnet/','66:ca215aa0babc97c12bda88f9ced10366',2943,'post','product',1,0,NULL,NULL,'Wine &#038; Food Pairing Magnet','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:21','2023-06-13 16:58:37',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:06','2023-05-02 19:41:06',NULL),(1720,'https://www.meadowcroftwines.com/product/meadowcroft-wine-aerator-dup/','70:d0cabc87ede6b111e9f747d0eb6440c1',2944,'post','product',1,0,NULL,NULL,'Wine Aerator','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:21','2023-06-13 16:58:37',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:06','2023-05-02 19:41:06',NULL),(1721,'https://www.meadowcroftwines.com/product/wine-bags-4-bottle-logo/','65:811ddfa9226d75f106ba046fecb8634e',2945,'post','product',1,0,NULL,NULL,'Wine Bags &#8211; 4 Bottle &#8211; Logo','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:21','2023-06-13 16:58:37',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:06','2023-05-02 19:41:06',NULL),(1722,'https://www.meadowcroftwines.com/product/non-member-visitor/','60:f09f5c6db04e3cd7d1dc638b544f5d2d',2939,'post','product',1,0,NULL,NULL,'Visitor- Non Member','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:21','2023-06-13 16:43:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:06','2023-05-02 19:41:06',NULL),(1723,'https://www.meadowcroftwines.com/product/wine-club-member-visitor/','66:0c3dd9f3171191e9fe1372b4199991e5',2940,'post','product',1,0,NULL,NULL,'Visitor- Wine Club Member','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:21','2023-06-13 16:48:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:06','2023-05-02 19:41:06',NULL),(1724,'https://www.meadowcroftwines.com/product/white-wine-blind-tasting-kit/','70:2081406a218eb2531d2552528857a5f0',2941,'post','product',1,0,NULL,NULL,'White Wine Blind Tasting Kit','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:21','2024-11-11 18:03:27',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 18:03:27','2023-05-02 19:41:06',0),(1725,'https://www.meadowcroftwines.com/product/wine-cheese-pairing-wheel/','67:1a50438b3699718e11b3aed37bedc7df',2942,'post','product',1,0,NULL,NULL,'Wine &#038; Cheese Pairing Wheel','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:21','2023-06-13 16:48:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:06','2023-05-02 19:41:06',NULL),(1726,'https://www.meadowcroftwines.com/product/two-for-one-seated-tasting/','68:5915491d843d7b65556ef06513d75d3d',2931,'post','product',1,0,NULL,NULL,'Two For One Seated Tasting','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:21','2023-06-13 16:42:34',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:05','2023-05-02 19:41:05',NULL),(1727,'https://www.meadowcroftwines.com/product/ups-shipping/','54:322edd4240b4fe992f5e96832cc398dd',2932,'post','product',1,0,NULL,NULL,'UPS Shipping','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:21','2023-06-13 16:42:34',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:05','2023-05-02 19:41:05',NULL),(1728,'https://www.meadowcroftwines.com/product/wine-candy-pairing/','60:145cbc161c76adbcbc64535684c4aeb4',2933,'post','product',1,0,NULL,NULL,'Valentine&#8217;s Day Wine &amp; Chocolate Pairing','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:21','2023-05-20 23:43:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-20 23:43:02','2023-05-02 19:41:05',NULL),(1729,'https://www.meadowcroftwines.com/product/vest-ladies-soft-shell/','64:a7937ebc1d2cf23572e4ee1c84185040',2934,'post','product',1,0,NULL,NULL,'Vest &#8211; ladies soft shell','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:21','2023-06-13 16:43:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:05','2023-05-02 19:41:05',NULL),(1730,'https://www.meadowcroftwines.com/product/vest-fleece/','53:81d324e21f60e5fd87b6cc9e8aa1adb9',2935,'post','product',1,0,NULL,NULL,'Vest- fleece','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:21','2024-01-14 02:14:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 02:14:57','2023-05-02 19:41:05',0),(1731,'https://www.meadowcroftwines.com/product/vineyard-tour/','55:36a267e2522e4262c1cd7b3741355e9b',2936,'post','product',1,0,NULL,NULL,'Vineyard Tour','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:21','2024-05-16 17:39:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-05-16 17:39:32','2023-05-02 19:41:05',0),(1733,'https://www.meadowcroftwines.com/product/virtual-custom-curated-experience/','75:6399c5f80c719688de34e103a8364db9',2938,'post','product',1,0,NULL,NULL,'Virtual Custom/ Curated Experience','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:21','2023-06-13 16:43:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:05','2023-05-02 19:41:05',NULL),(1734,'https://www.meadowcroftwines.com/product/taste-of-meadowcroft/','62:30156544fb03744850a53648205ff215',2926,'post','product',1,0,NULL,NULL,'Taste of Meadowcroft','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:32','2023-06-13 16:33:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:04','2023-05-02 19:41:04',NULL),(1735,'https://www.meadowcroftwines.com/product/a-perfect-blend-duplicate/','67:d5223a5d55072201b47dac46d6929718',2927,'post','product',1,0,NULL,NULL,'Taste of Meadowcroft','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:32','2024-04-18 17:57:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-04-18 17:57:25','2023-05-02 19:41:04',0),(1737,'https://www.meadowcroftwines.com/product/tour-2-half-glasses/','61:a423dfc48666313abd5430a6e0ccf460',2929,'post','product',1,0,NULL,NULL,'Tour 2 Half Glasses','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:32','2023-06-13 16:42:09',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:04','2023-05-02 19:41:04',NULL),(1738,'https://www.meadowcroftwines.com/product/truffle-oil-sampler-set/','65:2f573928a9565a95d22ac089d5604719',2930,'post','product',1,0,NULL,NULL,'Truffle Oil sampler set','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:32','2024-01-14 02:22:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 02:22:55','2023-05-02 19:41:04',0),(1739,'https://www.meadowcroftwines.com/product/stemless-glass1/','57:9d6865f83adc2717c564d64a352d166a',2922,'post','product',1,0,NULL,NULL,'Stemless Glass','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:32','2023-06-13 16:12:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:03','2023-05-02 19:41:03',NULL),(1740,'https://www.meadowcroftwines.com/product/stemless-glass/','56:b79164b072b66da771c01d302027a950',2923,'post','product',1,0,NULL,NULL,'Stemless Logo Glass','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:32','2023-06-13 16:12:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:03','2023-05-02 19:41:03',NULL),(1741,'https://www.meadowcroftwines.com/product/stemmed-logo-glass/','60:63dd1db726ba4cbf951b586d314dd307',2924,'post','product',1,0,NULL,NULL,'Stemmed Logo Glass','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:32','2023-06-13 16:33:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:03','2023-05-02 19:41:03',NULL),(1742,'https://www.meadowcroftwines.com/product/12-pack-shipper/','57:91a05fdd10fdfd009a8bf8d8fec3d550',2925,'post','product',1,0,NULL,NULL,'Styrofoam Shippers','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:32','2023-06-13 16:33:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:03','2023-05-02 19:41:03',NULL),(1743,'https://www.meadowcroftwines.com/product/social-bee-necklace/','61:88ba2f2781fcc8db99c7dee87f176850',2918,'post','product',1,0,NULL,NULL,'Social Bee Necklace','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:32','2024-01-14 01:38:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 01:38:24','2023-05-02 19:41:02',0),(1744,'https://www.meadowcroftwines.com/product/sonoma-spice-queen-bbq-spice/','70:f0bd4a57a06825ac43389585141f7131',2919,'post','product',1,0,NULL,NULL,'Sonoma Spice Queen BBQ Spice','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:32','2023-06-13 16:11:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:02','2023-05-02 19:41:02',NULL),(1745,'https://www.meadowcroftwines.com/product/sonoma-spice-queen-mulling-spice/','74:7b1c3b2de5f78fd0e03a4502abc5d099',2920,'post','product',1,0,NULL,NULL,'Sonoma Spice Queen Mulling Spice','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:32','2023-06-13 16:11:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:02','2023-05-02 19:41:02',NULL),(1746,'https://www.meadowcroftwines.com/product/sparkling-cocktail-kit/','64:5a79382caa40862ff9bf768a3050abaa',2921,'post','product',1,0,NULL,NULL,'Sparkling Cocktail Kit','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:32','2023-06-13 16:12:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:02','2023-05-02 19:41:02',NULL),(1747,'https://www.meadowcroftwines.com/product/small-bee-candle/','58:9ce10484a3d4abfc8bd5778922390cef',2915,'post','product',1,0,NULL,NULL,'Small Bee Candle','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:32','2023-06-13 16:02:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:01','2023-05-02 19:41:01',NULL),(1748,'https://www.meadowcroftwines.com/product/social-bee-bracelet-assorted/','70:bc14ad70674298e506db284e9b73da35',2916,'post','product',1,0,NULL,NULL,'Social Bee Bracelet &#8211; Assorted','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:32','2024-01-14 01:36:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 01:36:41','2023-05-02 19:41:01',0),(1749,'https://www.meadowcroftwines.com/product/social-bee-earrings/','61:b49a7639400bfd78aa44f5c2e87aaad9',2917,'post','product',1,0,NULL,NULL,'Social Bee Earrings','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:32','2024-01-14 01:38:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 01:38:08','2023-05-02 19:41:01',0),(1750,'https://www.meadowcroftwines.com/product/single-bottle-box_black/','65:f90e6a79f93b3d9dd5e2cb5a32d87598',2913,'post','product',1,0,NULL,NULL,'Single Bottle Box_Black','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:32','2023-06-13 15:57:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:01','2023-05-02 19:41:01',NULL),(1751,'https://www.meadowcroftwines.com/product/single-bottle-textured-bag/','68:6beaf625d984b5415e55cb0aaa9809bb',2914,'post','product',1,0,NULL,NULL,'SINGLE BOTTLE TEXTURED BAG','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:32','2023-06-13 16:02:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:01','2023-05-02 19:41:01',NULL),(1752,'https://www.meadowcroftwines.com/product/salami-red-wine-garlic/','64:5b541ca0cdb816218176026af745f30e',2904,'post','product',1,0,NULL,NULL,'Salami &#8211; Red Wine &amp; Garlic','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:32','2024-01-14 02:15:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 02:15:44','2023-05-02 19:41:00',0),(1753,'https://www.meadowcroftwines.com/product/salami-white-wine-fennel/','66:eb2a4a33ed67a9935b7cdfe03a00cde1',2905,'post','product',1,0,NULL,NULL,'Salami &#8211; White Wine &amp; Fennel','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-04 19:43:32','2024-01-14 02:15:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 02:15:54','2023-05-02 19:41:00',0),(1754,'https://www.meadowcroftwines.com/product/2021-meadowcroft-chardonnay-vino-del-sol-vineyard-sonoma-coast/','104:3c537d47eef062078f28fb1d86eb5468',2750,'post','product',1,0,'2021 Chardonnay, Vino Del Sol Vineyard from Sonoma County - Meadowcroft Wines','Unveiling the distinctive character of our 2021 Chardonnay, Vino Del Sol Vineyard from Sonoma County. Experience the exquisite blend of flavors and the essence of Meadowcroft Wines','2021 Chardonnay, Vino Del Sol Vineyard','publish',NULL,0,NULL,NULL,NULL,'2021 Chardonnay',32,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-09 23:28:33','2023-09-06 20:49:36',1,NULL,NULL,NULL,NULL,0,0,2,'2023-09-06 20:49:36','2023-05-02 19:40:44',0),(1755,'https://www.meadowcroftwines.com/product/2019-mt-veeder-cabernet-sauvignon/','75:9bd86b03e99db5e4efb43b03b9bfb30f',2689,'post','product',1,0,'2019 Mt. Veeder Cabernet Sauvignon - Premium Napa Valley Red Wine','Discover the Exquisite 2019 Mt. Veeder Cabernet Sauvignon! Indulge in the Finest Napa Valley Red Wine from Meadowcroft Wines. Order Now!','2019 Cabernet Sauvignon, Mt. Veeder Estate','publish',NULL,0,NULL,NULL,NULL,'2019 Mt. Veeder Cabernet Sauvignon',42,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-09 23:47:53','2023-08-08 12:36:40',1,NULL,NULL,NULL,NULL,0,0,2,'2023-08-08 12:36:39','2023-05-02 19:40:37',0),(1756,'https://www.meadowcroftwines.com/product/2020-meadowcroft-sangiovese-speedy-creek-vineyard-sonoma-county/','105:6372d0bf09a84abacdbbbfb0abd8525d',2739,'post','product',1,0,'2020 Meadowcroft Sangiovese | Sonoma County | Meadowcroft Wines','Experience the rich flavors of our 2020 Meadowcroft Sangiovese from Speedy Creek Vineyard in Sonoma County. Indulge in the essence of Sonoma with every sip. Order now!','2020 Sangiovese, Speedy Creek Vineyard','publish',NULL,0,NULL,NULL,NULL,'2020 Meadowcroft Sangiovese',42,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-09 23:54:42','2023-09-27 19:25:56',1,NULL,NULL,NULL,NULL,0,0,2,'2023-09-27 19:25:56','2023-05-02 19:40:43',0),(1757,'https://www.meadowcroftwines.com/product/french-colombard/','58:9ec76ade46802456c0527bda18984914',2751,'post','product',1,0,'French Colombard Wine from Sonoma Valley | Meadowcroft Wines','Discover the exquisite taste of French Colombard wine from Meadowcroft Wines in Sonoma Valley. Order online now and experience the perfect balance of fruity and floral aromas.','2021 French Colombard','publish',NULL,0,NULL,NULL,NULL,'French Colombard Wine',49,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-10 00:00:14','2023-09-05 17:54:30',1,NULL,NULL,NULL,NULL,0,0,2,'2023-09-05 17:54:30','2023-05-02 19:40:44',0),(1758,'https://www.meadowcroftwines.com/product/the-magi/','50:e34b469fb5c4872126ec3fd8d26e169d',2763,'post','product',1,0,'Discover the Magic of \"The Magi\" | Meadowcroft Wines','Immerse yourself in the enchantment of \"The Magi\" by Meadowcroft Wines. Experience the captivating flavors of this exquisite wine, crafted with passion and expertise.','2021 The Magi','publish',NULL,0,NULL,NULL,NULL,'The Magi',46,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-10 00:35:08','2023-08-29 00:02:12',1,NULL,NULL,NULL,NULL,0,0,2,'2023-08-29 00:02:12','2023-05-02 19:40:45',0),(1759,'https://www.meadowcroftwines.com/product/2019-sonoma-coast-pinot-noir/','70:b23c49c0a6ded5100352d8d8874fa71e',2702,'post','product',1,0,'Deliciously Bold 2019 Sonoma Coast Pinot Noir | Meadowcroft Wines','Indulge in the Sensational Taste of Deliciously Bold 2019 Sonoma Coast Pinot Noir! Discover the Perfect Blend at Meadowcroft Wines.','2019 Pinot Noir, Sonoma Coast','publish',NULL,0,NULL,NULL,NULL,'Sonoma Coast Pinot Noir',42,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-10 00:35:57','2023-09-03 23:38:34',1,NULL,NULL,NULL,NULL,0,0,2,'2023-09-03 23:38:34','2023-05-02 19:40:38',0),(1760,'https://www.meadowcroftwines.com/product/blending-experience-additional-bottle/','79:144aebe808f37e662acb6660b3725c30',2794,'post','product',1,0,NULL,NULL,'Blending Experience Additional Bottle','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-10 00:43:03','2024-01-14 01:18:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 01:18:44','2023-05-02 19:40:48',0),(1761,'https://www.meadowcroftwines.com/product/meadowcroft-plush-dog-toy/','67:7b85e9ca8394ea0ba807ea7467a40613',2892,'post','product',1,0,NULL,NULL,'Plush Dog Toy','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-10 01:45:44','2023-10-06 18:58:21',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-10-06 18:58:21','2023-05-02 19:40:58',0),(1762,'https://www.meadowcroftwines.com/product/2018-mt-veeder-cabernet-sauvignon/','75:33fa0eeba1489cbbe2cdcd67ce9ba2ae',2675,'post','product',1,0,'Award-Winning 2018 Mt. Veeder Cabernet Sauvignon | Meadowcroft Wines','Savor the bold flavors of our 2018 Mt. Veeder Cabernet Sauvignon. Handcrafted by Meadowcroft Wines in Sonoma County, CA. Order now for a taste of exceptional craftsmanship.','2018 Cabernet Sauvignon, Mt. Veeder Estate','publish',NULL,0,NULL,NULL,NULL,'2018 Mt. Veeder Cabernet Sauvignon',35,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-10 02:45:44','2023-08-11 19:39:27',1,NULL,NULL,NULL,NULL,0,0,2,'2023-08-11 19:39:27','2023-05-02 19:40:36',0),(1763,'https://www.meadowcroftwines.com/product/2018-zinfandel-speedy-creek-vineyard/','78:ab96aef4f05591e30853226c281eb790',2685,'post','product',1,0,'Exquisite 2018 Zinfandel Speedy Creek Vineyard | Meadowcroft Wines','Indulge in the exquisite flavors of our 2018 Zinfandel Speedy Creek Vineyard. Crafted with care at Meadowcroft Wines in Sonoma County, California.','2018 Zinfandel, Speedy Creek Vineyard','publish',NULL,0,NULL,NULL,NULL,'2018 Zinfandel Speedy Creek Vineyard',35,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-10 03:18:47','2023-10-03 21:16:51',1,NULL,NULL,NULL,NULL,0,0,2,'2023-10-03 21:16:51','2023-05-02 19:40:37',0),(1764,'https://www.meadowcroftwines.com/product/2021-chardonnay-carneros/','66:f8fef6aedf4d26ea7c8291930d778a0b',2749,'post','product',1,0,'2021 Chardonnay, Napa Carneros from Sonoma County - Meadowcroft Wines','Embrace the elegance of our 2021 Chardonnay, Napa Carneros from Sonoma County. Discover a refined wine that showcases the terroir of the region, created by Meadowcroft Wines','2021 Chardonnay, Carneros','publish',NULL,0,NULL,NULL,NULL,'2021 chardonnay carneros',38,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-10 03:34:37','2023-09-03 23:39:35',1,NULL,NULL,NULL,NULL,0,0,2,'2023-09-03 23:39:35','2023-05-02 19:40:44',0),(1765,'https://www.meadowcroftwines.com/product/2019-cabernet-sauvignon-oakville/','74:f5d7bad7111f553577aa0ec2b09ccfe5',2691,'post','product',1,0,'Award-Winning 2019 Cabernet Sauvignon from Oakville | Meadowcroft Wines','Savor the excellence of our award-winning 2019 Cabernet Sauvignon from Oakville. Experience the rich flavors and elegance of this exceptional wine at Meadowcroft Wines in Sonoma County, CA. Order now for a memorable tasting journey.','2019 Cabernet Sauvignon, Oakville','publish',NULL,0,NULL,NULL,NULL,'2019 Cabernet Sauvigno',26,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-10 03:53:35','2023-08-11 20:20:39',1,NULL,NULL,NULL,NULL,0,0,2,'2023-08-11 20:20:39','2023-05-02 19:40:37',0),(1766,'https://www.meadowcroftwines.com/product/2020-pinot-noir-russian-river-valley/','78:15ceb1532d2ae98a0a81c0f30628eeee',2733,'post','product',1,0,'2020 Pinot Noir from Russian River Valley - Meadowcroft Wines','Discover the exquisite flavors of our 2020 Pinot Noir from Russian River Valley at Meadowcroft Wines. Experience the essence of Sonoma County, California. Order now!','2020 Pinot Noir, Russian River Valley','publish',NULL,0,NULL,NULL,NULL,'Russian River Valley',46,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-10 03:58:05','2023-10-03 21:16:28',1,NULL,NULL,NULL,NULL,0,0,2,'2023-10-03 21:16:28','2023-05-02 19:40:42',0),(1767,'https://www.meadowcroftwines.com/product/2020-cabernet-sauvignon-napa-valley/','77:9c3cd45776c2a6d0923ab24f65d08f32',2716,'post','product',1,0,'Discover the Richness of 2020 Cabernet Sauvignon from Napa Valley','Immerse yourself in the opulence of our 2020 Cabernet Sauvignon from Napa Valley. Experience the exquisite flavors and aromas of this renowned vintage. Order now for an unforgettable wine journey.','2020 Cabernet Sauvignon, Napa Valley','publish',NULL,0,NULL,NULL,NULL,'2020 Cabernet Sauvignon',38,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-10 05:15:07','2023-11-16 17:55:30',1,NULL,NULL,NULL,NULL,0,0,2,'2023-11-16 17:55:30','2023-05-02 19:40:40',0),(1768,'https://www.meadowcroftwines.com/product/meadowcroft-saber-and-sparkling-gift-set/','82:bcabf43b484a583fdd274b4b68f48380',2869,'post','product',1,0,NULL,NULL,'Meadowcroft Sabre and Sparkling Gift Set','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-10 13:54:22','2023-10-06 23:07:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-10-06 23:07:29','2023-05-02 19:40:56',0),(1769,'https://www.meadowcroftwines.com/product/2019-cabernet-sauvignon-nelson-ranch-vineyard/','87:a09ef88d842b58cd2996941cf26301e3',2688,'post','product',1,0,'Premium 2019 Cabernet Sauvignon from Nelson Ranch Vineyard','Experience the elegance of our 2019 Cabernet Sauvignon from Nelson Ranch Vineyard. Crafted with care, this premium wine offers rich flavors and a smooth finish. Order now from Meadowcroft Wines.','2019 Cabernet Sauvignon, Nelson Ranch Vineyard','publish',NULL,0,NULL,NULL,NULL,'2019 Cabernet Sauvignon',46,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-10 17:06:22','2023-12-20 21:10:01',1,NULL,NULL,NULL,NULL,0,0,2,'2023-12-20 21:10:01','2023-05-02 19:40:37',0),(1770,'https://www.meadowcroftwines.com/product/2020-zinfandel-mae-vineyard/','69:86abfe0348bc5f3c1c1f58577e969e83',2743,'post','product',1,0,'Buy 2020 Zinfandel Mae Vineyard | Meadowcroft Wines, Sonoma County','Discover the bold flavors of our 2020 Zinfandel Mae Vineyard. Handcrafted with care in Sonoma County. Shop now and experience the essence of California winemaking.','2020 Zinfandel, Mae Vineyard','publish',NULL,0,NULL,NULL,NULL,'2020 Zinfandel Mae Vineyard',38,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-10 21:01:56','2024-04-09 20:42:32',1,NULL,NULL,NULL,NULL,0,0,2,'2024-04-09 20:42:32','2023-05-02 19:40:43',0),(1771,'https://www.meadowcroftwines.com/product/anniversary-cuv-e/','59:f4ae8f9fc82105a383dab0511ad56f7b',2785,'post','product',1,0,'Celebrate with Meadowcroft Wines | Anniversary Cuvée | Sonoma County','Raise a glass and toast to special moments with Meadowcroft Wines\' Anniversary Cuvée. Handcrafted in Sonoma County, this exceptional wine is the perfect choice for celebrations and memorable occasions.','Anniversary Cuvée &#8211; 20 Years','publish',NULL,0,NULL,NULL,NULL,'Anniversary Cuvée',35,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-10 21:28:07','2024-06-13 20:15:24',1,NULL,NULL,NULL,NULL,0,0,2,'2024-06-13 20:15:24','2023-05-02 19:40:47',0),(1772,'https://www.meadowcroftwines.com/product/2023-spring-club-pick-up-party-open-house/','83:d33822463047a0c57fee443507977686',2995,'post','product',1,0,NULL,NULL,'2023 Spring Club Pick Up Party &amp; Open House','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-10 21:37:38','2023-06-16 22:25:27',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-16 22:25:27','2023-05-10 21:37:38',0),(1773,'https://www.meadowcroftwines.com/product/all-she-wrote/','55:026e37f5cf7a54c98794187a37bdab0c',2784,'post','product',1,0,'All She Wrote | Meadowcroft Wines | Sonoma County, CA','Experience the allure of All She Wrote by Meadowcroft Wines. Discover this exquisite Sonoma County, CA wine with its rich flavors and smooth finish. Order online now for a captivating wine experience.','All She Wrote Port Style Wine','publish',NULL,0,NULL,NULL,NULL,'All She Wrote',49,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-10 23:00:53','2024-11-14 23:00:02',1,NULL,NULL,NULL,NULL,0,0,2,'2024-11-14 23:00:02','2023-05-02 19:40:47',0),(1774,'https://www.meadowcroftwines.com/product/2020-river-trace-gsm/','62:af97035a059b4281401fa94121845c09',2734,'post','product',1,0,'2020 River Trace GSM | Premium Sonoma County Wine | Meadowcroft Wines','Discover the Exquisite Flavors of 2020 River Trace GSM Wine! Indulge in Premium Sonoma County Elegance at Meadowcroft Wines.','2020 River Trace GSM','publish',NULL,0,NULL,NULL,NULL,'2020 River Trace GSM',46,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-10 23:48:04','2023-11-24 18:04:57',1,NULL,NULL,NULL,NULL,0,0,2,'2023-11-24 18:04:57','2023-05-02 19:40:42',0),(1775,'https://www.meadowcroftwines.com/product/cabernet-bundle-2/','59:e36648b9cd0350112c682c080629d5b0',2860,'post','product',1,0,NULL,NULL,'Meadowcroft Cabernet Bundle #2','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 04:30:01','2024-11-11 18:00:30',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 18:00:30','2023-05-02 19:40:55',0),(1776,'https://www.meadowcroftwines.com/product/gift-card-electronic/','62:46f775e77e2382e91a1e26e68cdb9f27',2826,'post','product',1,0,NULL,NULL,'Gift Card &#8211; Electronic','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 05:35:53','2023-06-13 13:04:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:52','2023-05-02 19:40:52',NULL),(1777,'https://www.meadowcroftwines.com/product/2020-pinot-noir-anderson-valley-black-screw-cap/','89:ff71735a4ba75db23109d3d6830d3a60',2730,'post','product',1,0,NULL,NULL,'2020 Pinot Noir, Anderson Valley ** Black Screw Cap**','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 07:03:02','2023-06-12 12:33:47',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:46','2023-05-02 19:40:42',0),(1778,'https://www.meadowcroftwines.com/product/2020-chardonnay-taylor-s-crown-vineyard/','81:58faa11e1c52efa5c8ed335324c9269d',2725,'post','product',1,0,NULL,NULL,'2020 Chardonnay, Taylor&#8217;s Crown Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:03','2023-08-31 20:45:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-08-31 20:45:18','2023-05-02 19:40:41',0),(1779,'https://www.meadowcroftwines.com/product/6-bottle-gift-box/','59:04a82965176ffa9fe49efd899c47e26f',2867,'post','product',1,0,NULL,NULL,'Meadowcroft Mixed 6 Bottle Gift Box','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:04','2024-11-11 18:02:05',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 18:02:05','2023-05-02 19:40:56',0),(1780,'https://www.meadowcroftwines.com/product/2016-meadowcroft-russian-river-valley-chardonnay/','90:f8c4aea13eefffbd1054a83c5fdc628f',2663,'post','product',1,0,NULL,NULL,'2016 Chardonnay, Russian River Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:05','2023-06-12 12:33:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:05','2023-05-02 19:40:34',0),(1781,'https://www.meadowcroftwines.com/product/2019-zinfandel-speedy-creek-vineyard/','78:66c712891a5f047325d681334560979a',2709,'post','product',1,0,NULL,'Savor the bold essence of our 2019 Zinfandel from Speedy Creek Vineyard.Experience the bold and distinctive flavors of Meadowcroft Wines.','2019 Zinfandel, Speedy Creek Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:06','2024-07-08 23:24:35',1,NULL,NULL,NULL,NULL,0,0,2,'2024-07-08 23:24:35','2023-05-02 19:40:39',0),(1782,'https://www.meadowcroftwines.com/product/2019-sangiovese-speedy-creek-vineyard/','79:4591354b8c2eb46db8c7e823dff02e8d',2706,'post','product',1,0,NULL,NULL,'2019 Sangiovese, Speedy Creek Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:07','2023-08-31 20:42:42',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-08-31 20:42:42','2023-05-02 19:40:39',0),(1783,'https://www.meadowcroftwines.com/product/meadowcroft-chocolate-sauce/','69:6c61c5844dc88571c4eb2f469ea92e57',2862,'post','product',1,0,NULL,NULL,'Meadowcroft Chocolate Sauce','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:10','2023-06-13 14:52:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:55','2023-05-02 19:40:55',NULL),(1784,'https://www.meadowcroftwines.com/product/2020-rutherford-cabernet-sauvignon/','76:e01049884b92fa9cfe06cc84508bada2',2738,'post','product',1,0,NULL,'Experience the allure of our 2020 Cabernet Sauvignon from Rutherford. Meadowcroft Wines invites you to savor the rich flavors of this exceptional vintage.','2020 Cabernet Sauvignon, Rutherford','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:12','2024-09-29 17:12:38',1,NULL,NULL,NULL,NULL,0,0,2,'2024-09-29 17:12:37','2023-05-02 19:40:43',0),(1785,'https://www.meadowcroftwines.com/product/2019-anderson-valley-pinot-noir/','73:932d5fc8693ce808e1c75435af3c6d10',2699,'post','product',1,0,NULL,NULL,'2019 Pinot Noir, Anderson Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:13','2023-06-12 12:33:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:31','2023-05-02 19:40:38',0),(1786,'https://www.meadowcroftwines.com/product/2018-cru-de-la-ruche-malbec/','69:3f3332544d9551c958ec02cc364aaa5f',2680,'post','product',1,0,NULL,NULL,'2018 Cru de la Ruche Malbec','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:14','2023-06-12 12:33:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:19','2023-05-02 19:40:36',0),(1787,'https://www.meadowcroftwines.com/product/2019-chardonnay-napa-valley-375ml/','75:5b4b1bb8e1e3333624f62f5eb63d50a6',2695,'post','product',1,0,NULL,NULL,'2019 Chardonnay, Napa Valley 375mL','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:15','2023-09-06 20:50:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-09-06 20:50:31','2023-05-02 19:40:38',0),(1788,'https://www.meadowcroftwines.com/product/12-glass-of-red/','57:e406922b9f8d987c55a4df74abaaee78',2831,'post','product',1,0,NULL,NULL,'Glass of Red','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:16','2023-06-13 13:20:14',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:53','2023-05-02 19:40:53',NULL),(1789,'https://www.meadowcroftwines.com/product/2021-pinot-noir-russian-river-valley/','78:bf52ca4d34f2dbaedcc18a28fd0bd93f',2756,'post','product',1,0,NULL,NULL,'2021 Pinot Noir, Russian River Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:17','2023-11-13 21:50:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-11-13 21:50:06','2023-05-02 19:40:44',0),(1790,'https://www.meadowcroftwines.com/product/airbnb-blending/','57:76ba46d78518691c1a73a8458f28d314',2783,'post','product',1,0,NULL,NULL,'AirBnB Blending','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:19','2023-06-13 11:11:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:47','2023-05-02 19:40:47',NULL),(1791,'https://www.meadowcroftwines.com/product/meadowcroft-honey/','59:68a22b67752fca5f6d4f3e94b481b3cd',2836,'post','product',1,0,NULL,NULL,'Honey','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:20','2023-06-13 13:33:36',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:53','2023-05-02 19:40:53',NULL),(1792,'https://www.meadowcroftwines.com/product/2021-pinot-noir-vina-del-sol-sonoma-coast/','83:99a9b7502a219d29971b5247ffc2709f',2758,'post','product',1,0,NULL,NULL,'2021 Pinot Noir, Viña Del Sol Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:20','2023-09-03 23:32:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-09-03 23:32:26','2023-05-02 19:40:45',0),(1793,'https://www.meadowcroftwines.com/product/2020-cabernet-sauvignon-oakville-shiner/','81:8e25bb3ed64784dc485a666edd2d6886',2719,'post','product',1,0,NULL,NULL,'2020 Cabernet Sauvignon, Oakville ** SHINER**','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:21','2023-06-12 12:33:42',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:41','2023-05-02 19:40:41',0),(1794,'https://www.meadowcroftwines.com/product/2022-pinot-gris-nelson-ranch-vineyard/','79:5f3374b0d36949902df246ec1be18dab',2770,'post','product',1,0,NULL,NULL,'2022 Pinot Gris, Nelson Ranch Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:26','2024-05-03 19:38:27',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-05-03 19:38:27','2023-05-02 19:40:46',0),(1795,'https://www.meadowcroftwines.com/product/2016-mt-veeder-cabernet-sauvignon/','75:33a199cd70f75a0861e69821936c8b1c',2659,'post','product',1,0,NULL,NULL,'2016 Cabernet Sauvignon, Mt. Veeder Estate','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:26','2023-06-12 12:33:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:01','2023-05-02 19:40:33',0),(1796,'https://www.meadowcroftwines.com/product/2016-cabernet-sauvignon-napa-valley/','77:4a803ce116078e3f775895fe0209c1ac',2660,'post','product',1,0,NULL,NULL,'2016 Cabernet Sauvignon, Napa Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:27','2023-06-12 12:33:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:02','2023-05-02 19:40:34',0),(1797,'https://www.meadowcroftwines.com/product/meadowcroft-melange-red-blend/','71:00344cd89ddc248d4cff93c75db57a21',2727,'post','product',1,0,NULL,NULL,'2020 Melange Red Blend, Dry Creek Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:29','2023-07-05 23:49:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-07-05 23:49:16','2023-05-02 19:40:41',0),(1798,'https://www.meadowcroftwines.com/product/2021-cabernet-sauvignon-wyldvin-vineyard/','82:68a9e0868dacc6ab68971bfac2bcb1d1',2746,'post','product',1,0,NULL,NULL,'2021 Cabernet Sauvignon, Wyldvin Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:31','2024-05-03 20:30:39',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-05-03 20:30:39','2023-05-02 19:40:43',0),(1799,'https://www.meadowcroftwines.com/product/meadowcroft-black-and-white-cap/','73:d9819c21ccf52b82f48ed4c70e2b1671',2852,'post','product',1,0,NULL,NULL,'Meadowcroft Black and White Cap','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:33','2023-06-13 14:18:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:55','2023-05-02 19:40:55',NULL),(1800,'https://www.meadowcroftwines.com/product/reusable-wine-sleeve/','62:546366c883c03b09ee2dc1398c3a7d22',2900,'post','product',1,0,NULL,NULL,'Reusable Wine Sleeve','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:33','2024-01-14 02:15:12',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 02:15:12','2023-05-02 19:40:59',0),(1801,'https://www.meadowcroftwines.com/product/2021-cabernet-franc-rivino-vineyard/','77:0ef0c3c9415fcba8bd836ca17021c0d2',2744,'post','product',1,0,NULL,NULL,'2021 Cabernet Franc, Rivino Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:35','2024-05-03 19:33:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-05-03 19:33:33','2023-05-02 19:40:43',0),(1802,'https://www.meadowcroftwines.com/product/air-balloon-and-blending-experience-wine-club/','87:e5291f2b179a13be5e01b7fd12bf2df6',2782,'post','product',1,0,NULL,NULL,'Air Balloon and Blending Experience &#8211; Wine Club','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:40','2023-06-13 10:56:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:47','2023-05-02 19:40:47',NULL),(1803,'https://www.meadowcroftwines.com/product/cheese-plate/','54:fd6ef01ff68553b1b59699df059774dd',2802,'post','product',1,0,NULL,NULL,'Cheese Plate','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:45','2024-05-27 23:48:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-05-27 23:48:54','2023-05-02 19:40:49',0),(1804,'https://www.meadowcroftwines.com/product/2017-cabernet-sauvignon-mt-veeder-estate/','82:f0a5dc0cfd9f0b120ce1d3098a93993b',2670,'post','product',1,0,NULL,NULL,'2017 Cabernet Sauvignon, Mt. Veeder Estate','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:45','2023-11-14 20:14:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-11-14 20:14:07','2023-05-02 19:40:35',0),(1805,'https://www.meadowcroftwines.com/product/15-glass-meadowcroft-mt-veeder/','72:d941c2e53d1d819be10dedfb8b6139cf',2830,'post','product',1,0,NULL,NULL,'Glass Meadowcroft Mt. Veeder','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:47','2023-06-13 13:20:14',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:53','2023-05-02 19:40:53',NULL),(1806,'https://www.meadowcroftwines.com/product/2017-cabernet-sauvignon-louvau-vineyard/','81:4951cfd42721372a287ad9e6ab4e66a4',2692,'post','product',1,0,NULL,NULL,'2017 Cabernet Sauvignon, Louvau Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:48','2024-01-05 20:52:46',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-05 20:52:46','2023-05-02 19:40:37',0),(1807,'https://www.meadowcroftwines.com/product/2019-stag-s-leap-cabernet-sauvignon/','77:f9a6be738fef28243a24c12374d0c4d5',2708,'post','product',1,0,NULL,NULL,'2019 Cabernet Sauvignon, Stags Leap District','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:49','2023-09-25 22:07:22',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-09-25 22:07:22','2023-05-02 19:40:39',0),(1808,'https://www.meadowcroftwines.com/product/a-taste-of-meadowcroft-duplicate/','74:b0009c8f1d6fa48eaba7483b4b02f660',2909,'post','product',1,0,NULL,NULL,'Seated Tasting','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:50','2024-12-11 21:18:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-11 21:18:02','2023-05-02 19:41:00',0),(1809,'https://www.meadowcroftwines.com/product/comp-tasting/','54:8ca7066795ab911f121286b903264141',2807,'post','product',1,0,NULL,NULL,'Comp Tasting','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:51','2024-10-31 20:47:34',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-10-31 20:47:34','2023-05-02 19:40:49',0),(1810,'https://www.meadowcroftwines.com/product/meadowcroft-foil-remover/','66:12035747aedfddc06229c92d38ef9441',2821,'post','product',1,0,NULL,NULL,'Foil Remover','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:51','2023-06-13 13:01:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:51','2023-05-02 19:40:51',NULL),(1811,'https://www.meadowcroftwines.com/product/2020-meadowcroft-cabernet-sauvignon-stags-leap-15l/','92:03b7776aa59c5a56215362f4e1aad9fd',2721,'post','product',1,0,NULL,NULL,'2020 Cabernet Sauvignon, Stag&#8217;s Leap 1.5L','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:52','2023-06-12 12:33:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:42','2023-05-02 19:40:41',0),(1812,'https://www.meadowcroftwines.com/product/meadowcroft-bamboo-utensils/','69:c739f330f5720f374c9cea3c98be3061',2850,'post','product',1,0,NULL,NULL,'Meadowcroft Bamboo Utensils','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:53','2023-06-13 14:06:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:54','2023-05-02 19:40:54',NULL),(1813,'https://www.meadowcroftwines.com/product/art-culinaire-book/','60:ea3ca5e2c83c8cb9ff6d7929533ef6e1',2786,'post','product',1,0,NULL,NULL,'Art Culinaire Book','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:54','2023-08-25 18:55:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-08-25 18:55:07','2023-05-02 19:40:48',0),(1814,'https://www.meadowcroftwines.com/product/friday-noir-black-box-pinot-noir-2021/','79:d6d8724867ef116ba11d1eccc9daa3d0',2824,'post','product',1,0,NULL,NULL,'Friday Noir | Black Box Pinot Noir 2021','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:55','2024-11-11 17:57:12',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 17:57:12','2023-05-02 19:40:52',0),(1815,'https://www.meadowcroftwines.com/product/2016-mendocino-cabernet-sauvignon/','75:35c60c438db9d3c53ee0df78641ef019',2657,'post','product',1,0,NULL,NULL,'2016 Cabernet Sauvignon, Mendocino County','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:56','2023-11-14 19:26:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-11-14 19:26:33','2023-05-02 19:40:33',0),(1816,'https://www.meadowcroftwines.com/product/bee-cozy-gift-set/','59:4f2e9f77f43e7494cbb711ef618b4fea',2789,'post','product',1,0,NULL,NULL,'Bee Cozy Gift Set','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:56','2024-11-11 17:54:05',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 17:54:05','2023-05-02 19:40:48',0),(1817,'https://www.meadowcroftwines.com/product/6btl-wine-bag_resusable-logoed-250-per-case/','85:70a23e858f34d54663f253121c99113e',2780,'post','product',1,0,NULL,NULL,'6BTL Wine Bag_Resusable Logoed 250 per case','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:57','2023-06-13 10:56:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:47','2023-05-02 19:40:47',NULL),(1818,'https://www.meadowcroftwines.com/product/event-rental/','54:930de64a5b90d937299c1c6a95ca8d5e',2817,'post','product',1,0,NULL,NULL,'Event Rental','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:58','2023-06-13 12:53:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:50','2023-05-02 19:40:50',NULL),(1819,'https://www.meadowcroftwines.com/product/meadowcroft-explore-carneros-chardonnay-collection/','92:90c71ddee40b5038c182fa6c411c829b',2863,'post','product',1,0,NULL,NULL,'Meadowcroft Explore Carneros Chardonnay Collection','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:59','2023-06-13 14:53:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:56','2023-05-02 19:40:56',NULL),(1820,'https://www.meadowcroftwines.com/product/cabernet-bundle-1/','59:3fef747dc76fab4b11c07a35a7ce433f',2859,'post','product',1,0,NULL,NULL,'Meadowcroft Cabernet Bundle #1','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:28:59','2024-11-11 18:00:17',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 18:00:17','2023-05-02 19:40:55',0),(1821,'https://www.meadowcroftwines.com/product/olive-oil-extra-virgin-la-petita-duplicate/','84:88eed544a45a79d25779f4389b305e5f',2886,'post','product',1,0,NULL,NULL,'Olive Oil with Thyme','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:01','2024-01-14 02:02:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 02:02:01','2023-05-02 19:40:58',0),(1822,'https://www.meadowcroftwines.com/product/2019-chardonnay-bonneau-vineyard/','74:1629193993171f157ebfe43241f01d04',2693,'post','product',1,0,NULL,'Unwind with the richness of our 2019 Chardonnay from Bonneau Vineyard. Meadowcroft Wines presents a harmonious blend of flavors. Enhance your experience. Order today.','2019 Chardonnay, Bonneau Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:03','2024-04-16 08:01:15',1,NULL,NULL,NULL,NULL,0,0,2,'2024-04-16 08:01:15','2023-05-02 19:40:38',0),(1823,'https://www.meadowcroftwines.com/product/mixed-blind-tasting-kit/','65:e76557e3a713fc08cc4f0b6b5d369616',2880,'post','product',1,0,NULL,NULL,'Mixed Blind Tasting Kit','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:06','2024-11-11 18:01:52',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 18:01:52','2023-05-02 19:40:57',0),(1824,'https://www.meadowcroftwines.com/product/meadowcroft-2-bottle-pinot-noir-gift-pack/','83:1c6f9c24a8aafa63bcf4fba0b338a876',2848,'post','product',1,0,NULL,NULL,'Meadowcroft 2 Bottle Pinot Noir Gift Box','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:07','2024-11-11 17:59:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 17:59:49','2023-05-02 19:40:54',0),(1825,'https://www.meadowcroftwines.com/product/olive-oil-extra-virgin-la-petita/','74:759a821fa6e4b98fea6da888116a51ba',2887,'post','product',1,0,NULL,NULL,'Olive Oil, Extra Virgin &#8220;La Petita&#8221;','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:08','2024-01-14 01:55:14',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 01:55:14','2023-05-02 19:40:58',0),(1826,'https://www.meadowcroftwines.com/product/2016-river-trace-gsm/','62:a97f3cebe2e210e3efd211f9e8940f20',2667,'post','product',1,0,NULL,NULL,'2016 River Trace GSM','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:13','2023-11-14 19:25:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-11-14 19:25:42','2023-05-02 19:40:35',0),(1827,'https://www.meadowcroftwines.com/product/meadowcroft-logo-beanie/','65:057f36628e673e0dae0f53d20521886c',2844,'post','product',1,0,NULL,NULL,'MC Logo Beanie','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:14','2023-06-13 14:01:09',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:54','2023-05-02 19:40:54',NULL),(1828,'https://www.meadowcroftwines.com/product/cutting-board-knife-set/','65:79063c055a090e39f98d2cfca7ae6ce6',2812,'post','product',1,0,NULL,NULL,'Cutting Board &amp; Knife Set','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:15','2024-01-14 02:20:35',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 02:20:35','2023-05-02 19:40:50',0),(1829,'https://www.meadowcroftwines.com/product/2016-cabernet-sauvignon-napa-valley-375-ml/','84:e22853996a35ececc01a947cc618c86c',2661,'post','product',1,0,NULL,NULL,'2016 Cabernet Sauvignon, Napa Valley 375 ml','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:16','2023-08-31 20:32:40',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-08-31 20:32:40','2023-05-02 19:40:34',0),(1830,'https://www.meadowcroftwines.com/product/meadowcroft-bottle-candle/','67:ac420a9529b10753c860b6a9011b0fd6',2801,'post','product',1,0,NULL,NULL,'Candles','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:17','2023-06-13 11:30:27',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:49','2023-05-02 19:40:49',NULL),(1831,'https://www.meadowcroftwines.com/product/2016-gsm-chalk-hill/','61:d8f3fca62642148d89dc643d6652722f',2665,'post','product',1,0,NULL,NULL,'2016 GSM, Chalk Hill','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:18','2023-06-12 12:33:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:06','2023-05-02 19:40:35',0),(1832,'https://www.meadowcroftwines.com/product/rustic-bakery-crackers/','64:0ea6b17a7fc176560ad205bd6197168e',2903,'post','product',1,0,NULL,NULL,'Rustic Bakery Crackers','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:19','2023-06-13 15:50:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:59','2023-05-02 19:40:59',NULL),(1833,'https://www.meadowcroftwines.com/product/2020-cabernet-sauvignon-wyldvin-vineyard/','82:e8e3082703f647521c85dfb009f29701',2722,'post','product',1,0,NULL,NULL,'2020 Cabernet Sauvignon, Wyldvin Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:20','2023-07-05 23:42:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-07-05 23:42:26','2023-05-02 19:40:41',0),(1834,'https://www.meadowcroftwines.com/product/2018-meadowcroft-napa-valley-cabernet-sauvignon/','89:c4a49cab01e4b55e2686d1785a4a8afc',2676,'post','product',1,0,NULL,NULL,'2018 Cabernet Sauvignon, Napa Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:23','2024-07-23 19:49:52',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-23 19:49:52','2023-05-02 19:40:36',0),(1835,'https://www.meadowcroftwines.com/product/red-wine-blind-tasting-kit/','68:d94fbc5a5a67153fa17620bffbb7cce0',2898,'post','product',1,0,NULL,NULL,'Red Wine Blind Tasting Kit','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:24','2024-11-11 18:03:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 18:03:55','2023-05-02 19:40:59',0),(1836,'https://www.meadowcroftwines.com/product/meadowcroft-key-to-the-wine-cellar/','76:dd9f3ea6f7e4e02b2d61a5c0b85af67c',2839,'post','product',1,0,NULL,NULL,'Key to the Wine Cellar Keychain','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:26','2024-01-14 01:45:04',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 01:45:04','2023-05-02 19:40:53',0),(1837,'https://www.meadowcroftwines.com/product/sensory-garden-tasting/','64:6c013e171470e3d4794a3cb68e18493a',2911,'post','product',1,0,NULL,NULL,'Sensory Garden Tasting','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:26','2023-06-13 15:57:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:00','2023-05-02 19:41:00',NULL),(1838,'https://www.meadowcroftwines.com/product/2019-meadowcroft-los-carneros-cornerstone-vineyard-pinot-noir/','103:7c3a58ee229e5ae8a81d19086ac76b34',2700,'post','product',1,0,NULL,NULL,'2019 Pinot Noir, Cornerstone Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:29','2023-08-31 20:18:35',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-08-31 20:18:35','2023-05-02 19:40:38',0),(1839,'https://www.meadowcroftwines.com/product/picnic-box-lunch/','58:ded8cb7e27870b6a2531500ddf703ad1',2890,'post','product',1,0,NULL,NULL,'Picnic Box Lunch','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:30','2024-01-14 01:46:38',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 01:46:38','2023-05-02 19:40:58',0),(1840,'https://www.meadowcroftwines.com/product/2021-meadowcroft-chardonnay-carneros-napa-valley/','90:296bfe5e3a37c369494caac9ef628b31',2748,'post','product',1,0,'2021 Chardonnay, Carneros 375ml from Sonoma County - Meadowcroft Wines','Delight in the intimate size of our 2021 Chardonnay, Carneros 375ml from Sonoma County. Enjoy a smaller format of our exceptional wine, meticulously crafted by Meadowcroft Wines','2021 Chardonnay, Carneros 375ml','publish',NULL,0,NULL,NULL,NULL,'2021 Chardonnay',32,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:31','2023-08-08 12:35:53',1,NULL,NULL,NULL,NULL,0,0,2,'2023-08-08 12:35:52','2023-05-02 19:40:44',0),(1841,'https://www.meadowcroftwines.com/product/a-perfect-blend/','57:36d3dae62dd180eaf991706abb60aa94',2781,'post','product',1,0,NULL,NULL,'A Perfect Blend','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:32','2024-12-23 23:19:36',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-23 23:19:36','2023-05-02 19:40:47',0),(1842,'https://www.meadowcroftwines.com/product/meadowcroft-bamboo-cutting-board/','74:fe3716bca477a4bae6dfe829170af201',2788,'post','product',1,0,NULL,NULL,'Bamboo Cutting Board','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:33','2023-06-13 11:12:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:48','2023-05-02 19:40:48',NULL),(1843,'https://www.meadowcroftwines.com/product/gratuity/','50:f188f67451712019e0d60a95bd5f39d0',2832,'post','product',1,0,NULL,NULL,'Gratuity','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:34','2023-06-13 13:20:14',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:53','2023-05-02 19:40:53',NULL),(1844,'https://www.meadowcroftwines.com/product/meadowcroft-2017-the-panorama-red-blend/','81:b0125d93d601e51d1993e8e63d759086',2672,'post','product',1,0,NULL,NULL,'2017 Panorama Red Blend','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:36','2023-11-14 19:27:21',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-11-14 19:27:21','2023-05-02 19:40:35',0),(1845,'https://www.meadowcroftwines.com/product/4btl-wine-bag_resusable-logoed-250-per-case/','85:ab2317b67c8b152f419778a7c8c9d482',2778,'post','product',1,0,NULL,NULL,'4BTL Wine Bag_Resusable Logoed 250 per case','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:38','2023-06-13 10:43:37',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:47','2023-05-02 19:40:47',NULL),(1847,'https://www.meadowcroftwines.com/product/25-tastingseated-tasting/','66:1b91d1eb71829e3c5351e3f5faa330f2',2908,'post','product',1,0,NULL,NULL,'Seated Tasting','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:45','2024-10-31 20:45:15',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-10-31 20:45:15','2023-05-02 19:41:00',0),(1848,'https://www.meadowcroftwines.com/product/meadowcroft-2-bottle-zinfandel-gift-box/','81:44239cdae1c6ae760268cc63e40d6626',2849,'post','product',1,0,NULL,NULL,'Meadowcroft 2 Bottle Zinfandel Gift Box','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:46','2024-11-11 17:59:59',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 17:59:58','2023-05-02 19:40:54',0),(1849,'https://www.meadowcroftwines.com/product/onsite-blind-tasting-experience/','73:0f943bcbe906f5ece4b123b0c54c9dc7',2888,'post','product',1,0,NULL,NULL,'Onsite Blind Tasting Experience','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:46','2023-06-13 15:28:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:58','2023-05-02 19:40:58',NULL),(1850,'https://www.meadowcroftwines.com/product/2016-meadowcroft-dry-creek-valley-louvau-zinfandel/','92:bec34211732de1c4a359876506a227bd',2668,'post','product',1,0,NULL,NULL,'2016 Zinfandel, Louvau Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:48','2023-06-12 12:33:09',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:08','2023-05-02 19:40:35',0),(1851,'https://www.meadowcroftwines.com/product/2019-russian-river-valley-french-colombard/','84:4d1f810f2accd4d23197af29e1603566',2697,'post','product',1,0,NULL,NULL,'2019 French Colombard, Russian River Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:49','2023-06-12 12:33:30',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:29','2023-05-02 19:40:38',0),(1852,'https://www.meadowcroftwines.com/product/mulled-wine/','53:f92293b8309b9e707cb4797e23d0a85d',2882,'post','product',1,0,NULL,NULL,'Mulled Wine','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:51','2023-06-13 15:27:36',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:57','2023-05-02 19:40:57',NULL),(1853,'https://www.meadowcroftwines.com/product/flat-rate-shipping/','60:f58e735de7ff5200c37c6ec9394df8a4',2820,'post','product',1,0,NULL,NULL,'Flat Rate Shipping','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:52','2024-01-14 01:35:36',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 01:35:36','2023-05-02 19:40:51',0),(1854,'https://www.meadowcroftwines.com/product/2019-cabernet-sauvignon-napa-valley/','77:c94ac168518341e15ce048225b372e3a',2690,'post','product',1,0,NULL,NULL,'2019 Cabernet Sauvignon, Napa Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:55','2023-09-03 23:48:22',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-09-03 23:48:22','2023-05-02 19:40:37',0),(1855,'https://www.meadowcroftwines.com/product/meadowcroft-logo-wine-glass/','69:0204b27e7b73c4b3fe55648026e30bbc',2866,'post','product',1,0,NULL,NULL,'Meadowcroft Logo Wine Glass','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:58','2023-06-13 14:53:58',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:56','2023-05-02 19:40:56',NULL),(1856,'https://www.meadowcroftwines.com/product/2016-cabernet-franc-giles-vineyard/','76:93e09601a48b311b0e0e0c4430cf030b',2656,'post','product',1,0,NULL,NULL,'2016 Cabernet Franc, Giles Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:29:59','2023-11-14 19:26:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-11-14 19:26:08','2023-05-02 19:40:33',0),(1857,'https://www.meadowcroftwines.com/product/fall-2022-pickup-party/','64:842cb16952470d24acee3bf8087e5eff',2818,'post','product',1,0,NULL,NULL,'Fall 2022 Pickup Party','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:00','2023-06-16 22:24:48',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-16 22:24:47','2023-05-02 19:40:51',0),(1858,'https://www.meadowcroftwines.com/product/mens-t-shirt/','54:c6240a31620c06a91c6ada3ad33312e5',2877,'post','product',1,0,NULL,NULL,'Men&#8217;s T Shirt','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:01','2024-01-14 02:12:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 02:12:26','2023-05-02 19:40:57',0),(1859,'https://www.meadowcroftwines.com/product/harmonica/','51:e2a526e28a4a9a978f583b305f91fff1',2833,'post','product',1,0,NULL,NULL,'Harmonica','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:02','2023-06-13 13:33:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:53','2023-05-02 19:40:53',NULL),(1860,'https://www.meadowcroftwines.com/product/2022-chardonnay-carneros-375ml/','72:98e830285d90265922347abb9e57738a',2765,'post','product',1,0,NULL,NULL,'2022 Chardonnay, Carneros 375ml','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:04','2023-07-05 20:20:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-07-05 20:20:43','2023-05-02 19:40:45',0),(1861,'https://www.meadowcroftwines.com/product/mc-bee-socks/','54:f560436d12f701eac07cc4596b3e0037',2843,'post','product',1,0,NULL,NULL,'MC Bee Socks','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:06','2023-06-13 14:01:09',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:54','2023-05-02 19:40:54',NULL),(1862,'https://www.meadowcroftwines.com/product/seated-tasting-wine-pass/','66:020c18e27e8ad63952e94a7f41499e23',2910,'post','product',1,0,NULL,NULL,'Seated Tasting &#8211; Wine Pass','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:07','2023-05-20 23:35:10',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-20 23:35:10','2023-05-02 19:41:00',NULL),(1863,'https://www.meadowcroftwines.com/product/2020-cabernet-sauvignon-napa-valley-375-ml/','84:2225b2674ff3d29cc079b1c89f409add',2717,'post','product',1,0,NULL,NULL,'2020 Cabernet Sauvignon, Napa Valley 375 ml','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:08','2023-06-12 12:33:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:41','2023-05-02 19:40:40',0),(1864,'https://www.meadowcroftwines.com/product/meadowcroft-sabre/','59:573c66a2fee009614bb391d0aaa9f098',2870,'post','product',1,0,NULL,NULL,'Meadowcroft Sabre','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:11','2024-02-19 19:33:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-02-19 19:33:02','2023-05-02 19:40:56',0),(1865,'https://www.meadowcroftwines.com/product/2019-cru-de-la-ruche-malbec-clements-hill/','83:2bcea15f8d86dfdf957fc6066d074929',2696,'post','product',1,0,NULL,NULL,'2019 Cru de la Ruche Malbec, Clements Hill','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:12','2023-06-12 12:33:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:29','2023-05-02 19:40:38',0),(1866,'https://www.meadowcroftwines.com/product/6-bottle-shipper/','58:b2b55b134ace45e83850b679f805a93f',2779,'post','product',1,0,NULL,NULL,'6- Bottle Wine Gift Box &#8211; Branded','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:13','2023-06-13 10:56:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:47','2023-05-02 19:40:47',NULL),(1867,'https://www.meadowcroftwines.com/product/mystery-case/','54:943176a88e8fdb2e23e3b8b63f0d7a4e',2883,'post','product',1,0,NULL,NULL,'MYSTERY CASE','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:13','2023-09-12 19:09:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-09-12 19:09:26','2023-05-02 19:40:58',0),(1868,'https://www.meadowcroftwines.com/product/jacket-soft-shell/','59:0e9b2c8ca8a088e4915521b78075a709',2838,'post','product',1,0,NULL,NULL,'Jacket &#8211; soft shell','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:15','2024-01-14 02:03:52',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 02:03:52','2023-05-02 19:40:53',0),(1869,'https://www.meadowcroftwines.com/product/meadowcroft-blending-cab-franc/','72:f89e405fa049665ef3e8929485650edf',2854,'post','product',1,0,NULL,NULL,'Meadowcroft Blending Cab Franc','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:16','2024-04-04 21:48:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-04-04 21:48:41','2023-05-02 19:40:55',0),(1870,'https://www.meadowcroftwines.com/product/single-bottle-box/','59:04558ea97598337d360e0785045eabe7',2912,'post','product',1,0,NULL,NULL,'Single Bottle Box','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:17','2023-06-13 15:57:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:41:00','2023-05-02 19:41:00',NULL),(1871,'https://www.meadowcroftwines.com/product/chocolate-cabernet-sauce/','66:b27d0b9e506087a493cc9c0ecafc004e',2803,'post','product',1,0,NULL,NULL,'Chocolate Cabernet Sauce','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:18','2024-12-24 17:46:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-24 17:46:18','2023-05-02 19:40:49',0),(1872,'https://www.meadowcroftwines.com/product/2020-mt-veeder-napa-valley-cabernet-sauvignon-magnum-1-5l-waxed/','105:0b5de2e7112968532edbdef66654fbef',2715,'post','product',1,0,NULL,NULL,'2020 Cabernet Sauvignon, Mt. Veeder Estate 1.5L','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:19','2023-07-05 23:36:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-07-05 23:36:45','2023-05-02 19:40:40',0),(1873,'https://www.meadowcroftwines.com/product/2022-viognier-wyldvin-vineyard/','72:905971ed3aec87b96835bce1ad195047',2776,'post','product',1,0,NULL,NULL,'2022 Viognier, Wyldvin Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:21','2024-07-29 20:19:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-29 20:19:07','2023-05-02 19:40:46',0),(1874,'https://www.meadowcroftwines.com/product/bee-logo-coaster/','58:9c950a750462f40fa4d58624d04dfe74',2790,'post','product',1,0,NULL,NULL,'Bee Logo Coaster','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:22','2023-06-13 11:12:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:48','2023-05-02 19:40:48',NULL),(1875,'https://www.meadowcroftwines.com/product/napkin-rings/','54:7b96dc5a496805301770bb29d3aeca7e',2884,'post','product',1,0,NULL,NULL,'Napkin Rings','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:23','2023-06-13 15:27:59',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:58','2023-05-02 19:40:58',NULL),(1876,'https://www.meadowcroftwines.com/product/2020-anderson-valley-pinot-noir/','73:3ada7e17998dce117686c466f7c9e986',2729,'post','product',1,0,NULL,NULL,'2020 Pinot Noir, Anderson Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:23','2023-08-31 20:18:42',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-08-31 20:18:42','2023-05-02 19:40:42',0),(1877,'https://www.meadowcroftwines.com/product/private-event-rental/','62:79a0bf10c74b779736253a8d663267a4',2894,'post','product',1,0,NULL,NULL,'Private Event Rental','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:24','2023-06-13 15:28:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:59','2023-05-02 19:40:59',NULL),(1878,'https://www.meadowcroftwines.com/product/2btl-wine-bag_resusable-logoed-250-per-case/','85:18b9da5e1e1b742495c28b70b30ef4a6',2777,'post','product',1,0,NULL,NULL,'2BTL Wine Bag_Resusable Logoed 250 per case','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:28','2023-06-13 10:43:37',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:47','2023-05-02 19:40:47',NULL),(1879,'https://www.meadowcroftwines.com/product/meadowcroft-blending-merlot/','69:7094975168851072e6bdaceea5d3c169',2857,'post','product',1,0,NULL,NULL,'Meadowcroft Blending Merlot','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:29','2024-04-04 21:48:30',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-04-04 21:48:30','2023-05-02 19:40:55',0),(1880,'https://www.meadowcroftwines.com/product/olive-oil-with-thyme-duplicate/','72:179bdb1d9283a91ad92a33d5e2ee98fc',2885,'post','product',1,0,NULL,NULL,'Olive Oil with Black Truffle','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:32','2024-01-14 01:49:38',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 01:49:38','2023-05-02 19:40:58',0),(1881,'https://www.meadowcroftwines.com/product/2021-cabernet-sauvignon-nelson-ranch-vineyard/','87:ebd0eb659df30f9024555d6f1d45d6ea',2745,'post','product',1,0,NULL,NULL,'2021 Cabernet Sauvignon, Nelson Ranch Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:33','2023-09-03 23:38:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-09-03 23:38:53','2023-05-02 19:40:43',0),(1882,'https://www.meadowcroftwines.com/product/reroute-fee/','53:98ae383e8eff3f360e38aa30752c1fd3',2899,'post','product',1,0,NULL,NULL,'Reroute Fee','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:34','2023-06-13 15:33:38',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:59','2023-05-02 19:40:59',NULL),(1883,'https://www.meadowcroftwines.com/product/meadowcroft-blending-malbec/','69:707116d51650b31a4473c1f5c151bfc9',2856,'post','product',1,0,NULL,NULL,'Meadowcroft Blending Malbec','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:34','2024-04-04 21:45:59',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-04-04 21:45:58','2023-05-02 19:40:55',0),(1884,'https://www.meadowcroftwines.com/product/club-pick-up-event/','60:d630092f590fba82b29686e966f1fd90',2805,'post','product',1,0,NULL,NULL,'Club Pick Up Event','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:35','2023-06-13 11:48:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:49','2023-05-02 19:40:49',NULL),(1885,'https://www.meadowcroftwines.com/product/meadowcroft-sparkling-celebration-bundle/','82:fea07314ec94548bc7c1ce83d7d7dbe1',2847,'post','product',1,0,NULL,NULL,'Meadowcroft Sparkling Celebration Bundle','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:37','2023-06-13 14:04:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:54','2023-05-02 19:40:54',NULL),(1886,'https://www.meadowcroftwines.com/product/2016-los-carneros-napa-pinot-noir/','75:236a2446a9c3ede1741482a15b05eb0a',2666,'post','product',1,0,NULL,NULL,'2016 Pinot Noir, Carneros','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:38','2023-06-12 12:33:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:06','2023-05-02 19:40:35',0),(1887,'https://www.meadowcroftwines.com/product/2020-meadowcroft-cabernet-sauvignon-red-hills/','87:2228fcc5d8b5c4651af7d9e017380720',2720,'post','product',1,0,NULL,NULL,'2020 Cabernet Sauvignon, Red Hills','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:39','2023-07-05 23:42:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-07-05 23:42:08','2023-05-02 19:40:41',0),(1888,'https://www.meadowcroftwines.com/product/2017-malbec-clements-hill/','67:031f47221587b6b7b4265af4be65bc92',2671,'post','product',1,0,NULL,NULL,'2017 Malbec, Clements Hill','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:45','2023-11-14 19:27:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-11-14 19:27:41','2023-05-02 19:40:35',0),(1889,'https://www.meadowcroftwines.com/product/2019-river-trace-grenache-syrah-mourvedre/','83:0ab67b8d00758ac37226e59482ddf982',2703,'post','product',1,0,NULL,NULL,'2019 River Trace Grenache Syrah Mourvedre','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:46','2023-06-12 12:33:35',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:34','2023-05-02 19:40:39',0),(1890,'https://www.meadowcroftwines.com/product/save-the-bees-t-shirt-women/','69:42030faef09a42c9b90ee5c4cbe5f062',2907,'post','product',1,0,NULL,NULL,'Save The Bees Tee Shirt, Women &#8211; old design','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:47','2024-06-18 22:15:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-06-18 22:15:11','2023-05-02 19:41:00',0),(1891,'https://www.meadowcroftwines.com/product/post-modern-wine-book/','63:9844a479eac3c5e1514d0b450d1d338f',2893,'post','product',1,0,NULL,NULL,'Post Modern Wine Book','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:48','2023-06-13 15:28:21',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:59','2023-05-02 19:40:59',NULL),(1892,'https://www.meadowcroftwines.com/product/market-tote-washable-paper/','68:9191e407cfa5ba89cffc8b929280377b',2842,'post','product',1,0,NULL,NULL,'Market Tote &#8211; washable paper','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:49','2024-01-14 01:39:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 01:39:57','2023-05-02 19:40:54',0),(1893,'https://www.meadowcroftwines.com/product/for-the-collector-wood-box-spring-mt-cabernet-gift-set/','96:b1b951e334cfea2873edf45a6441c76c',2822,'post','product',1,0,NULL,NULL,'For the Collector Wood Box &amp; Spring Mt. Cabernet Gift Set','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:51','2024-11-11 17:56:58',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 17:56:58','2023-05-02 19:40:51',0),(1894,'https://www.meadowcroftwines.com/product/meadowcroft-rare-blends-gift-set/','74:a99607acb6301e8f9eb2f891f87f2fa4',2868,'post','product',1,0,NULL,NULL,'Meadowcroft Rare Blends Gift Set','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:52','2024-11-11 18:01:39',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 18:01:39','2023-05-02 19:40:56',0),(1895,'https://www.meadowcroftwines.com/product/2018-speedy-creek-vineyard-sangiovese/','79:9b4f3751832f3ea5bef1e7f18b46cf8d',2682,'post','product',1,0,NULL,NULL,'2018 Sangiovese, Speedy Creek Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:55','2023-09-05 17:55:42',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-09-05 17:55:42','2023-05-02 19:40:36',0),(1896,'https://www.meadowcroftwines.com/product/limited-edition-sparkling-and-2006-veeder-gift-set/','92:a31189a7375f8c9e1c54a8e635b40a21',2841,'post','product',1,0,NULL,NULL,'Limited Edition Sparkling and 2006 Veeder Gift Set','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:56','2023-06-13 13:43:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:54','2023-05-02 19:40:54',NULL),(1897,'https://www.meadowcroftwines.com/product/holiday-spice-gift-set/','64:1c6e36480b6a80e09b858263ae624bb8',2835,'post','product',1,0,NULL,NULL,'Holiday Spice Gift Set','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:30:58','2023-06-13 13:33:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:53','2023-05-02 19:40:53',NULL),(1898,'https://www.meadowcroftwines.com/product/2017-giles-vineyard-cabernet-franc/','76:3114fbe482f7c81c69c2fb47f1e6f8c7',2669,'post','product',1,0,NULL,NULL,'2017 Cabernet Franc, Giles Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:31:01','2023-06-12 12:33:10',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:09','2023-05-02 19:40:35',0),(1899,'https://www.meadowcroftwines.com/product/meadowcroft-wines-wooden-gift-box/','75:4a6fd23a2298eeb70b5021bb76da7ab9',2873,'post','product',1,0,NULL,NULL,'Meadowcroft Wines Wooden Gift Box','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:31:02','2023-07-31 18:14:39',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-07-31 18:14:39','2023-05-02 19:40:57',0),(1900,'https://www.meadowcroftwines.com/product/meadowcroft-picnic-gift-set/','69:6060995394aaf2af29c2d3cf33d8eb67',2891,'post','product',1,0,NULL,NULL,'Picnic Gift Set','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:31:07','2024-11-11 18:04:30',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 18:04:29','2023-05-02 19:40:58',0),(1901,'https://www.meadowcroftwines.com/product/2018-pinot-noir-sonoma-coast-375ml/','76:c6ec413636c3fe4f85fc1220da1e9b04',2681,'post','product',1,0,NULL,NULL,'2018 Pinot Noir, Sonoma Coast 375mL','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:31:15','2023-08-31 20:28:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-08-31 20:28:41','2023-05-02 19:40:36',0),(1902,'https://www.meadowcroftwines.com/product/2018-louvau-vineyard-zinfandel/','72:3aca3424292406bf22f0234e16d11c56',2683,'post','product',1,0,NULL,NULL,'2018 Zinfandel, Louvau Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:31:17','2023-09-06 18:47:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-09-06 18:47:43','2023-05-02 19:40:37',0),(1903,'https://www.meadowcroftwines.com/product/2018-zinfandel-speedy-creek-vineyard-shiner/','85:29144da04eedb41b87ec7d2b8fa44cbb',2686,'post','product',1,0,NULL,NULL,'2018 Zinfandel, Speedy Creek Vineyard **SHINER**','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:31:19','2023-09-06 18:47:51',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-09-06 18:47:51','2023-05-02 19:40:37',0),(1904,'https://www.meadowcroftwines.com/product/meadowcroft-fleece-blanket/','68:e47a17192e65d361e7a4ef5286e0e634',2865,'post','product',1,0,NULL,NULL,'Meadowcroft Fleece Blanket','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:31:21','2023-06-13 14:53:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:56','2023-05-02 19:40:56',NULL),(1905,'https://www.meadowcroftwines.com/product/jacket-soft-shell-duplicate/','69:7b39d243a022ca308f608f173f234a8e',2897,'post','product',1,0,NULL,NULL,'Pullover &#8211; microfleece','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:31:23','2024-01-14 01:33:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 01:33:32','2023-05-02 19:40:59',0),(1906,'https://www.meadowcroftwines.com/product/ladies-golf-shirt/','59:154e23af7dfe0fdc3a5e11cfe56c6055',2840,'post','product',1,0,NULL,NULL,'Ladies Golf Shirt','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:31:24','2023-06-13 13:43:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:54','2023-05-02 19:40:54',NULL),(1907,'https://www.meadowcroftwines.com/product/meadowcroft-belt-bag-aka-fanny-pack/','77:64dcbeeaf4a7ac44f33fd46d179fc408',2851,'post','product',1,0,NULL,NULL,'Meadowcroft Belt Bag AKA Fanny Pack','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:31:28','2023-06-13 14:18:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:55','2023-05-02 19:40:55',NULL),(1908,'https://www.meadowcroftwines.com/product/gift-set-of-two-stemmed-logoed-wine-glasses/','85:030685990675f88f6665a8e1a30da858',2828,'post','product',1,0,NULL,NULL,'Gift Set of Two Stemmed Logo Wine Glasses','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:31:29','2023-06-13 13:20:14',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:52','2023-05-02 19:40:52',NULL),(1909,'https://www.meadowcroftwines.com/product/mens-golf-shirt-old/','61:0892b1857933e254472ec6e5f540883e',2874,'post','product',1,0,NULL,NULL,'Men&#8217;s Golf Shirt OLD','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:31:30','2023-06-13 15:08:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:57','2023-05-02 19:40:57',NULL),(1910,'https://www.meadowcroftwines.com/product/blind-tasting-experience/','66:d41ce7669b6c19321c9d1144bc23261c',2798,'post','product',1,0,NULL,NULL,'Blind Tasting Experience','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:31:31','2023-05-20 23:41:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-20 23:41:16','2023-05-02 19:40:49',NULL),(1911,'https://www.meadowcroftwines.com/product/meadowcroft-blending-petit-verdot/','75:ccace84843cc59b55241c7dae17565f4',2858,'post','product',1,0,NULL,NULL,'Meadowcroft Blending Petit Verdot','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:31:32','2024-04-04 21:48:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-04-04 21:48:56','2023-05-02 19:40:55',0),(1912,'https://www.meadowcroftwines.com/product/meadowcroft-blending-cab-sauv/','71:75f1e719be0419f381198b8cee07395b',2855,'post','product',1,0,NULL,NULL,'Meadowcroft Blending Cab Sauv','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:31:33','2024-04-04 22:45:51',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-04-04 22:45:51','2023-05-02 19:40:55',0),(1913,'https://www.meadowcroftwines.com/product/comp-glass/','52:9fa3cd67848d9aa8666d324701c8a7f2',2806,'post','product',1,0,NULL,NULL,'Comp Glass','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:31:35','2023-06-13 12:08:58',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:49','2023-05-02 19:40:49',NULL),(1914,'https://www.meadowcroftwines.com/product/2020-louvau-vineyards-roussanne/','73:47293aa8594453eb0b39be24a94824de',2737,'post','product',1,0,NULL,NULL,'2020 Roussanne, Louvau Vineyards','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:31:37','2023-08-31 20:43:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-08-31 20:43:11','2023-05-02 19:40:42',0),(1915,'https://www.meadowcroftwines.com/product/2020-stags-leap-cabernet-sauvignon/','76:cb307f1f21848e9096282ab3ed39ad6f',2741,'post','product',1,0,NULL,'Savor the rich flavors of our 2020 Cabernet Sauvignon from the Stags Leap District. Enjoy excellence with Meadowcroft Wines.','2020 Cabernet Sauvignon, Stags Leap District','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:31:40','2024-08-30 23:01:32',1,NULL,NULL,NULL,NULL,0,0,2,'2024-08-30 23:01:32','2023-05-02 19:40:43',0),(1916,'https://www.meadowcroftwines.com/product/2022-chardonnay-napa-carneros/','71:0f4ea26d1be730e3455dfd144ca44bbd',2766,'post','product',1,0,NULL,'Enjoy the refined taste of our 2022 Chardonnay from Carneros. Meadowcroft Wines invites you to savor sophisticated flavors. Order your bottle today.','2022 Chardonnay, Carneros','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:31:40','2024-09-24 19:41:29',1,NULL,NULL,NULL,NULL,0,0,2,'2024-09-24 19:41:29','2023-05-02 19:40:45',0),(1917,'https://www.meadowcroftwines.com/product/meadowcroft-2-bottle-gift-box/','71:a0ce634a81c93a5dae94e1fcc5f55188',2846,'post','product',1,0,NULL,NULL,'Meadowcroft 2 Bottle Gift Box','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:31:43','2024-11-11 17:59:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 17:59:33','2023-05-02 19:40:54',0),(1918,'https://www.meadowcroftwines.com/product/crackers-nettle-honey/','63:19f104ce82d7ef167ce2226ae15d51df',2809,'post','product',1,0,NULL,NULL,'Crackers- Nettle &amp; Honey','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:31:45','2024-01-14 02:20:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 02:20:18','2023-05-02 19:40:50',0),(1919,'https://www.meadowcroftwines.com/product/reusable-wine-totes/','61:333909fe54f9b88091afe0a556a73f09',2901,'post','product',1,0,NULL,NULL,'Reusable Wine Totes','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:31:46','2023-06-13 15:44:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:59','2023-05-02 19:40:59',NULL),(1920,'https://www.meadowcroftwines.com/product/blending-mini-carafes/','63:fe7407079cf113f21fb7b0927d14a2a8',2795,'post','product',1,0,NULL,NULL,'Blending Mini Carafes','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:31:48','2023-06-13 11:28:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:48','2023-05-02 19:40:48',NULL),(1921,'https://www.meadowcroftwines.com/product/2019-cab-franc-rivino-vineyard/','72:ef9b8644498222069618a15f81a494b0',2687,'post','product',1,0,NULL,NULL,'2019 Cabernet Franc, Rivino Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:31:50','2023-10-09 18:11:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-10-09 18:11:55','2023-05-02 19:40:37',0),(1922,'https://www.meadowcroftwines.com/product/2020-cabernet-sauvignon-mt-veeder-estate-750/','86:75bdd6ef382a95da4fc895280c7f9792',2714,'post','product',1,0,NULL,'Savor the sophistication of our 2020 Cabernet Sauvignon from Mt. Veeder Estate. Meadowcroft Wines invites you to indulge in elevated vineyard perfection.','2020 Cabernet Sauvignon, Mt. Veeder Estate','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:31:51','2024-04-23 05:58:05',1,NULL,NULL,NULL,NULL,0,0,2,'2024-04-23 05:58:05','2023-05-02 19:40:40',0),(1923,'https://www.meadowcroftwines.com/product/meadowcroft-black-cap/','63:7d1a02f9a334c35e6dedfb9bee19c44a',2853,'post','product',1,0,NULL,NULL,'Meadowcroft Black Cap','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:31:51','2023-06-13 14:18:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:55','2023-05-02 19:40:55',NULL),(1924,'https://www.meadowcroftwines.com/product/1-5l-napa-to-sonoma-half-marathon-2019/','80:73acfe5f37d83d8845fd730f5aab695c',2698,'post','product',1,0,NULL,NULL,'2019 Napa to Sonoma Half Marathon 1.5L','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:31:53','2023-06-12 12:33:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:30','2023-05-02 19:40:38',0),(1925,'https://www.meadowcroftwines.com/product/mens-greetings-t-shirt/','64:3f88993e9248e1151e699752d3a64e18',2875,'post','product',1,0,NULL,NULL,'Men&#8217;s Greetings T Shirt','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:02','2023-06-13 15:12:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:57','2023-05-02 19:40:57',NULL),(1926,'https://www.meadowcroftwines.com/product/2022-fall-club-newsletter/','67:7ba4a9c94d1df60f17543e29f3e2291b',2767,'post','product',1,0,NULL,NULL,'2022 Fall Club Newsletter','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:04','2024-01-14 01:20:35',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 01:20:35','2023-05-02 19:40:45',0),(1927,'https://www.meadowcroftwines.com/product/blending-seminar/','58:e73428db4cf5783036e486e6519310aa',2796,'post','product',1,0,NULL,NULL,'Blending Seminar','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:06','2024-12-23 21:34:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-23 21:34:24','2023-05-02 19:40:48',0),(1928,'https://www.meadowcroftwines.com/product/logo-cap/','50:9b066a8daa23a5523377dc365ffcf6a1',2845,'post','product',1,0,NULL,NULL,'MC Logo Hat','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:08','2023-06-13 14:04:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:54','2023-05-02 19:40:54',NULL),(1929,'https://www.meadowcroftwines.com/product/2016-cabernet-sauvignon-nelson-ranch/','78:09f075158fda6aae73abbda25c3e43d4',2662,'post','product',1,0,NULL,NULL,'2016 Cabernet Sauvignon, Nelson Ranch','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:09','2023-06-12 12:33:05',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:04','2023-05-02 19:40:34',0),(1930,'https://www.meadowcroftwines.com/product/2020-cabernet-sauvignon-oakville-napa-valley/','86:9d3d2ff365efc1f4c84fa79d148348ca',2718,'post','product',1,0,NULL,'Indulge in the opulence of our 2020 Cabernet Sauvignon from Oakville. Meadowcroft Wines presents a symphony of rich flavors, a testament to vineyard excellence.','2020 Cabernet Sauvignon, Oakville','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:10','2024-09-24 19:39:23',1,NULL,NULL,NULL,NULL,0,0,2,'2024-09-24 19:39:23','2023-05-02 19:40:40',0),(1931,'https://www.meadowcroftwines.com/product/2020-napa-carneros-chardonnay/','71:c130c2e79acb0173699f027eaf0461f8',2723,'post','product',1,0,NULL,NULL,'2020 Chardonnay, Napa Carneros','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:11','2023-06-12 12:33:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:43','2023-05-02 19:40:41',0),(1932,'https://www.meadowcroftwines.com/product/2018-napa-valley-cabernet-sauvignon-375-ml/','84:315d8b6d1e3c5984bd81854207ff95ae',2677,'post','product',1,0,NULL,NULL,'2018 Cabernet Sauvignon, Napa Valley 375 ml','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:12','2023-06-12 12:33:17',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:17','2023-05-02 19:40:36',0),(1933,'https://www.meadowcroftwines.com/product/2020-pinot-noir-anderson-valley-gold-screw-cap/','88:a10b427a577e0005a7488ebd5a71ea7d',2731,'post','product',1,0,NULL,NULL,'2020 Pinot Noir, Anderson Valley **Gold Screw Cap**','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:13','2023-06-12 12:33:47',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:47','2023-05-02 19:40:42',0),(1934,'https://www.meadowcroftwines.com/product/2019-russian-river-valley-pinot-noir/','78:16e7bf80ebf98acc80c3598f3e9886e7',2701,'post','product',1,0,NULL,NULL,'2019 Pinot Noir, Russian River Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:15','2023-08-31 20:18:17',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-08-31 20:18:17','2023-05-02 19:40:38',0),(1935,'https://www.meadowcroftwines.com/product/double-bottle-box/','59:3ff4008f9068f2e5f9ff2db9c0eb2774',2813,'post','product',1,0,NULL,NULL,'Double Bottle Box','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:16','2023-06-13 12:32:47',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:50','2023-05-02 19:40:50',NULL),(1936,'https://www.meadowcroftwines.com/product/early-membership-termination-fee/','74:1a63ab51f91e97efcbb78b7a3a895785',2815,'post','product',1,0,NULL,NULL,'Early Membership Termination Fee','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:18','2023-06-13 12:53:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:50','2023-05-02 19:40:50',NULL),(1937,'https://www.meadowcroftwines.com/product/meadowcroft-blanket/','61:cce3bc9cbb5217e6af1ad94e2bfae5db',2889,'post','product',1,0,NULL,NULL,'Picnic Blanket','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:19','2023-10-06 23:37:36',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-10-06 23:37:36','2023-05-02 19:40:58',0),(1938,'https://www.meadowcroftwines.com/product/credit-card-processing-fee/','68:53ec016193dc856458f1f7220c0c7707',2811,'post','product',1,0,NULL,NULL,'Credit Card Processing Fee','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:21','2023-06-13 12:12:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:50','2023-05-02 19:40:50',NULL),(1939,'https://www.meadowcroftwines.com/product/moisture-resistant-cold-packs-32-oz/','77:96fc9134393b77682c0751ce6ec40066',2881,'post','product',1,0,NULL,NULL,'Moisture-Resistant Cold Packs','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:23','2023-06-13 15:27:36',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:57','2023-05-02 19:40:57',NULL),(1940,'https://www.meadowcroftwines.com/product/2017-sangiovese-speedy-creek-vineyard/','79:d099b4e00936fd3ce8df259ffbf3f078',2673,'post','product',1,0,NULL,NULL,'2017 Sangiovese, Speedy Creek Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:24','2023-11-14 19:27:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-11-14 19:27:02','2023-05-02 19:40:35',0),(1941,'https://www.meadowcroftwines.com/product/2016-cru-de-la-ruche-malbec-15l/','73:47550b41886867468d23c4f153b02d17',2664,'post','product',1,0,NULL,NULL,'2016 Cru de la Ruche Malbec 1.5L Shiner','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:25','2024-01-14 01:21:17',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 01:21:17','2023-05-02 19:40:34',0),(1942,'https://www.meadowcroftwines.com/product/reusable-wine-travel-pak/','66:caeca11cf969b69fdea28e167698cf91',2902,'post','product',1,0,NULL,NULL,'Reusable Wine Travel Pak','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:32','2023-06-13 15:44:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:59','2023-05-02 19:40:59',NULL),(1943,'https://www.meadowcroftwines.com/product/2019-louvau-vineyard-roussane/','71:2177876ef97c31fefccd0872a14d1bb6',2705,'post','product',1,0,NULL,NULL,'2019 Roussanne, Louvau Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:33','2023-08-31 20:43:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-08-31 20:43:01','2023-05-02 19:40:39',0),(1944,'https://www.meadowcroftwines.com/product/2020-bent-press-malbec-case-special/','77:40f946eca30c75e5844302a64754f3d3',2713,'post','product',1,0,NULL,NULL,'2020 Bent Press Malbec Case Special','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:34','2024-11-11 17:55:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 17:55:31','2023-05-02 19:40:40',0),(1945,'https://www.meadowcroftwines.com/product/2020-meadowcroft-napa-carneros-chardonnay-12750ml/','91:dd3853c0ad08dc6da997413f1c5837ac',2724,'post','product',1,0,NULL,NULL,'2020 Chardonnay, Napa Carneros 12/750ml','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:35','2024-01-14 01:34:15',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 01:34:14','2023-05-02 19:40:41',0),(1946,'https://www.meadowcroftwines.com/product/meadowcroft-sparkling-wine-gift-box/','77:438c5594648c61c0ca1df17b590009a7',2871,'post','product',1,0,NULL,NULL,'Meadowcroft Sparkling Wine Gift Box','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:36','2024-11-11 18:02:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 18:02:25','2023-05-02 19:40:56',0),(1947,'https://www.meadowcroftwines.com/product/buy-hold-shipping/','59:0b053832cb3f19fa41eb6cddfd11d496',2800,'post','product',1,0,NULL,NULL,'BUY &#038; HOLD SHIPPING','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:36','2023-06-13 11:30:27',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:49','2023-05-02 19:40:49',NULL),(1948,'https://www.meadowcroftwines.com/product/meadowcroft-explore-carneros-pinot-noir-collection/','92:dfbe6f17fdfbe2734aa7a4b54afcf1f2',2864,'post','product',1,0,NULL,NULL,'Meadowcroft Explore Carneros Pinot Noir Collection','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:38','2023-06-13 14:53:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:56','2023-05-02 19:40:56',NULL),(1949,'https://www.meadowcroftwines.com/product/bee-napkin-rings/','58:af5ee9dea0c3525adb9c774141b04255',2791,'post','product',1,0,NULL,NULL,'Bee Napkin Rings','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:39','2023-06-13 11:28:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:48','2023-05-02 19:40:48',NULL),(1950,'https://www.meadowcroftwines.com/product/2019-napa-los-carneros-chardonnay/','75:0211d900121af7b199019dcad2a8cb61',2694,'post','product',1,0,NULL,NULL,'2019 Chardonnay, Los Carneros','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:39','2023-06-12 12:33:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:28','2023-05-02 19:40:38',0),(1951,'https://www.meadowcroftwines.com/product/event-food/','52:7a87b4e4fca3329a0ac0e69738a32008',2816,'post','product',1,0,NULL,NULL,'Event Food','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:42','2023-11-24 19:21:04',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-11-24 19:21:04','2023-05-02 19:40:50',0),(1952,'https://www.meadowcroftwines.com/product/2020-bent-press-malbec-agrelo-mendoza-argentina/','89:0d2a4f7fa1548190c18cd22b349d4059',2712,'post','product',1,0,NULL,NULL,'2020 Bent Press Malbec Agrelo Mendoza, Argentina','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:43','2023-06-12 12:33:39',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:38','2023-05-02 19:40:39',0),(1953,'https://www.meadowcroftwines.com/product/thomas-henry/','54:f70dc93528cdf79ac0865e672bcbcf50',2757,'post','product',1,0,NULL,NULL,'2021 Pinot Noir, Sonoma Coast 375ml ** THOMAS HENRY***','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:45','2023-06-12 12:34:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:59','2023-05-02 19:40:44',0),(1954,'https://www.meadowcroftwines.com/product/private-group-tasting/','63:fd46720336cf28a354011bebf67807a9',2896,'post','product',1,0,NULL,NULL,'Private Group Tasting','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:46','2023-06-13 15:28:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:59','2023-05-02 19:40:59',NULL),(1955,'https://www.meadowcroftwines.com/product/meadowcroft-cork-screw/','64:33f397367b1e54b43b4b41a73a3850e5',2808,'post','product',1,0,NULL,NULL,'Cork Screw','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:47','2024-01-14 02:20:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 02:20:01','2023-05-02 19:40:50',0),(1956,'https://www.meadowcroftwines.com/product/miscellaneous/','55:3e6e9249438f997d8b9762f0969bf5a8',2879,'post','product',1,0,NULL,NULL,'Miscellaneous','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:48','2023-06-13 15:27:21',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:57','2023-05-02 19:40:57',NULL),(1957,'https://www.meadowcroftwines.com/product/private-group-event/','61:42f0c7ab80657ef99b1767360d201d2e',2895,'post','product',1,0,NULL,NULL,'Private Group Event','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:49','2023-10-26 17:26:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-10-26 17:26:25','2023-05-02 19:40:59',0),(1958,'https://www.meadowcroftwines.com/product/gathering-table-book/','62:4a6aa061456fcf33b866e1c6b7124802',2825,'post','product',1,0,NULL,NULL,'Gathering Table Book','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:49','2023-08-25 18:54:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-08-25 18:54:55','2023-05-02 19:40:52',0),(1959,'https://www.meadowcroftwines.com/product/2018-zinfandel-louvau-vineyard-375ml/','78:d42f1b9c6f0aa3c1c9a7319f8c24914a',2684,'post','product',1,0,NULL,NULL,'2018 Zinfandel, Louvau Vineyard 375mL','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:54','2023-06-12 12:33:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:22','2023-05-02 19:40:37',0),(1960,'https://www.meadowcroftwines.com/product/save-the-bees-t-shirt-men/','67:b5883c50d4487207fa617280f33a5d3d',2906,'post','product',1,0,NULL,NULL,'Save The Bees Tee Shirt, Men -old design','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:55','2024-06-18 22:14:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-06-18 22:14:54','2023-05-02 19:41:00',0),(1961,'https://www.meadowcroftwines.com/product/meadowcroft-cabernet-bundle-6-pack/','76:ba6c0b3b15035990a39574b81c2cdaf7',2861,'post','product',1,0,NULL,NULL,'Meadowcroft Cabernet Bundle 6 Pack','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:55','2024-11-11 18:01:30',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 18:01:29','2023-05-02 19:40:55',0),(1962,'https://www.meadowcroftwines.com/product/friday-noir-black-box-pinot-noir/','74:b3c4f14c475b6afc0f6bd1d370776cdb',2823,'post','product',1,0,NULL,NULL,'Friday Noir | Black Box Pinot Noir','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:57','2023-06-13 13:01:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:52','2023-05-02 19:40:52',NULL),(1963,'https://www.meadowcroftwines.com/product/pullover-microfleece-duplicate/','72:ff7cca7087fe73c255bd493815d2de2b',2837,'post','product',1,0,NULL,NULL,'Jacket &#8211; ladies fleece','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:58','2024-01-14 02:05:36',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 02:05:36','2023-05-02 19:40:53',0),(1964,'https://www.meadowcroftwines.com/product/christmas-tree-ornament/','65:4a2b1eadc2f0f0ca545047af6e9933de',2804,'post','product',1,0,NULL,NULL,'Christmas Tree Ornament','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:58','2024-01-14 02:19:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 02:19:29','2023-05-02 19:40:49',0),(1965,'https://www.meadowcroftwines.com/product/double-btl-box-_black/','63:d0a296b6b4d8ae0c41c2133b32486aef',2814,'post','product',1,0,NULL,NULL,'Double Btl Box _Black','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:32:59','2023-06-13 12:32:47',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:50','2023-05-02 19:40:50',NULL),(1966,'https://www.meadowcroftwines.com/product/2019-river-trace-grenache-syrah-mourvedre-shiner/','90:16d2777ab0b845fe9c040cb5ae177233',2704,'post','product',1,0,NULL,NULL,'2019 River Trace Grenache Syrah Mourvedre *SHINER**','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:33:02','2023-06-12 12:33:35',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:35','2023-05-02 19:40:39',0),(1967,'https://www.meadowcroftwines.com/product/mens-polo-t-shirt/','59:488348e2f3242c3323cb318140e16efb',2876,'post','product',1,0,NULL,NULL,'Men&#8217;s POLO T Shirt','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:33:03','2024-01-14 02:06:35',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 02:06:35','2023-05-02 19:40:57',0),(1968,'https://www.meadowcroftwines.com/product/meadowcroft-tea-towel/','63:5aea04165050af9317ed5f1a57d3d7ed',2872,'post','product',1,0,NULL,NULL,'Meadowcroft Tea Towel','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:33:05','2023-06-13 15:08:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:56','2023-05-02 19:40:56',NULL),(1969,'https://www.meadowcroftwines.com/product/holiday-cocktail-glass/','64:171ad8919ab4a261f684eae425db1206',2834,'post','product',1,0,NULL,NULL,'Holiday Cocktail Glass','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:33:06','2023-06-13 13:33:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:53','2023-05-02 19:40:53',NULL),(1970,'https://www.meadowcroftwines.com/product/father-s-day-zinfandel-special/','72:9223c9f11189eb37e3932329bdee15d2',2819,'post','product',1,0,NULL,NULL,'Father&#8217;s Day Zinfandel Special','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:33:07','2024-11-11 17:56:15',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 17:56:15','2023-05-02 19:40:51',0),(1971,'https://www.meadowcroftwines.com/product/men-s-t-shirt/','55:1ad2a742017ccdef05e20895a5b5c446',2878,'post','product',1,0,NULL,NULL,'Men&#8217;s T-Shirt','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 10:33:08','2023-06-13 15:27:21',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:57','2023-05-02 19:40:57',NULL),(1972,'https://www.meadowcroftwines.com/product/2020-cru-de-la-ruche-malbec/','69:005cadbf6e0d1f360700355f5248fcfb',2726,'post','product',1,0,'Buy 2020 Cru de la Ruche Malbec - Meadowcroft Wines','Indulge in the exquisite flavors of 2020 Cru de la Ruche Malbec from Meadowcroft Wines. Shop now and savor the rich aromas and exceptional quality of this Sonoma County, California wine.','2020 Cru de la Ruche Malbec','publish',NULL,0,NULL,NULL,NULL,'2020 Cru de la Ruche Malbec',42,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 12:50:45','2023-08-10 19:58:12',1,NULL,NULL,NULL,NULL,0,0,2,'2023-08-10 19:58:12','2023-05-02 19:40:41',0),(1973,'https://www.meadowcroftwines.com/product/2021-pinot-noir-carneros/','66:de270607a1e8f818b53a8f460a6baa41',2755,'post','product',1,0,'2021 Pinot Noir Carneros | Meadowcroft Wines | Sonoma County, CA','Experience the rich flavors of our 2021 Pinot Noir Carneros. Handcrafted with care at Meadowcroft Wines in Sonoma County, California. Order now','2021 Pinot Noir, Napa Carneros','publish',NULL,0,NULL,NULL,NULL,'2021 Pinot Noir Carneros',42,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-11 16:31:11','2023-08-08 12:37:08',1,NULL,NULL,NULL,NULL,0,0,2,'2023-08-08 12:37:07','2023-05-02 19:40:44',0),(1974,'https://www.meadowcroftwines.com/product/2021-pinot-noir-anderson-valley/','73:2afacf30385aeefdd9acef5678c6bb0a',2754,'post','product',1,0,NULL,NULL,'2021 Pinot Noir, Anderson Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2023-05-11 18:11:22','2023-08-31 20:22:16',1,NULL,NULL,NULL,NULL,0,0,2,'2023-08-31 20:22:16','2023-05-02 19:40:44',0),(1975,'https://www.meadowcroftwines.com/product/2018-cabernet-sauvignon-spring-mountain-district/','90:0fbfe560730f01f712638d8ee475a821',2679,'post','product',1,0,NULL,NULL,'2018 Cabernet Sauvignon, Spring Mtn. District','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2023-05-12 03:37:18','2023-08-08 12:45:53',1,NULL,NULL,NULL,NULL,0,0,2,'2023-08-08 12:45:52','2023-05-02 19:40:36',0),(1976,'https://www.meadowcroftwines.com/product/2020-pinot-noir-cornerstone-vineyard/','78:78cbb69f916f3a4cc15fd1650f942dcd',2732,'post','product',1,0,'2020 Pinot Noir Cornerstone Vineyard | Meadowcroft Wines','Discover the exquisite flavors of our 2020 Pinot Noir Cornerstone Vineyard. Handcrafted with care in Sonoma County, CA. Order now for a delightful wine experience.','2020 Pinot Noir, Cornerstone Vineyard','publish',NULL,0,NULL,NULL,NULL,'2020 Pinot Noir Cornerstone Vineyard',46,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-12 12:27:48','2023-08-31 20:23:12',1,NULL,NULL,NULL,NULL,0,0,2,'2023-08-31 20:23:12','2023-05-02 19:40:42',0),(1987,'https://www.meadowcroftwines.com/product/spring-2023-four-pack-set/','67:f92269d3ee2ea146187aa494a140d5d1',3007,'post','product',1,0,NULL,NULL,'Spring 2023 Four-Bottle Set','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-12 19:34:10','2024-11-11 18:03:47',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 18:03:47','2023-05-12 19:34:10',0),(1989,'https://www.meadowcroftwines.com/product/2021-chardonnay-anderson-valley/','73:c9006aa91f02318741072a700631eafd',2747,'post','product',1,0,'2021 Chardonnay, Anderson Valley from Sonoma County - Meadowcroft Wines','Savor the richness of our 2021 Chardonnay, Anderson Valley from Sonoma County. Discover a sophisticated wine with balanced flavors, skillfully crafted by Meadowcroft Wines','2021 Chardonnay, Anderson Valley','publish',NULL,0,NULL,NULL,NULL,'2021 Chardonnay',42,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-12 21:47:57','2023-09-27 19:23:07',1,NULL,NULL,NULL,NULL,0,0,2,'2023-09-27 19:23:07','2023-05-02 19:40:43',0),(1990,'https://www.meadowcroftwines.com/product/2021-viognier-wyldvin-vineyard/','72:ea49fd8546ac085134b0371f59da2b9c',2764,'post','product',1,0,'2021 Viognier, Wyldvin Vineyard from Sonoma County - Meadowcroft Wines','Indulge in the aromatic delights of our 2021 Viognier, Wyldvin Vineyard from Sonoma County. Immerse yourself in the captivating flavors crafted by Meadowcroft Wines','2021 Viognier, Wyldvin Vineyard','publish',NULL,0,NULL,NULL,NULL,'2021 Viognier',42,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-13 09:02:14','2024-04-15 22:55:48',1,NULL,NULL,NULL,NULL,0,0,2,'2024-04-15 22:55:48','2023-05-02 19:40:45',0),(1991,'https://www.meadowcroftwines.com/top-wineries-in-sonoma-county-2023/','68:546297e8744e146e09c7390581faed71',3009,'post','post',5,0,'Top 5 wineries in Sonoma County\'s You Must Try in 2023','Looking for the ultimate wine tasting experience in Sonoma County? Check out our list of the top 5 wineries you must try in 2023. 🍷🌿','Top 5 wineries in Sonoma County&#8217;s You Must Try in 2023','publish',NULL,0,NULL,NULL,NULL,'top wineries',76,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.meadowcroftwines.com/wp-content/uploads/2023/05/Featured-Image-800px.jpg',NULL,'3017','featured-image',NULL,NULL,'https://www.meadowcroftwines.com/wp-content/uploads/2023/05/Featured-Image-800px.jpg','3017','featured-image','{\"width\":800,\"height\":800,\"filesize\":106494,\"url\":\"https://www.meadowcroftwines.com/wp-content/uploads/2023/05/Featured-Image-800px.jpg\",\"path\":\"/nas/content/live/meadowcroftca/wp-content/uploads/2023/05/Featured-Image-800px.jpg\",\"size\":\"full\",\"id\":3017,\"alt\":\"Best Wineries in Sonoma 2023\",\"pixels\":640000,\"type\":\"image/jpeg\"}',2,NULL,NULL,'2023-05-14 11:28:50','2024-01-31 11:44:53',1,NULL,NULL,NULL,NULL,0,7,2,'2024-01-31 11:44:52','2023-05-15 10:25:50',0),(1992,'https://www.meadowcroftwines.com/product/2019-meadowcroft-dry-creek-valley-zinfandel-wyldvin-vineyard/','102:76401dd078f6d56e0647a56f3fe5578a',2710,'post','product',1,0,'2019 Meadowcroft Dry Creek Valley Zinfandel - Wyldvin Vineyard','Unveiling the Hidden Gems: Taste the Bold Elegance of 2019 Meadowcroft Dry Creek Valley Zinfandel - Wyldvin Vineyard. Don\'t Miss Out!','2019 Zinfandel, Wyldvin Vineyard','publish',NULL,0,NULL,NULL,NULL,'2019 Meadowcroft Dry Creek Valley Zinfandel',49,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-14 14:31:38','2023-09-25 22:11:46',1,NULL,NULL,NULL,NULL,0,0,2,'2023-09-25 22:11:46','2023-05-02 19:40:39',0),(1993,'https://www.meadowcroftwines.com/product/double-bottle-textured-bag/','68:49f5231ff61db883869553c90da52ba9',3022,'post','product',1,0,NULL,NULL,'DOUBLE BOTTLE TEXTURED BAG','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-15 19:53:55','2023-05-15 19:58:37',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-15 19:58:37','2023-05-15 19:53:55',NULL),(1994,'https://www.meadowcroftwines.com/product/2020-louvau-vineyards-viognier/','72:131c6432c2f2a3d1de0181e6daaef5c5',2742,'post','product',1,0,NULL,NULL,'2020 Viognier, Louvau Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-16 15:44:59','2023-08-11 20:22:48',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-08-11 20:22:48','2023-05-02 19:40:43',0),(1996,'https://www.meadowcroftwines.com/wine-gifts/','44:29c01d71fab941f114d48c1de662d116',3026,'post','page',2,0,NULL,NULL,'Wine Gifts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-16 17:37:39','2024-11-13 18:25:53',1,NULL,NULL,NULL,NULL,0,1,2,'2024-11-13 18:25:53','2023-05-16 17:37:59',0),(1997,'https://www.meadowcroftwines.com/product/2016-cabernet-sauvignon-mt-veeder-estate-15l/','86:3d26e8a4684a70bb97b0cdd614139d0a',2658,'post','product',1,0,NULL,NULL,'2016 Cabernet Sauvignon, Mt. Veeder 1.5 liter','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-17 02:01:16','2023-06-12 12:33:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:00','2023-05-02 19:40:33',0),(1998,'https://www.meadowcroftwines.com/product/2018-cabernet-franc-rivino-vineyard/','77:59a535cfd247e601d8e243477f6ca0ef',2674,'post','product',1,0,'2018 Cabernet Franc from Rivino Vineyard | Meadowcroft Wines','Experience the elegance of our 2018 Cabernet Franc from Rivino Vineyard. Discover rich flavors, exquisite craftsmanship, and order your bottle today from Meadowcroft Wines.','2018 Cabernet Franc, Rivino Vineyard','publish',NULL,0,NULL,NULL,NULL,'2018 Cabernet Franc',49,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-17 03:13:20','2023-08-31 20:33:13',1,NULL,NULL,NULL,NULL,0,0,2,'2023-08-31 20:33:13','2023-05-02 19:40:35',0),(1999,'https://www.meadowcroftwines.com/product/2021-pinot-gris-nelson-ranch-vineyard/','79:0e06efc334f966b3c59f9472a96bdf1f',2753,'post','product',1,0,NULL,NULL,'2021 Pinot Gris, Nelson Ranch Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-17 06:13:06','2023-06-15 21:29:15',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-15 21:29:15','2023-05-02 19:40:44',0),(2000,'https://www.meadowcroftwines.com/product/2022-pinot-noir-anderson-valley/','73:60e49a7482d466d7afa1397048c2e331',2771,'post','product',1,0,NULL,'Savor the delightful taste of our 2022 Pinot Noir from Anderson Valley. Dive into the exquisite flavors crafted by Meadowcroft Wines.','2022 Pinot Noir, Anderson Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-18 16:21:13','2024-04-23 05:55:00',1,NULL,NULL,NULL,NULL,0,0,2,'2024-04-23 05:55:00','2023-05-02 19:40:46',0),(2001,'https://www.meadowcroftwines.com/product/2022-rousanne/','55:035bbda73e1014ddcd799f32f1d81c84',2774,'post','product',1,0,NULL,'Delve into the exquisite flavors of our 2022 Roussanne from Wyldvin Vineyard. Experience the essence of Meadowcroft Wines in every sip.','2022 Roussanne, Wyldvin Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-19 10:49:33','2024-08-30 21:41:38',1,NULL,NULL,NULL,NULL,0,0,2,'2024-08-30 21:41:38','2023-05-02 19:40:46',0),(2002,'https://www.meadowcroftwines.com/product/2022-french-colombard/','63:446b33f3b0c5b96eeb6dab66ff7e32ac',2768,'post','product',1,0,NULL,'Discover the allure of our 2022 French Colombard from Cameron Vineyard by Meadowcroft Wines. Experience unrivaled elegance & flavor. Order now!','2022 French Colombard, Russian River Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-19 15:22:41','2024-07-29 20:17:39',1,NULL,NULL,NULL,NULL,0,0,2,'2024-07-29 20:17:39','2023-05-02 19:40:46',0),(2003,'https://www.meadowcroftwines.com/product/celebrate-spring-6-pack/','65:f3623d96a5e84622bd14e1af579b040d',3030,'post','product',1,0,NULL,NULL,'Celebrate Spring 6 pack','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-19 21:10:36','2024-11-11 17:55:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 17:55:19','2023-05-19 21:10:36',0),(2004,'https://www.meadowcroftwines.com/product/spring-reds-6-pack/','60:d2b45ed8a5547a469aaa53d649fddaf8',3031,'post','product',1,0,NULL,NULL,'Spring Reds 6 Pack','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-19 22:46:14','2024-11-11 18:03:39',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 18:03:39','2023-05-19 22:46:14',0),(2005,'https://www.meadowcroftwines.com/product/2019-meadowcroft-dry-creek-valley-zinfandel-wyldvin-vineyard-375ml/','108:ff478d1b4355cf315fbef7d28bdb1239',2711,'post','product',1,0,NULL,NULL,'2019 Zinfandel, Wyldvin, 375ml','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-22 12:17:40','2023-06-12 12:33:38',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-12 12:33:38','2023-05-02 19:40:39',0),(2006,'https://www.meadowcroftwines.com/popular-red-wine-varietals/','60:2c331e7e45eab9fd38bd452f88f6c837',3032,'post','post',5,0,'Discover the Top 5 Red Wine Varietals That Everyone Loves','Explore the world of red wine with our list of the 5 most popular red wine varietals. From full-bodied Cabernet Sauvignon to smooth Merlot, learn about these beloved wines and enhance your wine-tasting experience.','Discover the Top 5 Red Wine Varietals That Everyone Loves','publish',NULL,0,NULL,NULL,NULL,'red wine varietals',72,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.meadowcroftwines.com/wp-content/uploads/2023/05/Featured-Image-800px-1.jpg',NULL,'3040','featured-image',NULL,NULL,'https://www.meadowcroftwines.com/wp-content/uploads/2023/05/Featured-Image-800px-1.jpg','3040','featured-image','{\"width\":800,\"height\":800,\"filesize\":62054,\"url\":\"https://www.meadowcroftwines.com/wp-content/uploads/2023/05/Featured-Image-800px-1.jpg\",\"path\":\"/nas/content/live/meadowcroftca/wp-content/uploads/2023/05/Featured-Image-800px-1.jpg\",\"size\":\"full\",\"id\":3040,\"alt\":\"Most Popular Red Wine Varietals\",\"pixels\":640000,\"type\":\"image/jpeg\"}',3,NULL,NULL,'2023-05-23 08:22:51','2023-05-26 11:06:03',1,NULL,NULL,NULL,NULL,0,6,2,'2023-05-26 11:06:01','2023-05-26 11:06:01',0),(2007,'https://www.meadowcroftwines.com/product/card-plantable/','56:5340dc93c232f86265950e4d6851c844',3041,'post','product',1,0,NULL,NULL,'Greeting Card &#8211; all types','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-23 18:52:10','2024-12-18 17:28:35',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-18 17:28:35','2023-05-23 18:52:10',0),(2009,'https://www.meadowcroftwines.com/tag/dlcatering/','48:06442151e3f3c66d5ccaf8164e58edda',44,'term','post_tag',NULL,NULL,NULL,NULL,'DLcatering',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-23 20:49:07','2023-05-23 20:59:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-23 20:59:00',NULL,NULL),(2010,'https://www.meadowcroftwines.com/tag/j-mo_music/','48:aa411d5528c1d07a3689fb88b74f01c5',45,'term','post_tag',NULL,NULL,NULL,NULL,'j.mo_music',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-23 20:49:07','2023-05-23 20:59:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-23 20:59:00',NULL,NULL),(2011,'https://www.meadowcroftwines.com/product/ticket-spring-2023-wine-club-pick-up-party-and-open-house/','99:de3c8ea9eb8728396e7ccd3d75cfe425',3045,'post','product',1,0,NULL,NULL,'Ticket- Spring 2023 Pick Up Party &#8211; Club Member Tickets','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2023-05-23 20:53:28','2024-03-25 17:39:34',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-10-04 15:21:16','2023-05-23 20:53:27',0),(2012,'https://www.meadowcroftwines.com/product/2018-cabernet-sauvignon-nelson-ranch-vineyard/','87:c00dae331d338f5c551c55c01a483f28',2678,'post','product',1,0,NULL,NULL,'2018 Cabernet Sauvignon, Nelson Ranch Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-23 23:34:52','2023-09-03 23:46:38',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-09-03 23:46:38','2023-05-02 19:40:36',0),(2013,'https://www.meadowcroftwines.com/product/ticket-spring-23-pick-up-party-club-member-duplicate/','94:793d003dee7c767d47f1f5dff12f4f5f',3047,'post','product',1,0,NULL,NULL,'Ticket- Spring 23 Pick Up Party &#8211; Non-Member Ticket','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-23 23:48:54','2023-10-04 15:21:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-10-04 15:21:33','2023-05-23 23:48:54',0),(2015,'https://www.meadowcroftwines.com/collection/event-tickets-2/','60:dd8828e04853da4333dde9164911fa90',3049,'post','collection',1,0,NULL,'Meadowcroft hosts several fun and educational events throughout the year. We welcome large parties and corporate groups.','Event Tickets','publish',NULL,0,NULL,NULL,NULL,'Winery Events',33,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2023-05-24 21:36:04','2024-03-15 22:15:58',1,NULL,NULL,NULL,NULL,0,0,2,'2024-03-15 22:15:58','2023-05-24 21:36:04',0),(2018,'https://www.meadowcroftwines.com/product/glass-bottles-for-blending_-bordeaux/','78:1c144ef440e11e80e7035df76040a596',2829,'post','product',1,0,NULL,NULL,'Glass Bottles for Blending_ Bordeaux','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-25 04:12:26','2023-06-13 13:20:14',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-05-02 19:40:52','2023-05-02 19:40:52',0),(2019,'https://www.meadowcroftwines.com/product/seated-tasting-duplicate/','66:4682c295db74f5c8a0f0db1bdda94a0d',2787,'post','product',1,0,NULL,NULL,'Balloon and Blending','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-25 16:26:05','2024-12-23 21:38:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-23 21:38:50','2023-05-02 19:40:48',0),(2020,'https://www.meadowcroftwines.com/product/plush-dog-toy-duplicate/','65:664183514941d33e6eb0f3db5d3d8617',3055,'post','product',1,0,NULL,NULL,'Plush Dog Toy- Blanc de Blancs','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-26 16:14:51','2023-08-27 23:08:58',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-08-27 23:08:58','2023-05-26 16:14:51',0),(2022,'https://www.meadowcroftwines.com/product/2021-sangiovese-speedy-creek-vineyard/','79:c8ea4460f7bf874d237ed6da32e95b6c',3057,'post','product',1,0,NULL,'Experience the rich flavors of our 2021 Sangiovese from Speedy Creek Vineyard, a classic varietal crafted by Meadowcroft Wines.','2021 Sangiovese, Speedy Creek Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-26 16:31:40','2024-07-29 20:19:46',1,NULL,NULL,NULL,NULL,0,0,2,'2024-07-29 20:19:46','2023-05-26 16:31:40',0),(2023,'https://www.meadowcroftwines.com/product/2022-pinot-noir-napa-carneros/','71:659e670a0be5201fd2da950a09161550',3058,'post','product',1,0,NULL,NULL,'2022 Pinot Noir, Napa Carneros','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-26 16:59:20','2024-09-24 19:40:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-09-24 19:40:29','2023-05-26 16:59:20',0),(2024,'https://www.meadowcroftwines.com/product/2022-pinot-noir-vina-del-sol-vineyard-sonoma-coast/','92:e7d2c1ceac2b80648e18741215f53158',3059,'post','product',1,0,NULL,NULL,'2022 Pinot Noir, Viña Del Sol Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-26 17:01:37','2023-08-31 20:29:27',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-08-31 20:29:27','2023-05-26 17:01:37',0),(2025,'https://www.meadowcroftwines.com/product/2021-cabernet-sauvignon-napa-valley/','77:18a30693b5a323ac39726b57ed13e838',3060,'post','product',1,0,NULL,'Elevate your palate with Meadowcroft Wines\' 2021 Napa Valley Cabernet Sauvignon. Experience bold excellence in every sip.','2021 Cabernet Sauvignon, Napa Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-26 17:03:27','2024-06-17 19:41:46',1,NULL,NULL,NULL,NULL,0,0,2,'2024-06-17 19:41:46','2023-05-26 17:03:27',0),(2026,'https://www.meadowcroftwines.com/product/2022-pinot-noir-russian-river-valley/','78:22d8e8d5cef97421588f6292ea66ebcb',3061,'post','product',1,0,NULL,'Experience the refined flavors of our 2022 Pinot Noir from the Russian River Valley. Discover the essence of Meadowcroft Wines.','2022 Pinot Noir, Russian River Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-26 17:06:07','2024-04-23 05:54:45',1,NULL,NULL,NULL,NULL,0,0,2,'2024-04-23 05:54:44','2023-05-26 17:06:07',0),(2027,'https://www.meadowcroftwines.com/product/2022-chardonnay-sonoma-coast-vina-del-sol-vineyard/','92:5955959ab6d1c8c1f3dd94251b8b2707',3062,'post','product',1,0,NULL,NULL,'2022 Chardonnay, Sonoma Coast','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-26 17:09:14','2024-07-08 23:22:05',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-08 23:22:05','2023-05-26 17:09:13',0),(2028,'https://www.meadowcroftwines.com/product/travel-mug-splash-proof/','65:2fec4648ee27772cfeee0c16ed545b09',3065,'post','product',1,0,NULL,NULL,'Travel Mug, splash proof','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-05-29 17:01:25','2024-01-14 01:40:42',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 01:40:42','2023-05-29 17:01:25',0),(2029,'https://www.meadowcroftwines.com/product/private-label-wine/','60:053e49aa7942923b8c613bdce06c8777',3068,'post','product',1,0,NULL,NULL,'Private label wine','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-06-05 00:24:08','2023-06-05 00:24:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-05 00:24:07','2023-06-05 00:24:07',0),(2030,'https://www.meadowcroftwines.com/best-wineries-in-sonoma-county-for-zinfandel-lovers/','85:c982137602d3300a5e5ed67f5c2ce694',3075,'post','post',5,0,'7 Best Wineries in Sonoma County for Zinfandel Lovers','Uncover the Ultimate Zinfandel Paradise! Explore Sonoma County\'s 7 Top Wineries, Perfect for Zinfandel Lovers. Discover the Finest Blends & Unforgettable Tastings.','7 Best Wineries in Sonoma County for Zinfandel Lovers','publish',NULL,0,NULL,NULL,NULL,'Best Wineries in Sonoma',69,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.meadowcroftwines.com/wp-content/uploads/2023/06/Featured-Image-800px-2.jpg',NULL,'3086','featured-image',NULL,NULL,'https://www.meadowcroftwines.com/wp-content/uploads/2023/06/Featured-Image-800px-2.jpg','3086','featured-image','{\"width\":800,\"height\":800,\"filesize\":115326,\"url\":\"https://www.meadowcroftwines.com/wp-content/uploads/2023/06/Featured-Image-800px-2.jpg\",\"path\":\"/nas/content/live/meadowcroftca/wp-content/uploads/2023/06/Featured-Image-800px-2.jpg\",\"size\":\"full\",\"id\":3086,\"alt\":\"Meadowcroft Wines\",\"pixels\":640000,\"type\":\"image/jpeg\"}',1,NULL,NULL,'2023-06-13 09:12:11','2024-03-01 05:44:18',1,NULL,NULL,NULL,NULL,0,6,2,'2024-03-01 05:44:18','2023-06-13 11:23:41',0),(2031,'https://www.meadowcroftwines.com/product/disposable-wine-glass-govino/','70:90b7acace203ed5d424ea0fea5d908bc',3088,'post','product',1,0,NULL,NULL,'Disposable Wine Glass &#8211; Govino','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-06-15 23:51:50','2024-05-16 23:22:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-05-16 23:22:55','2023-06-15 23:51:50',0),(2035,'https://www.meadowcroftwines.com/white-wines-storing-and-serving-temperature/','77:66708d73b10023cf496ee7935a5c53fa',3095,'post','post',5,0,'The Ultimate Guide to Proper Storage and Serving: Meadowcroft wines','Discover the art of storing and serving white wines flawlessly. Learn about the ideal temperature, storage techniques, and expert tips to elevate your wine experience. Uncork the secrets to impeccable enjoyment','How to properly store and serve white wines. temperature, storage','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.meadowcroftwines.com/wp-content/uploads/2023/06/webp-1.webp',NULL,'3098','featured-image',NULL,NULL,'https://www.meadowcroftwines.com/wp-content/uploads/2023/06/webp-1.webp','3098','featured-image','{\"width\":800,\"height\":800,\"filesize\":161884,\"url\":\"https://www.meadowcroftwines.com/wp-content/uploads/2023/06/webp-1.webp\",\"path\":\"/nas/content/live/meadowcroftca/wp-content/uploads/2023/06/webp-1.webp\",\"size\":\"full\",\"id\":3098,\"alt\":\"\",\"pixels\":640000,\"type\":\"image/webp\"}',0,NULL,NULL,'2023-06-30 07:06:17','2024-01-30 11:56:23',1,NULL,NULL,'WebPage','BlogPosting',0,9,2,'2024-01-30 11:56:22','2023-06-30 07:59:56',0),(2036,'https://www.meadowcroftwines.com/how-to-choose-a-white-wine/','60:6b0eb7089f868e698a430e5e1c09475e',3103,'post','post',5,0,'How to Choose a White Wine | Meadowcroft Wines','Explore Sonoma County\'s white wines, from Chardonnay to Sauvignon Blanc. Discover how to choose the perfect white wine and unlock delightful flavors and pairings','How to Choose a White Wine','publish',NULL,0,NULL,NULL,NULL,'White wine',72,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.meadowcroftwines.com/wp-content/uploads/2023/07/choosing-white-wine.jpg',NULL,'3104','featured-image',NULL,NULL,'https://www.meadowcroftwines.com/wp-content/uploads/2023/07/choosing-white-wine.jpg','3104','featured-image','{\"width\":1200,\"height\":798,\"filesize\":174839,\"url\":\"https://www.meadowcroftwines.com/wp-content/uploads/2023/07/choosing-white-wine.jpg\",\"path\":\"/nas/content/live/meadowcroftca/wp-content/uploads/2023/07/choosing-white-wine.jpg\",\"size\":\"full\",\"id\":3104,\"alt\":\"a man selecting white wine\",\"pixels\":957600,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2023-07-10 12:51:09','2024-01-30 11:54:37',1,NULL,NULL,NULL,NULL,0,7,2,'2024-01-30 11:54:37','2023-07-10 13:14:33',0),(2037,'https://www.meadowcroftwines.com/product/meadowcroft-2022-pinot-noir-sonoma-coast/','82:3563e3bdea0ad2b38de1d7449b113bd7',3110,'post','product',1,0,NULL,'Enjoy the delicious taste of our 2022 Pinot Noir Sonoma Coast at Meadowcroft Wines. Taste the essence of Sonoma in every sip.','2022 Pinot Noir Sonoma Coast','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-07-25 17:30:55','2024-04-23 05:53:10',1,NULL,NULL,NULL,NULL,0,0,2,'2024-04-23 05:53:10','2023-07-25 17:30:55',0),(2038,'https://www.meadowcroftwines.com/product/ticket-spring-2023-pick-up-party-club-member-tickets-duplicate/','104:d24c2f99adcef60924b915cf93b6efae',3112,'post','product',1,0,NULL,NULL,'Ticket- Summer BBQ Party &#8211; Club Member Tickets','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-07-28 19:12:41','2023-10-04 15:21:46',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-10-04 15:21:46','2023-07-28 19:12:41',0),(2039,'https://www.meadowcroftwines.com/product/ticket-spring-23-pick-up-party-non-member-ticket-duplicate/','100:c60a990198d71d03e5343c90f2f7f95b',3113,'post','product',1,0,NULL,NULL,'Ticket- Summer BBQ Party- Non-Member','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-07-28 19:16:39','2023-10-04 15:22:10',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-10-04 15:22:10','2023-07-28 19:16:39',0),(2041,'https://www.meadowcroftwines.com/product/mug-stoneware-coffee/','62:ecf33d2c2c4531400cc85ee9a55b16f6',3121,'post','product',1,0,NULL,NULL,'Mug, stoneware coffee','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-08-03 21:10:33','2024-01-14 01:36:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 01:36:25','2023-08-03 21:10:33',0),(2042,'https://www.meadowcroftwines.com/product/books/','47:bfb6a57940b55e793e704e340bf4ce6a',3145,'post','product',1,0,NULL,NULL,'Books','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-08-25 18:49:38','2023-08-25 18:58:13',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-08-25 18:58:13','2023-08-25 18:49:38',0),(2044,'https://www.meadowcroftwines.com/balloon-blending/','50:1c6ce4308ca73074ae7c8c84a3329f8e',3150,'post','page',5,0,NULL,'Experience the thrill of a hot air balloon ride over Sonoma Valley followed by a wine blending seminar at Meadowcroft Wines. Create your own signature blend and bottle it. Perfect for wine and adventure lovers. Book your unique experience now!','Balloon &#038; Blending','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-08-29 08:16:58','2023-09-05 07:05:54',1,NULL,NULL,NULL,NULL,0,0,2,'2023-09-05 07:05:52','2023-08-29 08:17:08',0),(2045,'https://www.meadowcroftwines.com/wine-blending-experience/','58:5a7327ccea47682b5e850ef576b2b4da',3151,'post','page',5,0,NULL,'Create your own classic red Bordeaux style blend using carefully aged wines from separate oak barrels. The best part? You\'ll get to label and hand-cork your own 750ml bottle of your custom blend to take home!','Wine Blending Experience','publish',NULL,0,NULL,NULL,NULL,'wine blending in Sonoma',61,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.meadowcroftwines.com/wp-content/uploads/2023/08/About_our_wines_new-1-scaled.jpg',NULL,'3152','featured-image',NULL,NULL,'https://www.meadowcroftwines.com/wp-content/uploads/2023/08/About_our_wines_new-1-scaled.jpg','3152','featured-image','{\"width\":2560,\"height\":1928,\"filesize\":829421,\"url\":\"https://www.meadowcroftwines.com/wp-content/uploads/2023/08/About_our_wines_new-1-scaled.jpg\",\"path\":\"/nas/content/live/meadowcroftca/wp-content/uploads/2023/08/About_our_wines_new-1-scaled.jpg\",\"size\":\"full\",\"id\":3152,\"alt\":\"Creating the perfect wine blend\",\"pixels\":4935680,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2023-08-29 08:18:30','2024-12-23 21:52:07',1,NULL,NULL,NULL,NULL,0,4,2,'2024-12-23 21:52:07','2023-08-29 08:30:56',0),(2046,'https://www.meadowcroftwines.com/product/chocolate-bar/','55:69063e6274dc522628c4ee5b5f0de9db',3183,'post','product',1,0,NULL,NULL,'Chocolate Bar','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-09-14 18:45:57','2024-01-14 02:18:52',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 02:18:52','2023-09-14 18:45:57',0),(2047,'https://www.meadowcroftwines.com/product/olive-oil-025l/','56:ae8201b252ba9bcc501437385a7d814e',3186,'post','product',1,0,NULL,NULL,'Olive Oil','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-09-22 21:32:15','2024-01-14 02:01:37',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 02:01:37','2023-09-22 21:32:15',0),(2048,'https://www.meadowcroftwines.com/product/chocolate-bar-duplicate/','65:fb1ad706819970401ca50695b3ad332a',3187,'post','product',1,0,NULL,NULL,'Chocolate Bar Sampler Pack &#8211; MIA','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-09-22 21:51:12','2024-04-03 21:39:04',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-04-03 21:39:04','2023-09-22 21:51:12',0),(2049,'https://www.meadowcroftwines.com/product/meadowcroft-2022-pinot-noir-vina-del-sol-vineyard/','91:b228cd4cd335d5058beac3084e82bf27',3191,'post','product',1,0,NULL,NULL,'Meadowcroft 2022 Pinot Noir Vina Del Sol Vineyard * Allocation','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-09-27 16:32:18','2023-09-27 16:32:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-09-27 16:32:18','2023-09-27 16:32:18',0),(2050,'https://www.meadowcroftwines.com/product/wine-club-pick-up-party-fall-2023/','75:564d527cc6aae6ae8b2906a44c87ff74',3204,'post','product',1,0,NULL,NULL,'Wine Club Pick Up Party &#8211; CLUB MEMBERS','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-10-02 19:58:29','2023-12-27 20:49:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-12-27 20:49:01','2023-10-02 19:58:29',0),(2051,'https://www.meadowcroftwines.com/product/wine-club-pick-up-party-fall-2023-duplicate/','85:793cbbff976832eb5faf2b479dd16462',3209,'post','product',1,0,NULL,NULL,'Wine Club Pick Up Party &#8211; NON MEMBERS','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-10-04 15:47:10','2023-12-27 20:49:10',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-12-27 20:49:10','2023-10-04 15:47:10',0),(2052,'https://www.meadowcroftwines.com/product/gift-box-chocolate-stemless-glasses-wine-not-included/','95:41e8816baafa4e7572184a0d8638c831',3211,'post','product',1,0,NULL,NULL,'Gift box- chocolate &amp; stemless glasses','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-10-06 18:33:05','2023-10-17 16:59:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-10-17 16:59:29','2023-10-06 18:33:05',0),(2053,'https://www.meadowcroftwines.com/product/cabernet-dark-chocolate-gift-box/','74:dc50ae04ef83bde6a9d9f99cef9dc52f',3212,'post','product',1,0,NULL,NULL,'Cabernet Lover&#8217;s Gift Box','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-10-06 18:41:07','2024-11-11 17:54:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 17:54:50','2023-10-06 18:41:07',0),(2054,'https://www.meadowcroftwines.com/product/gift-box-with-salami-cheese-crackers-preserves/','88:0c414b9239d2a5139aeb0a905a74d855',3213,'post','product',1,0,NULL,NULL,'Gift Box with Salami, cheese, crackers &amp; preserves (wine not incl)','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-10-06 19:01:05','2024-01-14 01:26:48',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 01:26:48','2023-10-06 19:01:05',0),(2055,'https://www.meadowcroftwines.com/product/foodies-gift-box/','58:e42f59743dc96b6ad7b5ce8407741eb5',3214,'post','product',1,0,NULL,NULL,'Foodies Gift Box','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-10-06 19:11:31','2024-11-11 17:56:38',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 17:56:38','2023-10-06 19:11:31',0),(2056,'https://www.meadowcroftwines.com/product/zinfandel-glasses-gift-box/','68:1e6df4c1d6345b34f40e8842e1be5248',3215,'post','product',1,0,NULL,NULL,'Zinfandel &amp; Stemless Glasses Gift Box','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-10-06 19:26:43','2024-11-11 18:03:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 18:03:18','2023-10-06 19:26:43',0),(2058,'https://www.meadowcroftwines.com/product/gift-box-with-two-stemless-logo-wine-glasses/','86:136b1e3e219a1c73e7ca93d555ac5acd',3217,'post','product',1,0,NULL,NULL,'Gift Box with two stemless logo wine glasses','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-10-06 20:03:00','2024-01-14 01:44:14',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 01:44:14','2023-10-06 20:03:00',0),(2060,'https://www.meadowcroftwines.com/tag/circus/','44:16d041c86540d8010e88eec07f87405f',149,'term','post_tag',NULL,NULL,NULL,NULL,'circus',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-10-12 22:34:15','2023-10-12 22:34:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-10-12 22:34:15',NULL,NULL),(2061,'https://www.meadowcroftwines.com/tag/cirquedeboheme/','52:bfcb14692b72764b80019dee4c9faffa',150,'term','post_tag',NULL,NULL,NULL,NULL,'cirquedeboheme',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-10-12 22:34:15','2023-10-12 22:34:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-10-12 22:34:15',NULL,NULL),(2062,'https://www.meadowcroftwines.com/product/box-4-bottle-wood-laydown/','67:ed83eb4b79bdc682f4995b7e090b8947',3222,'post','product',1,0,NULL,NULL,'Box- 4 bottle wood laydown','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-10-27 19:39:22','2024-01-14 02:17:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-14 02:17:33','2023-10-27 19:39:22',0),(2063,'https://www.meadowcroftwines.com/product/wine-club-pick-up-party-club-members-duplicate/','88:de7c828bbd43bfe16b5c5db2a0b15fcf',3223,'post','product',1,0,NULL,NULL,'Wine Club Pick Up Party &#8211; Children','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-10-28 23:18:27','2023-10-28 23:19:37',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-10-28 23:19:37','2023-10-28 23:18:27',0),(2064,'https://www.meadowcroftwines.com/product/napa-district-designate-cabernet-collector-s-box/','90:6db707fb81990d8e510104f46850ec7c',3225,'post','product',1,0,NULL,NULL,'Napa District Designate Cabernet Collector&#8217;s Box','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-11-02 18:49:08','2023-11-02 18:49:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-11-02 18:49:07','2023-11-02 18:49:07',0),(2065,'https://www.meadowcroftwines.com/product/holiday-four-bottle-pack/','66:d132eb98aa0ce163d8ca794073940bb9',3226,'post','product',1,0,NULL,NULL,'Holiday Four Bottle Pack','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-11-02 23:04:57','2024-11-11 17:58:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 17:58:49','2023-11-02 23:04:57',0),(2066,'https://www.meadowcroftwines.com/product/holiday-sparkling-2-pack/','66:d33430048491ed5a45089df88d42cba0',3227,'post','product',1,0,NULL,NULL,'Holiday Sparkling 2 Pack','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-11-03 18:29:12','2024-11-11 17:59:13',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 17:59:13','2023-11-03 18:29:11',0),(2067,'https://www.meadowcroftwines.com/product/holiday-four-bottle-pack-duplicate/','76:5d6367cb3ac5393465671cbe06b9ee62',3228,'post','product',1,0,NULL,NULL,'Holiday Six Bottle Pack','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-11-03 18:57:34','2024-11-11 17:58:59',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 17:58:59','2023-11-03 18:57:34',0),(2068,'https://www.meadowcroftwines.com/product/cabernet-tasting-flight/','65:22ecef015815d5b18dffbf1c3315a1e7',3229,'post','product',1,0,NULL,NULL,'Cabernet Tasting Flight','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-11-10 19:59:26','2023-11-10 19:59:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-11-10 19:59:26','2023-11-10 19:59:26',0),(2070,'https://www.meadowcroftwines.com/product/mystery-case-duplicate/','64:35c81c5856a7bcaf7b19976e68f6df47',3235,'post','product',1,0,NULL,NULL,'MYSTERY CASE &#8211; Mixed MC &amp; TH','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-11-24 16:42:33','2023-11-24 16:43:17',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-11-24 16:43:17','2023-11-24 16:42:33',0),(2071,'https://www.meadowcroftwines.com/product/port-and-chocolate-gift-pack/','70:8b388ea8615386b15f503c7d3d01482c',3236,'post','product',1,0,NULL,NULL,'Port and Chocolate Gift Pack','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-11-27 20:04:02','2024-11-11 18:04:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 18:04:19','2023-11-27 20:04:02',0),(2072,'https://www.meadowcroftwines.com/product/mystery-case-mixed-mc-th-duplicate/','76:4d29c6826d0ad56e1a13c2586cb53576',3239,'post','product',1,0,NULL,NULL,'MYSTERY CASE &#8211; Thomas Henry','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-12-01 19:09:36','2023-12-01 19:10:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-12-01 19:10:08','2023-12-01 19:09:36',0),(2073,'https://www.meadowcroftwines.com/product/port-and-chocolate-gift-pack-duplicate/','80:483b5888af73fb0f5e24b8f182e1f589',3241,'post','product',1,0,NULL,NULL,'Port and Chocolate Gift Pack duplicate','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-12-19 18:29:18','2024-11-11 18:04:05',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 18:04:05','2023-12-19 18:29:18',0),(2074,'https://www.meadowcroftwines.com/product/2023-pinot-gris-nelson-family-vineyard/','80:f199b045d532394025b8ff82ee05c4c3',3243,'post','product',1,0,NULL,'Indulge in the exceptional 2023 Pinot Gris from Nelson Family Vineyard by Meadowcroft Wines.Experience a delightful symphony of flavors in every sip. Order now for a taste of perfection!','2023 Pinot Gris, Nelson Family Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-12-20 22:57:33','2024-09-24 19:35:52',1,NULL,NULL,NULL,NULL,0,0,2,'2024-09-24 19:35:52','2023-12-20 22:57:33',0),(2075,'https://www.meadowcroftwines.com/product/2023-sauvignon-blanc-sonoma-coast/','75:23751d7e5cdd3b36b0e9eccd685dafa8',3244,'post','product',1,0,NULL,'Indulge in the exceptional 2023 Pinot Gris from Nelson Family Vineyard by Meadowcroft Wines.Experience a delightful symphony of flavors in every sip. Order now for a taste of perfection!','2023 Sauvignon Blanc, Sonoma Coast','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-12-20 23:00:37','2024-11-06 22:25:34',1,NULL,NULL,NULL,NULL,0,0,2,'2024-11-06 22:25:34','2023-12-20 23:00:37',0),(2076,'https://www.meadowcroftwines.com/product/2021-river-trace-gsm/','62:eb76188378507dc38ded5fca0898af10',3245,'post','product',1,0,NULL,NULL,'2021 River Trace GSM','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-12-20 23:06:57','2024-08-02 19:01:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-08-02 19:01:02','2023-12-20 23:06:56',0),(2077,'https://www.meadowcroftwines.com/product/2021-cabernet-sauvignon-napa-valley-large-format/','90:6d57745cebed2907a2930c2ff5b22cb6',3246,'post','product',1,0,NULL,NULL,'2021 Cabernet Sauvignon, Napa Valley &#8211; Large Format &#8211; 1.5L','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-12-20 23:15:39','2023-12-26 17:07:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-12-26 17:07:33','2023-12-20 23:15:39',0),(2078,'https://www.meadowcroftwines.com/product/2021-cabernet-sauvignon-stags-leap-district/','85:631c4423fee68bfa53626a2610ffae1c',3247,'post','product',1,0,NULL,NULL,'2021 Cabernet Sauvignon, Stags Leap District','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-12-20 23:17:37','2024-09-27 03:52:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-09-27 03:52:33','2023-12-20 23:17:37',0),(2079,'https://www.meadowcroftwines.com/product/2021-cabernet-sauvignon-oakville/','74:127e9b7b9d82330b0a90839d876acd8c',3248,'post','product',1,0,NULL,NULL,'2021 Cabernet Sauvignon, Oakville','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-12-20 23:19:41','2024-04-22 19:02:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-04-22 19:02:01','2023-12-20 23:19:40',0),(2080,'https://www.meadowcroftwines.com/product/2022-the-magi/','55:a16357724d18e7d6ce9cea33c1929161',3249,'post','product',1,0,NULL,'Enjoy the enchantment of Meadowcroft Wines\' 2022 The Magi. Experience delightful flavors with every sip. Embrace the extraordinary.','2022 The Magi','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-12-20 23:21:54','2024-05-07 16:52:31',1,NULL,NULL,NULL,NULL,0,0,2,'2024-05-07 16:52:31','2023-12-20 23:21:54',0),(2081,'https://www.meadowcroftwines.com/private-label-wines/','53:24f512c481a0181d7d5b330747a4d603',3252,'post','page',2,0,NULL,NULL,'Private Label Wines','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-12-21 21:11:35','2024-10-08 20:05:48',1,NULL,NULL,NULL,NULL,0,3,2,'2024-10-08 20:05:48','2023-12-21 21:14:10',0),(2083,'https://www.meadowcroftwines.com/tag/cabernet-sauvignon/','56:ad75ca051c0e1f68c411389951af3638',152,'term','post_tag',NULL,NULL,NULL,NULL,'cabernet sauvignon',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-12-27 20:41:08','2023-12-28 17:50:40',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-12-28 17:50:39',NULL,NULL),(2084,'https://www.meadowcroftwines.com/tag/wine-tasting/','50:7ce36e75d2226481e1d0c8f46b9e657f',153,'term','post_tag',NULL,NULL,NULL,NULL,'wine tasting',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-12-27 20:41:08','2023-12-28 17:50:40',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-12-28 17:50:39',NULL,NULL),(2085,'https://www.meadowcroftwines.com/product/cabernet-tasting-flight-with-tom-meadowcroft/','86:8ee760bb7f6f5f9d75e540af5c3f45f2',3275,'post','product',1,0,NULL,NULL,'Cabernet Tasting Flight with Tom Meadowcroft','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-12-27 20:46:28','2023-12-28 17:29:27',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-12-28 17:29:27','2023-12-27 20:46:28',0),(2086,'https://www.meadowcroftwines.com/product/2010-cabernet-sauvignon-mt-veeder-estate/','82:1d56626b588af150717f5c536bb05dcc',3281,'post','product',1,0,NULL,NULL,'2010 Cabernet Sauvignon, Mt. Veeder Estate','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-01-05 20:35:35','2024-01-05 20:36:38',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-05 20:36:38','2024-01-05 20:35:35',0),(2087,'https://www.meadowcroftwines.com/product/2013-cabernet-sauvignon-napa-valley-college/','85:5ad170a19e07a073bb7f938c231045f6',3282,'post','product',1,0,NULL,NULL,'2013 Cabernet Sauvignon, Napa Valley College','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-01-05 20:44:34','2024-01-05 20:45:05',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-05 20:45:05','2024-01-05 20:44:34',0),(2088,'https://www.meadowcroftwines.com/product/2016-french-colombard-russian-river-valley/','84:3647d0dd188ff774c5c8518111604db3',3283,'post','product',1,0,NULL,NULL,'2016 French Colombard, Russian River Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-01-05 20:45:56','2024-01-05 20:46:30',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-05 20:46:30','2024-01-05 20:45:56',0),(2089,'https://www.meadowcroftwines.com/product/2018-cabernet-sauvignon-louvau-vineyard/','81:37aaa47775ea1089c7a5c56b6a4b88af',3284,'post','product',1,0,NULL,NULL,'2018 Cabernet Sauvignon, Louvau Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-01-05 20:53:22','2024-01-05 20:53:52',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-05 20:53:52','2024-01-05 20:53:22',0),(2090,'https://www.meadowcroftwines.com/product/2018-river-trace-grenache-syrah-mourvedre/','83:9e1734f04d96c0bc03c1b997549e1c64',3285,'post','product',1,0,NULL,NULL,'2018 Syrah','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-01-05 20:55:03','2024-01-05 20:55:47',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-05 20:55:47','2024-01-05 20:55:03',0),(2091,'https://www.meadowcroftwines.com/product/2018-pinot-noir-russian-river-valley/','78:37e6e4d88a6af481e3595b75077f7eba',3286,'post','product',1,0,NULL,NULL,'2018 Pinot Noir, Russian River Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-01-05 20:56:47','2024-01-05 20:57:13',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-05 20:57:13','2024-01-05 20:56:47',0),(2093,'https://www.meadowcroftwines.com/product/2013-cabernet-sauvignon-mt-veeder-estate-375ml/','88:e0a58b4e16f4d695b113248c4c33fd0a',3288,'post','product',1,0,NULL,NULL,'2013 Cabernet Sauvignon, Mt. Veeder Estate 375ml','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-01-05 22:53:30','2024-01-05 22:56:04',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-05 22:56:04','2024-01-05 22:53:30',0),(2094,'https://www.meadowcroftwines.com/product/2019-viognier-louvau-vineyard/','71:d9cd7a561a999e6526cda474c8e9ab5c',3289,'post','product',1,0,NULL,NULL,'2019 Viognier, Louvau Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-01-05 23:13:16','2024-01-05 23:13:47',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-05 23:13:47','2024-01-05 23:13:16',0),(2096,'https://www.meadowcroftwines.com/product/speakeasy-and-casino-night-party/','74:909642b49f1f1b5e3b59c81ea8084918',3294,'post','product',1,0,NULL,NULL,'Speakeasy and Casino Night Party','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-01-11 20:36:53','2024-02-02 22:13:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-02-02 22:13:03','2024-01-11 20:36:53',0),(2097,'https://www.meadowcroftwines.com/product/olive-oil-o-all-flavors/','65:5f2e13f3e466bbdbd2122fe70d681749',3297,'post','product',1,0,NULL,NULL,'Olive Oil &#8211; &#8220;O&#8221; (all flavors)','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-01-18 22:19:13','2024-01-18 22:51:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-18 22:51:24','2024-01-18 22:19:12',0),(2098,'https://www.meadowcroftwines.com/product/olive-oil-o-all-flavors-duplicate/','75:278a834e958786f03b4f64032cb9cf88',3298,'post','product',1,0,NULL,NULL,'White Balsamic Vinegar &#8211; O','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-01-18 22:27:27','2024-01-18 22:51:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-18 22:51:56','2024-01-18 22:27:27',0),(2099,'https://www.meadowcroftwines.com/product/mixer-mimosa-w-tangerine/','66:0e60ef30930e003c33c936e33f51a6f7',3299,'post','product',1,0,NULL,NULL,'Mocktail Mixer (Various Flavors)','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-01-19 23:27:27','2024-02-09 20:12:12',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-02-09 20:12:12','2024-01-19 23:27:26',0),(2100,'https://www.meadowcroftwines.com/product/mixer-mimosa-w-tangerine-duplicate/','76:4c0b00d314bcd24ad274483f840e1901',3300,'post','product',1,0,NULL,NULL,'Mixer- Sangria','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-01-19 23:27:29','2024-02-09 20:12:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-02-09 20:12:28','2024-01-19 23:27:29',0),(2101,'https://www.meadowcroftwines.com/?p=3302','40:2e8cb1227428f9c76fb88685dbffdec2',3302,'post','post',5,0,NULL,NULL,'Beginners Guide to White Wine','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-01-23 10:46:40','2024-01-23 10:46:40',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-23 10:46:40','0000-00-00 00:00:00',0),(2102,'https://www.meadowcroftwines.com/brand/meadowcroft-wines/','57:3cf04fcd0e6c3765d521a6056f4f34a7',3399,'post','brand',2,0,NULL,NULL,'Meadowcroft Wines','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-02-09 23:48:24','2024-02-12 22:26:00',1,NULL,NULL,NULL,NULL,0,1,2,'2024-02-12 22:26:00','2024-02-09 23:48:23',0),(2103,'https://www.meadowcroftwines.com/wine_asset/oakville-napa-valley-cabernet-sauvignon/','84:52fb06d04906a3a19583a8af31d8569a',3400,'post','wine_asset',2,0,NULL,NULL,'2019 CABERNET SAUVIGNON, OAKVILLE, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-02-09 23:49:02','2024-05-15 23:14:39',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 23:14:39','2024-02-09 23:51:14',0),(2104,'https://www.meadowcroftwines.com/wine_asset/spring-mt-district-napa-valley-cabernet-sauvignon/','94:3101dd078e13e41c0263e1cc77dd6b7a',3401,'post','wine_asset',2,0,NULL,NULL,'2018 CABERNET SAUVIGNON, SPRING MT. DISTRICT, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-02-09 23:51:31','2024-05-15 23:11:54',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 23:11:54','2024-02-09 23:53:24',0),(2105,'https://www.meadowcroftwines.com/product/gold-medal-6-pack-sf-chronicle-competition/','84:4d8d2498146502f3c3c1f421e9b7ca60',3402,'post','product',1,0,NULL,NULL,'Gold Medal 6 Pack SF Chronicle Competition','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-02-12 20:03:43','2024-11-11 17:57:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 17:57:26','2024-02-12 20:03:43',0),(2106,'https://www.meadowcroftwines.com/product/fresh-pasta-making-demo-lunch/','71:cd7a639ae8a1b466ec6f51b24ac0dd3a',3413,'post','product',1,0,NULL,NULL,'Fresh Pasta Making Demo &amp; Lunch','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2024-02-23 22:24:46','2024-05-16 17:39:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-03-21 22:13:06','2024-02-23 22:24:46',0),(2108,'https://www.meadowcroftwines.com/tag/bayviewpasta/','50:e22d69acf96df5b77169a3ea36885345',154,'term','post_tag',NULL,NULL,NULL,NULL,'#bayviewpasta',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-02-23 22:46:56','2024-02-28 21:52:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-02-28 21:52:27',NULL,NULL),(2109,'https://www.meadowcroftwines.com/tag/foodandwine/','49:d4f719ed00eb6cc3e1f59f4809bbdede',155,'term','post_tag',NULL,NULL,NULL,NULL,'#foodandwine',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-02-23 22:46:56','2024-02-28 21:52:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-02-28 21:52:27',NULL,NULL),(2110,'https://www.meadowcroftwines.com/tag/freshpasta/','48:09082fe07c44d8324cfbf5bad1c30764',156,'term','post_tag',NULL,NULL,NULL,NULL,'#freshpasta',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-02-23 22:46:56','2024-02-28 21:52:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-02-28 21:52:27',NULL,NULL),(2111,'https://www.meadowcroftwines.com/product/2023-pinot-noir-anderson-valley/','73:4a7b5512b33088a437deaea79c9d8341',3417,'post','product',1,0,NULL,NULL,'2023 Pinot Noir, Anderson Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-02-28 19:00:15','2024-07-29 16:54:14',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-29 16:54:14','2024-02-28 19:00:15',0),(2112,'https://www.meadowcroftwines.com/product/2023-pinot-noir-russian-river-valley/','78:1b47668b192a42ffcee37d784f0093da',3418,'post','product',1,0,NULL,NULL,'2023 Pinot Noir, Russian River Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-02-28 19:05:04','2024-11-14 23:40:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-14 23:40:11','2024-02-28 19:05:04',0),(2113,'https://www.meadowcroftwines.com/product/2023-pinot-noir-russian-river-valley-375ml/','84:48d8dac9dcc8109292a1121a46775a61',3419,'post','product',1,0,NULL,NULL,'2023 Pinot Noir, Russian River Valley 375ML','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-02-28 19:06:00','2024-02-28 19:07:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-02-28 19:07:25','2024-02-28 19:06:00',0),(2114,'https://www.meadowcroftwines.com/product/2022-cabernet-sauvignon-wyldvin-vineyard/','82:13e26b1d7246f257afc9fa3b347835fc',3420,'post','product',1,0,NULL,NULL,'2022 Cabernet Sauvignon, Wyldvin Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-02-28 19:08:01','2024-09-27 21:48:14',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-09-27 21:48:14','2024-02-28 19:08:01',0),(2115,'https://www.meadowcroftwines.com/product/2022-cabernet-sauvignon-napa-valley/','77:5c3e82eb783201c2ff49619442117a39',3421,'post','product',1,0,NULL,NULL,'2022 Cabernet Sauvignon, Napa Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-02-28 19:09:40','2024-11-05 18:49:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-05 18:49:23','2024-02-28 19:09:40',0),(2116,'https://www.meadowcroftwines.com/product/2023-pinot-noir-anderson-valley-private-label/','87:0caa99e3071e944dc71291e82573ee9b',3422,'post','product',1,0,NULL,NULL,'2023 Pinot Noir, Anderson Valley (Shiner)','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-02-28 19:11:03','2024-07-05 21:17:58',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-05 21:17:58','2024-02-28 19:11:03',0),(2118,'https://www.meadowcroftwines.com/product/2023-rose-of-grenache-westfall-vineyard/','81:225cea2b5b2b8fe4be3ab31c503722a1',3424,'post','product',1,0,NULL,NULL,'2023 Rosé of Grenache, Westfall Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-02-28 19:17:54','2024-04-29 16:47:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-04-29 16:47:41','2024-02-28 19:17:54',0),(2119,'https://www.meadowcroftwines.com/product/2023-botanica-consecrata-pinot-gris-nelson-family-vineyard-mendocino-county/','117:07c70329cdb08a043745dd7b788356da',3425,'post','product',1,0,NULL,NULL,'2023 Botanica Consecrata Pinot Gris &#8211; Orange Wine','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-02-28 19:22:25','2024-07-08 23:25:42',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-08 23:25:42','2024-02-28 19:22:24',0),(2120,'https://www.meadowcroftwines.com/product/meadowcroft-2023-albarino-paradise-vineyard-sonoma-coast/','98:9abd3dda9f3776fc95d0d1986d8ceb38',3426,'post','product',1,0,NULL,NULL,'Meadowcroft 2023 Albarino, Paradise Vineyard Sonoma Coast','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-02-28 19:41:19','2024-02-28 19:41:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-02-28 19:41:19','2024-02-28 19:41:19',0),(2121,'https://www.meadowcroftwines.com/product/2023-albarino-paradise-vineyard/','73:a39823a6335e313873c1d1e68eb64954',3427,'post','product',1,0,NULL,NULL,'2023 Albarino, Paradise Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-02-28 19:42:32','2024-10-02 20:27:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-10-02 20:27:03','2024-02-28 19:42:32',0),(2124,'https://www.meadowcroftwines.com/product/mixed-spiced-nuts/','59:ad3ecf12ad9169ab80957d3a97cc3d53',3436,'post','product',1,0,NULL,NULL,'Mixed spiced nuts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-13 17:39:42','2024-03-13 18:02:13',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-03-13 18:02:13','2024-03-13 17:39:42',0),(2125,'https://www.meadowcroftwines.com/product/ticket-paella-wine-party-2024/','71:3bb18f3d0c44b297a4b24eef0119ca08',3437,'post','product',1,0,NULL,NULL,'Ticket &#8211; Paella &amp; Wine Party 2024 &#8211; SOLD OUT','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-15 20:06:54','2024-09-05 21:30:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-09-05 21:30:11','2024-03-15 20:06:54',0),(2126,'https://www.meadowcroftwines.com/?p=3440','40:1d9ef1146c66eada785d1455e2bed818',3440,'post','post',5,0,NULL,NULL,'Beyond Grapes: Discovering the Soul of Sonoma&#8217;s Wine','draft',0,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-03-18 11:18:57','2024-03-18 12:12:58',1,NULL,NULL,NULL,NULL,0,5,2,'2024-03-18 12:12:57','0000-00-00 00:00:00',0),(2127,'https://www.meadowcroftwines.com/product/2020-zinfandel-speedy-creek-vineyard-duplicate/','88:343d8266603ecda475a117def51151ce',3442,'post','product',1,0,NULL,NULL,'2020 Zinfandel, Speedy Creek Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-21 22:25:56','2024-09-27 21:44:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-09-27 21:44:06','2024-03-21 22:25:56',0),(2128,'https://www.meadowcroftwines.com/product/2022-cabernet-sauvignon-napa-valley-private-label/','91:14303f404b9015941d4272961e7dea87',3443,'post','product',1,0,NULL,NULL,'2022 Cabernet Sauvignon, Napa Valley *SHINER for Private Label*','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-21 22:31:09','2024-03-21 22:32:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-03-21 22:32:18','2024-03-21 22:31:09',0),(2129,'https://www.meadowcroftwines.com/wine_asset/mount-veeder-napa-valley-cabernet-sauvignon-2013/','93:2f4a80f43a521528c32add30effb22fc',3445,'post','wine_asset',2,0,NULL,NULL,'2013 CABERNET SAUVIGNON, MOUNT VEEDER, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-22 21:47:05','2024-05-15 23:08:19',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 23:08:19','2024-03-22 22:04:52',0),(2130,'https://www.meadowcroftwines.com/wine_asset/mount-veeder-napa-valley-cabernet-sauvignon-2014/','93:052d723b7cfdc36cf99ab708fd363565',3451,'post','wine_asset',2,0,NULL,NULL,'2014 CABERNET SAUVIGNON, MOUNT VEEDER, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-22 22:06:40','2024-05-15 23:08:07',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 23:08:07','2024-03-22 22:07:38',0),(2131,'https://www.meadowcroftwines.com/wine_asset/mount-veeder-napa-valley-cabernet-sauvignon-2015/','93:8f59b605ce189d1008baa792205249b9',3452,'post','wine_asset',2,0,NULL,NULL,'2015 CABERNET SAUVIGNON, MOUNT VEEDER, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-22 22:08:26','2024-05-15 23:07:49',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 23:07:49','2024-03-22 22:11:01',0),(2132,'https://www.meadowcroftwines.com/wine_asset/mount-veeder-napa-valley-cabernet-sauvignon-2016/','93:69785c99cbb260f00d5e188bfa64e4a5',3453,'post','wine_asset',2,0,NULL,NULL,'2016 CABERNET SAUVIGNON, MOUNT VEEDER, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-22 22:47:21','2024-05-15 23:07:38',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 23:07:38','2024-03-22 22:48:35',0),(2133,'https://www.meadowcroftwines.com/wine_asset/mount-veeder-napa-valley-cabernet-sauvignon-2017/','93:aa26246eadf5d178cb9d65e536719ffe',3454,'post','wine_asset',2,0,NULL,NULL,'2017 CABERNET SAUVIGNON, MOUNT VEEDER, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-22 22:49:05','2024-05-15 23:07:26',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 23:07:26','2024-03-22 22:49:54',0),(2134,'https://www.meadowcroftwines.com/wine_asset/mount-veeder-napa-valley-cabernet-sauvignon-2018/','93:5bce7027724d7cc4f3c85c72784e1e39',3456,'post','wine_asset',2,0,NULL,NULL,'2018 CABERNET SAUVIGNON, MOUNT VEEDER, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-22 22:50:19','2024-05-15 23:06:27',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 23:06:27','2024-03-22 22:51:23',0),(2135,'https://www.meadowcroftwines.com/wine_asset/mount-veeder-napa-valley-cabernet-sauvignon-2019/','93:cd1051334c2ac77e56ed87a97f86bee5',3457,'post','wine_asset',2,0,NULL,NULL,'2019 CABERNET SAUVIGNON, MOUNT VEEDER, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-22 22:51:42','2024-05-15 23:06:02',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 23:06:02','2024-03-22 22:52:34',0),(2136,'https://www.meadowcroftwines.com/wine_asset/mount-veeder-napa-valley-cabernet-sauvignon-2020/','93:cc28a2567ed13127c0b44ec5aace3245',3458,'post','wine_asset',2,0,NULL,NULL,'2020 CABERNET SAUVIGNON, MOUNT VEEDER, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-22 22:53:04','2024-05-15 23:05:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 23:05:49','2024-03-22 22:53:58',0),(2137,'https://www.meadowcroftwines.com/wine_asset/napa-valley-cabernet-sauvignon-2016/','80:ea21e861ed649e5c8511898604a914cb',3460,'post','wine_asset',2,0,NULL,NULL,'2016 CABERNET SAUVIGNON, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-22 22:54:58','2024-05-15 23:01:45',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 23:01:45','2024-03-22 23:00:37',0),(2138,'https://www.meadowcroftwines.com/wine_asset/napa-valley-cabernet-sauvignon-2017/','80:9a7aa415c6ea1538cecb12b8256136e9',3464,'post','wine_asset',2,0,NULL,NULL,'2017 CABERNET SAUVIGNON, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-22 23:01:19','2024-05-15 23:01:30',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 23:01:30','2024-03-22 23:02:17',0),(2139,'https://www.meadowcroftwines.com/wine_asset/napa-valley-cabernet-sauvignon-2018/','80:6bd39fc66f617bb26a4f42ad51728a12',3465,'post','wine_asset',2,0,NULL,NULL,'2018 CABERNET SAUVIGNON, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-22 23:03:45','2024-05-15 23:01:17',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 23:01:17','2024-03-22 23:04:43',0),(2140,'https://www.meadowcroftwines.com/wine_asset/napa-valley-cabernet-sauvignon-2019/','80:8ac8665a74e846d9f2f3501dfc027e8a',3466,'post','wine_asset',2,0,NULL,NULL,'2019 CABERNET SAUVIGNON, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-22 23:05:09','2024-05-15 23:01:00',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 23:01:00','2024-03-22 23:06:00',0),(2141,'https://www.meadowcroftwines.com/wine_asset/napa-valley-cabernet-sauvignon-2020/','80:5e674f9a51633f39157dd455014a4cad',3467,'post','wine_asset',2,0,NULL,NULL,'2020 CABERNET SAUVIGNON, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-22 23:06:15','2024-05-15 23:00:38',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 23:00:38','2024-03-22 23:07:12',0),(2142,'https://www.meadowcroftwines.com/wine_asset/napa-valley-cabernet-sauvignon-2021/','80:01341411d862d90412ec261a895f13e8',3468,'post','wine_asset',2,0,NULL,NULL,'2021 CABERNET SAUVIGNON, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-22 23:08:15','2024-05-15 23:00:26',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 23:00:26','2024-03-22 23:09:06',0),(2143,'https://www.meadowcroftwines.com/wine_asset/dry-creek-valley-louvau-wyldvin-vineyard-cab-sauv-2015/','99:26674532f13d1df811f1a35083093f14',3469,'post','wine_asset',2,0,NULL,NULL,'2015 CABERNET SAUVIGNON, LOUVAU/WYLDVIN VINEYARD, DRY CREEK VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-22 23:37:36','2024-05-15 22:59:48',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:59:48','2024-03-22 23:42:39',0),(2144,'https://www.meadowcroftwines.com/wine_asset/dry-creek-valley-louvau-wyldvin-vineyard-cab-sauv-2016/','99:14e7ac4e427a2ab3d2f493e133088a6c',3472,'post','wine_asset',2,0,NULL,NULL,'2016 CABERNET SAUVIGNON, LOUVAU/WYLDVIN VINEYARD, DRY CREEK VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-22 23:43:04','2024-05-15 22:59:35',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:59:35','2024-03-22 23:44:11',0),(2145,'https://www.meadowcroftwines.com/wine_asset/dry-creek-valley-louvau-wyldvin-vineyard-cab-sauv-2017/','99:d1ad95c0c7fb187e2f2d1711bb52d760',3473,'post','wine_asset',2,0,NULL,NULL,'2017 CABERNET SAUVIGNON, LOUVAU/WYLDVIN VINEYARD, DRY CREEK VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-22 23:44:24','2024-05-15 22:59:14',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:59:14','2024-03-22 23:45:09',0),(2146,'https://www.meadowcroftwines.com/wine_asset/dry-creek-valley-louvau-wyldvin-vineyard-cab-sauv-2018/','99:49986b4b4e4e7cb1cbf09969c9f986a2',3474,'post','wine_asset',2,0,NULL,NULL,'2018 CABERNET SAUVIGNON, LOUVAU/WYLDVIN VINEYARD, DRY CREEK VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-22 23:45:25','2024-05-15 22:59:03',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:59:03','2024-03-22 23:46:08',0),(2147,'https://www.meadowcroftwines.com/wine_asset/dry-creek-valley-louvau-wyldvin-vineyard-cab-sauv-2019/','99:130cc6bcfa1af088855d52a6e319261a',3475,'post','wine_asset',2,0,NULL,NULL,'2019 CABERNET SAUVIGNON, LOUVAU/WYLDVIN VINEYARD, DRY CREEK VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-22 23:46:21','2024-05-15 22:58:51',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:58:51','2024-03-22 23:47:09',0),(2148,'https://www.meadowcroftwines.com/wine_asset/dry-creek-valley-louvau-wyldvin-vineyard-cab-sauv-2020/','99:7d3ea1c839a06c10e11e63be4eb5ea1c',3476,'post','wine_asset',2,0,NULL,NULL,'2020 CABERNET SAUVIGNON, LOUVAU/WYLDVIN VINEYARD, DRY CREEK VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-22 23:47:23','2024-05-15 22:58:38',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:58:38','2024-03-22 23:48:03',0),(2149,'https://www.meadowcroftwines.com/wine_asset/cabernet-sauvignon-nelson-ranch-mendocino-county-2015/','98:eab42c9f5a2dfcc8754fc9600c35e433',3477,'post','wine_asset',2,0,NULL,NULL,'2015 CABERNET SAUVIGNON, NELSON RANCH, MENDOCINO COUNTY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-22 23:48:55','2024-05-15 22:57:39',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:57:39','2024-03-22 23:51:50',0),(2150,'https://www.meadowcroftwines.com/wine_asset/cabernet-sauvignon-nelson-ranch-mendocino-county-2016/','98:3272ba2be9a3917ad9d3c28ceab0f94a',3479,'post','wine_asset',2,0,NULL,NULL,'2016 CABERNET SAUVIGNON, NELSON RANCH, MENDOCINO COUNTY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-22 23:52:08','2024-05-15 22:57:25',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:57:25','2024-03-22 23:52:45',0),(2151,'https://www.meadowcroftwines.com/wine_asset/cabernet-sauvignon-nelson-ranch-mendocino-county-2017/','98:4be8e209d35aa3d925781357c419546c',3480,'post','wine_asset',2,0,NULL,NULL,'2017 CABERNET SAUVIGNON, NELSON RANCH, MENDOCINO COUNTY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-22 23:52:59','2024-05-15 22:57:12',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:57:12','2024-03-22 23:53:41',0),(2152,'https://www.meadowcroftwines.com/wine_asset/cabernet-sauvignon-nelson-ranch-mendocino-county-2018/','98:0e69998159b8681c2f822446f720a492',3481,'post','wine_asset',2,0,NULL,NULL,'2018 CABERNET SAUVIGNON, NELSON RANCH, MENDOCINO COUNTY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-22 23:54:00','2024-05-15 22:57:00',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:57:00','2024-03-22 23:54:40',0),(2153,'https://www.meadowcroftwines.com/wine_asset/cabernet-sauvignon-nelson-ranch-mendocino-county-2019/','98:5dcd8ed5aba5ba583237c9f9dfc21612',3482,'post','wine_asset',2,0,NULL,NULL,'2019 CABERNET SAUVIGNON, NELSON RANCH, MENDOCINO COUNTY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-22 23:54:53','2024-05-15 22:56:48',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:56:48','2024-03-22 23:55:37',0),(2155,'https://www.meadowcroftwines.com/wine_asset/cabernet-sauvignon-nelson-ranch-mendocino-county-2021/','98:b2a6a31954eda1880c8f0e84034ef438',3484,'post','wine_asset',2,0,NULL,NULL,'2021 CABERNET SAUVIGNON, NELSON RANCH, MENDOCINO COUNTY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-22 23:58:25','2024-05-15 22:56:32',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:56:32','2024-03-23 00:07:26',0),(2156,'https://www.meadowcroftwines.com/wine_asset/red-hills-lake-county-cabernet-sauvignon/','85:2fd23bb37550dbc88b4b0649f78b6659',3485,'post','wine_asset',2,0,NULL,NULL,'2020 CABERNET SAUVIGNON, RED HILLS, LAKE COUNTY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-23 00:30:07','2024-05-15 22:55:49',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:55:49','2024-03-23 00:32:45',0),(2157,'https://www.meadowcroftwines.com/wine_asset/river-trace-grenache-syrah-mourvedre/','81:614bd11653142fe670cf542f6b4ae70c',3488,'post','wine_asset',2,0,NULL,NULL,'2016 RIVER TRACE GRENACHE SYRAH MOURVEDRE','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-23 00:34:07','2024-05-15 22:54:41',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:54:41','2024-03-23 00:37:34',0),(2158,'https://www.meadowcroftwines.com/wine_asset/river-trace-grenache-syrah-mourvedre-2017/','86:854cad89be4e455491a6f9a893765ba2',3490,'post','wine_asset',2,0,NULL,NULL,'2017 RIVER TRACE GRENACHE SYRAH MOURVEDRE','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-23 00:38:09','2024-05-15 22:54:29',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:54:29','2024-03-23 00:40:23',0),(2159,'https://www.meadowcroftwines.com/wine_asset/river-trace-grenache-syrah-mourvedre-2019/','86:1aeb73bab9bff586924ec7ffc48f491e',3491,'post','wine_asset',2,0,NULL,NULL,'2019 RIVER TRACE GRENACHE SYRAH MOURVEDRE','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-23 00:40:36','2024-05-15 22:54:18',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:54:18','2024-03-23 00:42:23',0),(2160,'https://www.meadowcroftwines.com/wine_asset/river-trace-grenache-syrah-mourvedre-2020/','86:391d05a04e9c92aab154937c16cce254',3492,'post','wine_asset',2,0,NULL,NULL,'2020 RIVER TRACE GRENACHE SYRAH MOURVEDRE','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-23 00:42:39','2024-05-15 22:54:07',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:54:07','2024-03-23 00:43:39',0),(2161,'https://www.meadowcroftwines.com/wine_asset/river-trace-grenache-syrah-mourvedre-2021/','86:4ad707aabebe49f11c4244a2e7c2ca90',3493,'post','wine_asset',2,0,NULL,NULL,'2021 RIVER TRACE GRENACHE SYRAH MOURVEDRE','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-23 00:43:53','2024-05-15 22:53:52',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:53:52','2024-03-23 00:45:01',0),(2162,'https://www.meadowcroftwines.com/wine_asset/anniversary-cuvee-nv-napa-valley/','77:9feee0cf65251b2e8b56cae4b7792190',3494,'post','wine_asset',2,0,NULL,NULL,'NV ANNIVERSARY CUVEE, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-23 00:45:39','2024-05-15 22:53:12',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:53:12','2024-03-23 00:49:15',0),(2163,'https://www.meadowcroftwines.com/wine_asset/napa-valley-the-panorama-red-blend-stags-leap-district-2017/','104:c98ab59926a9611f95e30dd3f8e88492',3497,'post','wine_asset',2,0,NULL,NULL,'2017 RED BLEND, THE PANORAMA, STAGS LEAP DISTRICT','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-23 00:50:38','2024-05-15 22:52:58',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:52:58','2024-03-23 00:53:09',0),(2164,'https://www.meadowcroftwines.com/wine_asset/napa-valley-the-panorama-red-blend-2017/','84:2131ec06fefdcb0a66a149b38f1dd33e',3499,'post','wine_asset',2,0,NULL,NULL,'2017 RED BLEND, THE PANORAMA, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-23 00:53:31','2024-05-15 22:52:34',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:52:34','2024-03-23 00:57:40',0),(2165,'https://www.meadowcroftwines.com/wine_asset/speedy-creek-zinfandel-2010/','72:dfe5077c5f687a06f0266d603a48057b',3501,'post','wine_asset',2,0,NULL,NULL,'2010 ZINFANDEL, SPEEDY CREEK VINEYARD, KNIGHT&#8217;S VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 17:19:22','2024-05-15 22:51:58',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:51:58','2024-03-25 17:27:11',0),(2166,'https://www.meadowcroftwines.com/wine_asset/speedy-creek-zinfandel-2011/','72:82c0e6aa9dd64b4efc8ea9e2c4942316',3503,'post','wine_asset',2,0,NULL,NULL,'2011 ZINFANDEL, SPEEDY CREEK VINEYARD, KNIGHT&#8217;S VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 17:27:36','2024-05-15 22:51:45',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:51:45','2024-03-25 17:28:26',0),(2167,'https://www.meadowcroftwines.com/wine_asset/speedy-creek-zinfandel-2012/','72:48b4b6880b382839f9bf8ffeaf3080ba',3504,'post','wine_asset',2,0,NULL,NULL,'2012 ZINFANDEL, SPEEDY CREEK VINEYARD, KNIGHT&#8217;S VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 17:28:45','2024-05-15 22:51:33',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:51:33','2024-03-25 17:29:35',0),(2168,'https://www.meadowcroftwines.com/wine_asset/speedy-creek-zinfandel-2013/','72:b888760596d1f9e0240152559cb97414',3505,'post','wine_asset',2,0,NULL,NULL,'2013 ZINFANDEL, SPEEDY CREEK VINEYARD, KNIGHT&#8217;S VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 17:29:50','2024-05-15 22:51:21',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:51:21','2024-03-25 17:30:42',0),(2169,'https://www.meadowcroftwines.com/wine_asset/speedy-creek-zinfandel-2014/','72:9a03df246d7bcfb28a7a997cc152b3d7',3506,'post','wine_asset',2,0,NULL,NULL,'2014 ZINFANDEL, SPEEDY CREEK VINEYARD, KNIGHT&#8217;S VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 17:31:47','2024-05-15 22:51:10',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:51:10','2024-03-25 17:32:40',0),(2170,'https://www.meadowcroftwines.com/wine_asset/speedy-creek-zinfandel-2018/','72:31a68627678ffd369794448a1d827c6f',3507,'post','wine_asset',2,0,NULL,NULL,'2018 ZINFANDEL, SPEEDY CREEK VINEYARD, KNIGHT&#8217;S VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 17:32:58','2024-05-15 22:50:52',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:50:52','2024-03-25 17:33:40',0),(2171,'https://www.meadowcroftwines.com/wine_asset/speedy-creek-zinfandel-2019/','72:07b942bc8a7bc60809eaa8db7d99955c',3508,'post','wine_asset',2,0,NULL,NULL,'2019 ZINFANDEL, SPEEDY CREEK VINEYARD, KNIGHT&#8217;S VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 17:33:52','2024-05-15 22:50:30',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:50:30','2024-03-25 17:34:38',0),(2172,'https://www.meadowcroftwines.com/wine_asset/mae-vineyard-dry-creek-valley-zinfandel/','84:b3f7aca2c78b35cb726d165b75077cbf',3509,'post','wine_asset',2,0,NULL,NULL,'2020 ZINFANDEL, MAE VINEYARD, DRY CREEK VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 17:44:47','2024-05-15 22:49:32',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:49:31','2024-03-25 17:47:51',0),(2173,'https://www.meadowcroftwines.com/wine_asset/old-vine-amador-county-zinfandel-2016/','82:5833b710186c02a67c1101b29ad6fdb5',3511,'post','wine_asset',2,0,NULL,NULL,'2016 ZINFANDEL, OLD VINE, AMADOR COUNTY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 17:48:30','2024-05-15 22:47:55',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:47:54','2024-03-25 17:51:39',0),(2174,'https://www.meadowcroftwines.com/wine_asset/old-vine-amador-county-zinfandel-2018/','82:6dbd06730e7a98f33239a503024ee8ea',3513,'post','wine_asset',2,0,NULL,NULL,'2018 ZINFANDEL, OLD VINE, AMADOR COUNTY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 17:51:58','2024-05-15 22:47:41',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:47:41','2024-03-25 17:52:55',0),(2175,'https://www.meadowcroftwines.com/wine_asset/cru-de-la-ruche-malbec-2014/','72:d23cfe4175a42253ae6e403b6f03b48f',3514,'post','wine_asset',2,0,NULL,NULL,'2014 CRU DE LA RUCHE MALBEC','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 18:14:03','2024-05-15 22:47:07',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:47:07','2024-03-25 18:18:44',0),(2176,'https://www.meadowcroftwines.com/wine_asset/cru-de-la-ruche-malbec-2016/','72:7b156ba384460483a3f1c762871c2407',3516,'post','wine_asset',2,0,NULL,NULL,'2016 CRU DE LA RUCHE MALBEC','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 18:18:57','2024-05-15 22:46:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:46:50','2024-03-25 18:19:44',0),(2177,'https://www.meadowcroftwines.com/wine_asset/cru-de-la-ruche-malbec-2017/','72:be4d7f27e8996a0781dcdd114a17a574',3518,'post','wine_asset',2,0,NULL,NULL,'CRU DE LA RUCHE | MALBEC 2017','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 18:20:21','2024-03-25 18:21:57',1,NULL,NULL,NULL,NULL,0,1,2,'2024-03-25 18:21:56','2024-03-25 18:21:56',0),(2178,'https://www.meadowcroftwines.com/wine_asset/cru-de-la-ruche-malbec-2018/','72:0031b2717900afcee74c4f5475f5724d',3519,'post','wine_asset',2,0,NULL,NULL,'2018 CRU DE LA RUCHE MALBEC','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 18:22:12','2024-05-15 22:46:28',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:46:28','2024-03-25 18:23:12',0),(2179,'https://www.meadowcroftwines.com/wine_asset/cru-de-la-ruche-malbec-2019/','72:0c4c28b6daaa48efd601c35c3fdf2179',3520,'post','wine_asset',2,0,NULL,NULL,'2019 CRU DE LA RUCHE MALBEC','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 18:23:29','2024-05-15 22:46:12',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:46:12','2024-03-25 18:24:30',0),(2180,'https://www.meadowcroftwines.com/wine_asset/cru-de-la-ruche-malbec-2020/','72:d1d2ec53e84340764c946726ce1db528',3521,'post','wine_asset',2,0,NULL,NULL,'2020 CRU DE LA RUCHE MALBEC','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 18:24:49','2024-05-15 22:45:57',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-15 22:45:57','2024-03-25 18:26:20',0),(2181,'https://www.meadowcroftwines.com/wine_asset/california-syrah-2014/','66:dd3f5c7bf12e05d957e4dc700ffef137',3522,'post','wine_asset',2,0,NULL,NULL,'2014 SYRAH, CALIFORNIA','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 18:35:09','2024-05-13 21:30:54',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:30:54','2024-03-25 18:38:12',0),(2182,'https://www.meadowcroftwines.com/wine_asset/california-syrah-2018/','66:50f0dfb6571813d8934a7aebfe53bee3',3525,'post','wine_asset',2,0,NULL,NULL,'2018 SYRAH, CALIFORNIA','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 18:38:29','2024-05-13 21:30:32',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:30:32','2024-03-25 18:50:18',0),(2183,'https://www.meadowcroftwines.com/wine_asset/cornerstone-vineyard-pinot-noir-2015/','81:cf9ce26c87f7d7e6a2dbd553974294fb',3526,'post','wine_asset',2,0,NULL,NULL,'2015 PINOT NOIR, CORNERSTONE VINEYARD','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 18:50:58','2024-05-13 21:30:12',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:30:12','2024-03-25 18:54:07',0),(2184,'https://www.meadowcroftwines.com/wine_asset/cornerstone-vineyard-pinot-noir-2016/','81:29f67fd4795e3e67954c2f406bc838c3',3528,'post','wine_asset',2,0,NULL,NULL,'2016 PINOT NOIR, CORNERSTONE VINEYARD','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 18:54:23','2024-05-13 21:29:55',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:29:55','2024-03-25 18:55:18',0),(2186,'https://www.meadowcroftwines.com/wine_asset/cornerstone-vineyard-pinot-noir-2018/','81:f94867692e49a1a6a9a07f5c7521584c',3530,'post','wine_asset',2,0,NULL,NULL,'2018 PINOT NOIR, CORNERSTONE VINEYARD','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 18:56:36','2024-05-13 21:29:44',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:29:44','2024-03-25 18:57:28',0),(2187,'https://www.meadowcroftwines.com/wine_asset/cornerstone-vineyard-pinot-noir-2019/','81:23931d4ea2d03ce366cc8ca90b6388a9',3531,'post','wine_asset',2,0,NULL,NULL,'2019 PINOT NOIR, CORNERSTONE VINEYARD','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 18:57:40','2024-05-13 21:29:34',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:29:34','2024-03-25 18:58:33',0),(2188,'https://www.meadowcroftwines.com/wine_asset/cornerstone-vineyard-pinot-noir-2020/','81:d70c647c16c3a759d3308d780f0018b5',3532,'post','wine_asset',2,0,NULL,NULL,'2020 PINOT NOIR, CORNERSTONE VINEYARD','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 18:58:47','2024-05-13 21:29:17',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:29:16','2024-03-25 18:59:29',0),(2189,'https://www.meadowcroftwines.com/wine_asset/sonoma-coast-pinot-noir-2018/','73:f9e17881fb92f164f4bcb2517177f0b9',3533,'post','wine_asset',2,0,NULL,NULL,'2018 PINOT NOIR, SONOMA COAST','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 19:01:27','2024-05-13 21:28:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:28:49','2024-03-25 19:03:44',0),(2190,'https://www.meadowcroftwines.com/wine_asset/sonoma-coast-pinot-noir-2019/','73:c5b1bbae8a59c74c6d2e2142317f0b07',3535,'post','wine_asset',2,0,NULL,NULL,'2019 PINOT NOIR, SONOMA COAST','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 19:04:04','2024-05-13 21:28:35',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:28:35','2024-03-25 19:05:58',0),(2191,'https://www.meadowcroftwines.com/wine_asset/sonoma-coast-pinot-noir-2021/','73:0854677a75c51c95153e77d6d43c6be7',3536,'post','wine_asset',2,0,NULL,NULL,'2021 PINOT NOIR, SONOMA COAST','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 19:06:19','2024-05-13 21:28:19',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:28:19','2024-03-25 19:07:00',0),(2192,'https://www.meadowcroftwines.com/wine_asset/sonoma-coast-pinot-noir-2022/','73:253843dd566eb008efa30f97569566eb',3537,'post','wine_asset',2,0,NULL,NULL,'2022 PINOT NOIR, SONOMA COAST','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 19:07:20','2024-05-13 21:28:06',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:28:06','2024-03-25 19:07:53',0),(2193,'https://www.meadowcroftwines.com/wine_asset/russian-river-valley-pinot-noir-2018/','81:1218a67ff86d651687f95a6fe1be30fe',3538,'post','wine_asset',2,0,NULL,NULL,'2018 PINOT NOIR, RUSSIAN RIVER VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 20:40:53','2024-05-13 21:26:23',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:26:23','2024-03-25 20:43:22',0),(2194,'https://www.meadowcroftwines.com/wine_asset/russian-river-valley-pinot-noir-2019/','81:582777e7c15b646902a5caa43772003e',3540,'post','wine_asset',2,0,NULL,NULL,'2019 PINOT NOIR, RUSSIAN RIVER VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 20:43:34','2024-05-13 21:26:10',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:26:10','2024-03-25 20:44:18',0),(2195,'https://www.meadowcroftwines.com/wine_asset/russian-river-valley-pinot-noir-2020/','81:8870c3bd438e732d29894617d18b181d',3541,'post','wine_asset',2,0,NULL,NULL,'2020 PINOT NOIR, RUSSIAN RIVER VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 20:44:30','2024-05-13 21:25:58',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:25:58','2024-03-25 20:45:15',0),(2196,'https://www.meadowcroftwines.com/wine_asset/russian-river-valley-pinot-noir-2021/','81:c70506e8907943c1fe65cb7e00dcaf89',3542,'post','wine_asset',2,0,NULL,NULL,'2021 PINOT NOIR, RUSSIAN RIVER VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 20:45:59','2024-05-13 21:25:45',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:25:45','2024-03-25 20:46:33',0),(2197,'https://www.meadowcroftwines.com/wine_asset/russian-river-valley-pinot-noir-2022/','81:c20e081e4b4335ec086962d02a608beb',3543,'post','wine_asset',2,0,NULL,NULL,'2022 PINOT NOIR, RUSSIAN RIVER VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 20:49:18','2024-05-13 21:25:34',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:25:34','2024-03-25 20:50:13',0),(2198,'https://www.meadowcroftwines.com/wine_asset/anderson-valley-pinot-noir-2015/','76:17d04de70db26067b1ba4e2548f116f4',3544,'post','wine_asset',2,0,NULL,NULL,'2015 PINOT NOIR, ANDERSON VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 20:51:50','2024-05-13 21:25:03',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:25:03','2024-03-25 20:54:14',0),(2199,'https://www.meadowcroftwines.com/wine_asset/anderson-valley-pinot-noir-2016/','76:c2f70b443c7f6ef7377eb3bff2454737',3546,'post','wine_asset',2,0,NULL,NULL,'2016 PINOT NOIR, ANDERSON VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 20:54:29','2024-05-13 21:24:51',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:24:51','2024-03-25 20:55:28',0),(2200,'https://www.meadowcroftwines.com/wine_asset/anderson-valley-pinot-noir-2018/','76:f26525568685b48bb33a6076b180fc36',3547,'post','wine_asset',2,0,NULL,NULL,'2018 PINOT NOIR, ANDERSON VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 20:55:44','2024-05-13 21:24:38',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:24:38','2024-03-25 20:56:34',0),(2201,'https://www.meadowcroftwines.com/wine_asset/anderson-valley-pinot-noir-2019/','76:ce5fef4ac13673251d743a0d55f6e927',3548,'post','wine_asset',2,0,NULL,NULL,'2019 PINOT NOIR, ANDERSON VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 20:56:47','2024-05-13 21:24:27',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:24:27','2024-03-25 20:57:31',0),(2202,'https://www.meadowcroftwines.com/wine_asset/anderson-valley-pinot-noir-2020/','76:e0a6edc24b670db7d3f663306e5e41cb',3549,'post','wine_asset',2,0,NULL,NULL,'2020 PINOT NOIR, ANDERSON VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 20:57:46','2024-05-13 21:24:07',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:24:07','2024-03-25 20:58:19',0),(2203,'https://www.meadowcroftwines.com/wine_asset/anderson-valley-pinot-noir-2021/','76:99685a43c2936998b9e55ab97d5004c1',3550,'post','wine_asset',2,0,NULL,NULL,'2021 PINOT NOIR, ANDERSON VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 20:58:33','2024-05-13 21:23:56',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:23:56','2024-03-25 20:59:25',0),(2204,'https://www.meadowcroftwines.com/wine_asset/napa-carneros-napa-pinot-noir-2015/','79:63792c667a0f0bfab601dd15cf8b7dc3',3551,'post','wine_asset',2,0,NULL,NULL,'2015 PINOT NOIR, NAPA CARNEROS','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 21:26:05','2024-05-13 21:23:34',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:23:34','2024-03-25 21:31:23',0),(2205,'https://www.meadowcroftwines.com/wine_asset/napa-carneros-napa-pinot-noir-2016/','79:3980e819dbd5f40d493745f5fc262f31',3553,'post','wine_asset',2,0,NULL,NULL,'2016 PINOT NOIR, NAPA CARNEROS','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 21:31:37','2024-05-13 21:23:24',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:23:24','2024-03-25 21:32:26',0),(2206,'https://www.meadowcroftwines.com/wine_asset/napa-carneros-napa-pinot-noir-2017/','79:42125253d07ce8037c2b555f92e8afeb',3554,'post','wine_asset',2,0,NULL,NULL,'2017 PINOT NOIR, NAPA CARNEROS','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 21:32:39','2024-05-13 21:23:06',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:23:06','2024-03-25 21:33:50',0),(2207,'https://www.meadowcroftwines.com/wine_asset/napa-carneros-napa-pinot-noir-2021/','79:ec5c0e02cc7fef00996fffce5573491e',3555,'post','wine_asset',2,0,NULL,NULL,'2021 PINOT NOIR, NAPA CARNEROS','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 21:34:05','2024-05-13 21:22:54',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:22:54','2024-03-25 21:34:55',0),(2209,'https://www.meadowcroftwines.com/wine_asset/cabernet-franc-rivino-vineyard-2018/','80:53e8c33adabb17a5bacae92c0f3e7aa5',3557,'post','wine_asset',2,0,NULL,NULL,'2018 CABERNET FRANC, RIVINO VINEYARD, MENDOCINO COUNTY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 21:44:46','2024-05-13 21:22:13',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:22:13','2024-03-25 21:47:46',0),(2210,'https://www.meadowcroftwines.com/wine_asset/cabernet-franc-rivino-vineyard-2021/','80:11b1339e3e37232d4e65190f9bc4a276',3561,'post','wine_asset',2,0,NULL,NULL,'2021 CABERNET FRANC, RIVINO VINEYARD, MENDOCINO COUNTY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 21:47:59','2024-05-13 21:22:00',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:22:00','2024-03-25 21:48:54',0),(2211,'https://www.meadowcroftwines.com/wine_asset/sonoma-coast-chardonnay-2015/','73:dc0fab613eb9e395e64d7c04e04bcf07',3563,'post','wine_asset',2,0,NULL,NULL,'2015 CHARDONNAY, SONOMA COAST','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 21:52:59','2024-05-13 21:21:30',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:21:30','2024-03-25 21:56:27',0),(2212,'https://www.meadowcroftwines.com/wine_asset/sonoma-coast-chardonnay-2020/','73:150afbe278ddd93287694d334e55a724',3565,'post','wine_asset',2,0,NULL,NULL,'2020 CHARDONNAY, SONOMA COAST','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 21:56:41','2024-05-13 21:21:17',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:21:17','2024-03-25 22:08:05',0),(2213,'https://www.meadowcroftwines.com/wine_asset/sonoma-coast-chardonnay-2021/','73:29043f56f8e8d8e829a891e8ad81789d',3566,'post','wine_asset',2,0,NULL,NULL,'2021 CHARDONNAY, SONOMA COAST','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 22:08:25','2024-05-13 21:21:07',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:21:06','2024-03-25 22:09:02',0),(2214,'https://www.meadowcroftwines.com/wine_asset/napa-valley-carneros-chardonnay-2019/','81:e5cb3dbcc5a722fbb989af2afe537a5e',3567,'post','wine_asset',2,0,NULL,NULL,'2019 CHARDONNAY, CARNEROS, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 22:15:38','2024-05-13 21:20:39',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:20:39','2024-03-25 22:18:35',0),(2215,'https://www.meadowcroftwines.com/wine_asset/napa-valley-carneros-chardonnay-2020/','81:188363ed563f51b3f0df4c029af0b85d',3569,'post','wine_asset',2,0,NULL,NULL,'2020 CHARDONNAY, CARNEROS, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 22:18:48','2024-05-13 21:20:25',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:20:25','2024-03-25 22:19:21',0),(2216,'https://www.meadowcroftwines.com/wine_asset/napa-valley-carneros-chardonnay-2021/','81:6c13c0563667d133ec322ce5ed8e1746',3570,'post','wine_asset',2,0,NULL,NULL,'2021 CHARDONNAY, CARNEROS, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 22:19:33','2024-05-13 21:20:12',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:20:12','2024-03-25 22:20:15',0),(2217,'https://www.meadowcroftwines.com/wine_asset/napa-valley-carneros-chardonnay-2022/','81:069a1d72dc58ffca9129dea979043517',3571,'post','wine_asset',2,0,NULL,NULL,'2022 CHARDONNAY, CARNEROS, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 22:20:32','2024-05-13 21:19:59',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:19:59','2024-03-25 22:21:06',0),(2219,'https://www.meadowcroftwines.com/wine_asset/carneros-sonoma-county-chardonnay-2016/','83:7fb2ee487f8ee2e2d77dc5df83495591',3574,'post','wine_asset',2,0,NULL,NULL,'2016 CHARDONNAY, CARNEROS, SONOMA COUNTY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 22:23:26','2024-05-13 21:19:22',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:19:22','2024-03-25 22:23:58',0),(2220,'https://www.meadowcroftwines.com/wine_asset/carneros-sonoma-county-chardonnay-2018/','83:feda54fbcd0ae902d56c38b2c32b72d2',3575,'post','wine_asset',2,0,NULL,NULL,'2018 CHARDONNAY, CARNEROS, SONOMA COUNTY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 22:24:11','2024-05-13 21:18:57',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:18:57','2024-03-25 22:24:46',0),(2221,'https://www.meadowcroftwines.com/wine_asset/carneros-sonoma-county-chardonnay-2019/','83:de6f5d1eed37db843303805ae0980f94',3576,'post','wine_asset',2,0,NULL,NULL,'2019 CHARDONNAY, CARNEROS, SONOMA COUNTY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 22:25:01','2024-05-13 21:17:38',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:17:38','2024-03-25 22:25:30',0),(2222,'https://www.meadowcroftwines.com/wine_asset/chardonnay-russian-river-valley-2016/','81:bc32eb15d3cdca53cca985fc47656cb1',3577,'post','wine_asset',2,0,NULL,NULL,'2016 CHARDONNAY, RUSSIAN RIVER VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 22:25:45','2024-05-13 21:16:43',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:16:43','2024-03-25 22:27:42',0),(2223,'https://www.meadowcroftwines.com/wine_asset/chardonnay-anderson-valley-2021/','76:44f1bacbc844deddbdd6aa566b46614a',3579,'post','wine_asset',2,0,NULL,NULL,'2021 CHARDONNAY, ANDERSON VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 22:28:51','2024-05-13 21:16:26',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:16:26','2024-03-25 22:30:56',0),(2224,'https://www.meadowcroftwines.com/wine_asset/viognier-dry-creek-valley-2018/','75:eda115e92ffe20b15a301d4f4a86fa71',3581,'post','wine_asset',2,0,NULL,NULL,'2018 VIOGNIER, DRY CREEK VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 22:38:35','2024-05-13 21:16:03',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:16:03','2024-03-25 22:41:09',0),(2225,'https://www.meadowcroftwines.com/wine_asset/viognier-dry-creek-valley-2019/','75:f56c70eb9722e2833b0649ed47ef2ceb',3583,'post','wine_asset',2,0,NULL,NULL,'2019 VIOGNIER, DRY CREEK VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 22:41:20','2024-05-13 21:15:48',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:15:47','2024-03-25 22:41:57',0),(2226,'https://www.meadowcroftwines.com/wine_asset/viognier-dry-creek-valley-2020/','75:152113c56a5172d07070e37be2365302',3584,'post','wine_asset',2,0,NULL,NULL,'2020 VIOGNIER, DRY CREEK VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 22:42:15','2024-05-13 21:15:28',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:15:28','2024-03-25 22:42:42',0),(2227,'https://www.meadowcroftwines.com/wine_asset/viognier-dry-creek-valley-2021/','75:901c5f7bf738c26c609103cb3412dd27',3585,'post','wine_asset',2,0,NULL,NULL,'2021 VIOGNIER, DRY CREEK VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 22:42:56','2024-05-13 21:15:10',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:15:10','2024-03-25 22:43:34',0),(2228,'https://www.meadowcroftwines.com/wine_asset/viognier-dry-creek-valley-2022/','75:5218898496917b10ed94ea45c8bf84fd',3586,'post','wine_asset',2,0,NULL,NULL,'2022 VIOGNIER, DRY CREEK VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 22:43:49','2024-05-13 21:14:54',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:14:54','2024-03-25 22:44:24',0),(2229,'https://www.meadowcroftwines.com/wine_asset/pinot-blanc-nelson-ranch-vineyard-mendocino-2020/','93:17cccfb0ed8e2e67301c45df23abb1c6',3587,'post','wine_asset',2,0,NULL,NULL,'2020 PINOT BLANC, NELSON RANCH, MENDOCINO','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 23:03:55','2024-05-13 21:14:39',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:14:39','2024-03-25 23:12:09',0),(2230,'https://www.meadowcroftwines.com/wine_asset/pinot-blanc-nelson-ranch-vineyard-mendocino-2021/','93:df2faf453d15380df89b08556c6b2d71',3589,'post','wine_asset',2,0,NULL,NULL,'2021 PINOT BLANC, NELSON RANCH, MENDOCINO','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 23:12:32','2024-05-13 21:14:08',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:14:08','2024-03-25 23:13:12',0),(2231,'https://www.meadowcroftwines.com/wine_asset/pinot-blanc-nelson-ranch-vineyard-mendocino-2022/','93:3c5fa523972cafd6139d2075c5f34f1b',3590,'post','wine_asset',2,0,NULL,NULL,'2022 PINOT BLANC, NELSON RANCH, MENDOCINO','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 23:13:29','2024-05-13 21:13:42',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:13:42','2024-03-25 23:14:03',0),(2232,'https://www.meadowcroftwines.com/wine_asset/roussanne-dry-creek-valley-2018/','76:e9cb92be2ccc8c98deaf9bf165bbd128',3591,'post','wine_asset',2,0,NULL,NULL,'2018 ROUSSANNE, DRY CREEK VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 23:38:23','2024-05-13 21:13:13',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:13:13','2024-03-25 23:39:19',0),(2233,'https://www.meadowcroftwines.com/wine_asset/roussanne-dry-creek-valley-2019/','76:1639dcc32d5a653ba810dfda51ed0405',3593,'post','wine_asset',2,0,NULL,NULL,'2019 ROUSSANNE, DRY CREEK VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 23:39:42','2024-05-13 21:12:49',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:12:49','2024-03-25 23:40:19',0),(2234,'https://www.meadowcroftwines.com/wine_asset/roussanne-dry-creek-valley-2020/','76:86cf04140dff9849c2bc028fc531ff9b',3594,'post','wine_asset',2,0,NULL,NULL,'2020 ROUSSANNE, DRY CREEK VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 23:47:09','2024-05-13 21:12:32',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:12:32','2024-03-25 23:47:57',0),(2235,'https://www.meadowcroftwines.com/wine_asset/roussanne-dry-creek-valley-2021/','76:c162f33f891406749b82947151dda2b8',3595,'post','wine_asset',2,0,NULL,NULL,'2021 ROUSSANNE, DRY CREEK VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 23:48:15','2024-05-13 21:12:17',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:12:17','2024-03-25 23:48:53',0),(2236,'https://www.meadowcroftwines.com/wine_asset/roussanne-dry-creek-valley-2022/','76:8a6bf741fbc18ab46ae64a2f8e23fcc6',3596,'post','wine_asset',2,0,NULL,NULL,'2022 ROUSSANNE, DRY CREEK VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 23:49:07','2024-05-13 21:11:56',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:11:56','2024-03-25 23:49:42',0),(2237,'https://www.meadowcroftwines.com/wine_asset/sonoma-coast-sauvignon-blanc-2020/','78:3f75fe5b8f5504dc476066d558fd5602',3597,'post','wine_asset',2,0,NULL,NULL,'2020 SAUVIGNON BLANC, SONOMA COAST','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 23:50:00','2024-05-13 21:18:29',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:18:29','2024-03-25 23:52:08',0),(2238,'https://www.meadowcroftwines.com/wine_asset/sonoma-coast-sauvignon-blanc-2021/','78:f0462bc36e4f316a492cf869a588cd04',3599,'post','wine_asset',2,0,NULL,NULL,'2021 SAUVIGNON BLANC, SONOMA COAST','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 23:52:23','2024-05-13 21:11:34',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:11:33','2024-03-25 23:53:11',0),(2240,'https://www.meadowcroftwines.com/wine_asset/sonoma-coast-sauvignon-blanc-2023/','78:9ddc545386a09644f09e62495ab8e369',3601,'post','wine_asset',2,0,NULL,NULL,'2023 SAUVIGNON BLANC, SONOMA COAST','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 23:54:05','2024-05-13 21:11:07',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:11:07','2024-03-25 23:54:45',0),(2241,'https://www.meadowcroftwines.com/wine_asset/nelson-ranch-vineyard-mendocino-riesling-2015/','90:1450e728d42fd683c4402c960836b5c3',3602,'post','wine_asset',2,0,NULL,NULL,'2015 RIESLING, NELSON RANCH, MENDOCINO','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-25 23:55:25','2024-05-13 21:10:44',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:10:44','2024-03-26 00:08:07',0),(2242,'https://www.meadowcroftwines.com/wine_asset/nelson-ranch-vineyard-mendocino-riesling-2016/','90:3af6eb19339a0f9fe60bddd182c483c4',3604,'post','wine_asset',2,0,NULL,NULL,'2016 RIESLING, NELSON RANCH, MENDOCINO','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-26 00:08:36','2024-05-13 21:10:19',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:10:19','2024-03-26 00:09:36',0),(2243,'https://www.meadowcroftwines.com/wine_asset/nelson-ranch-vineyard-mendocino-riesling-2017/','90:ec3c23bad8fac7512c6c688a2db1636d',3605,'post','wine_asset',2,0,NULL,NULL,'2017 RIESLING, NELSON RANCH, MENDOCINO','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-26 00:10:12','2024-05-13 21:09:39',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:09:39','2024-03-26 00:11:38',0),(2244,'https://www.meadowcroftwines.com/wine_asset/nelson-ranch-vineyard-mendocino-riesling-2018/','90:c1fda97da51d46db26ba9d090d28083d',3606,'post','wine_asset',2,0,NULL,NULL,'2018 RIESLING, NELSON RANCH, MENDOCINO','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-26 00:11:51','2024-05-13 21:09:47',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:09:47','2024-03-26 00:13:21',0),(2245,'https://www.meadowcroftwines.com/wine_asset/french-colombard-russian-river-valley/','82:2ad71fce034d4de39b59cb66acae61e8',3607,'post','wine_asset',2,0,NULL,NULL,'2016 FRENCH COLOMBARD, RUSSIAN RIVER VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-26 00:15:40','2024-05-13 21:08:43',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:08:43','2024-03-26 00:18:01',0),(2246,'https://www.meadowcroftwines.com/wine_asset/french-colombard-russian-river-valley-2017/','87:58c2e488035f8ab7a164f0b726b22d81',3609,'post','wine_asset',2,0,NULL,NULL,'2017 FRENCH COLOMBARD, RUSSIAN RIVER VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-26 00:18:35','2024-05-13 21:08:26',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:08:26','2024-03-26 00:20:27',0),(2247,'https://www.meadowcroftwines.com/wine_asset/french-colombard-russian-river-valley-2018/','87:40d160bbc2d83e91f2e38a1a6b05f059',3610,'post','wine_asset',2,0,NULL,NULL,'2018 FRENCH COLOMBARD, RUSSIAN RIVER VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-26 00:20:42','2024-05-13 21:08:09',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:08:09','2024-03-26 00:21:34',0),(2248,'https://www.meadowcroftwines.com/wine_asset/french-colombard-russian-river-valley-2019/','87:a6dcada0696cf9647e63f0d8730b38a8',3611,'post','wine_asset',2,0,NULL,NULL,'2019 FRENCH COLOMBARD, RUSSIAN RIVER VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-26 00:21:49','2024-05-13 21:07:53',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:07:53','2024-03-26 00:22:29',0),(2249,'https://www.meadowcroftwines.com/wine_asset/french-colombard-russian-river-valley-2021/','87:83a3f6b8576f25911beb3c9b54ed973a',3612,'post','wine_asset',2,0,NULL,NULL,'2021 FRENCH COLOMBARD, RUSSIAN RIVER VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-26 00:23:18','2024-05-13 21:07:38',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:07:38','2024-03-26 00:23:57',0),(2250,'https://www.meadowcroftwines.com/wine_asset/french-colombard-russian-river-valley-2022/','87:ff6ffd0c64edfbb14e24999653acffc5',3613,'post','wine_asset',2,0,NULL,NULL,'2022 FRENCH COLOMBARD, RUSSIAN RIVER VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-26 00:24:08','2024-05-13 21:07:20',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:07:19','2024-03-26 00:24:45',0),(2251,'https://www.meadowcroftwines.com/wine_asset/pinot-gris-nelson-ranch-mendocino-2021/','83:a023f97d7bbfeb81ef66438f320b7e8b',3614,'post','wine_asset',2,0,NULL,NULL,'2023 PINOT GRIS, NELSON RANCH, MENDOCINO','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-26 00:25:52','2024-05-13 21:07:03',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:07:03','2024-03-26 00:28:11',0),(2252,'https://www.meadowcroftwines.com/wine_asset/pinot-gris-nelson-ranch-mendocino-2023/','83:997f2aeaa7295eafdc79e77f52059a75',3616,'post','wine_asset',2,0,NULL,NULL,'2023 PINOT GRIS, NELSON RANCH, MENDOCINO','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-26 00:28:27','2024-05-13 21:06:41',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:06:41','2024-03-26 00:29:04',0),(2253,'https://www.meadowcroftwines.com/wine_asset/blanc-de-blancs-napa-valley/','72:765a0263353339a53a34702c69d0781e',3617,'post','wine_asset',2,0,NULL,NULL,'NV BLANC DE BLANCS, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-26 00:29:22','2024-05-13 21:06:05',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:06:04','2024-03-26 00:31:24',0),(2254,'https://www.meadowcroftwines.com/wine_asset/rose-of-malbec-clements-hills-2016/','79:73b04d57d21fb43d5f1e23dbd8dcea1c',3619,'post','wine_asset',2,0,NULL,NULL,'2016 ROSÉ OF MALBEC, CLEMENTS HILLS','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-26 16:43:07','2024-05-13 21:05:48',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:05:48','2024-03-26 16:46:08',0),(2255,'https://www.meadowcroftwines.com/wine_asset/rose-of-malbec-clements-hills-2017/','79:a701943bae205c1a6f9cf5d7575f4e80',3621,'post','wine_asset',2,0,NULL,NULL,'2017 ROSÉ OF MALBEC, CLEMENTS HILLS','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-26 16:46:26','2024-05-13 21:05:27',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:05:27','2024-03-26 16:47:01',0),(2256,'https://www.meadowcroftwines.com/wine_asset/rose-of-malbec-clements-hills-2018/','79:3ae7e55aa49b3e86a61b7b3c7f18ff13',3622,'post','wine_asset',2,0,NULL,NULL,'2018 ROSÉ OF MALBEC, CLEMENTS HILLS','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-26 16:47:21','2024-05-13 21:05:09',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:05:08','2024-03-26 16:47:53',0),(2257,'https://www.meadowcroftwines.com/wine_asset/rose-of-malbec-clements-hills-2020/','79:733394908e8d8237069457831036eebe',3623,'post','wine_asset',2,0,NULL,NULL,'2020 ROSÉ OF MALBEC, CLEMENTS HILLS','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-26 16:48:12','2024-05-13 21:04:49',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:04:49','2024-03-26 16:48:44',0),(2258,'https://www.meadowcroftwines.com/wine_asset/rose-of-pinot-noir-sonoma-coast-2019/','81:9c1124bd1feec855786a62bca3356747',3624,'post','wine_asset',2,0,NULL,NULL,'2019 ROSÉ OF PINOT NOIR, SONOMA COAST','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-26 16:49:02','2024-05-13 21:04:00',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:04:00','2024-03-26 16:52:13',0),(2259,'https://www.meadowcroftwines.com/wine_asset/rose-of-pinot-noir-sonoma-coast-2020/','81:80a2cdb0d546b6ee59fc950a3e04200a',3626,'post','wine_asset',2,0,NULL,NULL,'2020 PINOT NOIR, SONOMA COAST','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-26 16:52:25','2024-05-13 21:01:54',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-13 21:01:54','2024-03-26 16:53:12',0),(2260,'https://www.meadowcroftwines.com/wine_asset/rose-of-pinot-noir-sonoma-coast-2021/','81:8185dd9e316805694beeaab0a76a579e',3627,'post','wine_asset',2,0,NULL,NULL,'2021 ROSÉ OF PINOT NOIR, SONOMA COAST','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-26 17:02:30','2024-05-07 21:05:13',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-07 21:05:13','2024-03-26 17:03:09',0),(2261,'https://www.meadowcroftwines.com/wine_asset/rose-of-pinot-noir-sonoma-coast-2022/','81:778e8fdce1bf9dcff130cee4808dd6b5',3628,'post','wine_asset',2,0,NULL,NULL,'2022 ROSÉ OF PINOT NOIR, SONOMA COAST','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-26 17:03:22','2024-05-07 21:04:53',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-07 21:04:53','2024-03-26 17:04:02',0),(2262,'https://www.meadowcroftwines.com/wine_asset/river-trace-rose-gsm-2021/','70:144bb8614fd0a12b230d6288d6385e16',3629,'post','wine_asset',2,0,NULL,NULL,'2021 ROSÉ GSM, RIVER TRACE','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-26 17:16:37','2024-05-07 21:04:34',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-07 21:04:34','2024-03-26 17:19:44',0),(2263,'https://www.meadowcroftwines.com/wine_asset/river-trace-rose-gsm-2022/','70:246c8dc3a20b4625a452967580aa3f2a',3631,'post','wine_asset',2,0,NULL,NULL,'2022 ROSÉ GSM, RIVER TRACE','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-26 17:20:22','2024-05-07 21:04:04',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-07 21:04:04','2024-03-26 17:21:04',0),(2264,'https://www.meadowcroftwines.com/wine_asset/all-she-wrote-port/','63:de2c0daf888eeee71e4acaf52cd4817c',3632,'post','wine_asset',2,0,NULL,NULL,'ALL SHE WROTE PORT, NON-VINTAGE','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-26 17:21:51','2024-05-07 21:03:25',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-07 21:03:25','2024-03-26 17:24:28',0),(2265,'https://www.meadowcroftwines.com/wine_asset/let-it-bee/','55:e3617cf3db4be0d93e59fa307229d322',3634,'post','wine_asset',2,0,NULL,NULL,'LET IT BEE','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-26 17:24:49','2024-04-09 18:14:56',1,NULL,NULL,NULL,NULL,0,1,2,'2024-04-09 18:14:56','2024-03-26 17:29:37',0),(2266,'https://www.meadowcroftwines.com/wine_asset/blanc-de-noirs-napa-valley/','71:79822751afef04fd969d5ee1f179bb5e',3638,'post','wine_asset',2,0,NULL,NULL,'NV BLANC DE NOIRS, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-26 17:30:36','2024-05-07 21:03:11',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-07 21:03:11','2024-03-26 17:33:45',0),(2267,'https://www.meadowcroftwines.com/wine_asset/stags-leap-district-napa-valley-cabernet-sauvignon-2019/','100:69b61844d9e604e8478d20e005de3c6b',3640,'post','wine_asset',2,0,NULL,NULL,'2019 CABERNET SAUVIGNON, STAGS LEAP DISTRICT, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-26 17:34:02','2024-05-07 21:02:45',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-07 21:02:45','2024-03-26 17:39:18',0),(2268,'https://www.meadowcroftwines.com/wine_asset/stags-leap-district-napa-valley-cabernet-sauvignon-2020/','100:073b9a0a01839f281f9d4af495062100',3642,'post','wine_asset',2,0,NULL,NULL,'2020 CABERNET SAUVIGNON, STAGS LEAP DISTRICT, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-26 17:39:33','2024-05-07 21:02:12',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-07 21:02:12','2024-03-26 17:40:07',0),(2269,'https://www.meadowcroftwines.com/wine_asset/stags-leap-district-napa-valley-cabernet-sauvignon-2021/','100:b61dcbad01b8dc7d88cfdd5a9f35c6fd',3643,'post','wine_asset',2,0,NULL,NULL,'2021 CABERNET SAUVIGNON, STAGS LEAP DISTRICT, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-26 17:40:23','2024-05-07 18:23:05',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-07 18:23:05','2024-03-26 17:41:02',0),(2270,'https://www.meadowcroftwines.com/product/celebrate-spring-2024-6-pack/','70:e62978435df80b9bf37e3e37457a310c',3645,'post','product',1,0,NULL,NULL,'Celebrate Spring 2024 6 Pack','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-27 20:43:36','2024-11-11 17:55:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 17:55:08','2024-03-27 20:43:36',0),(2271,'https://www.meadowcroftwines.com/product/hoodie-bee-you-unisex/','63:6b75975a9c6b8f0e686dfd29c679a137',3647,'post','product',1,0,NULL,NULL,'Hoodie sweatshirt &#8211; Bee You (unisex)','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-28 19:11:43','2024-06-19 17:40:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-06-19 17:40:11','2024-03-28 19:11:43',0),(2272,'https://www.meadowcroftwines.com/product/hoodie-bee-you-unisex-duplicate/','73:e5f98b406754758079888759a164e933',3648,'post','product',1,0,NULL,NULL,'Tee Shirt &#8211; Bee You (unisex)','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-28 19:12:04','2024-06-19 17:39:27',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-06-19 17:39:27','2024-03-28 19:12:04',0),(2273,'https://www.meadowcroftwines.com/product/save-the-bees-tee-shirt-men-duplicate/','79:821571df604bfa3961ad1d610863d770',3649,'post','product',1,0,NULL,NULL,'Tee Shirt &#8211; On Sale','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-03-29 19:01:39','2024-03-29 19:04:52',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-03-29 19:04:52','2024-03-29 19:01:39',0),(2274,'https://www.meadowcroftwines.com/wine_asset/sonoma-county-rose-of-grenache-westfall-vineyard-2023/','98:073054b85ac19f6113470af0f3cbe3c2',3652,'post','wine_asset',3,0,NULL,NULL,'2023 ROSÉ OF GRENACHE, WESTFALL VINEYARD','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-04-01 22:44:35','2024-05-07 20:59:14',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-07 20:59:14','2024-04-01 22:49:27',0),(2275,'https://www.meadowcroftwines.com/wine_asset/russian-river-sonoma-county-pinot-noir-2023/','88:765b66088c43d712d7e0c9c00c4a9f99',3655,'post','wine_asset',3,0,NULL,NULL,'2023 PINOT NOIR, RUSSIAN RIVER','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-04-01 22:52:44','2024-05-07 18:21:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-07 18:21:50','2024-04-01 23:08:33',0),(2276,'https://www.meadowcroftwines.com/wine_asset/anderson-valley-pinot-noir-2023/','76:9b9524bd23b9fb2ebb2d20e08a611149',3659,'post','wine_asset',3,0,NULL,NULL,'2023 PINOT NOIR, ANDERSON VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-04-01 23:19:40','2024-05-07 18:21:27',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-07 18:21:27','2024-04-01 23:22:21',0),(2277,'https://www.meadowcroftwines.com/wine_asset/botanica-consecrata-orange-wine-pinot-gris-mendocino-county-2023/','109:1813b163ad3875c7de739054609932ee',3664,'post','wine_asset',3,0,NULL,NULL,'2023 BOTANICA CONSECRATA, PINOT GRIS ORANGE WINE, MENDOCINO COUNTY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-04-01 23:32:45','2024-05-07 18:21:07',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-07 18:21:07','2024-04-01 23:39:08',0),(2278,'https://www.meadowcroftwines.com/wine_asset/albarino-sonoma-coast-2023/','71:dbeba0f312b95d47dc6a85cb152dc8f8',3668,'post','wine_asset',3,0,NULL,NULL,'2023 ALBARINO, SONOMA COAST','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-04-01 23:46:55','2024-05-07 18:20:27',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-07 18:20:27','2024-04-01 23:54:20',0),(2279,'https://www.meadowcroftwines.com/wine_asset/napa-valley-cabernet-sauvignon-2022/','80:64a64950ca1059a7d592f342cac8202c',3678,'post','wine_asset',3,0,NULL,NULL,'2022 CABERNET SAUVIGNON, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-04-02 00:16:14','2024-05-07 18:20:08',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-07 18:20:08','2024-04-02 00:17:33',0),(2280,'https://www.meadowcroftwines.com/wine_asset/dry-creek-valley-louvau-wyldvin-vineyard-cab-sauv-2020-2/','101:17b3b5e9a8ae35c2fd43f9f623cfe237',3680,'post','wine_asset',3,0,NULL,NULL,'2020 CABERNET SAUVIGNON, LOUVAU / WYLDVIN VINEYARD, DRY CREEK VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-04-02 00:18:33','2024-05-07 18:19:26',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-07 18:19:26','2024-04-02 00:21:17',0),(2281,'https://www.meadowcroftwines.com/product/blanket-fleece-logo/','61:792a1f00ad2b24fba3d222ca047d8b06',3684,'post','product',1,0,NULL,NULL,'Blanket fleece logo','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-04-02 17:48:32','2024-04-02 17:48:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-04-02 17:48:32','2024-04-02 17:48:32',0),(2282,'https://www.meadowcroftwines.com/event-tickets/','47:b33fb1705c2c5981a9d3cff269e85136',3691,'post','page',2,0,NULL,NULL,'Event Tickets','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-04-10 21:44:06','2024-10-30 21:20:04',1,NULL,NULL,NULL,NULL,0,1,2,'2024-10-30 21:20:02','2024-04-10 21:44:25',0),(2284,'https://www.meadowcroftwines.com/tag/kintsugi/','46:02f6281fde812de67d81bcaa9cbc51bf',157,'term','post_tag',NULL,NULL,NULL,NULL,'kintsugi',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-04-15 18:07:25','2024-04-15 18:14:04',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-04-15 18:14:04',NULL,NULL),(2285,'https://www.meadowcroftwines.com/product/2023-chardonnay-carneros/','66:f892aee92ceda31099457547efd2dcab',3697,'post','product',1,0,NULL,NULL,'2023 Chardonnay, Carneros','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-04-15 22:24:44','2024-07-29 16:54:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-29 16:54:55','2024-04-15 22:24:44',0),(2286,'https://www.meadowcroftwines.com/product/2023-chardonnay-carneros-375ml/','72:18b7631816e0927a2f1422be4869d636',3698,'post','product',1,0,NULL,NULL,'2023 Chardonnay, Carneros 375ml','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-04-15 22:46:25','2024-05-07 18:03:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-05-07 18:03:31','2024-04-15 22:46:25',0),(2287,'https://www.meadowcroftwines.com/product/2022-pinot-noir-sonoma-coast-375ml/','76:2a1fea1a358562368c7fb01c38e85de6',3699,'post','product',1,0,NULL,NULL,'2022 Pinot Noir, Sonoma Coast 375mL','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-04-15 22:49:32','2024-04-15 22:50:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-04-15 22:50:50','2024-04-15 22:49:32',0),(2288,'https://www.meadowcroftwines.com/product/2023-pinot-noir-sonoma-coast/','70:5d413d60f6560d421d93b1e9dce9da19',3700,'post','product',1,0,NULL,NULL,'2023 Pinot Noir Sonoma Coast','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-04-15 22:51:02','2024-10-21 22:49:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-10-21 22:49:02','2024-04-15 22:51:02',0),(2289,'https://www.meadowcroftwines.com/product/2023-pinot-blanc-rivino-vineyard/','74:ab784768bbf6b207546e1457807e9e0f',3701,'post','product',1,0,NULL,NULL,'2023 Pinot Blanc, Rivino Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-04-15 22:52:03','2024-12-30 23:31:42',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-30 23:31:42','2024-04-15 22:52:03',0),(2290,'https://www.meadowcroftwines.com/product/2023-roussanne-wyldvin-vineyard/','73:b95cbadf028841a60a7b12e446afdea8',3702,'post','product',1,0,NULL,NULL,'2023 Roussanne, Wyldvin Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-04-15 22:52:57','2024-12-30 23:34:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-30 23:34:03','2024-04-15 22:52:57',0),(2291,'https://www.meadowcroftwines.com/product/2023-viognier-wyldvin-vineyard/','72:1bc2bcfdcb8a22c51f061df2f22762ce',3703,'post','product',1,0,NULL,NULL,'2023 Viognier, Wyldvin Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-04-15 22:53:48','2024-07-29 16:52:59',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-29 16:52:58','2024-04-15 22:53:48',0),(2293,'https://www.meadowcroftwines.com/product/2012-cabernet-sauvignon-napa-valley-college-duplicate/','95:6362f1ec98f214b6d7d20a253061d99a',3705,'post','product',1,0,NULL,NULL,'2012 Cabernet Sauvignon, Napa Valley College duplicate','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-04-15 22:57:56','2024-04-15 23:00:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-04-15 23:00:03','2024-04-15 22:57:56',0),(2294,'https://www.meadowcroftwines.com/product/2020-cabernet-sauvignon-howell-mountain/','81:b89aabc5e75c069bca339b0da937d03d',3706,'post','product',1,0,NULL,NULL,'2020 Cabernet Sauvignon, Howell Mountain','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-04-15 23:00:50','2024-07-29 16:56:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-29 16:56:29','2024-04-15 23:00:50',0),(2295,'https://www.meadowcroftwines.com/product/2021-cabernet-sauvignon-howell-mountain-duplicate/','91:84aaa56af6d54654afa2b4cd0cd86da3',3707,'post','product',1,0,NULL,NULL,'2021 Cabernet Sauvignon, Howell Mountain','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-04-15 23:03:25','2024-07-29 16:52:12',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-29 16:52:12','2024-04-15 23:03:25',0),(2296,'https://www.meadowcroftwines.com/product/2023-chardonnay-carneros-duplicate/','76:20eb37bf7be287ac1dca10efef33f985',3708,'post','product',1,0,NULL,NULL,'2023 Chardonnay, Carneros (private label)','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-04-15 23:04:41','2024-04-15 23:05:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-04-15 23:05:01','2024-04-15 23:04:41',0),(2297,'https://www.meadowcroftwines.com/product/tee-shirt-bee-you-unisex-duplicate/','76:2bdbbd355ac5e62982004b8f370f9b53',3713,'post','product',1,0,NULL,NULL,'Tee Shirt &#8211; Save the Bees (unisex)','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-04-22 20:12:44','2024-06-19 17:39:58',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-06-19 17:39:58','2024-04-22 20:12:44',0),(2298,'https://www.meadowcroftwines.com/product/tee-shirt-save-the-bees-unisex-duplicate/','82:6edbc489292331a59679ecde8951850b',3714,'post','product',1,0,NULL,NULL,'Tee Shirt &#8211; European Heritage (unisex)','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-04-22 20:22:29','2024-06-19 17:44:21',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-06-19 17:44:21','2024-04-22 20:22:29',0),(2299,'https://www.meadowcroftwines.com/product/hoodie-sweatshirt-bee-you-unisex-duplicate/','84:5a73cb72735cac9d816b957440ba5693',3715,'post','product',1,0,NULL,NULL,'Hoodie sweatshirt &#8211; European heritage(unisex)','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-04-22 20:24:21','2024-06-19 17:40:39',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-06-19 17:40:39','2024-04-22 20:24:20',0),(2300,'https://www.meadowcroftwines.com/product/2022-chardonnay-sonoma-coast-vina-del-sol/','83:0ec1ad1594bcef0cf69599923bc2acab',3716,'post','product',1,0,NULL,NULL,'2022 Chardonnay, Sonoma Coast &#8211; Vina Del Sol','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-04-26 18:59:33','2024-04-26 19:00:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-04-26 19:00:28','2024-04-26 18:59:33',0),(2301,'https://www.meadowcroftwines.com/wine_asset/2023-rose-of-grenache-westfall-vineyard/','84:545dc2d42f3a20bc6156602769f4f01e',3719,'post','wine_asset',3,0,NULL,NULL,'2023 ROSE OF GRENACHE, WESTFALL VINEYARD','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-04-29 18:11:43','2024-05-07 18:17:47',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-07 18:17:46','2024-04-29 18:14:29',0),(2302,'https://www.meadowcroftwines.com/wine_asset/2020-cabernet-sauvignon-howell-mountain-napa-valley/','96:96156e1e0acfe44132fd1455e313ee93',3731,'post','wine_asset',3,0,NULL,NULL,'2020 CABERNET SAUVIGNON, HOWELL MOUNTAIN, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-05-07 18:25:15','2024-05-07 21:10:06',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-07 21:10:06','2024-05-07 18:27:47',0),(2303,'https://www.meadowcroftwines.com/wine_asset/2021-cabernet-sauvignon-howell-mountain-napa-valley/','96:919c70be1e6217548666c191b43a5377',3732,'post','wine_asset',3,0,NULL,NULL,'2021 CABERNET SAUVIGNON, HOWELL MOUNTAIN, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,'Howell Mountain Cabernet Sauvignon',30,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-05-07 18:29:19','2024-05-07 20:40:42',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-07 20:40:42','2024-05-07 18:32:46',0),(2304,'https://www.meadowcroftwines.com/wine_asset/2023-chardonnay-napa-carneros/','74:3c36899505d42887e49116a2737c81bb',3734,'post','wine_asset',3,0,NULL,NULL,'2023 CHARDONNAY, NAPA CARNEROS','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-05-07 20:30:33','2024-05-07 20:39:14',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-07 20:39:14','2024-05-07 20:39:14',0),(2305,'https://www.meadowcroftwines.com/wine_asset/2023-pinot-noir-sonoma-coast/','73:28d67e78edde76f4d51052452292e396',3742,'post','wine_asset',3,0,NULL,NULL,'2023 PINOT NOIR, SONOMA COAST','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-05-07 20:42:26','2024-05-07 20:43:35',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-07 20:43:35','2024-05-07 20:43:35',0),(2306,'https://www.meadowcroftwines.com/wine_asset/2023-pinot-blanc-rivino-vineyard-mendocino-county/','94:b0ce98841e9da1562bda7c45d9cf7642',3743,'post','wine_asset',3,0,NULL,NULL,'2023 PINOT BLANC, RIVINO VINEYARD, MENDOCINO COUNTY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-05-07 20:44:35','2024-12-27 19:30:30',1,NULL,NULL,NULL,NULL,0,1,2,'2024-12-27 19:30:30','2024-05-07 20:45:57',0),(2307,'https://www.meadowcroftwines.com/wine_asset/2023-viognier-wyldvin-vineyard-dry-creek-valley/','92:0df53871afa1a07f836229ba8fdbea73',3744,'post','wine_asset',3,0,NULL,NULL,'2023 VIOGNIER, WYLDVIN VINEYARD, DRY CREEK VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-05-07 20:46:43','2024-05-22 18:24:23',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-22 18:24:23','2024-05-07 20:47:45',0),(2308,'https://www.meadowcroftwines.com/wine_asset/2021-cabernet-sauvignon-oakville-napa-valley/','89:c97c6fa644c0caec0d39953ed207aa68',3746,'post','wine_asset',3,0,NULL,NULL,'2021 CABERNET SAUVIGNON, OAKVILLE, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-05-09 16:05:46','2024-05-09 16:07:38',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-09 16:07:37','2024-05-09 16:07:37',0),(2309,'https://www.meadowcroftwines.com/product/vineyard-tour-duplicate/','65:0ded6b3e36978a16b8cebca11a02ef78',3755,'post','product',1,0,NULL,NULL,'Platypus Vineyard Tour/Tasting','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-05-16 17:39:34','2024-06-12 18:45:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-06-12 18:45:33','2024-05-16 17:39:34',0),(2310,'https://www.meadowcroftwines.com/product/2022-sangiovese-speedy-creek-vineyard-duplicate/','89:e6848c79d5d872652af97e79f75333b8',3756,'post','product',1,0,NULL,NULL,'2022 Sangiovese, Speedy Creek Vineyard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-05-20 16:51:29','2024-09-27 21:47:36',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-09-27 21:47:36','2024-05-20 16:51:28',0),(2312,'https://www.meadowcroftwines.com/product/2021-cabernet-sauvignon-mt-veeder-estate-duplicate/','92:1040d870e8ece9cbf747e16cc28a1277',3758,'post','product',1,0,NULL,NULL,'2021 Cabernet Sauvignon, Mt. Veeder Estate','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-05-20 17:02:10','2024-06-27 20:43:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-06-27 20:43:55','2024-05-20 17:02:09',0),(2313,'https://www.meadowcroftwines.com/product/2021-cabernet-sauvignon-mt-veeder-estate-1-5l-duplicate/','97:267bf70e883ba4668dfe2dd4efef31cb',3759,'post','product',1,0,NULL,NULL,'2021 Cabernet Sauvignon, Mt. Veeder Estate 1.5L','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-05-20 17:06:07','2024-05-20 17:06:59',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-05-20 17:06:59','2024-05-20 17:06:07',0),(2314,'https://www.meadowcroftwines.com/product/2021-cabernet-sauvignon-atlas-peak/','76:576e205221ccd72c885da683d392b225',3760,'post','product',1,0,NULL,NULL,'2021 Cabernet Sauvignon, Atlas Peak, Napa Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-05-20 17:10:58','2024-06-27 21:08:35',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-06-27 21:08:35','2024-05-20 17:10:58',0),(2315,'https://www.meadowcroftwines.com/wine_asset/2022-cabernet-sauvignon-wyldvin-vineyard-dry-creek-valley/','102:000ad9e0e30eba80008381235d5d95ec',3774,'post','wine_asset',3,0,NULL,NULL,'2022 CABERNET SAUVIGNON, WYLDVIN VINEYARD, DRY CREEK VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-05-22 18:25:59','2024-05-22 18:27:35',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-22 18:27:35','2024-05-22 18:27:35',0),(2316,'https://www.meadowcroftwines.com/wine_asset/2022-the-magi-italian-red-blend/','76:9adb4f8e61eb222f36c5388e19524b1e',3775,'post','wine_asset',3,0,NULL,NULL,'2022 THE MAGI, ITALIAN RED BLEND','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-05-22 18:28:25','2024-05-22 18:37:12',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-22 18:37:12','2024-05-22 18:36:55',0),(2317,'https://www.meadowcroftwines.com/wine_asset/2022-pinot-gris-nelson-ranch-mendocino-county/','90:0bd8e72619b35ecbd1ed435d42b8d478',3780,'post','wine_asset',3,0,NULL,NULL,'2022 PINOT GRIS, NELSON RANCH, MENDOCINO COUNTY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-05-22 18:37:54','2024-05-22 18:43:29',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-22 18:43:29','2024-05-22 18:43:29',0),(2318,'https://www.meadowcroftwines.com/wine_asset/2022-pinot-noir-napa-carneros/','74:f2976dcf438796aa99c2b12c08c824cb',3783,'post','wine_asset',3,0,NULL,NULL,'2022 PINOT NOIR, NAPA CARNEROS','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-05-22 18:44:26','2024-05-22 18:45:40',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-22 18:45:40','2024-05-22 18:45:40',0),(2319,'https://www.meadowcroftwines.com/wine_asset/2020-cabernet-sauvignon-rutherford-napa-valley/','91:b2febb433ed51264a6cfd24138ceb0fc',3784,'post','wine_asset',3,0,NULL,NULL,'2020 CABERNET SAUVIGNON, RUTHERFORD, NAPA VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-05-22 18:47:29','2024-05-22 18:50:29',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-22 18:50:29','2024-05-22 18:50:29',0),(2320,'https://www.meadowcroftwines.com/wine_asset/2020-zinfandel-speedy-creek-vineyard-knights-valley/','96:3a14a5a7dd49dd204479deb2d6a40a7d',3786,'post','wine_asset',3,0,NULL,NULL,'2020 ZINFANDEL, SPEEDY CREEK VINEYARD, KNIGHT’S VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-05-22 18:51:08','2024-05-22 19:03:44',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-22 19:03:44','2024-05-22 18:57:07',0),(2321,'https://www.meadowcroftwines.com/wine_asset/2023-roussanne-wyldvin-vineyard-dry-creek-valley/','93:527d63ded1a22e9a4f7034ee4f384853',3791,'post','wine_asset',3,0,NULL,NULL,'2023 ROUSSANNE, WYLDVIN VINEYARD, DRY CREEK VALLEY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-05-24 17:46:52','2024-05-24 17:47:54',1,NULL,NULL,NULL,NULL,0,1,2,'2024-05-24 17:47:54','2024-05-24 17:47:54',0),(2322,'https://www.meadowcroftwines.com/product/curious-elixir-mocktail-4-pack/','72:f0b373b37c0fc62c6c7bab669ff2213b',3792,'post','product',1,0,NULL,NULL,'Curious Elixir Mocktail 4 Pack','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-05-24 22:30:03','2024-05-24 22:30:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-05-24 22:30:16','2024-05-24 22:30:03',0),(2323,'https://www.meadowcroftwines.com/wine_asset/2022-sangiovese-speedy-creek-vineyard-knights-valley/','97:79462edeb8dcb99c4a23991891ad0ccb',3800,'post','wine_asset',3,0,NULL,NULL,'2022 Sangiovese, Speedy Creek Vineyard, Knight&#8217;s Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-06-27 20:46:40','2024-06-27 22:08:09',1,NULL,NULL,NULL,NULL,0,1,2,'2024-06-27 22:08:09','2024-06-27 20:50:16',0),(2324,'https://www.meadowcroftwines.com/wine_asset/2021-cabernet-sauvignon-atlas-peak-napa-valley/','91:f39ad7ba592b5cd7830aecf769bdbfe2',3802,'post','wine_asset',3,0,NULL,NULL,'2021 Cabernet Sauvignon, Atlas Peak, Napa Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-06-27 20:52:30','2024-06-27 20:53:41',1,NULL,NULL,NULL,NULL,0,1,2,'2024-06-27 20:53:41','2024-06-27 20:53:41',0),(2325,'https://www.meadowcroftwines.com/wine_asset/2021-cabernet-sauvignon-mt-veeder-napa-valley/','90:dad7bbc228aea76d84590ebcf1081296',3805,'post','wine_asset',3,0,NULL,NULL,'2021 Cabernet Sauvignon, Mt. Veeder, Napa Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-06-27 20:54:26','2024-06-27 20:59:10',1,NULL,NULL,NULL,NULL,0,1,2,'2024-06-27 20:59:10','2024-06-27 20:59:10',0),(2326,'https://www.meadowcroftwines.com/collection/half-marathon-wines/','64:eefe246682869fbc9e357c466292d24d',3808,'post','collection',1,0,NULL,NULL,'Half Marathon Wines','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-02 19:59:31','2024-11-18 22:18:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-18 22:18:16','2024-07-02 19:59:31',0),(2327,'https://www.meadowcroftwines.com/product/2023-pinot-noir-anderson-valley-shiner-duplicate/','90:8488a09ffdb2bd468ce47ef375829080',3810,'post','product',1,0,NULL,NULL,'2023 Pinot Noir, Anderson Valley &#8211; 2024 Half Marathon Label','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-05 21:18:38','2024-07-14 19:09:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-14 19:09:08','2024-07-05 21:18:38',0),(2328,'https://www.meadowcroftwines.com/product/2023-chardonnay-carneros-duplicate1/','77:1860da773edbf25ed20b70ed13c6b6c6',3811,'post','product',1,0,NULL,NULL,'2023 Chardonnay, Napa Carneros &#8211; 2024 Half Marathon Label','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-05 21:21:42','2024-07-14 19:09:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-14 19:09:44','2024-07-05 21:21:42',0),(2329,'https://www.meadowcroftwines.com/?page_id=3814','46:97ca5a177f779d60de1b4a6ce903b15a',3814,'post','page',2,0,NULL,NULL,'2024 Half Marathon Wines','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-05 23:46:17','2024-10-04 19:03:17',1,NULL,NULL,NULL,NULL,0,1,2,'2024-10-04 19:03:17','2024-07-05 23:46:38',0),(2330,'https://www.meadowcroftwines.com/product/2022-chardonnay-sonoma-coast-duplicate/','80:b505b4fe6bba4424c596b6af590cf21b',3817,'post','product',1,0,NULL,NULL,'2022 Chardonnay, Sonoma Coast &#8211; BEE YOU','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-08 23:22:14','2024-07-08 23:23:47',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-08 23:23:47','2024-07-08 23:22:13',0),(2331,'https://www.meadowcroftwines.com/product/ice-pack/','50:4ecb4a3bcf881dde733b09fa849d6b17',3818,'post','product',1,0,NULL,NULL,'Ice Pack','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-30 22:38:21','2024-07-30 22:38:21',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-30 22:38:21','2024-07-30 22:38:21',0),(2332,'https://www.meadowcroftwines.com/product/olives-jar/','52:911a2c24a73df6e8bb5e7c8c6e9bc49c',3819,'post','product',1,0,NULL,NULL,'Olives &#8211; jar','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-01 19:09:32','2024-08-01 19:09:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-08-01 19:09:44','2024-08-01 19:09:32',0),(2333,'https://www.meadowcroftwines.com/product/club-newsletter-fall-2024/','67:981cd2ebe99f0aecefbc3f7e755e4f7f',3823,'post','product',1,0,NULL,NULL,'Club Newsletter &#8211; FALL 2024','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-09-03 23:31:27','2024-09-03 23:39:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-09-03 23:39:53','2024-09-03 23:31:27',0),(2334,'https://www.meadowcroftwines.com/product/club-gift-fall-2024/','61:76a8eb3e874d27c953f00af4d68f62ec',3824,'post','product',1,0,NULL,NULL,'Club Gift Fall 2024','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-09-03 23:41:51','2024-10-09 17:25:21',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-10-09 17:25:20','2024-09-03 23:41:51',0),(2335,'https://www.meadowcroftwines.com/product/sip-and-savor-cheese-making-demonstration/','83:31a7b1cf1519eb6db13887027b02bdba',3825,'post','product',1,0,NULL,NULL,'Sip and Savor cheese making demonstration','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2024-09-05 21:06:04','2024-09-29 18:00:58',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-09-29 18:00:58','2024-09-05 21:06:04',0),(2337,'https://www.meadowcroftwines.com/product/tee-shirt-bee-you-unisex-duplicate1/','77:3b16bfeb783643a108dacfde59529393',3830,'post','product',1,0,NULL,NULL,'Tee Shirt &#8211; Harvest 2024','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-03 17:02:36','2024-10-03 17:13:12',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-10-03 17:13:12','2024-10-03 17:02:36',0),(2338,'https://www.meadowcroftwines.com/product/sunglasses-bee/','56:e61f60deef79c4ab51795c5ecbfcb131',3836,'post','product',1,0,NULL,NULL,'Sunglasses &#8211; bee','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-10 21:18:20','2024-10-10 21:19:35',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-10-10 21:19:35','2024-10-10 21:18:20',0),(2339,'https://www.meadowcroftwines.com/product/maisie-jane-s-assorted-nuts/','69:8a98f692e415674dfa7e05409bfb441e',3837,'post','product',1,0,NULL,NULL,'Maisie Jane&#8217;s assorted nuts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-14 22:31:52','2024-10-14 22:35:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-10-14 22:35:03','2024-10-14 22:31:52',0),(2340,'https://www.meadowcroftwines.com/product/2-bottle-black-gift-box/','65:1e9d83f3603af734b935ecb58cc065c7',3838,'post','product',1,0,NULL,NULL,'2 bottle black gift box','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-16 22:26:18','2024-10-31 18:42:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-10-31 18:42:28','2024-10-16 22:26:18',0),(2341,'https://www.meadowcroftwines.com/product/holiday-celebration-pinot-noir-2-bottle-gift-pack/','91:1f6394ab5b8a0cb871d405aef7f9749c',3839,'post','product',1,0,NULL,NULL,'Holiday celebration Pinot Noir 2 bottle gift pack','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2024-10-16 22:31:12','2024-12-11 10:30:17',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-10-16 22:32:03','2024-10-16 22:31:11',0),(2342,'https://www.meadowcroftwines.com/product/socks-pollinator/','58:6f0f44214132da37a2b0de3db86097c4',3840,'post','product',1,0,NULL,NULL,'Socks- pollinator','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-17 18:17:54','2024-10-17 18:17:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-10-17 18:17:53','2024-10-17 18:17:53',0),(2343,'https://www.meadowcroftwines.com/product/beeswax-lotion-bar/','60:c909087ab1772d7607b33c0bf74dac19',3841,'post','product',1,0,NULL,NULL,'Beeswax lotion bar','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-18 18:26:47','2024-10-18 18:29:40',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-10-18 18:29:40','2024-10-18 18:26:47',0),(2344,'https://www.meadowcroftwines.com/product/fall-tasting-room-party-2024/','70:f3c752ee759a80a9ac596a4cf052d040',3842,'post','product',1,0,NULL,NULL,'Fall Tasting Room Party 2024','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-18 18:52:20','2024-11-10 00:00:58',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-10 00:00:58','2024-10-18 18:52:20',0),(2345,'https://www.meadowcroftwines.com/product/crackers-flatbreads-rosemary-olive-oil-duplicate/','90:e02eb2b9c419f4e9eef60f6a09c9cbe3',3843,'post','product',1,0,NULL,NULL,'Cheese Coins','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-18 20:33:27','2024-10-18 20:35:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-10-18 20:35:03','2024-10-18 20:33:27',0),(2346,'https://www.meadowcroftwines.com/product/wine-chips-small-1-oz/','63:061c95f6fc910f050ba6db0c33279a18',3844,'post','product',1,0,NULL,NULL,'Wine Chips- small (1 oz)','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-18 21:37:57','2024-10-18 21:37:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-10-18 21:37:57','2024-10-18 21:37:57',0),(2347,'https://www.meadowcroftwines.com/product/wine-chips-small-1-oz-duplicate/','73:4103f61b1cb0d47c838c5471a0a019e3',3845,'post','product',1,0,NULL,NULL,'Wine Chips- large (3oz)','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-18 21:38:03','2024-10-18 21:38:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-10-18 21:38:57','2024-10-18 21:38:03',0),(2348,'https://www.meadowcroftwines.com/product/chocolate-truffles-6-pack/','67:79bfaca26e7eb622cd2315d36dc145da',3848,'post','product',1,0,NULL,NULL,'Chocolate Truffles 6 pack','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-29 22:59:57','2024-10-29 23:00:12',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-10-29 23:00:12','2024-10-29 22:59:57',0),(2349,'https://www.meadowcroftwines.com/product/all-she-wrote-port-and-chocolate-truffle-gift-box/','91:217c9fb8ad0cb5f812ceff5f4653c51d',3849,'post','product',1,0,NULL,NULL,'All She Wrote Port and Chocolate Truffle Gift Box','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2024-10-29 23:06:56','2024-12-11 10:30:17',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-02 21:18:32','2024-10-29 23:06:56',0),(2350,'https://www.meadowcroftwines.com/product/caramel-salted-honey-dark-chocolate/','77:57763b2e81d8cda871230626c66ad9de',3850,'post','product',1,0,NULL,NULL,'Caramel &#8211; salted honey dark chocolate','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-30 21:25:12','2024-10-30 21:27:04',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-10-30 21:27:04','2024-10-30 21:25:12',0),(2351,'https://www.meadowcroftwines.com/product/bordeaux-lovers-gift-box/','66:4842671601d9d3e719191b891d20c9b0',3851,'post','product',1,0,NULL,NULL,'Bordeaux Lovers Gift Box','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2024-10-31 19:04:36','2024-12-11 10:30:17',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-12 18:14:43','2024-10-31 19:04:36',0),(2352,'https://www.meadowcroftwines.com/product/grateful-gatherings-gift-box/','70:6bd3759cf34a2eea63c1b8c019cf788f',3852,'post','product',1,0,NULL,NULL,'Grateful Gatherings Gift Box','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2024-10-31 19:22:46','2024-12-11 10:30:17',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 23:29:06','2024-10-31 19:22:46',0),(2353,'https://www.meadowcroftwines.com/product/celebration-noir-six-bottle-box/','73:247b10428383a866605dc112cc26a0f2',3853,'post','product',1,0,NULL,NULL,'Celebration Noir Six Bottle Box','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2024-10-31 19:41:36','2024-12-11 10:30:17',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-02 21:20:34','2024-10-31 19:41:36',0),(2354,'https://www.meadowcroftwines.com/product/duck-rillettes/','56:dde50c85a1483b3a14deea1f35b465b9',3854,'post','product',1,0,NULL,NULL,'Duck Rillettes','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-31 21:01:09','2024-10-31 21:01:09',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-10-31 21:01:09','2024-10-31 21:01:09',0),(2355,'https://www.meadowcroftwines.com/product/duck-rillettes-duplicate/','66:8657bacad2641ae8c6a8be8b24faab48',3855,'post','product',1,0,NULL,NULL,'Duck &amp; Pork Pate','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-31 21:01:14','2024-10-31 21:02:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-10-31 21:02:28','2024-10-31 21:01:14',0),(2356,'https://www.meadowcroftwines.com/product/duck-pork-pate-duplicate/','66:78883385c3a952bd152ebc94bcc4af94',3856,'post','product',1,0,NULL,NULL,'Flatbread Crackers','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-31 21:02:34','2024-10-31 21:03:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-10-31 21:03:43','2024-10-31 21:02:34',0),(2357,'https://www.meadowcroftwines.com/product/sip-and-savor-gift-box/','64:5487e1e5dde859d6671210267b0107c9',3857,'post','product',1,0,NULL,NULL,'Sip and Savor Gift Box','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2024-10-31 21:13:18','2024-12-11 10:30:17',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 23:23:56','2024-10-31 21:13:18',0),(2358,'https://www.meadowcroftwines.com/product/meadowcroft-black-box-of-bubbles/','74:13ebbceb3182644862d090db0b31a037',3858,'post','product',1,0,NULL,NULL,'Black Box of Bubbles','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2024-10-31 21:25:34','2024-12-11 10:30:17',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 23:25:10','2024-10-31 21:25:34',0),(2359,'https://www.meadowcroftwines.com/collection/2024-holiday-gift-bundles/','70:1e7b7eccadbf9b6032ba619381710751',3863,'post','collection',1,0,NULL,NULL,'2024 Holiday Gift Bundles','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-11-11 18:07:07','2024-11-11 18:07:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-11 18:07:07','2024-11-11 18:07:07',0),(2360,'https://www.meadowcroftwines.com/product/private-label-gift-box-mclellan/','73:0be49c8eba51b2650fef9c6872d1c4ff',3864,'post','product',1,0,NULL,NULL,'Private Label Gift Box- McLellan','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-11-12 20:34:20','2024-11-12 20:34:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-11-12 20:34:20','2024-11-12 20:34:20',0),(2361,'https://www.meadowcroftwines.com/product/let-it-bee-white-port-style-wine/','74:87fbefb56f6a73fe3b312752585d9425',3868,'post','product',1,0,NULL,NULL,'Let It Bee White Port Style Wine','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-11-22 21:20:54','2024-12-05 21:58:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-05 21:58:19','2024-11-22 21:20:54',0),(2362,'https://www.meadowcroftwines.com/product/let-it-bee-release-fondue-party/','73:a8613401f54862025f324226199f5646',3869,'post','product',1,0,NULL,NULL,'Let It Bee release &amp; Fondue Party','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-11-25 19:39:24','2024-12-08 03:00:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-08 03:00:55','2024-11-25 19:39:24',0),(2363,'https://www.meadowcroftwines.com/wine_asset/2020-let-it-bee-white-port-style-dessert-wine/','90:b8b87adce7fb42fa6bce52a975e4c71e',3875,'post','wine_asset',3,0,NULL,NULL,'2020 Let It Bee, White Port Style Dessert Wine','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-12-09 22:54:19','2024-12-09 22:56:07',1,NULL,NULL,NULL,NULL,0,1,2,'2024-12-09 22:56:07','2024-12-09 22:56:07',0),(2364,'https://www.meadowcroftwines.com/?p=3876','40:34c1df5c3688f310704551748a8dcc53',3876,'post','post',5,0,NULL,NULL,'Holiday Wine Gift Guide: Perfect Wines for Wine Lovers','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-12-11 09:35:58','2024-12-11 09:35:58',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-11 09:35:58','0000-00-00 00:00:00',0),(2365,'https://www.meadowcroftwines.com/holiday-wine-gift-guide-perfect-wines-for-wine-lovers/','87:0a69bd6196bcfa09071f507ca61ee9c4',3877,'post','post',5,0,'Perfect Holiday Wine Gifts for Wine Lovers | Meadowcroft Wines','Find the best holiday wine gifts for every wine lover. Explore curated wine gift sets from Meadowcroft Wines for a memorable holiday season.','Holiday Wine Gift Guide: Perfect Wines for Wine Lovers','publish',NULL,0,NULL,NULL,NULL,'Holiday Wine Gift',65,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.meadowcroftwines.com/wp-content/uploads/2024/12/2E9A8548-216x300.webp',NULL,'3879','first-content-image',NULL,NULL,'https://www.meadowcroftwines.com/wp-content/uploads/2024/12/2E9A8548-216x300.webp','3879','first-content-image',NULL,9,NULL,NULL,'2024-12-11 09:43:18','2024-12-11 10:32:13',1,NULL,NULL,NULL,NULL,0,6,2,'2024-12-11 10:32:13','2024-12-11 10:25:50',0),(2366,'https://www.meadowcroftwines.com/product/comp-tasting-duplicate/','64:bc6fb187e0b469a52d2492e0431311aa',3893,'post','product',1,0,NULL,NULL,'Offsite Private Tasting Fee','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-12-19 23:12:40','2024-12-19 23:14:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-19 23:14:08','2024-12-19 23:12:40',0),(2367,'https://www.meadowcroftwines.com/product/chocolate-pairing-set/','63:d5c8f64ec8d32b9a10e11a3d68fca951',3894,'post','product',1,0,NULL,NULL,'Chocolate Pairing Set','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-12-21 18:48:14','2024-12-21 18:54:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-21 18:54:45','2024-12-21 18:48:14',0),(2368,'https://www.meadowcroftwines.com/wine_asset/2024-pinot-blanc-rivino-vineyard-mendocino-county/','94:630c3c9f431df3c5c8fe06063d0efb81',3904,'post','wine_asset',3,0,NULL,NULL,'2024 Pinot Blanc, Rivino Vineyard, Mendocino County','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-12-27 19:31:49','2024-12-27 19:40:53',1,NULL,NULL,NULL,NULL,0,1,2,'2024-12-27 19:40:53','2024-12-27 19:40:53',0),(2369,'https://www.meadowcroftwines.com/wine_asset/2022-cabernet-sauvignon-stags-leap-napa-valley/','91:a0e2bddd4d5caf2d67f37546d7bc6985',3912,'post','wine_asset',3,0,NULL,NULL,'2022 Cabernet Sauvignon, Stags Leap, Napa Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-12-27 19:44:30','2024-12-27 19:45:41',1,NULL,NULL,NULL,NULL,0,1,2,'2024-12-27 19:45:41','2024-12-27 19:45:41',0),(2370,'https://www.meadowcroftwines.com/wine_asset/2022-cabernet-sauvignon-oakville-napa-valley/','89:665afc4e60b4f7f2c180838c1590ea5a',3913,'post','wine_asset',3,0,NULL,NULL,'2022 Cabernet Sauvignon, Oakville, Napa Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-12-27 19:47:52','2024-12-27 19:53:29',1,NULL,NULL,NULL,NULL,0,1,2,'2024-12-27 19:53:29','2024-12-27 19:47:52',0),(2371,'https://www.meadowcroftwines.com/product/soap-honey-body-bar/','61:346c391904d325805640dd9ea8763a72',3915,'post','product',1,0,NULL,NULL,'Soap &#8211; Honey Body Bar','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-12-30 19:37:15','2024-12-30 19:37:15',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-30 19:37:15','2024-12-30 19:37:15',0),(2372,'https://www.meadowcroftwines.com/product/spice-blends-calicutt-assorted/','72:95c98d9298c2cab2fa903ac5235d5637',3916,'post','product',1,0,NULL,NULL,'Spice Blends &#8211; Calicutt assorted','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-12-30 19:39:17','2024-12-30 19:39:17',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-30 19:39:17','2024-12-30 19:39:17',0),(2373,'https://www.meadowcroftwines.com/product/2023-sonoma-county-rose/','65:647be53f63a3f5a5662e456befba0730',3917,'post','product',1,0,NULL,NULL,'2023 Sonoma County Rose','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-12-30 23:56:19','2024-12-31 18:54:36',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-31 18:54:36','2024-12-30 23:56:18',0);
/*!40000 ALTER TABLE `wp_yoast_indexable` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_indexable_hierarchy`
--

DROP TABLE IF EXISTS `wp_yoast_indexable_hierarchy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_indexable_hierarchy` (
  `indexable_id` int unsigned NOT NULL,
  `ancestor_id` int unsigned NOT NULL,
  `depth` int unsigned DEFAULT NULL,
  `blog_id` bigint NOT NULL DEFAULT '1',
  PRIMARY KEY (`indexable_id`,`ancestor_id`),
  KEY `indexable_id` (`indexable_id`),
  KEY `ancestor_id` (`ancestor_id`),
  KEY `depth` (`depth`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_indexable_hierarchy`
--

LOCK TABLES `wp_yoast_indexable_hierarchy` WRITE;
/*!40000 ALTER TABLE `wp_yoast_indexable_hierarchy` DISABLE KEYS */;
INSERT INTO `wp_yoast_indexable_hierarchy` VALUES (4,0,0,1),(7,0,0,1),(8,0,0,1),(9,0,0,1),(51,0,0,1),(54,0,0,1),(61,54,1,1),(75,0,0,1),(88,0,0,1),(90,0,0,1),(95,0,0,1),(100,0,0,1),(107,0,0,1),(108,0,0,1),(109,0,0,1),(110,0,0,1),(111,0,0,1),(112,0,0,1),(113,0,0,1),(114,54,1,1),(119,0,0,1),(128,0,0,1),(129,0,0,1),(131,0,0,1),(132,0,0,1),(140,0,0,1),(141,0,0,1),(142,0,0,1),(143,0,0,1),(145,0,0,1),(146,0,0,1),(300,0,0,1),(303,0,0,1),(323,0,0,1),(326,0,0,1),(699,0,0,1),(700,0,0,1),(701,0,0,1),(702,0,0,1),(703,0,0,1),(725,0,0,1),(726,0,0,1),(727,0,0,1),(730,0,0,1),(731,0,0,1),(869,0,0,1),(875,0,0,1),(879,0,0,1),(881,0,0,1),(884,0,0,1),(885,0,0,1),(886,0,0,1),(893,0,0,1),(894,0,0,1),(895,0,0,1),(900,0,0,1),(901,0,0,1),(902,0,0,1),(1087,0,0,1),(1090,0,0,1),(1093,0,0,1),(1095,0,0,1),(1098,0,0,1),(1099,0,0,1),(1100,0,0,1),(1101,0,0,1),(1103,0,0,1),(1111,0,0,1),(1112,0,0,1),(1113,0,0,1),(1114,0,0,1),(1115,0,0,1),(1116,0,0,1),(1117,0,0,1),(1118,0,0,1),(1348,0,0,1),(1349,0,0,1),(1637,0,0,1),(1638,0,0,1),(1639,0,0,1),(1640,0,0,1),(1641,0,0,1),(1642,0,0,1),(1643,0,0,1),(1644,0,0,1),(1645,0,0,1),(1646,0,0,1),(1647,0,0,1),(1648,0,0,1),(1649,0,0,1),(1650,0,0,1),(1651,0,0,1),(1652,0,0,1),(1653,0,0,1),(1654,0,0,1),(1655,0,0,1),(1656,0,0,1),(1657,0,0,1),(1658,0,0,1),(1659,0,0,1),(1660,0,0,1),(1661,0,0,1),(1662,0,0,1),(1663,0,0,1),(1664,0,0,1),(1665,0,0,1),(1666,0,0,1),(1667,0,0,1),(1668,0,0,1),(1669,0,0,1),(1670,0,0,1),(1671,0,0,1),(1672,0,0,1),(1673,0,0,1),(1674,0,0,1),(1675,0,0,1),(1676,0,0,1),(1677,0,0,1),(1678,0,0,1),(1679,0,0,1),(1680,0,0,1),(1681,0,0,1),(1682,0,0,1),(1683,0,0,1),(1684,0,0,1),(1685,0,0,1),(1686,0,0,1),(1687,0,0,1),(1688,0,0,1),(1689,0,0,1),(1690,0,0,1),(1691,0,0,1),(1692,0,0,1),(1693,0,0,1),(1694,0,0,1),(1695,0,0,1),(1696,0,0,1),(1697,0,0,1),(1698,0,0,1),(1699,0,0,1),(1700,0,0,1),(1701,0,0,1),(1702,0,0,1),(1703,0,0,1),(1704,0,0,1),(1705,0,0,1),(1706,0,0,1),(1707,0,0,1),(1708,0,0,1),(1709,0,0,1),(1710,0,0,1),(1711,0,0,1),(1712,0,0,1),(1713,0,0,1),(1714,0,0,1),(1715,0,0,1),(1716,0,0,1),(1717,0,0,1),(1718,0,0,1),(1719,0,0,1),(1720,0,0,1),(1721,0,0,1),(1722,0,0,1),(1723,0,0,1),(1724,0,0,1),(1725,0,0,1),(1726,0,0,1),(1727,0,0,1),(1728,0,0,1),(1729,0,0,1),(1730,0,0,1),(1731,0,0,1),(1733,0,0,1),(1734,0,0,1),(1735,0,0,1),(1737,0,0,1),(1738,0,0,1),(1739,0,0,1),(1740,0,0,1),(1741,0,0,1),(1742,0,0,1),(1743,0,0,1),(1744,0,0,1),(1745,0,0,1),(1746,0,0,1),(1747,0,0,1),(1748,0,0,1),(1749,0,0,1),(1750,0,0,1),(1751,0,0,1),(1752,0,0,1),(1753,0,0,1),(1754,0,0,1),(1755,0,0,1),(1756,0,0,1),(1757,0,0,1),(1758,0,0,1),(1759,0,0,1),(1760,0,0,1),(1761,0,0,1),(1762,0,0,1),(1763,0,0,1),(1764,0,0,1),(1765,0,0,1),(1766,0,0,1),(1767,0,0,1),(1768,0,0,1),(1769,0,0,1),(1770,0,0,1),(1771,0,0,1),(1772,0,0,1),(1773,0,0,1),(1774,0,0,1),(1775,0,0,1),(1776,0,0,1),(1777,0,0,1),(1778,0,0,1),(1779,0,0,1),(1780,0,0,1),(1781,0,0,1),(1782,0,0,1),(1783,0,0,1),(1784,0,0,1),(1785,0,0,1),(1786,0,0,1),(1787,0,0,1),(1788,0,0,1),(1789,0,0,1),(1790,0,0,1),(1791,0,0,1),(1792,0,0,1),(1793,0,0,1),(1794,0,0,1),(1795,0,0,1),(1796,0,0,1),(1797,0,0,1),(1798,0,0,1),(1799,0,0,1),(1800,0,0,1),(1801,0,0,1),(1802,0,0,1),(1803,0,0,1),(1804,0,0,1),(1805,0,0,1),(1806,0,0,1),(1807,0,0,1),(1808,0,0,1),(1809,0,0,1),(1810,0,0,1),(1811,0,0,1),(1812,0,0,1),(1813,0,0,1),(1814,0,0,1),(1815,0,0,1),(1816,0,0,1),(1817,0,0,1),(1818,0,0,1),(1819,0,0,1),(1820,0,0,1),(1821,0,0,1),(1822,0,0,1),(1823,0,0,1),(1824,0,0,1),(1825,0,0,1),(1826,0,0,1),(1827,0,0,1),(1828,0,0,1),(1829,0,0,1),(1830,0,0,1),(1831,0,0,1),(1832,0,0,1),(1833,0,0,1),(1834,0,0,1),(1835,0,0,1),(1836,0,0,1),(1837,0,0,1),(1838,0,0,1),(1839,0,0,1),(1840,0,0,1),(1841,0,0,1),(1842,0,0,1),(1843,0,0,1),(1844,0,0,1),(1845,0,0,1),(1847,0,0,1),(1848,0,0,1),(1849,0,0,1),(1850,0,0,1),(1851,0,0,1),(1852,0,0,1),(1853,0,0,1),(1854,0,0,1),(1855,0,0,1),(1856,0,0,1),(1857,0,0,1),(1858,0,0,1),(1859,0,0,1),(1860,0,0,1),(1861,0,0,1),(1862,0,0,1),(1863,0,0,1),(1864,0,0,1),(1865,0,0,1),(1866,0,0,1),(1867,0,0,1),(1868,0,0,1),(1869,0,0,1),(1870,0,0,1),(1871,0,0,1),(1872,0,0,1),(1873,0,0,1),(1874,0,0,1),(1875,0,0,1),(1876,0,0,1),(1877,0,0,1),(1878,0,0,1),(1879,0,0,1),(1880,0,0,1),(1881,0,0,1),(1882,0,0,1),(1883,0,0,1),(1884,0,0,1),(1885,0,0,1),(1886,0,0,1),(1887,0,0,1),(1888,0,0,1),(1889,0,0,1),(1890,0,0,1),(1891,0,0,1),(1892,0,0,1),(1893,0,0,1),(1894,0,0,1),(1895,0,0,1),(1896,0,0,1),(1897,0,0,1),(1898,0,0,1),(1899,0,0,1),(1900,0,0,1),(1901,0,0,1),(1902,0,0,1),(1903,0,0,1),(1904,0,0,1),(1905,0,0,1),(1906,0,0,1),(1907,0,0,1),(1908,0,0,1),(1909,0,0,1),(1910,0,0,1),(1911,0,0,1),(1912,0,0,1),(1913,0,0,1),(1914,0,0,1),(1915,0,0,1),(1916,0,0,1),(1917,0,0,1),(1918,0,0,1),(1919,0,0,1),(1920,0,0,1),(1921,0,0,1),(1922,0,0,1),(1923,0,0,1),(1924,0,0,1),(1925,0,0,1),(1926,0,0,1),(1927,0,0,1),(1928,0,0,1),(1929,0,0,1),(1930,0,0,1),(1931,0,0,1),(1932,0,0,1),(1933,0,0,1),(1934,0,0,1),(1935,0,0,1),(1936,0,0,1),(1937,0,0,1),(1938,0,0,1),(1939,0,0,1),(1940,0,0,1),(1941,0,0,1),(1942,0,0,1),(1943,0,0,1),(1944,0,0,1),(1945,0,0,1),(1946,0,0,1),(1947,0,0,1),(1948,0,0,1),(1949,0,0,1),(1950,0,0,1),(1951,0,0,1),(1952,0,0,1),(1953,0,0,1),(1954,0,0,1),(1955,0,0,1),(1956,0,0,1),(1957,0,0,1),(1958,0,0,1),(1959,0,0,1),(1960,0,0,1),(1961,0,0,1),(1962,0,0,1),(1963,0,0,1),(1964,0,0,1),(1965,0,0,1),(1966,0,0,1),(1967,0,0,1),(1968,0,0,1),(1969,0,0,1),(1970,0,0,1),(1971,0,0,1),(1972,0,0,1),(1973,0,0,1),(1974,0,0,1),(1975,0,0,1),(1976,0,0,1),(1987,0,0,1),(1989,0,0,1),(1990,0,0,1),(1991,0,0,1),(1992,0,0,1),(1993,0,0,1),(1994,0,0,1),(1996,0,0,1),(1997,0,0,1),(1998,0,0,1),(1999,0,0,1),(2000,0,0,1),(2001,0,0,1),(2002,0,0,1),(2003,0,0,1),(2004,0,0,1),(2005,0,0,1),(2006,0,0,1),(2007,0,0,1),(2009,0,0,1),(2010,0,0,1),(2011,0,0,1),(2012,0,0,1),(2013,0,0,1),(2015,0,0,1),(2018,0,0,1),(2019,0,0,1),(2020,0,0,1),(2022,0,0,1),(2023,0,0,1),(2024,0,0,1),(2025,0,0,1),(2026,0,0,1),(2027,0,0,1),(2028,0,0,1),(2029,0,0,1),(2030,0,0,1),(2031,0,0,1),(2035,0,0,1),(2036,0,0,1),(2037,0,0,1),(2038,0,0,1),(2039,0,0,1),(2041,0,0,1),(2042,0,0,1),(2044,0,0,1),(2045,0,0,1),(2046,0,0,1),(2047,0,0,1),(2048,0,0,1),(2049,0,0,1),(2050,0,0,1),(2051,0,0,1),(2052,0,0,1),(2053,0,0,1),(2054,0,0,1),(2055,0,0,1),(2056,0,0,1),(2058,0,0,1),(2060,0,0,1),(2061,0,0,1),(2062,0,0,1),(2063,0,0,1),(2064,0,0,1),(2065,0,0,1),(2066,0,0,1),(2067,0,0,1),(2068,0,0,1),(2070,0,0,1),(2071,0,0,1),(2072,0,0,1),(2073,0,0,1),(2074,0,0,1),(2075,0,0,1),(2076,0,0,1),(2077,0,0,1),(2078,0,0,1),(2079,0,0,1),(2080,0,0,1),(2081,0,0,1),(2083,0,0,1),(2084,0,0,1),(2085,0,0,1),(2086,0,0,1),(2087,0,0,1),(2088,0,0,1),(2089,0,0,1),(2090,0,0,1),(2091,0,0,1),(2093,0,0,1),(2094,0,0,1),(2096,0,0,1),(2097,0,0,1),(2098,0,0,1),(2099,0,0,1),(2100,0,0,1),(2101,0,0,1),(2102,0,0,1),(2103,0,0,1),(2104,0,0,1),(2105,0,0,1),(2106,0,0,1),(2108,0,0,1),(2109,0,0,1),(2110,0,0,1),(2111,0,0,1),(2112,0,0,1),(2113,0,0,1),(2114,0,0,1),(2115,0,0,1),(2116,0,0,1),(2118,0,0,1),(2119,0,0,1),(2120,0,0,1),(2121,0,0,1),(2124,0,0,1),(2125,0,0,1),(2126,0,0,1),(2127,0,0,1),(2128,0,0,1),(2129,0,0,1),(2130,0,0,1),(2131,0,0,1),(2132,0,0,1),(2133,0,0,1),(2134,0,0,1),(2135,0,0,1),(2136,0,0,1),(2137,0,0,1),(2138,0,0,1),(2139,0,0,1),(2140,0,0,1),(2141,0,0,1),(2142,0,0,1),(2143,0,0,1),(2144,0,0,1),(2145,0,0,1),(2146,0,0,1),(2147,0,0,1),(2148,0,0,1),(2149,0,0,1),(2150,0,0,1),(2151,0,0,1),(2152,0,0,1),(2153,0,0,1),(2155,0,0,1),(2156,0,0,1),(2157,0,0,1),(2158,0,0,1),(2159,0,0,1),(2160,0,0,1),(2161,0,0,1),(2162,0,0,1),(2163,0,0,1),(2164,0,0,1),(2165,0,0,1),(2166,0,0,1),(2167,0,0,1),(2168,0,0,1),(2169,0,0,1),(2170,0,0,1),(2171,0,0,1),(2172,0,0,1),(2173,0,0,1),(2174,0,0,1),(2175,0,0,1),(2176,0,0,1),(2177,0,0,1),(2178,0,0,1),(2179,0,0,1),(2180,0,0,1),(2181,0,0,1),(2182,0,0,1),(2183,0,0,1),(2184,0,0,1),(2186,0,0,1),(2187,0,0,1),(2188,0,0,1),(2189,0,0,1),(2190,0,0,1),(2191,0,0,1),(2192,0,0,1),(2193,0,0,1),(2194,0,0,1),(2195,0,0,1),(2196,0,0,1),(2197,0,0,1),(2198,0,0,1),(2199,0,0,1),(2200,0,0,1),(2201,0,0,1),(2202,0,0,1),(2203,0,0,1),(2204,0,0,1),(2205,0,0,1),(2206,0,0,1),(2207,0,0,1),(2209,0,0,1),(2210,0,0,1),(2211,0,0,1),(2212,0,0,1),(2213,0,0,1),(2214,0,0,1),(2215,0,0,1),(2216,0,0,1),(2217,0,0,1),(2219,0,0,1),(2220,0,0,1),(2221,0,0,1),(2222,0,0,1),(2223,0,0,1),(2224,0,0,1),(2225,0,0,1),(2226,0,0,1),(2227,0,0,1),(2228,0,0,1),(2229,0,0,1),(2230,0,0,1),(2231,0,0,1),(2232,0,0,1),(2233,0,0,1),(2234,0,0,1),(2235,0,0,1),(2236,0,0,1),(2237,0,0,1),(2238,0,0,1),(2240,0,0,1),(2241,0,0,1),(2242,0,0,1),(2243,0,0,1),(2244,0,0,1),(2245,0,0,1),(2246,0,0,1),(2247,0,0,1),(2248,0,0,1),(2249,0,0,1),(2250,0,0,1),(2251,0,0,1),(2252,0,0,1),(2253,0,0,1),(2254,0,0,1),(2255,0,0,1),(2256,0,0,1),(2257,0,0,1),(2258,0,0,1),(2259,0,0,1),(2260,0,0,1),(2261,0,0,1),(2262,0,0,1),(2263,0,0,1),(2264,0,0,1),(2265,0,0,1),(2266,0,0,1),(2267,0,0,1),(2268,0,0,1),(2269,0,0,1),(2270,0,0,1),(2271,0,0,1),(2272,0,0,1),(2273,0,0,1),(2274,0,0,1),(2275,0,0,1),(2276,0,0,1),(2277,0,0,1),(2278,0,0,1),(2279,0,0,1),(2280,0,0,1),(2281,0,0,1),(2282,0,0,1),(2284,0,0,1),(2285,0,0,1),(2286,0,0,1),(2287,0,0,1),(2288,0,0,1),(2289,0,0,1),(2290,0,0,1),(2291,0,0,1),(2293,0,0,1),(2294,0,0,1),(2295,0,0,1),(2296,0,0,1),(2297,0,0,1),(2298,0,0,1),(2299,0,0,1),(2300,0,0,1),(2301,0,0,1),(2302,0,0,1),(2303,0,0,1),(2304,0,0,1),(2305,0,0,1),(2306,0,0,1),(2307,0,0,1),(2308,0,0,1),(2309,0,0,1),(2310,0,0,1),(2312,0,0,1),(2313,0,0,1),(2314,0,0,1),(2315,0,0,1),(2316,0,0,1),(2317,0,0,1),(2318,0,0,1),(2319,0,0,1),(2320,0,0,1),(2321,0,0,1),(2322,0,0,1),(2323,0,0,1),(2324,0,0,1),(2325,0,0,1),(2326,0,0,1),(2327,0,0,1),(2328,0,0,1),(2329,0,0,1),(2330,0,0,1),(2331,0,0,1),(2332,0,0,1),(2333,0,0,1),(2334,0,0,1),(2335,0,0,1),(2337,0,0,1),(2338,0,0,1),(2339,0,0,1),(2340,0,0,1),(2341,0,0,1),(2342,0,0,1),(2343,0,0,1),(2344,0,0,1),(2345,0,0,1),(2346,0,0,1),(2347,0,0,1),(2348,0,0,1),(2349,0,0,1),(2350,0,0,1),(2351,0,0,1),(2352,0,0,1),(2353,0,0,1),(2354,0,0,1),(2355,0,0,1),(2356,0,0,1),(2357,0,0,1),(2358,0,0,1),(2359,0,0,1),(2360,0,0,1),(2361,0,0,1),(2362,0,0,1),(2363,0,0,1),(2364,0,0,1),(2365,0,0,1),(2366,0,0,1),(2367,0,0,1),(2368,0,0,1),(2369,0,0,1),(2370,0,0,1),(2371,0,0,1),(2372,0,0,1),(2373,0,0,1);
/*!40000 ALTER TABLE `wp_yoast_indexable_hierarchy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_migrations`
--

DROP TABLE IF EXISTS `wp_yoast_migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_migrations` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `version` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_wp_yoast_migrations_version` (`version`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_migrations`
--

LOCK TABLES `wp_yoast_migrations` WRITE;
/*!40000 ALTER TABLE `wp_yoast_migrations` DISABLE KEYS */;
INSERT INTO `wp_yoast_migrations` VALUES (1,'20171228151840'),(2,'20171228151841'),(3,'20190529075038'),(4,'20191011111109'),(5,'20200408101900'),(6,'20200420073606'),(7,'20200428123747'),(8,'20200428194858'),(9,'20200429105310'),(10,'20200430075614'),(11,'20200430150130'),(12,'20200507054848'),(13,'20200513133401'),(14,'20200609154515'),(16,'20200616130143'),(18,'20200617122511'),(15,'20200702141921'),(17,'20200728095334'),(19,'20201202144329'),(20,'20201216124002'),(21,'20201216141134'),(22,'20210817092415'),(23,'20211020091404'),(24,'20230417083836');
/*!40000 ALTER TABLE `wp_yoast_migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_primary_term`
--

DROP TABLE IF EXISTS `wp_yoast_primary_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_primary_term` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint DEFAULT NULL,
  `term_id` bigint DEFAULT NULL,
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `blog_id` bigint NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `post_taxonomy` (`post_id`,`taxonomy`),
  KEY `post_term` (`post_id`,`term_id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_primary_term`
--

LOCK TABLES `wp_yoast_primary_term` WRITE;
/*!40000 ALTER TABLE `wp_yoast_primary_term` DISABLE KEYS */;
INSERT INTO `wp_yoast_primary_term` VALUES (3,1565,8,'category','2023-01-02 20:40:24','2024-12-26 12:47:38',1),(5,1840,2,'category','2023-03-27 10:49:27','2024-12-26 13:12:19',1),(7,3009,2,'category','2023-05-15 08:49:32','2024-01-31 11:44:53',1),(8,3032,2,'category','2023-05-23 11:43:43','2023-05-26 11:06:03',1),(9,3075,2,'category','2023-06-13 11:18:46','2024-03-01 05:44:18',1),(10,3095,2,'category','2023-06-30 07:10:53','2024-01-30 11:56:23',1),(11,3103,2,'category','2023-07-10 13:04:57','2024-01-30 11:54:37',1);
/*!40000 ALTER TABLE `wp_yoast_primary_term` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_seo_links`
--

DROP TABLE IF EXISTS `wp_yoast_seo_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_seo_links` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_id` bigint unsigned NOT NULL,
  `target_post_id` bigint unsigned NOT NULL,
  `type` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `indexable_id` int unsigned DEFAULT NULL,
  `target_indexable_id` int unsigned DEFAULT NULL,
  `height` int unsigned DEFAULT NULL,
  `width` int unsigned DEFAULT NULL,
  `size` int unsigned DEFAULT NULL,
  `language` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `region` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `link_direction` (`post_id`,`type`),
  KEY `indexable_link_direction` (`indexable_id`,`type`)
) ENGINE=InnoDB AUTO_INCREMENT=191 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_seo_links`
--

LOCK TABLES `wp_yoast_seo_links` WRITE;
/*!40000 ALTER TABLE `wp_yoast_seo_links` DISABLE KEYS */;
INSERT INTO `wp_yoast_seo_links` VALUES (75,'https://www.meadowcroftwines.com/product/2020-pinot-noir-russian-river-valley',1565,0,'internal',879,NULL,NULL,NULL,NULL,NULL,NULL),(76,'https://www.meadowcroftwines.com/product/2019-cabernet-sauvignon-oakville',1565,0,'internal',879,NULL,NULL,NULL,NULL,NULL,NULL),(77,'https://www.meadowcroftwines.com/product/2018-zinfandel-speedy-creek-vineyard',1565,0,'internal',879,NULL,NULL,NULL,NULL,NULL,NULL),(78,'https://www.meadowcroftwines.com/product/2021-pinot-blanc-rivino-vineyard',1565,0,'internal',879,NULL,NULL,NULL,NULL,NULL,NULL),(79,'https://www.meadowcroftwines.com/product/2021-chardonnay-carneros',1565,0,'internal',879,NULL,NULL,NULL,NULL,NULL,NULL),(81,'https://www.meadowcroftwines.com/wp-content/uploads/2023/01/food-wine-blog1-300x240.jpg',1565,1568,'image-in',879,NULL,600,750,123927,NULL,NULL),(101,'https://www.meadowcroftwines.com/sparkling-wines/',1840,1574,'internal',1095,884,NULL,NULL,NULL,NULL,NULL),(102,'https://www.meadowcroftwines.com/white-wines/',1840,506,'internal',1095,112,NULL,NULL,NULL,NULL,NULL),(103,'https://www.meadowcroftwines.com/wp-content/uploads/2023/03/4-300x169.webp',1840,0,'image-in',1095,NULL,NULL,NULL,NULL,NULL,NULL),(104,'https://www.meadowcroftwines.com/wp-content/uploads/2023/03/5-300x169.webp',1840,0,'image-in',1095,NULL,NULL,NULL,NULL,NULL,NULL),(105,'https://www.meadowcroftwines.com/wp-content/uploads/2023/03/3-300x169.webp',1840,0,'image-in',1095,NULL,NULL,NULL,NULL,NULL,NULL),(112,'https://www.meadowcroftwines.com/red-wines/',1859,504,'internal',1103,111,NULL,NULL,NULL,NULL,NULL),(113,'https://www.meadowcroftwines.com/product/2018-cabernet-sauvignon-spring-mountain-district',1859,0,'internal',1103,NULL,NULL,NULL,NULL,NULL,NULL),(114,'https://www.meadowcroftwines.com/wp-content/uploads/2023/04/3-300x169.png',1859,1863,'image-in',1103,NULL,1440,2560,5601108,NULL,NULL),(115,'https://www.meadowcroftwines.com/wp-content/uploads/2023/04/4-300x169.png',1859,1864,'image-in',1103,NULL,1440,2560,5724501,NULL,NULL),(116,'https://www.meadowcroftwines.com/wp-content/uploads/2023/04/5-300x169.png',1859,1865,'image-in',1103,NULL,1440,2560,3414480,NULL,NULL),(117,'/profile',1892,1889,'internal',1118,1115,NULL,NULL,NULL,NULL,NULL),(118,'https://www.meadowcroftwines.com/',3009,0,'internal',1991,165,NULL,NULL,NULL,NULL,NULL),(119,'https://www.meadowcroftwines.com/tasting-room/',3009,445,'internal',1991,90,NULL,NULL,NULL,NULL,NULL),(120,'https://www.ironhorsevineyards.com/',3009,0,'external',1991,NULL,NULL,NULL,NULL,NULL,NULL),(121,'https://www.benoviawinery.com/',3009,0,'external',1991,NULL,NULL,NULL,NULL,NULL,NULL),(122,'https://www.ridgewine.com/',3009,0,'external',1991,NULL,NULL,NULL,NULL,NULL,NULL),(123,'https://ramsgatewinery.com/',3009,0,'external',1991,NULL,NULL,NULL,NULL,NULL,NULL),(124,'https://bedrockwineco.com/',3009,0,'external',1991,NULL,NULL,NULL,NULL,NULL,NULL),(125,'https://www.meadowcroftwines.com/wp-content/uploads/2023/05/img_11000-7331bc7d5056b3a_7331bda8-5056-b3a8-4912409a269a635c-1-300x225.webp',3009,0,'image-in',1991,NULL,NULL,NULL,NULL,NULL,NULL),(126,'https://www.meadowcroftwines.com/wp-content/uploads/2023/05/iron-horse-vineyards-visit-us-300x123.webp',3009,0,'image-in',1991,NULL,NULL,NULL,NULL,NULL,NULL),(127,'https://www.meadowcroftwines.com/wp-content/uploads/2023/05/new-state-of-the-art-300x225.jpg',3009,3015,'image-in',1991,NULL,900,1200,266420,NULL,NULL),(128,'https://www.meadowcroftwines.com/wp-content/uploads/2023/05/ridge-300x169.webp',3009,0,'image-in',1991,NULL,NULL,NULL,NULL,NULL,NULL),(129,'https://www.meadowcroftwines.com/wp-content/uploads/2023/05/ramsgate-copy_1-300x200.webp',3009,0,'image-in',1991,NULL,NULL,NULL,NULL,NULL,NULL),(130,'https://www.meadowcroftwines.com/wp-content/uploads/2023/05/bedrock2-300x300.webp',3009,0,'image-in',1991,NULL,NULL,NULL,NULL,NULL,NULL),(132,'https://www.meadowcroftwines.com/product/2021-pinot-noir-anderson-valley/',3032,2754,'internal',2006,1974,NULL,NULL,NULL,NULL,NULL),(133,'https://www.meadowcroftwines.com/product/2018-cabernet-sauvignon-spring-mountain-district/',3032,2679,'internal',2006,1975,NULL,NULL,NULL,NULL,NULL),(134,'https://www.meadowcroftwines.com/red-wines/',3032,504,'internal',2006,111,NULL,NULL,NULL,NULL,NULL),(135,'https://www.meadowcroftwines.com/wp-content/uploads/2023/05/wine-blending-_1_-300x200.webp',3032,0,'image-in',2006,NULL,NULL,NULL,NULL,NULL,NULL),(136,'https://www.meadowcroftwines.com/wp-content/uploads/2023/05/cabernet-sauvignon-_2_-300x200.webp',3032,0,'image-in',2006,NULL,NULL,NULL,NULL,NULL,NULL),(137,'https://www.meadowcroftwines.com/wp-content/uploads/2023/05/zinfandel-_1_-300x200.webp',3032,0,'image-in',2006,NULL,NULL,NULL,NULL,NULL,NULL),(138,'https://www.meadowcroftwines.com/',3075,0,'internal',2030,165,NULL,NULL,NULL,NULL,NULL),(139,'https://www.carlislewinery.com/',3075,0,'external',2030,NULL,NULL,NULL,NULL,NULL,NULL),(140,'https://bedrockwineco.com/',3075,0,'external',2030,NULL,NULL,NULL,NULL,NULL,NULL),(141,'https://www.hartfordwines.com/',3075,0,'external',2030,NULL,NULL,NULL,NULL,NULL,NULL),(142,'https://www.biale.com/',3075,0,'external',2030,NULL,NULL,NULL,NULL,NULL,NULL),(143,'https://www.seghesio.com/',3075,0,'external',2030,NULL,NULL,NULL,NULL,NULL,NULL),(144,'https://papapietro-perry.com/',3075,0,'external',2030,NULL,NULL,NULL,NULL,NULL,NULL),(145,'https://www.meadowcroftwines.com/wp-content/uploads/2023/06/Meadowcroft-tasting-room-1-300x213.jpg',3075,3076,'image-in',2030,NULL,1815,2560,693570,NULL,NULL),(146,'https://www.meadowcroftwines.com/wp-content/uploads/2023/06/carlisle1-300x170.webp',3075,0,'image-in',2030,NULL,NULL,NULL,NULL,NULL,NULL),(147,'https://www.meadowcroftwines.com/wp-content/uploads/2023/06/wines-2018-300x203.jpg',3075,3083,'image-in',2030,NULL,677,1000,127596,NULL,NULL),(148,'https://www.meadowcroftwines.com/wp-content/uploads/2023/06/Hartford-Court-300x200.png',3075,3082,'image-in',2030,NULL,533,800,425517,NULL,NULL),(149,'https://www.meadowcroftwines.com/wp-content/uploads/2023/06/Napa_Mustard-05023-David-Collier-Large-300x200.webp',3075,0,'image-in',2030,NULL,NULL,NULL,NULL,NULL,NULL),(150,'https://www.meadowcroftwines.com/wp-content/uploads/2023/06/Seghesio-300x150.jpeg',3075,0,'image-in',2030,NULL,NULL,NULL,NULL,NULL,NULL),(151,'https://www.meadowcroftwines.com/wp-content/uploads/2023/06/white-wine-on-ice-300x200.webp',3095,0,'image-in',2035,NULL,NULL,NULL,NULL,NULL,NULL),(152,'https://www.meadowcroftwines.com/wp-content/uploads/2023/06/serving-white-wine-300x200.jpeg',3095,0,'image-in',2035,NULL,NULL,NULL,NULL,NULL,NULL),(153,'https://www.meadowcroftwines.com/wp-content/uploads/2023/07/white-wine-general-300x200.jpg',3103,3106,'image-in',2036,NULL,800,1200,117717,NULL,NULL),(154,'https://www.meadowcroftwines.com/wp-content/uploads/2023/07/white-wine-general2-300x200.jpg',3103,3107,'image-in',2036,NULL,800,1200,148336,NULL,NULL),(175,'https://www.meadowcroftwines.com/sparkling-wines/',3877,1574,'internal',2365,884,NULL,NULL,NULL,NULL,NULL),(176,'https://www.meadowcroftwines.com/product/meadowcroft-black-box-of-bubbles/',3877,3858,'internal',2365,2358,NULL,NULL,NULL,NULL,NULL),(177,'https://www.meadowcroftwines.com/product/holiday-celebration-pinot-noir-2-bottle-gift-pack/',3877,3839,'internal',2365,2341,NULL,NULL,NULL,NULL,NULL),(178,'https://www.meadowcroftwines.com/product/all-she-wrote-port-and-chocolate-truffle-gift-box/',3877,3849,'internal',2365,2349,NULL,NULL,NULL,NULL,NULL),(179,'https://www.meadowcroftwines.com/product/sip-and-savor-gift-box/',3877,3857,'internal',2365,2357,NULL,NULL,NULL,NULL,NULL),(180,'https://www.meadowcroftwines.com/product/bordeaux-lovers-gift-box/',3877,3851,'internal',2365,2351,NULL,NULL,NULL,NULL,NULL),(181,'https://www.meadowcroftwines.com/product/grateful-gatherings-gift-box/',3877,3852,'internal',2365,2352,NULL,NULL,NULL,NULL,NULL),(182,'https://www.meadowcroftwines.com/product/celebration-noir-six-bottle-box/',3877,3853,'internal',2365,2353,NULL,NULL,NULL,NULL,NULL),(183,'https://www.meadowcroftwines.com/',3877,0,'internal',2365,165,NULL,NULL,NULL,NULL,NULL),(184,'https://www.meadowcroftwines.com/wp-content/uploads/2024/12/2E9A8548-216x300.webp',3877,3879,'image-in',2365,NULL,2560,1845,268194,NULL,NULL),(185,'https://www.meadowcroftwines.com/wp-content/uploads/2024/12/2E9A8601-1-216x300.webp',3877,3880,'image-in',2365,NULL,2560,1845,192576,NULL,NULL),(186,'https://www.meadowcroftwines.com/wp-content/uploads/2024/12/port-truffles-1730242854259-300x300.jpg',3877,3881,'image-in',2365,NULL,600,600,20599,NULL,NULL),(187,'https://www.meadowcroftwines.com/wp-content/uploads/2024/12/2E9A8813-272x300.webp',3877,3882,'image-in',2365,NULL,2560,2322,288074,NULL,NULL),(188,'https://www.meadowcroftwines.com/wp-content/uploads/2024/12/2E9A8570-1-216x300.webp',3877,3883,'image-in',2365,NULL,2560,1845,198366,NULL,NULL),(189,'https://www.meadowcroftwines.com/wp-content/uploads/2024/12/2E9A8594-2-300x200.webp',3877,3884,'image-in',2365,NULL,1707,2560,373682,NULL,NULL),(190,'https://www.meadowcroftwines.com/wp-content/uploads/2024/12/2E9A8614-1-300x200.webp',3877,3885,'image-in',2365,NULL,1707,2560,262194,NULL,NULL);
/*!40000 ALTER TABLE `wp_yoast_seo_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_seo_meta`
--

DROP TABLE IF EXISTS `wp_yoast_seo_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_seo_meta` (
  `object_id` bigint unsigned NOT NULL,
  `internal_link_count` int unsigned DEFAULT NULL,
  `incoming_link_count` int unsigned DEFAULT NULL,
  UNIQUE KEY `object_id` (`object_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_seo_meta`
--

LOCK TABLES `wp_yoast_seo_meta` WRITE;
/*!40000 ALTER TABLE `wp_yoast_seo_meta` DISABLE KEYS */;
INSERT INTO `wp_yoast_seo_meta` VALUES (408,0,0),(412,0,0),(431,0,0),(443,0,0),(444,0,0),(445,0,0),(446,0,0),(463,0,0),(464,0,0),(465,0,0),(466,0,0),(501,0,0),(502,0,0),(504,0,0),(505,0,0),(506,0,0),(507,0,0),(508,0,0),(509,0,0),(516,0,0),(517,0,0),(518,0,0),(519,0,0),(563,0,0),(565,0,0),(567,0,0),(578,0,0),(611,0,0),(615,0,0),(616,0,0),(617,0,0),(618,0,0),(619,0,0),(620,0,0),(621,0,0),(622,0,0),(623,0,0),(624,0,0),(625,0,0),(626,0,0),(627,0,0),(628,0,0),(629,0,0),(630,0,0),(631,0,0),(632,0,0),(633,0,0),(634,0,0),(635,0,0),(636,0,0),(637,0,0),(638,0,0),(640,0,0),(641,0,0),(642,0,0),(643,0,0),(644,0,0),(645,0,0),(647,0,0),(648,0,0),(649,0,0),(650,0,0),(651,0,0),(652,0,0),(653,0,0),(654,0,0),(655,0,0),(656,0,0),(658,0,0),(660,0,0),(661,0,0),(666,0,0),(667,0,0),(668,0,0),(669,0,0),(670,0,0),(673,0,0),(674,0,0),(675,0,0),(687,0,0),(694,0,0),(695,0,0),(696,0,0),(699,0,0),(700,0,0),(701,0,0),(703,0,0),(704,0,0),(705,0,0),(710,0,0),(711,0,0),(715,0,0),(717,0,0),(718,0,0),(726,0,0),(728,0,0),(737,0,0),(738,0,0),(739,0,0),(740,0,0),(741,0,0),(742,0,0),(744,0,0),(745,0,0),(746,0,0),(748,0,0),(749,0,0),(750,0,0),(753,0,0),(755,0,0),(756,0,0),(757,0,0),(758,0,0),(763,0,0),(764,0,0),(765,0,0),(766,0,0),(769,0,0),(773,0,0),(774,0,0),(775,0,0),(776,0,0),(777,0,0),(779,0,0),(781,0,0),(782,0,0),(783,0,0),(786,0,0),(787,0,0),(788,0,0),(789,0,0),(790,0,0),(791,0,0),(792,0,0),(793,0,0);
/*!40000 ALTER TABLE `wp_yoast_seo_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Dumping events for database 'wp_meadowcroftca'
--

--
-- Dumping routines for database 'wp_meadowcroftca'
--
/*!50112 SET @disable_bulk_load = IF (@is_rocksdb_supported, 'SET SESSION rocksdb_bulk_load = @old_rocksdb_bulk_load', 'SET @dummy_rocksdb_bulk_load = 0') */;
/*!50112 PREPARE s FROM @disable_bulk_load */;
/*!50112 EXECUTE s */;
/*!50112 DEALLOCATE PREPARE s */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed

Youez - 2016 - github.com/yon3zu
LinuXploit